ETH Price: $3,111.33 (+1.43%)

Token

RICH KID$ CLUB by CH Pulgarin (RKC)
 

Overview

Max Total Supply

22 RKC

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RKC
0x70cebBCdf31C7949Cfe2F974933Db1965990b7f4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RICH_KIDZ

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-03
*/

// File: @openzeppelin/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: contracts/RICH_KIDZ.sol


pragma solidity >=0.8.2 <0.9.0;





contract RICH_KIDZ is ERC721Enumerable, Ownable {
using Strings for uint256;

    uint256 public constant maxSupply = 7424;
    uint256 public mintingPrice;
    uint256 public totalMinted;

        uint256 private _revealedUntil = 0;


    string private _revealedBaseURI;
    string private _unrevealedBaseURI;


    mapping(uint256 => bool) private _claimedTokens;
    mapping(address => uint256[]) private _tokensByOwner;

    constructor() ERC721("RICH KID$ CLUB by CH Pulgarin",
            "RKC") {
        mintingPrice = 0.0001* 1 ether;
     _revealedBaseURI = "ipfs://bafybeieno4eu4avapi2ugbxgvjzpfhgph4f2ove4cjpwltseckilsluxmq/revealed/";
        _unrevealedBaseURI = "ipfs://bafybeieno4eu4avapi2ugbxgvjzpfhgph4f2ove4cjpwltseckilsluxmq/unrevealed?tokenId=";
    }


    function mint(address to, uint256 amount) external payable {
        require(totalSupply() + amount <= maxSupply, "Exceeds max supply");
        require(msg.value >= mintingPrice * amount, "Insufficient payment");

        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = totalSupply() + 1; // Incrementamos el tokenId en 1
            _mint(to, tokenId);
            _tokensByOwner[to].push(tokenId);
        }
    }

function _transfer(address from, address to, uint256 tokenId) internal override {
        super._transfer(from, to, tokenId);

        // Actualizar el mapeo _tokensByOwner
        uint256[] storage tokensOfFrom = _tokensByOwner[from];
        uint256[] storage tokensOfTo = _tokensByOwner[to];

        for (uint256 i = 0; i < tokensOfFrom.length; i++) {
            if (tokensOfFrom[i] == tokenId) {
                // Remover el tokenId de la dirección del antiguo propietario
                tokensOfFrom[i] = tokensOfFrom[tokensOfFrom.length - 1];
                tokensOfFrom.pop();
                break;
            }
        }

        tokensOfTo.push(tokenId); // Agregar el tokenId a la dirección del nuevo propietario
    }


    function markAsClaimed(uint256 tokenId) external onlyOwner(){
        require(_exists(tokenId), "Token does not exist");
        _claimedTokens[tokenId] = true;
    }

    function getTokensByOwner(address owner) external view returns (uint256[] memory, bool[] memory) {
        uint256[] memory tokenIds = _tokensByOwner[owner];
        bool[] memory claimedStatus = new bool[](tokenIds.length);

        for (uint256 i = 0; i < tokenIds.length; i++) {
            claimedStatus[i] = _claimedTokens[tokenIds[i]];
        }

        return (tokenIds, claimedStatus);
    }

    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        require(_exists(tokenId), "tokenId does not exist");
        if (tokenId > _revealedUntil) {
            return
                string(
                    abi.encodePacked(_unrevealedBaseURI, tokenId.toString())
                );
        }
        bool isRedeemed = _claimedTokens[tokenId];
        if (isRedeemed)
            return
                string(
                    abi.encodePacked(
                        _revealedBaseURI,
                        tokenId.toString(),
                        "/NFTRedeemed"
                    )
                );
        else
            return
                string(
                    abi.encodePacked(
                        _revealedBaseURI,
                        tokenId.toString(),
                        "/NFTNoRedeemed"
                    )
                );
    }

        function setRevealedUntil(uint256 tokenId) external onlyOwner {
        _revealedUntil = tokenId;
    }
        function setRevealedBaseURI(
        string memory newRevealedBaseURI
    ) external onlyOwner {
        _revealedBaseURI = newRevealedBaseURI;
    }

    function setUnrevealedBaseURI(
        string memory newUnrevealedURI
    ) external onlyOwner {
        _unrevealedBaseURI = newUnrevealedURI;
    }
        function setMintingPrice(uint256 newPrice) external onlyOwner {
        mintingPrice = newPrice;
    }
        function ownerRetrieve() external onlyOwner {
            msg.sender.call{value: address(this).balance}("");
            return;
        }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"markAsClaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerRetrieve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newRevealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setRevealedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUnrevealedURI","type":"string"}],"name":"setUnrevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d553480156200001657600080fd5b506040518060400160405280601d81526020017f52494348204b49442420434c55422062792043482050756c676172696e0000008152506040518060400160405280600381526020017f524b43000000000000000000000000000000000000000000000000000000000081525081600090816200009491906200047a565b508060019081620000a691906200047a565b505050620000c9620000bd6200013260201b60201c565b6200013a60201b60201c565b655af3107a4000600b819055506040518060800160405280604c815260200162004bfd604c9139600e90816200010091906200047a565b5060405180608001604052806056815260200162004ba760569139600f90816200012b91906200047a565b5062000561565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200028257607f821691505b6020821081036200029857620002976200023a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002c3565b6200030e8683620002c3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200035b620003556200034f8462000326565b62000330565b62000326565b9050919050565b6000819050919050565b62000377836200033a565b6200038f620003868262000362565b848454620002d0565b825550505050565b600090565b620003a662000397565b620003b38184846200036c565b505050565b5b81811015620003db57620003cf6000826200039c565b600181019050620003b9565b5050565b601f8211156200042a57620003f4816200029e565b620003ff84620002b3565b810160208510156200040f578190505b620004276200041e85620002b3565b830182620003b8565b50505b505050565b600082821c905092915050565b60006200044f600019846008026200042f565b1980831691505092915050565b60006200046a83836200043c565b9150826002028217905092915050565b620004858262000200565b67ffffffffffffffff811115620004a157620004a06200020b565b5b620004ad825462000269565b620004ba828285620003df565b600060209050601f831160018114620004f25760008415620004dd578287015190505b620004e985826200045c565b86555062000559565b601f19841662000502866200029e565b60005b828110156200052c5784890151825560018201915060208501945060208101905062000505565b868310156200054c578489015162000548601f8916826200043c565b8355505b6001600288020188555050505b505050505050565b61463680620005716000396000f3fe6080604052600436106101cd5760003560e01c8063639251b2116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610678578063e185a2cc146106a3578063e985e9c5146106cc578063f2fde38b14610709576101cd565b8063a22cb465146105be578063a2309ff8146105e7578063b88d4fde14610612578063c87b56dd1461063b576101cd565b8063715018a6116100d1578063715018a6146105285780638417b47f1461053f5780638da5cb5b1461056857806395d89b4114610593576101cd565b8063639251b2146104ab5780636e83843a146104c257806370a08231146104eb576101cd565b80632f745c591161016f57806340c10f191161013e57806340c10f19146103ec57806342842e0e146104085780634f6ccce7146104315780636352211e1461046e576101cd565b80632f745c591461031d57806331d68c9f1461035a57806335db70b51461038357806340398d67146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632bac3b51146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612b5b565b610732565b6040516102069190612ba3565b60405180910390f35b34801561021b57600080fd5b506102246107ac565b6040516102319190612c4e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ca6565b61083e565b60405161026e9190612d14565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d5b565b6108c3565b005b3480156102ac57600080fd5b506102b56109da565b6040516102c29190612daa565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612dc5565b6109e7565b005b34801561030057600080fd5b5061031b60048036038101906103169190612ca6565b610a47565b005b34801561032957600080fd5b50610344600480360381019061033f9190612d5b565b610b3a565b6040516103519190612daa565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612ca6565b610bdf565b005b34801561038f57600080fd5b50610398610c65565b6040516103a59190612daa565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190612e18565b610c6b565b6040516103e3929190612fc1565b60405180910390f35b61040660048036038101906104019190612d5b565b610ddb565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612dc5565b610f2e565b005b34801561043d57600080fd5b5061045860048036038101906104539190612ca6565b610f4e565b6040516104659190612daa565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612ca6565b610fbf565b6040516104a29190612d14565b60405180910390f35b3480156104b757600080fd5b506104c0611070565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061312d565b611157565b005b3480156104f757600080fd5b50610512600480360381019061050d9190612e18565b6111e6565b60405161051f9190612daa565b60405180910390f35b34801561053457600080fd5b5061053d61129d565b005b34801561054b57600080fd5b5061056660048036038101906105619190612ca6565b611325565b005b34801561057457600080fd5b5061057d6113ab565b60405161058a9190612d14565b60405180910390f35b34801561059f57600080fd5b506105a86113d5565b6040516105b59190612c4e565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906131a2565b611467565b005b3480156105f357600080fd5b506105fc61147d565b6040516106099190612daa565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613283565b611483565b005b34801561064757600080fd5b50610662600480360381019061065d9190612ca6565b6114e5565b60405161066f9190612c4e565b60405180910390f35b34801561068457600080fd5b5061068d6115fd565b60405161069a9190612daa565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061312d565b611603565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613306565b611692565b6040516107009190612ba3565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612e18565b611726565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a557506107a48261181d565b5b9050919050565b6060600080546107bb90613375565b80601f01602080910402602001604051908101604052809291908181526020018280546107e790613375565b80156108345780601f1061080957610100808354040283529160200191610834565b820191906000526020600020905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b6000610849826118ff565b610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90613418565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ce82610fbf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610935906134aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095d61196b565b73ffffffffffffffffffffffffffffffffffffffff16148061098c575061098b8161098661196b565b611692565b5b6109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c29061353c565b60405180910390fd5b6109d58383611973565b505050565b6000600880549050905090565b6109f86109f261196b565b82611a2c565b610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906135ce565b60405180910390fd5b610a42838383611b0a565b505050565b610a4f61196b565b73ffffffffffffffffffffffffffffffffffffffff16610a6d6113ab565b73ffffffffffffffffffffffffffffffffffffffff1614610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba9061363a565b60405180910390fd5b610acc816118ff565b610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906136a6565b60405180910390fd5b60016010600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610b45836111e6565b8210610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90613738565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610be761196b565b73ffffffffffffffffffffffffffffffffffffffff16610c056113ab565b73ffffffffffffffffffffffffffffffffffffffff1614610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061363a565b60405180910390fd5b80600d8190555050565b600b5481565b6060806000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610cf957602002820191906000526020600020905b815481526020019060010190808311610ce5575b505050505090506000815167ffffffffffffffff811115610d1d57610d1c613002565b5b604051908082528060200260200182016040528015610d4b5781602001602082028036833780820191505090505b50905060005b8251811015610dcd5760106000848381518110610d7157610d70613758565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16828281518110610da857610da7613758565b5b6020026020010190151590811515815250508080610dc5906137b6565b915050610d51565b508181935093505050915091565b611d0081610de76109da565b610df191906137fe565b1115610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061387e565b60405180910390fd5b80600b54610e40919061389e565b341015610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e799061392c565b60405180910390fd5b60005b81811015610f295760006001610e996109da565b610ea391906137fe565b9050610eaf8482611c8c565b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055508080610f21906137b6565b915050610e85565b505050565b610f4983838360405180602001604052806000815250611483565b505050565b6000610f586109da565b8210610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f90906139be565b60405180910390fd5b60088281548110610fad57610fac613758565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90613a50565b60405180910390fd5b80915050919050565b61107861196b565b73ffffffffffffffffffffffffffffffffffffffff166110966113ab565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e39061363a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff164760405161111090613aa1565b60006040518083038185875af1925050503d806000811461114d576040519150601f19603f3d011682016040523d82523d6000602084013e611152565b606091505b505050565b61115f61196b565b73ffffffffffffffffffffffffffffffffffffffff1661117d6113ab565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061363a565b60405180910390fd5b80600e90816111e29190613c62565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613da6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a561196b565b73ffffffffffffffffffffffffffffffffffffffff166112c36113ab565b73ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113109061363a565b60405180910390fd5b6113236000611e65565b565b61132d61196b565b73ffffffffffffffffffffffffffffffffffffffff1661134b6113ab565b73ffffffffffffffffffffffffffffffffffffffff16146113a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113989061363a565b60405180910390fd5b80600b8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113e490613375565b80601f016020809104026020016040519081016040528092919081815260200182805461141090613375565b801561145d5780601f106114325761010080835404028352916020019161145d565b820191906000526020600020905b81548152906001019060200180831161144057829003601f168201915b5050505050905090565b61147961147261196b565b8383611f2b565b5050565b600c5481565b61149461148e61196b565b83611a2c565b6114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca906135ce565b60405180910390fd5b6114df84848484612097565b50505050565b60606114f0826118ff565b61152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613e12565b60405180910390fd5b600d5482111561156b57600f611544836120f3565b604051602001611555929190613ef1565b60405160208183030381529060405290506115f8565b60006010600084815260200190815260200160002060009054906101000a900460ff16905080156115c957600e6115a1846120f3565b6040516020016115b2929190613f61565b6040516020818303038152906040529150506115f8565b600e6115d4846120f3565b6040516020016115e5929190613fdc565b6040516020818303038152906040529150505b919050565b611d0081565b61160b61196b565b73ffffffffffffffffffffffffffffffffffffffff166116296113ab565b73ffffffffffffffffffffffffffffffffffffffff161461167f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116769061363a565b60405180910390fd5b80600f908161168e9190613c62565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61172e61196b565b73ffffffffffffffffffffffffffffffffffffffff1661174c6113ab565b73ffffffffffffffffffffffffffffffffffffffff16146117a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117999061363a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118089061407d565b60405180910390fd5b61181a81611e65565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118f857506118f782612253565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119e683610fbf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a37826118ff565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061410f565b60405180910390fd5b6000611a8183610fbf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ac35750611ac28185611692565b5b80611b0157508373ffffffffffffffffffffffffffffffffffffffff16611ae98461083e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b611b158383836122bd565b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060005b8280549050811015611c5c5783838281548110611bbe57611bbd613758565b5b906000526020600020015403611c49578260018480549050611be0919061412f565b81548110611bf157611bf0613758565b5b9060005260206000200154838281548110611c0f57611c0e613758565b5b906000526020600020018190555082805480611c2e57611c2d614163565b5b60019003818190600052602060002001600090559055611c5c565b8080611c54906137b6565b915050611b9e565b50808390806001815401808255809150506001900390600052602060002001600090919091909150555050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf2906141de565b60405180910390fd5b611d04816118ff565b15611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b9061424a565b60405180910390fd5b611d5060008383612523565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da091906137fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e6160008383612635565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f90906142b6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161208a9190612ba3565b60405180910390a3505050565b6120a2848484611b0a565b6120ae8484848461263a565b6120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490614348565b60405180910390fd5b50505050565b60606000820361213a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061224e565b600082905060005b6000821461216c578080612155906137b6565b915050600a826121659190614397565b9150612142565b60008167ffffffffffffffff81111561218857612187613002565b5b6040519080825280601f01601f1916602001820160405280156121ba5781602001600182028036833780820191505090505b5090505b60008514612247576001826121d3919061412f565b9150600a856121e291906143c8565b60306121ee91906137fe565b60f81b81838151811061220457612203613758565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122409190614397565b94506121be565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8273ffffffffffffffffffffffffffffffffffffffff166122dd82610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a9061446b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906144fd565b60405180910390fd5b6123ad838383612523565b6123b8600082611973565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612408919061412f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461245f91906137fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461251e838383612635565b505050565b61252e8383836127c1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125705761256b816127c6565b6125af565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125ae576125ad838261280f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125f1576125ec8161297c565b612630565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461262f5761262e8282612a4d565b5b5b505050565b505050565b600061265b8473ffffffffffffffffffffffffffffffffffffffff16612acc565b156127b4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261268461196b565b8786866040518563ffffffff1660e01b81526004016126a69493929190614572565b6020604051808303816000875af19250505080156126e257506040513d601f19601f820116820180604052508101906126df91906145d3565b60015b612764573d8060008114612712576040519150601f19603f3d011682016040523d82523d6000602084013e612717565b606091505b50600081510361275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614348565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161281c846111e6565b612826919061412f565b905060006007600084815260200190815260200160002054905081811461290b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612990919061412f565b90506000600960008481526020019081526020016000205490506000600883815481106129c0576129bf613758565b5b9060005260206000200154905080600883815481106129e2576129e1613758565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a3157612a30614163565b5b6001900381819060005260206000200160009055905550505050565b6000612a58836111e6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b3881612b03565b8114612b4357600080fd5b50565b600081359050612b5581612b2f565b92915050565b600060208284031215612b7157612b70612af9565b5b6000612b7f84828501612b46565b91505092915050565b60008115159050919050565b612b9d81612b88565b82525050565b6000602082019050612bb86000830184612b94565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bf8578082015181840152602081019050612bdd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c2082612bbe565b612c2a8185612bc9565b9350612c3a818560208601612bda565b612c4381612c04565b840191505092915050565b60006020820190508181036000830152612c688184612c15565b905092915050565b6000819050919050565b612c8381612c70565b8114612c8e57600080fd5b50565b600081359050612ca081612c7a565b92915050565b600060208284031215612cbc57612cbb612af9565b5b6000612cca84828501612c91565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cfe82612cd3565b9050919050565b612d0e81612cf3565b82525050565b6000602082019050612d296000830184612d05565b92915050565b612d3881612cf3565b8114612d4357600080fd5b50565b600081359050612d5581612d2f565b92915050565b60008060408385031215612d7257612d71612af9565b5b6000612d8085828601612d46565b9250506020612d9185828601612c91565b9150509250929050565b612da481612c70565b82525050565b6000602082019050612dbf6000830184612d9b565b92915050565b600080600060608486031215612dde57612ddd612af9565b5b6000612dec86828701612d46565b9350506020612dfd86828701612d46565b9250506040612e0e86828701612c91565b9150509250925092565b600060208284031215612e2e57612e2d612af9565b5b6000612e3c84828501612d46565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e7a81612c70565b82525050565b6000612e8c8383612e71565b60208301905092915050565b6000602082019050919050565b6000612eb082612e45565b612eba8185612e50565b9350612ec583612e61565b8060005b83811015612ef6578151612edd8882612e80565b9750612ee883612e98565b925050600181019050612ec9565b5085935050505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f3881612b88565b82525050565b6000612f4a8383612f2f565b60208301905092915050565b6000602082019050919050565b6000612f6e82612f03565b612f788185612f0e565b9350612f8383612f1f565b8060005b83811015612fb4578151612f9b8882612f3e565b9750612fa683612f56565b925050600181019050612f87565b5085935050505092915050565b60006040820190508181036000830152612fdb8185612ea5565b90508181036020830152612fef8184612f63565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61303a82612c04565b810181811067ffffffffffffffff8211171561305957613058613002565b5b80604052505050565b600061306c612aef565b90506130788282613031565b919050565b600067ffffffffffffffff82111561309857613097613002565b5b6130a182612c04565b9050602081019050919050565b82818337600083830152505050565b60006130d06130cb8461307d565b613062565b9050828152602081018484840111156130ec576130eb612ffd565b5b6130f78482856130ae565b509392505050565b600082601f83011261311457613113612ff8565b5b81356131248482602086016130bd565b91505092915050565b60006020828403121561314357613142612af9565b5b600082013567ffffffffffffffff81111561316157613160612afe565b5b61316d848285016130ff565b91505092915050565b61317f81612b88565b811461318a57600080fd5b50565b60008135905061319c81613176565b92915050565b600080604083850312156131b9576131b8612af9565b5b60006131c785828601612d46565b92505060206131d88582860161318d565b9150509250929050565b600067ffffffffffffffff8211156131fd576131fc613002565b5b61320682612c04565b9050602081019050919050565b6000613226613221846131e2565b613062565b90508281526020810184848401111561324257613241612ffd565b5b61324d8482856130ae565b509392505050565b600082601f83011261326a57613269612ff8565b5b813561327a848260208601613213565b91505092915050565b6000806000806080858703121561329d5761329c612af9565b5b60006132ab87828801612d46565b94505060206132bc87828801612d46565b93505060406132cd87828801612c91565b925050606085013567ffffffffffffffff8111156132ee576132ed612afe565b5b6132fa87828801613255565b91505092959194509250565b6000806040838503121561331d5761331c612af9565b5b600061332b85828601612d46565b925050602061333c85828601612d46565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061338d57607f821691505b6020821081036133a05761339f613346565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613402602c83612bc9565b915061340d826133a6565b604082019050919050565b60006020820190508181036000830152613431816133f5565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613494602183612bc9565b915061349f82613438565b604082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613526603883612bc9565b9150613531826134ca565b604082019050919050565b6000602082019050818103600083015261355581613519565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006135b8603183612bc9565b91506135c38261355c565b604082019050919050565b600060208201905081810360008301526135e7816135ab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613624602083612bc9565b915061362f826135ee565b602082019050919050565b6000602082019050818103600083015261365381613617565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613690601483612bc9565b915061369b8261365a565b602082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613722602b83612bc9565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137c182612c70565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137f3576137f2613787565b5b600182019050919050565b600061380982612c70565b915061381483612c70565b925082820190508082111561382c5761382b613787565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613868601283612bc9565b915061387382613832565b602082019050919050565b600060208201905081810360008301526138978161385b565b9050919050565b60006138a982612c70565b91506138b483612c70565b92508282026138c281612c70565b915082820484148315176138d9576138d8613787565b5b5092915050565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b6000613916601483612bc9565b9150613921826138e0565b602082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006139a8602c83612bc9565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a3a602983612bc9565b9150613a45826139de565b604082019050919050565b60006020820190508181036000830152613a6981613a2d565b9050919050565b600081905092915050565b50565b6000613a8b600083613a70565b9150613a9682613a7b565b600082019050919050565b6000613aac82613a7e565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613b187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613adb565b613b228683613adb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b5f613b5a613b5584612c70565b613b3a565b612c70565b9050919050565b6000819050919050565b613b7983613b44565b613b8d613b8582613b66565b848454613ae8565b825550505050565b600090565b613ba2613b95565b613bad818484613b70565b505050565b5b81811015613bd157613bc6600082613b9a565b600181019050613bb3565b5050565b601f821115613c1657613be781613ab6565b613bf084613acb565b81016020851015613bff578190505b613c13613c0b85613acb565b830182613bb2565b50505b505050565b600082821c905092915050565b6000613c3960001984600802613c1b565b1980831691505092915050565b6000613c528383613c28565b9150826002028217905092915050565b613c6b82612bbe565b67ffffffffffffffff811115613c8457613c83613002565b5b613c8e8254613375565b613c99828285613bd5565b600060209050601f831160018114613ccc5760008415613cba578287015190505b613cc48582613c46565b865550613d2c565b601f198416613cda86613ab6565b60005b82811015613d0257848901518255600182019150602085019450602081019050613cdd565b86831015613d1f5784890151613d1b601f891682613c28565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613d90602a83612bc9565b9150613d9b82613d34565b604082019050919050565b60006020820190508181036000830152613dbf81613d83565b9050919050565b7f746f6b656e496420646f6573206e6f7420657869737400000000000000000000600082015250565b6000613dfc601683612bc9565b9150613e0782613dc6565b602082019050919050565b60006020820190508181036000830152613e2b81613def565b9050919050565b600081905092915050565b60008154613e4a81613375565b613e548186613e32565b94506001821660008114613e6f5760018114613e8457613eb7565b60ff1983168652811515820286019350613eb7565b613e8d85613ab6565b60005b83811015613eaf57815481890152600182019150602081019050613e90565b838801955050505b50505092915050565b6000613ecb82612bbe565b613ed58185613e32565b9350613ee5818560208601612bda565b80840191505092915050565b6000613efd8285613e3d565b9150613f098284613ec0565b91508190509392505050565b7f2f4e465452656465656d65640000000000000000000000000000000000000000600082015250565b6000613f4b600c83613e32565b9150613f5682613f15565b600c82019050919050565b6000613f6d8285613e3d565b9150613f798284613ec0565b9150613f8482613f3e565b91508190509392505050565b7f2f4e46544e6f52656465656d6564000000000000000000000000000000000000600082015250565b6000613fc6600e83613e32565b9150613fd182613f90565b600e82019050919050565b6000613fe88285613e3d565b9150613ff48284613ec0565b9150613fff82613fb9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614067602683612bc9565b91506140728261400b565b604082019050919050565b600060208201905081810360008301526140968161405a565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006140f9602c83612bc9565b91506141048261409d565b604082019050919050565b60006020820190508181036000830152614128816140ec565b9050919050565b600061413a82612c70565b915061414583612c70565b925082820390508181111561415d5761415c613787565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141c8602083612bc9565b91506141d382614192565b602082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614234601c83612bc9565b915061423f826141fe565b602082019050919050565b6000602082019050818103600083015261426381614227565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142a0601983612bc9565b91506142ab8261426a565b602082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614332603283612bc9565b915061433d826142d6565b604082019050919050565b6000602082019050818103600083015261436181614325565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a282612c70565b91506143ad83612c70565b9250826143bd576143bc614368565b5b828204905092915050565b60006143d382612c70565b91506143de83612c70565b9250826143ee576143ed614368565b5b828206905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614455602583612bc9565b9150614460826143f9565b604082019050919050565b6000602082019050818103600083015261448481614448565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144e7602483612bc9565b91506144f28261448b565b604082019050919050565b60006020820190508181036000830152614516816144da565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006145448261451d565b61454e8185614528565b935061455e818560208601612bda565b61456781612c04565b840191505092915050565b60006080820190506145876000830187612d05565b6145946020830186612d05565b6145a16040830185612d9b565b81810360608301526145b38184614539565b905095945050505050565b6000815190506145cd81612b2f565b92915050565b6000602082840312156145e9576145e8612af9565b5b60006145f7848285016145be565b9150509291505056fea2646970667358221220ed029ae681e3ed3c221c8eebd26738ac8f24abb7f4076b2a6a6c585ac36bfa1b64736f6c63430008120033697066733a2f2f62616679626569656e6f346575346176617069327567627867766a7a7066686770683466326f766534636a70776c747365636b696c736c75786d712f756e72657665616c65643f746f6b656e49643d697066733a2f2f62616679626569656e6f346575346176617069327567627867766a7a7066686770683466326f766534636a70776c747365636b696c736c75786d712f72657665616c65642f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063639251b2116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610678578063e185a2cc146106a3578063e985e9c5146106cc578063f2fde38b14610709576101cd565b8063a22cb465146105be578063a2309ff8146105e7578063b88d4fde14610612578063c87b56dd1461063b576101cd565b8063715018a6116100d1578063715018a6146105285780638417b47f1461053f5780638da5cb5b1461056857806395d89b4114610593576101cd565b8063639251b2146104ab5780636e83843a146104c257806370a08231146104eb576101cd565b80632f745c591161016f57806340c10f191161013e57806340c10f19146103ec57806342842e0e146104085780634f6ccce7146104315780636352211e1461046e576101cd565b80632f745c591461031d57806331d68c9f1461035a57806335db70b51461038357806340398d67146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632bac3b51146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612b5b565b610732565b6040516102069190612ba3565b60405180910390f35b34801561021b57600080fd5b506102246107ac565b6040516102319190612c4e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ca6565b61083e565b60405161026e9190612d14565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d5b565b6108c3565b005b3480156102ac57600080fd5b506102b56109da565b6040516102c29190612daa565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612dc5565b6109e7565b005b34801561030057600080fd5b5061031b60048036038101906103169190612ca6565b610a47565b005b34801561032957600080fd5b50610344600480360381019061033f9190612d5b565b610b3a565b6040516103519190612daa565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612ca6565b610bdf565b005b34801561038f57600080fd5b50610398610c65565b6040516103a59190612daa565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190612e18565b610c6b565b6040516103e3929190612fc1565b60405180910390f35b61040660048036038101906104019190612d5b565b610ddb565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612dc5565b610f2e565b005b34801561043d57600080fd5b5061045860048036038101906104539190612ca6565b610f4e565b6040516104659190612daa565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612ca6565b610fbf565b6040516104a29190612d14565b60405180910390f35b3480156104b757600080fd5b506104c0611070565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061312d565b611157565b005b3480156104f757600080fd5b50610512600480360381019061050d9190612e18565b6111e6565b60405161051f9190612daa565b60405180910390f35b34801561053457600080fd5b5061053d61129d565b005b34801561054b57600080fd5b5061056660048036038101906105619190612ca6565b611325565b005b34801561057457600080fd5b5061057d6113ab565b60405161058a9190612d14565b60405180910390f35b34801561059f57600080fd5b506105a86113d5565b6040516105b59190612c4e565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906131a2565b611467565b005b3480156105f357600080fd5b506105fc61147d565b6040516106099190612daa565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613283565b611483565b005b34801561064757600080fd5b50610662600480360381019061065d9190612ca6565b6114e5565b60405161066f9190612c4e565b60405180910390f35b34801561068457600080fd5b5061068d6115fd565b60405161069a9190612daa565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061312d565b611603565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613306565b611692565b6040516107009190612ba3565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612e18565b611726565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a557506107a48261181d565b5b9050919050565b6060600080546107bb90613375565b80601f01602080910402602001604051908101604052809291908181526020018280546107e790613375565b80156108345780601f1061080957610100808354040283529160200191610834565b820191906000526020600020905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b6000610849826118ff565b610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90613418565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ce82610fbf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610935906134aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095d61196b565b73ffffffffffffffffffffffffffffffffffffffff16148061098c575061098b8161098661196b565b611692565b5b6109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c29061353c565b60405180910390fd5b6109d58383611973565b505050565b6000600880549050905090565b6109f86109f261196b565b82611a2c565b610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906135ce565b60405180910390fd5b610a42838383611b0a565b505050565b610a4f61196b565b73ffffffffffffffffffffffffffffffffffffffff16610a6d6113ab565b73ffffffffffffffffffffffffffffffffffffffff1614610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba9061363a565b60405180910390fd5b610acc816118ff565b610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906136a6565b60405180910390fd5b60016010600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610b45836111e6565b8210610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90613738565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610be761196b565b73ffffffffffffffffffffffffffffffffffffffff16610c056113ab565b73ffffffffffffffffffffffffffffffffffffffff1614610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061363a565b60405180910390fd5b80600d8190555050565b600b5481565b6060806000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610cf957602002820191906000526020600020905b815481526020019060010190808311610ce5575b505050505090506000815167ffffffffffffffff811115610d1d57610d1c613002565b5b604051908082528060200260200182016040528015610d4b5781602001602082028036833780820191505090505b50905060005b8251811015610dcd5760106000848381518110610d7157610d70613758565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16828281518110610da857610da7613758565b5b6020026020010190151590811515815250508080610dc5906137b6565b915050610d51565b508181935093505050915091565b611d0081610de76109da565b610df191906137fe565b1115610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061387e565b60405180910390fd5b80600b54610e40919061389e565b341015610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e799061392c565b60405180910390fd5b60005b81811015610f295760006001610e996109da565b610ea391906137fe565b9050610eaf8482611c8c565b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055508080610f21906137b6565b915050610e85565b505050565b610f4983838360405180602001604052806000815250611483565b505050565b6000610f586109da565b8210610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f90906139be565b60405180910390fd5b60088281548110610fad57610fac613758565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90613a50565b60405180910390fd5b80915050919050565b61107861196b565b73ffffffffffffffffffffffffffffffffffffffff166110966113ab565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e39061363a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff164760405161111090613aa1565b60006040518083038185875af1925050503d806000811461114d576040519150601f19603f3d011682016040523d82523d6000602084013e611152565b606091505b505050565b61115f61196b565b73ffffffffffffffffffffffffffffffffffffffff1661117d6113ab565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061363a565b60405180910390fd5b80600e90816111e29190613c62565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613da6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a561196b565b73ffffffffffffffffffffffffffffffffffffffff166112c36113ab565b73ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113109061363a565b60405180910390fd5b6113236000611e65565b565b61132d61196b565b73ffffffffffffffffffffffffffffffffffffffff1661134b6113ab565b73ffffffffffffffffffffffffffffffffffffffff16146113a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113989061363a565b60405180910390fd5b80600b8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113e490613375565b80601f016020809104026020016040519081016040528092919081815260200182805461141090613375565b801561145d5780601f106114325761010080835404028352916020019161145d565b820191906000526020600020905b81548152906001019060200180831161144057829003601f168201915b5050505050905090565b61147961147261196b565b8383611f2b565b5050565b600c5481565b61149461148e61196b565b83611a2c565b6114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca906135ce565b60405180910390fd5b6114df84848484612097565b50505050565b60606114f0826118ff565b61152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613e12565b60405180910390fd5b600d5482111561156b57600f611544836120f3565b604051602001611555929190613ef1565b60405160208183030381529060405290506115f8565b60006010600084815260200190815260200160002060009054906101000a900460ff16905080156115c957600e6115a1846120f3565b6040516020016115b2929190613f61565b6040516020818303038152906040529150506115f8565b600e6115d4846120f3565b6040516020016115e5929190613fdc565b6040516020818303038152906040529150505b919050565b611d0081565b61160b61196b565b73ffffffffffffffffffffffffffffffffffffffff166116296113ab565b73ffffffffffffffffffffffffffffffffffffffff161461167f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116769061363a565b60405180910390fd5b80600f908161168e9190613c62565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61172e61196b565b73ffffffffffffffffffffffffffffffffffffffff1661174c6113ab565b73ffffffffffffffffffffffffffffffffffffffff16146117a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117999061363a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118089061407d565b60405180910390fd5b61181a81611e65565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118f857506118f782612253565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119e683610fbf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a37826118ff565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061410f565b60405180910390fd5b6000611a8183610fbf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ac35750611ac28185611692565b5b80611b0157508373ffffffffffffffffffffffffffffffffffffffff16611ae98461083e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b611b158383836122bd565b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060005b8280549050811015611c5c5783838281548110611bbe57611bbd613758565b5b906000526020600020015403611c49578260018480549050611be0919061412f565b81548110611bf157611bf0613758565b5b9060005260206000200154838281548110611c0f57611c0e613758565b5b906000526020600020018190555082805480611c2e57611c2d614163565b5b60019003818190600052602060002001600090559055611c5c565b8080611c54906137b6565b915050611b9e565b50808390806001815401808255809150506001900390600052602060002001600090919091909150555050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf2906141de565b60405180910390fd5b611d04816118ff565b15611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b9061424a565b60405180910390fd5b611d5060008383612523565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da091906137fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e6160008383612635565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f90906142b6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161208a9190612ba3565b60405180910390a3505050565b6120a2848484611b0a565b6120ae8484848461263a565b6120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490614348565b60405180910390fd5b50505050565b60606000820361213a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061224e565b600082905060005b6000821461216c578080612155906137b6565b915050600a826121659190614397565b9150612142565b60008167ffffffffffffffff81111561218857612187613002565b5b6040519080825280601f01601f1916602001820160405280156121ba5781602001600182028036833780820191505090505b5090505b60008514612247576001826121d3919061412f565b9150600a856121e291906143c8565b60306121ee91906137fe565b60f81b81838151811061220457612203613758565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122409190614397565b94506121be565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8273ffffffffffffffffffffffffffffffffffffffff166122dd82610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a9061446b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906144fd565b60405180910390fd5b6123ad838383612523565b6123b8600082611973565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612408919061412f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461245f91906137fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461251e838383612635565b505050565b61252e8383836127c1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125705761256b816127c6565b6125af565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125ae576125ad838261280f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125f1576125ec8161297c565b612630565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461262f5761262e8282612a4d565b5b5b505050565b505050565b600061265b8473ffffffffffffffffffffffffffffffffffffffff16612acc565b156127b4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261268461196b565b8786866040518563ffffffff1660e01b81526004016126a69493929190614572565b6020604051808303816000875af19250505080156126e257506040513d601f19601f820116820180604052508101906126df91906145d3565b60015b612764573d8060008114612712576040519150601f19603f3d011682016040523d82523d6000602084013e612717565b606091505b50600081510361275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614348565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161281c846111e6565b612826919061412f565b905060006007600084815260200190815260200160002054905081811461290b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612990919061412f565b90506000600960008481526020019081526020016000205490506000600883815481106129c0576129bf613758565b5b9060005260206000200154905080600883815481106129e2576129e1613758565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a3157612a30614163565b5b6001900381819060005260206000200160009055905550505050565b6000612a58836111e6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b3881612b03565b8114612b4357600080fd5b50565b600081359050612b5581612b2f565b92915050565b600060208284031215612b7157612b70612af9565b5b6000612b7f84828501612b46565b91505092915050565b60008115159050919050565b612b9d81612b88565b82525050565b6000602082019050612bb86000830184612b94565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bf8578082015181840152602081019050612bdd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c2082612bbe565b612c2a8185612bc9565b9350612c3a818560208601612bda565b612c4381612c04565b840191505092915050565b60006020820190508181036000830152612c688184612c15565b905092915050565b6000819050919050565b612c8381612c70565b8114612c8e57600080fd5b50565b600081359050612ca081612c7a565b92915050565b600060208284031215612cbc57612cbb612af9565b5b6000612cca84828501612c91565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cfe82612cd3565b9050919050565b612d0e81612cf3565b82525050565b6000602082019050612d296000830184612d05565b92915050565b612d3881612cf3565b8114612d4357600080fd5b50565b600081359050612d5581612d2f565b92915050565b60008060408385031215612d7257612d71612af9565b5b6000612d8085828601612d46565b9250506020612d9185828601612c91565b9150509250929050565b612da481612c70565b82525050565b6000602082019050612dbf6000830184612d9b565b92915050565b600080600060608486031215612dde57612ddd612af9565b5b6000612dec86828701612d46565b9350506020612dfd86828701612d46565b9250506040612e0e86828701612c91565b9150509250925092565b600060208284031215612e2e57612e2d612af9565b5b6000612e3c84828501612d46565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e7a81612c70565b82525050565b6000612e8c8383612e71565b60208301905092915050565b6000602082019050919050565b6000612eb082612e45565b612eba8185612e50565b9350612ec583612e61565b8060005b83811015612ef6578151612edd8882612e80565b9750612ee883612e98565b925050600181019050612ec9565b5085935050505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f3881612b88565b82525050565b6000612f4a8383612f2f565b60208301905092915050565b6000602082019050919050565b6000612f6e82612f03565b612f788185612f0e565b9350612f8383612f1f565b8060005b83811015612fb4578151612f9b8882612f3e565b9750612fa683612f56565b925050600181019050612f87565b5085935050505092915050565b60006040820190508181036000830152612fdb8185612ea5565b90508181036020830152612fef8184612f63565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61303a82612c04565b810181811067ffffffffffffffff8211171561305957613058613002565b5b80604052505050565b600061306c612aef565b90506130788282613031565b919050565b600067ffffffffffffffff82111561309857613097613002565b5b6130a182612c04565b9050602081019050919050565b82818337600083830152505050565b60006130d06130cb8461307d565b613062565b9050828152602081018484840111156130ec576130eb612ffd565b5b6130f78482856130ae565b509392505050565b600082601f83011261311457613113612ff8565b5b81356131248482602086016130bd565b91505092915050565b60006020828403121561314357613142612af9565b5b600082013567ffffffffffffffff81111561316157613160612afe565b5b61316d848285016130ff565b91505092915050565b61317f81612b88565b811461318a57600080fd5b50565b60008135905061319c81613176565b92915050565b600080604083850312156131b9576131b8612af9565b5b60006131c785828601612d46565b92505060206131d88582860161318d565b9150509250929050565b600067ffffffffffffffff8211156131fd576131fc613002565b5b61320682612c04565b9050602081019050919050565b6000613226613221846131e2565b613062565b90508281526020810184848401111561324257613241612ffd565b5b61324d8482856130ae565b509392505050565b600082601f83011261326a57613269612ff8565b5b813561327a848260208601613213565b91505092915050565b6000806000806080858703121561329d5761329c612af9565b5b60006132ab87828801612d46565b94505060206132bc87828801612d46565b93505060406132cd87828801612c91565b925050606085013567ffffffffffffffff8111156132ee576132ed612afe565b5b6132fa87828801613255565b91505092959194509250565b6000806040838503121561331d5761331c612af9565b5b600061332b85828601612d46565b925050602061333c85828601612d46565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061338d57607f821691505b6020821081036133a05761339f613346565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613402602c83612bc9565b915061340d826133a6565b604082019050919050565b60006020820190508181036000830152613431816133f5565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613494602183612bc9565b915061349f82613438565b604082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613526603883612bc9565b9150613531826134ca565b604082019050919050565b6000602082019050818103600083015261355581613519565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006135b8603183612bc9565b91506135c38261355c565b604082019050919050565b600060208201905081810360008301526135e7816135ab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613624602083612bc9565b915061362f826135ee565b602082019050919050565b6000602082019050818103600083015261365381613617565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613690601483612bc9565b915061369b8261365a565b602082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613722602b83612bc9565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137c182612c70565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137f3576137f2613787565b5b600182019050919050565b600061380982612c70565b915061381483612c70565b925082820190508082111561382c5761382b613787565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613868601283612bc9565b915061387382613832565b602082019050919050565b600060208201905081810360008301526138978161385b565b9050919050565b60006138a982612c70565b91506138b483612c70565b92508282026138c281612c70565b915082820484148315176138d9576138d8613787565b5b5092915050565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b6000613916601483612bc9565b9150613921826138e0565b602082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006139a8602c83612bc9565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a3a602983612bc9565b9150613a45826139de565b604082019050919050565b60006020820190508181036000830152613a6981613a2d565b9050919050565b600081905092915050565b50565b6000613a8b600083613a70565b9150613a9682613a7b565b600082019050919050565b6000613aac82613a7e565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613b187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613adb565b613b228683613adb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b5f613b5a613b5584612c70565b613b3a565b612c70565b9050919050565b6000819050919050565b613b7983613b44565b613b8d613b8582613b66565b848454613ae8565b825550505050565b600090565b613ba2613b95565b613bad818484613b70565b505050565b5b81811015613bd157613bc6600082613b9a565b600181019050613bb3565b5050565b601f821115613c1657613be781613ab6565b613bf084613acb565b81016020851015613bff578190505b613c13613c0b85613acb565b830182613bb2565b50505b505050565b600082821c905092915050565b6000613c3960001984600802613c1b565b1980831691505092915050565b6000613c528383613c28565b9150826002028217905092915050565b613c6b82612bbe565b67ffffffffffffffff811115613c8457613c83613002565b5b613c8e8254613375565b613c99828285613bd5565b600060209050601f831160018114613ccc5760008415613cba578287015190505b613cc48582613c46565b865550613d2c565b601f198416613cda86613ab6565b60005b82811015613d0257848901518255600182019150602085019450602081019050613cdd565b86831015613d1f5784890151613d1b601f891682613c28565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613d90602a83612bc9565b9150613d9b82613d34565b604082019050919050565b60006020820190508181036000830152613dbf81613d83565b9050919050565b7f746f6b656e496420646f6573206e6f7420657869737400000000000000000000600082015250565b6000613dfc601683612bc9565b9150613e0782613dc6565b602082019050919050565b60006020820190508181036000830152613e2b81613def565b9050919050565b600081905092915050565b60008154613e4a81613375565b613e548186613e32565b94506001821660008114613e6f5760018114613e8457613eb7565b60ff1983168652811515820286019350613eb7565b613e8d85613ab6565b60005b83811015613eaf57815481890152600182019150602081019050613e90565b838801955050505b50505092915050565b6000613ecb82612bbe565b613ed58185613e32565b9350613ee5818560208601612bda565b80840191505092915050565b6000613efd8285613e3d565b9150613f098284613ec0565b91508190509392505050565b7f2f4e465452656465656d65640000000000000000000000000000000000000000600082015250565b6000613f4b600c83613e32565b9150613f5682613f15565b600c82019050919050565b6000613f6d8285613e3d565b9150613f798284613ec0565b9150613f8482613f3e565b91508190509392505050565b7f2f4e46544e6f52656465656d6564000000000000000000000000000000000000600082015250565b6000613fc6600e83613e32565b9150613fd182613f90565b600e82019050919050565b6000613fe88285613e3d565b9150613ff48284613ec0565b9150613fff82613fb9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614067602683612bc9565b91506140728261400b565b604082019050919050565b600060208201905081810360008301526140968161405a565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006140f9602c83612bc9565b91506141048261409d565b604082019050919050565b60006020820190508181036000830152614128816140ec565b9050919050565b600061413a82612c70565b915061414583612c70565b925082820390508181111561415d5761415c613787565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141c8602083612bc9565b91506141d382614192565b602082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614234601c83612bc9565b915061423f826141fe565b602082019050919050565b6000602082019050818103600083015261426381614227565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142a0601983612bc9565b91506142ab8261426a565b602082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614332603283612bc9565b915061433d826142d6565b604082019050919050565b6000602082019050818103600083015261436181614325565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a282612c70565b91506143ad83612c70565b9250826143bd576143bc614368565b5b828204905092915050565b60006143d382612c70565b91506143de83612c70565b9250826143ee576143ed614368565b5b828206905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614455602583612bc9565b9150614460826143f9565b604082019050919050565b6000602082019050818103600083015261448481614448565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144e7602483612bc9565b91506144f28261448b565b604082019050919050565b60006020820190508181036000830152614516816144da565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006145448261451d565b61454e8185614528565b935061455e818560208601612bda565b61456781612c04565b840191505092915050565b60006080820190506145876000830187612d05565b6145946020830186612d05565b6145a16040830185612d9b565b81810360608301526145b38184614539565b905095945050505050565b6000815190506145cd81612b2f565b92915050565b6000602082840312156145e9576145e8612af9565b5b60006145f7848285016145be565b9150509291505056fea2646970667358221220ed029ae681e3ed3c221c8eebd26738ac8f24abb7f4076b2a6a6c585ac36bfa1b64736f6c63430008120033

Deployed Bytecode Sourcemap

52552:4286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39384:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26203:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27763:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27286:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40024:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28513:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54571:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39692:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56141:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52684:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54748:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;53357:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28923:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40214:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25897:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56694:141;;;;;;;;;;;;;:::i;:::-;;56256:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25627:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4761:103;;;;;;;;;;;;;:::i;:::-;;56580:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4110:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26372:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28056:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52718:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29179:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55165:964;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52637:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56417:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28282:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5019:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39384:224;39486:4;39525:35;39510:50;;;:11;:50;;;;:90;;;;39564:36;39588:11;39564:23;:36::i;:::-;39510:90;39503:97;;39384:224;;;:::o;26203:100::-;26257:13;26290:5;26283:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26203:100;:::o;27763:221::-;27839:7;27867:16;27875:7;27867;:16::i;:::-;27859:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27952:15;:24;27968:7;27952:24;;;;;;;;;;;;;;;;;;;;;27945:31;;27763:221;;;:::o;27286:411::-;27367:13;27383:23;27398:7;27383:14;:23::i;:::-;27367:39;;27431:5;27425:11;;:2;:11;;;27417:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27525:5;27509:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27534:37;27551:5;27558:12;:10;:12::i;:::-;27534:16;:37::i;:::-;27509:62;27487:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27668:21;27677:2;27681:7;27668:8;:21::i;:::-;27356:341;27286:411;;:::o;40024:113::-;40085:7;40112:10;:17;;;;40105:24;;40024:113;:::o;28513:339::-;28708:41;28727:12;:10;:12::i;:::-;28741:7;28708:18;:41::i;:::-;28700:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28816:28;28826:4;28832:2;28836:7;28816:9;:28::i;:::-;28513:339;;;:::o;54571:169::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54650:16:::1;54658:7;54650;:16::i;:::-;54642:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;54728:4;54702:14;:23;54717:7;54702:23;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;54571:169:::0;:::o;39692:256::-;39789:7;39825:23;39842:5;39825:16;:23::i;:::-;39817:5;:31;39809:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39914:12;:19;39927:5;39914:19;;;;;;;;;;;;;;;:26;39934:5;39914:26;;;;;;;;;;;;39907:33;;39692:256;;;;:::o;56141:105::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56231:7:::1;56214:14;:24;;;;56141:105:::0;:::o;52684:27::-;;;;:::o;54748:409::-;54812:16;54830:13;54856:25;54884:14;:21;54899:5;54884:21;;;;;;;;;;;;;;;54856:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54916:27;54957:8;:15;54946:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54916:57;;54991:9;54986:119;55010:8;:15;55006:1;:19;54986:119;;;55066:14;:27;55081:8;55090:1;55081:11;;;;;;;;:::i;:::-;;;;;;;;55066:27;;;;;;;;;;;;;;;;;;;;;55047:13;55061:1;55047:16;;;;;;;;:::i;:::-;;;;;;;:46;;;;;;;;;;;55027:3;;;;;:::i;:::-;;;;54986:119;;;;55125:8;55135:13;55117:32;;;;;;54748:409;;;:::o;53357:446::-;52673:4;53451:6;53435:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;53427:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;53540:6;53525:12;;:21;;;;:::i;:::-;53512:9;:34;;53504:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;53589:9;53584:212;53608:6;53604:1;:10;53584:212;;;53636:15;53670:1;53654:13;:11;:13::i;:::-;:17;;;;:::i;:::-;53636:35;;53719:18;53725:2;53729:7;53719:5;:18::i;:::-;53752:14;:18;53767:2;53752:18;;;;;;;;;;;;;;;53776:7;53752:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53621:175;53616:3;;;;;:::i;:::-;;;;53584:212;;;;53357:446;;:::o;28923:185::-;29061:39;29078:4;29084:2;29088:7;29061:39;;;;;;;;;;;;:16;:39::i;:::-;28923:185;;;:::o;40214:233::-;40289:7;40325:30;:28;:30::i;:::-;40317:5;:38;40309:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40422:10;40433:5;40422:17;;;;;;;;:::i;:::-;;;;;;;;;;40415:24;;40214:233;;;:::o;25897:239::-;25969:7;25989:13;26005:7;:16;26013:7;26005:16;;;;;;;;;;;;;;;;;;;;;25989:32;;26057:1;26040:19;;:5;:19;;;26032:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26123:5;26116:12;;;25897:239;;;:::o;56694:141::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56753:10:::1;:15;;56776:21;56753:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56694:141::o:0;56256:153::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56383:18:::1;56364:16;:37;;;;;;:::i;:::-;;56256:153:::0;:::o;25627:208::-;25699:7;25744:1;25727:19;;:5;:19;;;25719:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25811:9;:16;25821:5;25811:16;;;;;;;;;;;;;;;;25804:23;;25627:208;;;:::o;4761:103::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4826:30:::1;4853:1;4826:18;:30::i;:::-;4761:103::o:0;56580:104::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56668:8:::1;56653:12;:23;;;;56580:104:::0;:::o;4110:87::-;4156:7;4183:6;;;;;;;;;;;4176:13;;4110:87;:::o;26372:104::-;26428:13;26461:7;26454:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26372:104;:::o;28056:155::-;28151:52;28170:12;:10;:12::i;:::-;28184:8;28194;28151:18;:52::i;:::-;28056:155;;:::o;52718:26::-;;;;:::o;29179:328::-;29354:41;29373:12;:10;:12::i;:::-;29387:7;29354:18;:41::i;:::-;29346:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29460:39;29474:4;29480:2;29484:7;29493:5;29460:13;:39::i;:::-;29179:328;;;;:::o;55165:964::-;55246:13;55280:16;55288:7;55280;:16::i;:::-;55272:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;55348:14;;55338:7;:24;55334:185;;;55449:18;55469;:7;:16;:18::i;:::-;55432:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55379:128;;;;55334:185;55529:15;55547:14;:23;55562:7;55547:23;;;;;;;;;;;;;;;;;;;;;55529:41;;55585:10;55581:540;;;55706:16;55749:18;:7;:16;:18::i;:::-;55663:168;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55610:240;;;;;55581:540;55975:16;56018:18;:7;:16;:18::i;:::-;55932:170;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55879:242;;;55165:964;;;;:::o;52637:40::-;52673:4;52637:40;:::o;56417:153::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56546:16:::1;56525:18;:37;;;;;;:::i;:::-;;56417:153:::0;:::o;28282:164::-;28379:4;28403:18;:25;28422:5;28403:25;;;;;;;;;;;;;;;:35;28429:8;28403:35;;;;;;;;;;;;;;;;;;;;;;;;;28396:42;;28282:164;;;;:::o;5019:201::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5128:1:::1;5108:22;;:8;:22;;::::0;5100:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5184:28;5203:8;5184:18;:28::i;:::-;5019:201:::0;:::o;25258:305::-;25360:4;25412:25;25397:40;;;:11;:40;;;;:105;;;;25469:33;25454:48;;;:11;:48;;;;25397:105;:158;;;;25519:36;25543:11;25519:23;:36::i;:::-;25397:158;25377:178;;25258:305;;;:::o;31017:127::-;31082:4;31134:1;31106:30;;:7;:16;31114:7;31106:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31099:37;;31017:127;;;:::o;2834:98::-;2887:7;2914:10;2907:17;;2834:98;:::o;35163:174::-;35265:2;35238:15;:24;35254:7;35238:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35321:7;35317:2;35283:46;;35292:23;35307:7;35292:14;:23::i;:::-;35283:46;;;;;;;;;;;;35163:174;;:::o;31311:348::-;31404:4;31429:16;31437:7;31429;:16::i;:::-;31421:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31505:13;31521:23;31536:7;31521:14;:23::i;:::-;31505:39;;31574:5;31563:16;;:7;:16;;;:52;;;;31583:32;31600:5;31607:7;31583:16;:32::i;:::-;31563:52;:87;;;;31643:7;31619:31;;:20;31631:7;31619:11;:20::i;:::-;:31;;;31563:87;31555:96;;;31311:348;;;;:::o;53807:754::-;53898:34;53914:4;53920:2;53924:7;53898:15;:34::i;:::-;53992:30;54025:14;:20;54040:4;54025:20;;;;;;;;;;;;;;;53992:53;;54056:28;54087:14;:18;54102:2;54087:18;;;;;;;;;;;;;;;54056:49;;54123:9;54118:339;54142:12;:19;;;;54138:1;:23;54118:339;;;54206:7;54187:12;54200:1;54187:15;;;;;;;;:::i;:::-;;;;;;;;;;:26;54183:263;;54332:12;54367:1;54345:12;:19;;;;:23;;;;:::i;:::-;54332:37;;;;;;;;:::i;:::-;;;;;;;;;;54314:12;54327:1;54314:15;;;;;;;;:::i;:::-;;;;;;;;;:55;;;;54388:12;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54425:5;;54183:263;54163:3;;;;;:::i;:::-;;;;54118:339;;;;54469:10;54485:7;54469:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53887:674;;53807:754;;;:::o;32995:439::-;33089:1;33075:16;;:2;:16;;;33067:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33148:16;33156:7;33148;:16::i;:::-;33147:17;33139:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33210:45;33239:1;33243:2;33247:7;33210:20;:45::i;:::-;33285:1;33268:9;:13;33278:2;33268:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33316:2;33297:7;:16;33305:7;33297:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33361:7;33357:2;33336:33;;33353:1;33336:33;;;;;;;;;;;;33382:44;33410:1;33414:2;33418:7;33382:19;:44::i;:::-;32995:439;;:::o;5380:191::-;5454:16;5473:6;;;;;;;;;;;5454:25;;5499:8;5490:6;;:17;;;;;;;;;;;;;;;;;;5554:8;5523:40;;5544:8;5523:40;;;;;;;;;;;;5443:128;5380:191;:::o;35479:315::-;35634:8;35625:17;;:5;:17;;;35617:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35721:8;35683:18;:25;35702:5;35683:25;;;;;;;;;;;;;;;:35;35709:8;35683:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35767:8;35745:41;;35760:5;35745:41;;;35777:8;35745:41;;;;;;:::i;:::-;;;;;;;;35479:315;;;:::o;30389:::-;30546:28;30556:4;30562:2;30566:7;30546:9;:28::i;:::-;30593:48;30616:4;30622:2;30626:7;30635:5;30593:22;:48::i;:::-;30585:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30389:315;;;;:::o;396:723::-;452:13;682:1;673:5;:10;669:53;;700:10;;;;;;;;;;;;;;;;;;;;;669:53;732:12;747:5;732:20;;763:14;788:78;803:1;795:4;:9;788:78;;821:8;;;;;:::i;:::-;;;;852:2;844:10;;;;;:::i;:::-;;;788:78;;;876:19;908:6;898:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:39;;926:154;942:1;933:5;:10;926:154;;970:1;960:11;;;;;:::i;:::-;;;1037:2;1029:5;:10;;;;:::i;:::-;1016:2;:24;;;;:::i;:::-;1003:39;;986:6;993;986:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1066:2;1057:11;;;;;:::i;:::-;;;926:154;;;1104:6;1090:21;;;;;396:723;;;;:::o;16917:157::-;17002:4;17041:25;17026:40;;;:11;:40;;;;17019:47;;16917:157;;;:::o;34420:625::-;34579:4;34552:31;;:23;34567:7;34552:14;:23::i;:::-;:31;;;34544:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34658:1;34644:16;;:2;:16;;;34636:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34714:39;34735:4;34741:2;34745:7;34714:20;:39::i;:::-;34818:29;34835:1;34839:7;34818:8;:29::i;:::-;34879:1;34860:9;:15;34870:4;34860:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34908:1;34891:9;:13;34901:2;34891:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34939:2;34920:7;:16;34928:7;34920:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34978:7;34974:2;34959:27;;34968:4;34959:27;;;;;;;;;;;;34999:38;35019:4;35025:2;35029:7;34999:19;:38::i;:::-;34420:625;;;:::o;41060:589::-;41204:45;41231:4;41237:2;41241:7;41204:26;:45::i;:::-;41282:1;41266:18;;:4;:18;;;41262:187;;41301:40;41333:7;41301:31;:40::i;:::-;41262:187;;;41371:2;41363:10;;:4;:10;;;41359:90;;41390:47;41423:4;41429:7;41390:32;:47::i;:::-;41359:90;41262:187;41477:1;41463:16;;:2;:16;;;41459:183;;41496:45;41533:7;41496:36;:45::i;:::-;41459:183;;;41569:4;41563:10;;:2;:10;;;41559:83;;41590:40;41618:2;41622:7;41590:27;:40::i;:::-;41559:83;41459:183;41060:589;;;:::o;38241:125::-;;;;:::o;36359:799::-;36514:4;36535:15;:2;:13;;;:15::i;:::-;36531:620;;;36587:2;36571:36;;;36608:12;:10;:12::i;:::-;36622:4;36628:7;36637:5;36571:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36567:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36830:1;36813:6;:13;:18;36809:272;;36856:60;;;;;;;;;;:::i;:::-;;;;;;;;36809:272;37031:6;37025:13;37016:6;37012:2;37008:15;37001:38;36567:529;36704:41;;;36694:51;;;:6;:51;;;;36687:58;;;;;36531:620;37135:4;37128:11;;36359:799;;;;;;;:::o;37730:126::-;;;;:::o;42372:164::-;42476:10;:17;;;;42449:15;:24;42465:7;42449:24;;;;;;;;;;;:44;;;;42504:10;42520:7;42504:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42372:164;:::o;43163:988::-;43429:22;43479:1;43454:22;43471:4;43454:16;:22::i;:::-;:26;;;;:::i;:::-;43429:51;;43491:18;43512:17;:26;43530:7;43512:26;;;;;;;;;;;;43491:47;;43659:14;43645:10;:28;43641:328;;43690:19;43712:12;:18;43725:4;43712:18;;;;;;;;;;;;;;;:34;43731:14;43712:34;;;;;;;;;;;;43690:56;;43796:11;43763:12;:18;43776:4;43763:18;;;;;;;;;;;;;;;:30;43782:10;43763:30;;;;;;;;;;;:44;;;;43913:10;43880:17;:30;43898:11;43880:30;;;;;;;;;;;:43;;;;43675:294;43641:328;44065:17;:26;44083:7;44065:26;;;;;;;;;;;44058:33;;;44109:12;:18;44122:4;44109:18;;;;;;;;;;;;;;;:34;44128:14;44109:34;;;;;;;;;;;44102:41;;;43244:907;;43163:988;;:::o;44446:1079::-;44699:22;44744:1;44724:10;:17;;;;:21;;;;:::i;:::-;44699:46;;44756:18;44777:15;:24;44793:7;44777:24;;;;;;;;;;;;44756:45;;45128:19;45150:10;45161:14;45150:26;;;;;;;;:::i;:::-;;;;;;;;;;45128:48;;45214:11;45189:10;45200;45189:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45325:10;45294:15;:28;45310:11;45294:28;;;;;;;;;;;:41;;;;45466:15;:24;45482:7;45466:24;;;;;;;;;;;45459:31;;;45501:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44517:1008;;;44446:1079;:::o;41950:221::-;42035:14;42052:20;42069:2;42052:16;:20::i;:::-;42035:37;;42110:7;42083:12;:16;42096:2;42083:16;;;;;;;;;;;;;;;:24;42100:6;42083:24;;;;;;;;;;;:34;;;;42157:6;42128:17;:26;42146:7;42128:26;;;;;;;;;;;:35;;;;42024:147;41950:221;;:::o;6811:326::-;6871:4;7128:1;7106:7;:19;;;:23;7099:30;;6811:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:114::-;6269:6;6303:5;6297:12;6287:22;;6202:114;;;:::o;6322:184::-;6421:11;6455:6;6450:3;6443:19;6495:4;6490:3;6486:14;6471:29;;6322:184;;;;:::o;6512:132::-;6579:4;6602:3;6594:11;;6632:4;6627:3;6623:14;6615:22;;6512:132;;;:::o;6650:108::-;6727:24;6745:5;6727:24;:::i;:::-;6722:3;6715:37;6650:108;;:::o;6764:179::-;6833:10;6854:46;6896:3;6888:6;6854:46;:::i;:::-;6932:4;6927:3;6923:14;6909:28;;6764:179;;;;:::o;6949:113::-;7019:4;7051;7046:3;7042:14;7034:22;;6949:113;;;:::o;7098:732::-;7217:3;7246:54;7294:5;7246:54;:::i;:::-;7316:86;7395:6;7390:3;7316:86;:::i;:::-;7309:93;;7426:56;7476:5;7426:56;:::i;:::-;7505:7;7536:1;7521:284;7546:6;7543:1;7540:13;7521:284;;;7622:6;7616:13;7649:63;7708:3;7693:13;7649:63;:::i;:::-;7642:70;;7735:60;7788:6;7735:60;:::i;:::-;7725:70;;7581:224;7568:1;7565;7561:9;7556:14;;7521:284;;;7525:14;7821:3;7814:10;;7222:608;;;7098:732;;;;:::o;7836:111::-;7900:6;7934:5;7928:12;7918:22;;7836:111;;;:::o;7953:181::-;8049:11;8083:6;8078:3;8071:19;8123:4;8118:3;8114:14;8099:29;;7953:181;;;;:::o;8140:129::-;8204:4;8227:3;8219:11;;8257:4;8252:3;8248:14;8240:22;;8140:129;;;:::o;8275:99::-;8346:21;8361:5;8346:21;:::i;:::-;8341:3;8334:34;8275:99;;:::o;8380:167::-;8443:10;8464:40;8500:3;8492:6;8464:40;:::i;:::-;8536:4;8531:3;8527:14;8513:28;;8380:167;;;;:::o;8553:110::-;8620:4;8652;8647:3;8643:14;8635:22;;8553:110;;;:::o;8693:708::-;8806:3;8835:51;8880:5;8835:51;:::i;:::-;8902:83;8978:6;8973:3;8902:83;:::i;:::-;8895:90;;9009:53;9056:5;9009:53;:::i;:::-;9085:7;9116:1;9101:275;9126:6;9123:1;9120:13;9101:275;;;9202:6;9196:13;9229:57;9282:3;9267:13;9229:57;:::i;:::-;9222:64;;9309:57;9359:6;9309:57;:::i;:::-;9299:67;;9161:215;9148:1;9145;9141:9;9136:14;;9101:275;;;9105:14;9392:3;9385:10;;8811:590;;;8693:708;;;;:::o;9407:622::-;9622:4;9660:2;9649:9;9645:18;9637:26;;9709:9;9703:4;9699:20;9695:1;9684:9;9680:17;9673:47;9737:108;9840:4;9831:6;9737:108;:::i;:::-;9729:116;;9892:9;9886:4;9882:20;9877:2;9866:9;9862:18;9855:48;9920:102;10017:4;10008:6;9920:102;:::i;:::-;9912:110;;9407:622;;;;;:::o;10035:117::-;10144:1;10141;10134:12;10158:117;10267:1;10264;10257:12;10281:180;10329:77;10326:1;10319:88;10426:4;10423:1;10416:15;10450:4;10447:1;10440:15;10467:281;10550:27;10572:4;10550:27;:::i;:::-;10542:6;10538:40;10680:6;10668:10;10665:22;10644:18;10632:10;10629:34;10626:62;10623:88;;;10691:18;;:::i;:::-;10623:88;10731:10;10727:2;10720:22;10510:238;10467:281;;:::o;10754:129::-;10788:6;10815:20;;:::i;:::-;10805:30;;10844:33;10872:4;10864:6;10844:33;:::i;:::-;10754:129;;;:::o;10889:308::-;10951:4;11041:18;11033:6;11030:30;11027:56;;;11063:18;;:::i;:::-;11027:56;11101:29;11123:6;11101:29;:::i;:::-;11093:37;;11185:4;11179;11175:15;11167:23;;10889:308;;;:::o;11203:146::-;11300:6;11295:3;11290;11277:30;11341:1;11332:6;11327:3;11323:16;11316:27;11203:146;;;:::o;11355:425::-;11433:5;11458:66;11474:49;11516:6;11474:49;:::i;:::-;11458:66;:::i;:::-;11449:75;;11547:6;11540:5;11533:21;11585:4;11578:5;11574:16;11623:3;11614:6;11609:3;11605:16;11602:25;11599:112;;;11630:79;;:::i;:::-;11599:112;11720:54;11767:6;11762:3;11757;11720:54;:::i;:::-;11439:341;11355:425;;;;;:::o;11800:340::-;11856:5;11905:3;11898:4;11890:6;11886:17;11882:27;11872:122;;11913:79;;:::i;:::-;11872:122;12030:6;12017:20;12055:79;12130:3;12122:6;12115:4;12107:6;12103:17;12055:79;:::i;:::-;12046:88;;11862:278;11800:340;;;;:::o;12146:509::-;12215:6;12264:2;12252:9;12243:7;12239:23;12235:32;12232:119;;;12270:79;;:::i;:::-;12232:119;12418:1;12407:9;12403:17;12390:31;12448:18;12440:6;12437:30;12434:117;;;12470:79;;:::i;:::-;12434:117;12575:63;12630:7;12621:6;12610:9;12606:22;12575:63;:::i;:::-;12565:73;;12361:287;12146:509;;;;:::o;12661:116::-;12731:21;12746:5;12731:21;:::i;:::-;12724:5;12721:32;12711:60;;12767:1;12764;12757:12;12711:60;12661:116;:::o;12783:133::-;12826:5;12864:6;12851:20;12842:29;;12880:30;12904:5;12880:30;:::i;:::-;12783:133;;;;:::o;12922:468::-;12987:6;12995;13044:2;13032:9;13023:7;13019:23;13015:32;13012:119;;;13050:79;;:::i;:::-;13012:119;13170:1;13195:53;13240:7;13231:6;13220:9;13216:22;13195:53;:::i;:::-;13185:63;;13141:117;13297:2;13323:50;13365:7;13356:6;13345:9;13341:22;13323:50;:::i;:::-;13313:60;;13268:115;12922:468;;;;;:::o;13396:307::-;13457:4;13547:18;13539:6;13536:30;13533:56;;;13569:18;;:::i;:::-;13533:56;13607:29;13629:6;13607:29;:::i;:::-;13599:37;;13691:4;13685;13681:15;13673:23;;13396:307;;;:::o;13709:423::-;13786:5;13811:65;13827:48;13868:6;13827:48;:::i;:::-;13811:65;:::i;:::-;13802:74;;13899:6;13892:5;13885:21;13937:4;13930:5;13926:16;13975:3;13966:6;13961:3;13957:16;13954:25;13951:112;;;13982:79;;:::i;:::-;13951:112;14072:54;14119:6;14114:3;14109;14072:54;:::i;:::-;13792:340;13709:423;;;;;:::o;14151:338::-;14206:5;14255:3;14248:4;14240:6;14236:17;14232:27;14222:122;;14263:79;;:::i;:::-;14222:122;14380:6;14367:20;14405:78;14479:3;14471:6;14464:4;14456:6;14452:17;14405:78;:::i;:::-;14396:87;;14212:277;14151:338;;;;:::o;14495:943::-;14590:6;14598;14606;14614;14663:3;14651:9;14642:7;14638:23;14634:33;14631:120;;;14670:79;;:::i;:::-;14631:120;14790:1;14815:53;14860:7;14851:6;14840:9;14836:22;14815:53;:::i;:::-;14805:63;;14761:117;14917:2;14943:53;14988:7;14979:6;14968:9;14964:22;14943:53;:::i;:::-;14933:63;;14888:118;15045:2;15071:53;15116:7;15107:6;15096:9;15092:22;15071:53;:::i;:::-;15061:63;;15016:118;15201:2;15190:9;15186:18;15173:32;15232:18;15224:6;15221:30;15218:117;;;15254:79;;:::i;:::-;15218:117;15359:62;15413:7;15404:6;15393:9;15389:22;15359:62;:::i;:::-;15349:72;;15144:287;14495:943;;;;;;;:::o;15444:474::-;15512:6;15520;15569:2;15557:9;15548:7;15544:23;15540:32;15537:119;;;15575:79;;:::i;:::-;15537:119;15695:1;15720:53;15765:7;15756:6;15745:9;15741:22;15720:53;:::i;:::-;15710:63;;15666:117;15822:2;15848:53;15893:7;15884:6;15873:9;15869:22;15848:53;:::i;:::-;15838:63;;15793:118;15444:474;;;;;:::o;15924:180::-;15972:77;15969:1;15962:88;16069:4;16066:1;16059:15;16093:4;16090:1;16083:15;16110:320;16154:6;16191:1;16185:4;16181:12;16171:22;;16238:1;16232:4;16228:12;16259:18;16249:81;;16315:4;16307:6;16303:17;16293:27;;16249:81;16377:2;16369:6;16366:14;16346:18;16343:38;16340:84;;16396:18;;:::i;:::-;16340:84;16161:269;16110:320;;;:::o;16436:231::-;16576:34;16572:1;16564:6;16560:14;16553:58;16645:14;16640:2;16632:6;16628:15;16621:39;16436:231;:::o;16673:366::-;16815:3;16836:67;16900:2;16895:3;16836:67;:::i;:::-;16829:74;;16912:93;17001:3;16912:93;:::i;:::-;17030:2;17025:3;17021:12;17014:19;;16673:366;;;:::o;17045:419::-;17211:4;17249:2;17238:9;17234:18;17226:26;;17298:9;17292:4;17288:20;17284:1;17273:9;17269:17;17262:47;17326:131;17452:4;17326:131;:::i;:::-;17318:139;;17045:419;;;:::o;17470:220::-;17610:34;17606:1;17598:6;17594:14;17587:58;17679:3;17674:2;17666:6;17662:15;17655:28;17470:220;:::o;17696:366::-;17838:3;17859:67;17923:2;17918:3;17859:67;:::i;:::-;17852:74;;17935:93;18024:3;17935:93;:::i;:::-;18053:2;18048:3;18044:12;18037:19;;17696:366;;;:::o;18068:419::-;18234:4;18272:2;18261:9;18257:18;18249:26;;18321:9;18315:4;18311:20;18307:1;18296:9;18292:17;18285:47;18349:131;18475:4;18349:131;:::i;:::-;18341:139;;18068:419;;;:::o;18493:243::-;18633:34;18629:1;18621:6;18617:14;18610:58;18702:26;18697:2;18689:6;18685:15;18678:51;18493:243;:::o;18742:366::-;18884:3;18905:67;18969:2;18964:3;18905:67;:::i;:::-;18898:74;;18981:93;19070:3;18981:93;:::i;:::-;19099:2;19094:3;19090:12;19083:19;;18742:366;;;:::o;19114:419::-;19280:4;19318:2;19307:9;19303:18;19295:26;;19367:9;19361:4;19357:20;19353:1;19342:9;19338:17;19331:47;19395:131;19521:4;19395:131;:::i;:::-;19387:139;;19114:419;;;:::o;19539:236::-;19679:34;19675:1;19667:6;19663:14;19656:58;19748:19;19743:2;19735:6;19731:15;19724:44;19539:236;:::o;19781:366::-;19923:3;19944:67;20008:2;20003:3;19944:67;:::i;:::-;19937:74;;20020:93;20109:3;20020:93;:::i;:::-;20138:2;20133:3;20129:12;20122:19;;19781:366;;;:::o;20153:419::-;20319:4;20357:2;20346:9;20342:18;20334:26;;20406:9;20400:4;20396:20;20392:1;20381:9;20377:17;20370:47;20434:131;20560:4;20434:131;:::i;:::-;20426:139;;20153:419;;;:::o;20578:182::-;20718:34;20714:1;20706:6;20702:14;20695:58;20578:182;:::o;20766:366::-;20908:3;20929:67;20993:2;20988:3;20929:67;:::i;:::-;20922:74;;21005:93;21094:3;21005:93;:::i;:::-;21123:2;21118:3;21114:12;21107:19;;20766:366;;;:::o;21138:419::-;21304:4;21342:2;21331:9;21327:18;21319:26;;21391:9;21385:4;21381:20;21377:1;21366:9;21362:17;21355:47;21419:131;21545:4;21419:131;:::i;:::-;21411:139;;21138:419;;;:::o;21563:170::-;21703:22;21699:1;21691:6;21687:14;21680:46;21563:170;:::o;21739:366::-;21881:3;21902:67;21966:2;21961:3;21902:67;:::i;:::-;21895:74;;21978:93;22067:3;21978:93;:::i;:::-;22096:2;22091:3;22087:12;22080:19;;21739:366;;;:::o;22111:419::-;22277:4;22315:2;22304:9;22300:18;22292:26;;22364:9;22358:4;22354:20;22350:1;22339:9;22335:17;22328:47;22392:131;22518:4;22392:131;:::i;:::-;22384:139;;22111:419;;;:::o;22536:230::-;22676:34;22672:1;22664:6;22660:14;22653:58;22745:13;22740:2;22732:6;22728:15;22721:38;22536:230;:::o;22772:366::-;22914:3;22935:67;22999:2;22994:3;22935:67;:::i;:::-;22928:74;;23011:93;23100:3;23011:93;:::i;:::-;23129:2;23124:3;23120:12;23113:19;;22772:366;;;:::o;23144:419::-;23310:4;23348:2;23337:9;23333:18;23325:26;;23397:9;23391:4;23387:20;23383:1;23372:9;23368:17;23361:47;23425:131;23551:4;23425:131;:::i;:::-;23417:139;;23144:419;;;:::o;23569:180::-;23617:77;23614:1;23607:88;23714:4;23711:1;23704:15;23738:4;23735:1;23728:15;23755:180;23803:77;23800:1;23793:88;23900:4;23897:1;23890:15;23924:4;23921:1;23914:15;23941:233;23980:3;24003:24;24021:5;24003:24;:::i;:::-;23994:33;;24049:66;24042:5;24039:77;24036:103;;24119:18;;:::i;:::-;24036:103;24166:1;24159:5;24155:13;24148:20;;23941:233;;;:::o;24180:191::-;24220:3;24239:20;24257:1;24239:20;:::i;:::-;24234:25;;24273:20;24291:1;24273:20;:::i;:::-;24268:25;;24316:1;24313;24309:9;24302:16;;24337:3;24334:1;24331:10;24328:36;;;24344:18;;:::i;:::-;24328:36;24180:191;;;;:::o;24377:168::-;24517:20;24513:1;24505:6;24501:14;24494:44;24377:168;:::o;24551:366::-;24693:3;24714:67;24778:2;24773:3;24714:67;:::i;:::-;24707:74;;24790:93;24879:3;24790:93;:::i;:::-;24908:2;24903:3;24899:12;24892:19;;24551:366;;;:::o;24923:419::-;25089:4;25127:2;25116:9;25112:18;25104:26;;25176:9;25170:4;25166:20;25162:1;25151:9;25147:17;25140:47;25204:131;25330:4;25204:131;:::i;:::-;25196:139;;24923:419;;;:::o;25348:410::-;25388:7;25411:20;25429:1;25411:20;:::i;:::-;25406:25;;25445:20;25463:1;25445:20;:::i;:::-;25440:25;;25500:1;25497;25493:9;25522:30;25540:11;25522:30;:::i;:::-;25511:41;;25701:1;25692:7;25688:15;25685:1;25682:22;25662:1;25655:9;25635:83;25612:139;;25731:18;;:::i;:::-;25612:139;25396:362;25348:410;;;;:::o;25764:170::-;25904:22;25900:1;25892:6;25888:14;25881:46;25764:170;:::o;25940:366::-;26082:3;26103:67;26167:2;26162:3;26103:67;:::i;:::-;26096:74;;26179:93;26268:3;26179:93;:::i;:::-;26297:2;26292:3;26288:12;26281:19;;25940:366;;;:::o;26312:419::-;26478:4;26516:2;26505:9;26501:18;26493:26;;26565:9;26559:4;26555:20;26551:1;26540:9;26536:17;26529:47;26593:131;26719:4;26593:131;:::i;:::-;26585:139;;26312:419;;;:::o;26737:231::-;26877:34;26873:1;26865:6;26861:14;26854:58;26946:14;26941:2;26933:6;26929:15;26922:39;26737:231;:::o;26974:366::-;27116:3;27137:67;27201:2;27196:3;27137:67;:::i;:::-;27130:74;;27213:93;27302:3;27213:93;:::i;:::-;27331:2;27326:3;27322:12;27315:19;;26974:366;;;:::o;27346:419::-;27512:4;27550:2;27539:9;27535:18;27527:26;;27599:9;27593:4;27589:20;27585:1;27574:9;27570:17;27563:47;27627:131;27753:4;27627:131;:::i;:::-;27619:139;;27346:419;;;:::o;27771:228::-;27911:34;27907:1;27899:6;27895:14;27888:58;27980:11;27975:2;27967:6;27963:15;27956:36;27771:228;:::o;28005:366::-;28147:3;28168:67;28232:2;28227:3;28168:67;:::i;:::-;28161:74;;28244:93;28333:3;28244:93;:::i;:::-;28362:2;28357:3;28353:12;28346:19;;28005:366;;;:::o;28377:419::-;28543:4;28581:2;28570:9;28566:18;28558:26;;28630:9;28624:4;28620:20;28616:1;28605:9;28601:17;28594:47;28658:131;28784:4;28658:131;:::i;:::-;28650:139;;28377:419;;;:::o;28802:147::-;28903:11;28940:3;28925:18;;28802:147;;;;:::o;28955:114::-;;:::o;29075:398::-;29234:3;29255:83;29336:1;29331:3;29255:83;:::i;:::-;29248:90;;29347:93;29436:3;29347:93;:::i;:::-;29465:1;29460:3;29456:11;29449:18;;29075:398;;;:::o;29479:379::-;29663:3;29685:147;29828:3;29685:147;:::i;:::-;29678:154;;29849:3;29842:10;;29479:379;;;:::o;29864:141::-;29913:4;29936:3;29928:11;;29959:3;29956:1;29949:14;29993:4;29990:1;29980:18;29972:26;;29864:141;;;:::o;30011:93::-;30048:6;30095:2;30090;30083:5;30079:14;30075:23;30065:33;;30011:93;;;:::o;30110:107::-;30154:8;30204:5;30198:4;30194:16;30173:37;;30110:107;;;;:::o;30223:393::-;30292:6;30342:1;30330:10;30326:18;30365:97;30395:66;30384:9;30365:97;:::i;:::-;30483:39;30513:8;30502:9;30483:39;:::i;:::-;30471:51;;30555:4;30551:9;30544:5;30540:21;30531:30;;30604:4;30594:8;30590:19;30583:5;30580:30;30570:40;;30299:317;;30223:393;;;;;:::o;30622:60::-;30650:3;30671:5;30664:12;;30622:60;;;:::o;30688:142::-;30738:9;30771:53;30789:34;30798:24;30816:5;30798:24;:::i;:::-;30789:34;:::i;:::-;30771:53;:::i;:::-;30758:66;;30688:142;;;:::o;30836:75::-;30879:3;30900:5;30893:12;;30836:75;;;:::o;30917:269::-;31027:39;31058:7;31027:39;:::i;:::-;31088:91;31137:41;31161:16;31137:41;:::i;:::-;31129:6;31122:4;31116:11;31088:91;:::i;:::-;31082:4;31075:105;30993:193;30917:269;;;:::o;31192:73::-;31237:3;31192:73;:::o;31271:189::-;31348:32;;:::i;:::-;31389:65;31447:6;31439;31433:4;31389:65;:::i;:::-;31324:136;31271:189;;:::o;31466:186::-;31526:120;31543:3;31536:5;31533:14;31526:120;;;31597:39;31634:1;31627:5;31597:39;:::i;:::-;31570:1;31563:5;31559:13;31550:22;;31526:120;;;31466:186;;:::o;31658:543::-;31759:2;31754:3;31751:11;31748:446;;;31793:38;31825:5;31793:38;:::i;:::-;31877:29;31895:10;31877:29;:::i;:::-;31867:8;31863:44;32060:2;32048:10;32045:18;32042:49;;;32081:8;32066:23;;32042:49;32104:80;32160:22;32178:3;32160:22;:::i;:::-;32150:8;32146:37;32133:11;32104:80;:::i;:::-;31763:431;;31748:446;31658:543;;;:::o;32207:117::-;32261:8;32311:5;32305:4;32301:16;32280:37;;32207:117;;;;:::o;32330:169::-;32374:6;32407:51;32455:1;32451:6;32443:5;32440:1;32436:13;32407:51;:::i;:::-;32403:56;32488:4;32482;32478:15;32468:25;;32381:118;32330:169;;;;:::o;32504:295::-;32580:4;32726:29;32751:3;32745:4;32726:29;:::i;:::-;32718:37;;32788:3;32785:1;32781:11;32775:4;32772:21;32764:29;;32504:295;;;;:::o;32804:1395::-;32921:37;32954:3;32921:37;:::i;:::-;33023:18;33015:6;33012:30;33009:56;;;33045:18;;:::i;:::-;33009:56;33089:38;33121:4;33115:11;33089:38;:::i;:::-;33174:67;33234:6;33226;33220:4;33174:67;:::i;:::-;33268:1;33292:4;33279:17;;33324:2;33316:6;33313:14;33341:1;33336:618;;;;33998:1;34015:6;34012:77;;;34064:9;34059:3;34055:19;34049:26;34040:35;;34012:77;34115:67;34175:6;34168:5;34115:67;:::i;:::-;34109:4;34102:81;33971:222;33306:887;;33336:618;33388:4;33384:9;33376:6;33372:22;33422:37;33454:4;33422:37;:::i;:::-;33481:1;33495:208;33509:7;33506:1;33503:14;33495:208;;;33588:9;33583:3;33579:19;33573:26;33565:6;33558:42;33639:1;33631:6;33627:14;33617:24;;33686:2;33675:9;33671:18;33658:31;;33532:4;33529:1;33525:12;33520:17;;33495:208;;;33731:6;33722:7;33719:19;33716:179;;;33789:9;33784:3;33780:19;33774:26;33832:48;33874:4;33866:6;33862:17;33851:9;33832:48;:::i;:::-;33824:6;33817:64;33739:156;33716:179;33941:1;33937;33929:6;33925:14;33921:22;33915:4;33908:36;33343:611;;;33306:887;;32896:1303;;;32804:1395;;:::o;34205:229::-;34345:34;34341:1;34333:6;34329:14;34322:58;34414:12;34409:2;34401:6;34397:15;34390:37;34205:229;:::o;34440:366::-;34582:3;34603:67;34667:2;34662:3;34603:67;:::i;:::-;34596:74;;34679:93;34768:3;34679:93;:::i;:::-;34797:2;34792:3;34788:12;34781:19;;34440:366;;;:::o;34812:419::-;34978:4;35016:2;35005:9;35001:18;34993:26;;35065:9;35059:4;35055:20;35051:1;35040:9;35036:17;35029:47;35093:131;35219:4;35093:131;:::i;:::-;35085:139;;34812:419;;;:::o;35237:172::-;35377:24;35373:1;35365:6;35361:14;35354:48;35237:172;:::o;35415:366::-;35557:3;35578:67;35642:2;35637:3;35578:67;:::i;:::-;35571:74;;35654:93;35743:3;35654:93;:::i;:::-;35772:2;35767:3;35763:12;35756:19;;35415:366;;;:::o;35787:419::-;35953:4;35991:2;35980:9;35976:18;35968:26;;36040:9;36034:4;36030:20;36026:1;36015:9;36011:17;36004:47;36068:131;36194:4;36068:131;:::i;:::-;36060:139;;35787:419;;;:::o;36212:148::-;36314:11;36351:3;36336:18;;36212:148;;;;:::o;36390:874::-;36493:3;36530:5;36524:12;36559:36;36585:9;36559:36;:::i;:::-;36611:89;36693:6;36688:3;36611:89;:::i;:::-;36604:96;;36731:1;36720:9;36716:17;36747:1;36742:166;;;;36922:1;36917:341;;;;36709:549;;36742:166;36826:4;36822:9;36811;36807:25;36802:3;36795:38;36888:6;36881:14;36874:22;36866:6;36862:35;36857:3;36853:45;36846:52;;36742:166;;36917:341;36984:38;37016:5;36984:38;:::i;:::-;37044:1;37058:154;37072:6;37069:1;37066:13;37058:154;;;37146:7;37140:14;37136:1;37131:3;37127:11;37120:35;37196:1;37187:7;37183:15;37172:26;;37094:4;37091:1;37087:12;37082:17;;37058:154;;;37241:6;37236:3;37232:16;37225:23;;36924:334;;36709:549;;36497:767;;36390:874;;;;:::o;37270:390::-;37376:3;37404:39;37437:5;37404:39;:::i;:::-;37459:89;37541:6;37536:3;37459:89;:::i;:::-;37452:96;;37557:65;37615:6;37610:3;37603:4;37596:5;37592:16;37557:65;:::i;:::-;37647:6;37642:3;37638:16;37631:23;;37380:280;37270:390;;;;:::o;37666:429::-;37843:3;37865:92;37953:3;37944:6;37865:92;:::i;:::-;37858:99;;37974:95;38065:3;38056:6;37974:95;:::i;:::-;37967:102;;38086:3;38079:10;;37666:429;;;;;:::o;38101:162::-;38241:14;38237:1;38229:6;38225:14;38218:38;38101:162;:::o;38269:402::-;38429:3;38450:85;38532:2;38527:3;38450:85;:::i;:::-;38443:92;;38544:93;38633:3;38544:93;:::i;:::-;38662:2;38657:3;38653:12;38646:19;;38269:402;;;:::o;38677:695::-;38955:3;38977:92;39065:3;39056:6;38977:92;:::i;:::-;38970:99;;39086:95;39177:3;39168:6;39086:95;:::i;:::-;39079:102;;39198:148;39342:3;39198:148;:::i;:::-;39191:155;;39363:3;39356:10;;38677:695;;;;;:::o;39378:164::-;39518:16;39514:1;39506:6;39502:14;39495:40;39378:164;:::o;39548:402::-;39708:3;39729:85;39811:2;39806:3;39729:85;:::i;:::-;39722:92;;39823:93;39912:3;39823:93;:::i;:::-;39941:2;39936:3;39932:12;39925:19;;39548:402;;;:::o;39956:695::-;40234:3;40256:92;40344:3;40335:6;40256:92;:::i;:::-;40249:99;;40365:95;40456:3;40447:6;40365:95;:::i;:::-;40358:102;;40477:148;40621:3;40477:148;:::i;:::-;40470:155;;40642:3;40635:10;;39956:695;;;;;:::o;40657:225::-;40797:34;40793:1;40785:6;40781:14;40774:58;40866:8;40861:2;40853:6;40849:15;40842:33;40657:225;:::o;40888:366::-;41030:3;41051:67;41115:2;41110:3;41051:67;:::i;:::-;41044:74;;41127:93;41216:3;41127:93;:::i;:::-;41245:2;41240:3;41236:12;41229:19;;40888:366;;;:::o;41260:419::-;41426:4;41464:2;41453:9;41449:18;41441:26;;41513:9;41507:4;41503:20;41499:1;41488:9;41484:17;41477:47;41541:131;41667:4;41541:131;:::i;:::-;41533:139;;41260:419;;;:::o;41685:231::-;41825:34;41821:1;41813:6;41809:14;41802:58;41894:14;41889:2;41881:6;41877:15;41870:39;41685:231;:::o;41922:366::-;42064:3;42085:67;42149:2;42144:3;42085:67;:::i;:::-;42078:74;;42161:93;42250:3;42161:93;:::i;:::-;42279:2;42274:3;42270:12;42263:19;;41922:366;;;:::o;42294:419::-;42460:4;42498:2;42487:9;42483:18;42475:26;;42547:9;42541:4;42537:20;42533:1;42522:9;42518:17;42511:47;42575:131;42701:4;42575:131;:::i;:::-;42567:139;;42294:419;;;:::o;42719:194::-;42759:4;42779:20;42797:1;42779:20;:::i;:::-;42774:25;;42813:20;42831:1;42813:20;:::i;:::-;42808:25;;42857:1;42854;42850:9;42842:17;;42881:1;42875:4;42872:11;42869:37;;;42886:18;;:::i;:::-;42869:37;42719:194;;;;:::o;42919:180::-;42967:77;42964:1;42957:88;43064:4;43061:1;43054:15;43088:4;43085:1;43078:15;43105:182;43245:34;43241:1;43233:6;43229:14;43222:58;43105:182;:::o;43293:366::-;43435:3;43456:67;43520:2;43515:3;43456:67;:::i;:::-;43449:74;;43532:93;43621:3;43532:93;:::i;:::-;43650:2;43645:3;43641:12;43634:19;;43293:366;;;:::o;43665:419::-;43831:4;43869:2;43858:9;43854:18;43846:26;;43918:9;43912:4;43908:20;43904:1;43893:9;43889:17;43882:47;43946:131;44072:4;43946:131;:::i;:::-;43938:139;;43665:419;;;:::o;44090:178::-;44230:30;44226:1;44218:6;44214:14;44207:54;44090:178;:::o;44274:366::-;44416:3;44437:67;44501:2;44496:3;44437:67;:::i;:::-;44430:74;;44513:93;44602:3;44513:93;:::i;:::-;44631:2;44626:3;44622:12;44615:19;;44274:366;;;:::o;44646:419::-;44812:4;44850:2;44839:9;44835:18;44827:26;;44899:9;44893:4;44889:20;44885:1;44874:9;44870:17;44863:47;44927:131;45053:4;44927:131;:::i;:::-;44919:139;;44646:419;;;:::o;45071:175::-;45211:27;45207:1;45199:6;45195:14;45188:51;45071:175;:::o;45252:366::-;45394:3;45415:67;45479:2;45474:3;45415:67;:::i;:::-;45408:74;;45491:93;45580:3;45491:93;:::i;:::-;45609:2;45604:3;45600:12;45593:19;;45252:366;;;:::o;45624:419::-;45790:4;45828:2;45817:9;45813:18;45805:26;;45877:9;45871:4;45867:20;45863:1;45852:9;45848:17;45841:47;45905:131;46031:4;45905:131;:::i;:::-;45897:139;;45624:419;;;:::o;46049:237::-;46189:34;46185:1;46177:6;46173:14;46166:58;46258:20;46253:2;46245:6;46241:15;46234:45;46049:237;:::o;46292:366::-;46434:3;46455:67;46519:2;46514:3;46455:67;:::i;:::-;46448:74;;46531:93;46620:3;46531:93;:::i;:::-;46649:2;46644:3;46640:12;46633:19;;46292:366;;;:::o;46664:419::-;46830:4;46868:2;46857:9;46853:18;46845:26;;46917:9;46911:4;46907:20;46903:1;46892:9;46888:17;46881:47;46945:131;47071:4;46945:131;:::i;:::-;46937:139;;46664:419;;;:::o;47089:180::-;47137:77;47134:1;47127:88;47234:4;47231:1;47224:15;47258:4;47255:1;47248:15;47275:185;47315:1;47332:20;47350:1;47332:20;:::i;:::-;47327:25;;47366:20;47384:1;47366:20;:::i;:::-;47361:25;;47405:1;47395:35;;47410:18;;:::i;:::-;47395:35;47452:1;47449;47445:9;47440:14;;47275:185;;;;:::o;47466:176::-;47498:1;47515:20;47533:1;47515:20;:::i;:::-;47510:25;;47549:20;47567:1;47549:20;:::i;:::-;47544:25;;47588:1;47578:35;;47593:18;;:::i;:::-;47578:35;47634:1;47631;47627:9;47622:14;;47466:176;;;;:::o;47648:224::-;47788:34;47784:1;47776:6;47772:14;47765:58;47857:7;47852:2;47844:6;47840:15;47833:32;47648:224;:::o;47878:366::-;48020:3;48041:67;48105:2;48100:3;48041:67;:::i;:::-;48034:74;;48117:93;48206:3;48117:93;:::i;:::-;48235:2;48230:3;48226:12;48219:19;;47878:366;;;:::o;48250:419::-;48416:4;48454:2;48443:9;48439:18;48431:26;;48503:9;48497:4;48493:20;48489:1;48478:9;48474:17;48467:47;48531:131;48657:4;48531:131;:::i;:::-;48523:139;;48250:419;;;:::o;48675:223::-;48815:34;48811:1;48803:6;48799:14;48792:58;48884:6;48879:2;48871:6;48867:15;48860:31;48675:223;:::o;48904:366::-;49046:3;49067:67;49131:2;49126:3;49067:67;:::i;:::-;49060:74;;49143:93;49232:3;49143:93;:::i;:::-;49261:2;49256:3;49252:12;49245:19;;48904:366;;;:::o;49276:419::-;49442:4;49480:2;49469:9;49465:18;49457:26;;49529:9;49523:4;49519:20;49515:1;49504:9;49500:17;49493:47;49557:131;49683:4;49557:131;:::i;:::-;49549:139;;49276:419;;;:::o;49701:98::-;49752:6;49786:5;49780:12;49770:22;;49701:98;;;:::o;49805:168::-;49888:11;49922:6;49917:3;49910:19;49962:4;49957:3;49953:14;49938:29;;49805:168;;;;:::o;49979:373::-;50065:3;50093:38;50125:5;50093:38;:::i;:::-;50147:70;50210:6;50205:3;50147:70;:::i;:::-;50140:77;;50226:65;50284:6;50279:3;50272:4;50265:5;50261:16;50226:65;:::i;:::-;50316:29;50338:6;50316:29;:::i;:::-;50311:3;50307:39;50300:46;;50069:283;49979:373;;;;:::o;50358:640::-;50553:4;50591:3;50580:9;50576:19;50568:27;;50605:71;50673:1;50662:9;50658:17;50649:6;50605:71;:::i;:::-;50686:72;50754:2;50743:9;50739:18;50730:6;50686:72;:::i;:::-;50768;50836:2;50825:9;50821:18;50812:6;50768:72;:::i;:::-;50887:9;50881:4;50877:20;50872:2;50861:9;50857:18;50850:48;50915:76;50986:4;50977:6;50915:76;:::i;:::-;50907:84;;50358:640;;;;;;;:::o;51004:141::-;51060:5;51091:6;51085:13;51076:22;;51107:32;51133:5;51107:32;:::i;:::-;51004:141;;;;:::o;51151:349::-;51220:6;51269:2;51257:9;51248:7;51244:23;51240:32;51237:119;;;51275:79;;:::i;:::-;51237:119;51395:1;51420:63;51475:7;51466:6;51455:9;51451:22;51420:63;:::i;:::-;51410:73;;51366:127;51151:349;;;;:::o

Swarm Source

ipfs://ed029ae681e3ed3c221c8eebd26738ac8f24abb7f4076b2a6a6c585ac36bfa1b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.