ETH Price: $3,347.46 (-0.58%)
Gas: 4 Gwei

Token

Zombie Comics Issue 1 Cover (ZC01C)
 

Overview

Max Total Supply

283 ZC01C

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zombfyd.eth
Balance
2 ZC01C
0xc13849e0d791028b313944545f5740d9993113c2
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:
ComicCover

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-11
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// 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 v4.4.1 (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 `IERC721.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 v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

// 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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId;; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer();
                else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: ComicCover.sol


// Creator: ZombieDaoDev

pragma solidity ^0.8.4;





contract IERC20 {
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public returns (bool) {}

    function transfer(address recipient, uint256 amount)
        public
        returns (bool)
    {}

    function balanceOf(address account) public view returns (uint256) {}
}

contract ComicCover is ERC721A, Ownable, ReentrancyGuard {
    uint256 public nftPrice = 0.02 ether;
    uint256 public tknPrice = 500 ether;

    uint256 public nftLimit = 333;
    uint256 public reserved = 50;
    uint256 public capPublic = 4;
    uint256 public capToken = 2;

    uint256 public freeMultiple = 2;
    address public tokenAddress;

    bool public saleOpen = false;

    bytes32 public merkleRoot;

    string public baseURI = "";

    mapping(address => uint256) public whitelistAddresses;

    constructor(
        string memory _initURI,
        bytes32 _merkleRoot,
        address _tokenAddress
    ) ERC721A("Zombie Comics Issue 1 Cover", "ZC01C") {
        baseURI = _initURI;
        merkleRoot = _merkleRoot;
        tokenAddress = _tokenAddress;
    }

    function _mint(address _to, uint256 _amount) internal {
        require(tx.origin == msg.sender, "ComicCover: Self Mint Only");
        uint256 _mintAmount = _amount;
        if (_amount > 0 && _amount % freeMultiple == 0) {
            _mintAmount += _amount / freeMultiple;
        }
        require(
            totalSupply() + _mintAmount <= (nftLimit - reserved),
            "ComicCover: Sold Out"
        );
        _safeMint(_to, _mintAmount);
    }

    function mint(address _to, uint256 _amount) public payable {
        require(saleOpen == true, "ComicCover: Not Started");
        require(_amount <= capPublic, "ComicCover: Amount Limit");
        require(msg.value == nftPrice * _amount, "ComicCover: Incorrect Value");
        _mint(_to, _amount);
    }

    function mintToken(uint256 _amount, bytes32[] calldata proof) public {
        require(saleOpen == true, "ComicCover: Not Started");
        require(_amount <= capToken, "ComicCover: Amount Limit");
        require(
            MerkleProof.verify(
                proof,
                merkleRoot,
                keccak256(abi.encodePacked(_msgSender()))
            ),
            "ComicCover: Not Whitelisted"
        );
        require(
            whitelistAddresses[_msgSender()] + _amount <= capToken,
            "ComicCover: Token Limit"
        );
        IERC20(tokenAddress).transferFrom(
            _msgSender(),
            address(this),
            tknPrice * _amount
        );
        _mint(_msgSender(), _amount);
        whitelistAddresses[_msgSender()] += _amount;
    }

    function airdrop(address[] memory _to, uint256[] memory _amount)
        public
        onlyOwner
    {
        require(_to.length == _amount.length, "ComicCover: Length Missmatch");
        for (uint256 i = 0; i < _to.length; i++) {
            _mint(_to[i], _amount[i]);
            if (reserved > 0 && reserved >= _amount[i]) {
                reserved -= _amount[i];
            } else {
                reserved = 0;
            }
        }
    }

    function tokensOfOwnerByIndex(address _owner, uint256 _index)
        public
        view
        returns (uint256)
    {
        return tokensOfOwner(_owner)[_index];
    }

    function tokensOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 _tokenCount = balanceOf(_owner);
        uint256[] memory _tokenIds = new uint256[](_tokenCount);
        uint256 _tokenIndex = 0;
        for (uint256 i = 0; i < totalSupply(); i++) {
            if (ownerOf(i) == _owner) {
                _tokenIds[_tokenIndex] = i;
                _tokenIndex++;
            }
        }
        return _tokenIds;
    }

    function toggleSaleOpen() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function setNftPrice(uint256 _nftPrice) public onlyOwner {
        nftPrice = _nftPrice;
    }

    function setTknPrice(uint256 _tknPrice) public onlyOwner {
        tknPrice = _tknPrice;
    }

    function withdraw() public onlyOwner {
        (bool transfer, ) = payable(_msgSender()).call{
            value: address(this).balance
        }("");
        require(transfer, "ComicCover: Transfer Failed");
        IERC20(tokenAddress).transfer(
            _msgSender(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(baseURI, "contract"));
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"_tokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"_amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMultiple","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"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPrice","type":"uint256"}],"name":"setNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tknPrice","type":"uint256"}],"name":"setTknPrice","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":[],"name":"tknPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokensOfOwnerByIndex","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66470de4df820000600955681b1ae4d6e2ef500000600a5561014d600b556032600c556004600d556002600e819055600f556010805460ff60a01b1916905560a06040819052600060808190526200005a91601291620001bd565b503480156200006857600080fd5b5060405162002bdd38038062002bdd8339810160408190526200008b9162000280565b604080518082018252601b81527f5a6f6d62696520436f6d696373204973737565203120436f76657200000000006020808301918252835180850190945260058452645a4330314360d81b908401528151919291620000ed91600191620001bd565b50805162000103906002906020840190620001bd565b505050620001206200011a6200016760201b60201c565b6200016b565b600160085582516200013a906012906020860190620001bd565b50601191909155601080546001600160a01b0319166001600160a01b0390921691909117905550620003ce565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001cb906200037b565b90600052602060002090601f016020900481019282620001ef57600085556200023a565b82601f106200020a57805160ff19168380011785556200023a565b828001600101855582156200023a579182015b828111156200023a5782518255916020019190600101906200021d565b50620002489291506200024c565b5090565b5b808211156200024857600081556001016200024d565b80516001600160a01b03811681146200027b57600080fd5b919050565b6000806000606084860312156200029657600080fd5b83516001600160401b0380821115620002ae57600080fd5b818601915086601f830112620002c357600080fd5b815181811115620002d857620002d8620003b8565b604051601f8201601f19908116603f01168101908382118183101715620003035762000303620003b8565b816040528281526020935089848487010111156200032057600080fd5b600091505b8282101562000344578482018401518183018501529083019062000325565b82821115620003565760008484830101525b8097505050508086015193505050620003726040850162000263565b90509250925092565b600181811c908216806200039057607f821691505b60208210811415620003b257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6127ff80620003de6000396000f3fe60806040526004361061025c5760003560e01c80636c0360eb11610144578063a22cb465116100b6578063cb4e83261161007a578063cb4e8326146106d8578063dd4ed4d3146106ee578063e8a3d48514610704578063e985e9c514610719578063f2fde38b14610762578063fe60d12c1461078257600080fd5b8063a22cb46514610642578063ae7c122e14610662578063b4f666da14610682578063b88d4fde14610698578063c87b56dd146106b857600080fd5b80638393634c116101085780638393634c1461058c5780638462151c146105a15780638da5cb5b146105ce57806395d89b41146105ec57806399288dbb146106015780639d76ea581461062257600080fd5b80636c0360eb1461050257806370a0823114610517578063715018a6146105375780637cb647591461054c5780637d9a7a4c1461056c57600080fd5b80632f745c59116101dd5780634707f44f116101a15780634707f44f146104355780634f6ccce71461045557806355f804b3146104755780636352211e1461049557806367243482146104b557806369ddd67d146104d557600080fd5b80632f745c59146103ad578063374329dc146103cd5780633ccfd60b146103ed57806340c10f191461040257806342842e0e1461041557600080fd5b80630d39fc81116102245780630d39fc811461033657806318160ddd1461034c57806323b872dd146103615780632a7065ea146103815780632eb4a7ab1461039757600080fd5b806301ffc9a71461026157806302fe47281461029657806306fdde03146102ba578063081812fc146102dc578063095ea7b314610314575b600080fd5b34801561026d57600080fd5b5061028161027c366004612303565b610798565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ac600f5481565b60405190815260200161028d565b3480156102c657600080fd5b506102cf610805565b60405161028d91906125a4565b3480156102e857600080fd5b506102fc6102f73660046122ea565b610897565b6040516001600160a01b03909116815260200161028d565b34801561032057600080fd5b5061033461032f3660046121dd565b6108dd565b005b34801561034257600080fd5b506102ac60095481565b34801561035857600080fd5b506000546102ac565b34801561036d57600080fd5b5061033461037c3660046120ef565b61096b565b34801561038d57600080fd5b506102ac600b5481565b3480156103a357600080fd5b506102ac60115481565b3480156103b957600080fd5b506102ac6103c83660046121dd565b610976565b3480156103d957600080fd5b506103346103e83660046122ea565b610a4a565b3480156103f957600080fd5b50610334610a82565b6103346104103660046121dd565b610c53565b34801561042157600080fd5b506103346104303660046120ef565b610d5e565b34801561044157600080fd5b506102ac6104503660046121dd565b610d79565b34801561046157600080fd5b506102ac6104703660046122ea565b610da5565b34801561048157600080fd5b5061033461049036600461233d565b610dcc565b3480156104a157600080fd5b506102fc6104b03660046122ea565b610e09565b3480156104c157600080fd5b506103346104d0366004612207565b610e1b565b3480156104e157600080fd5b506102ac6104f03660046120a1565b60136020526000908152604090205481565b34801561050e57600080fd5b506102cf610f5e565b34801561052357600080fd5b506102ac6105323660046120a1565b610fec565b34801561054357600080fd5b5061033461103a565b34801561055857600080fd5b506103346105673660046122ea565b611070565b34801561057857600080fd5b506103346105873660046122ea565b61109f565b34801561059857600080fd5b506103346110ce565b3480156105ad57600080fd5b506105c16105bc3660046120a1565b611119565b60405161028d9190612560565b3480156105da57600080fd5b506007546001600160a01b03166102fc565b3480156105f857600080fd5b506102cf6111e6565b34801561060d57600080fd5b5060105461028190600160a01b900460ff1681565b34801561062e57600080fd5b506010546102fc906001600160a01b031681565b34801561064e57600080fd5b5061033461065d3660046121a6565b6111f5565b34801561066e57600080fd5b5061033461067d36600461239e565b61128b565b34801561068e57600080fd5b506102ac600e5481565b3480156106a457600080fd5b506103346106b336600461212b565b611539565b3480156106c457600080fd5b506102cf6106d33660046122ea565b611573565b3480156106e457600080fd5b506102ac600d5481565b3480156106fa57600080fd5b506102ac600a5481565b34801561071057600080fd5b506102cf6115fa565b34801561072557600080fd5b506102816107343660046120bc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076e57600080fd5b5061033461077d3660046120a1565b611622565b34801561078e57600080fd5b506102ac600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107c957506001600160e01b03198216635b5e139f60e01b145b806107e457506001600160e01b0319821663780e9d6360e01b145b806107ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610814906126cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610840906126cd565b801561088d5780601f106108625761010080835404028352916020019161088d565b820191906000526020600020905b81548152906001019060200180831161087057829003601f168201915b5050505050905090565b60006108a4826000541190565b6108c1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108e882610e09565b9050806001600160a01b0316836001600160a01b0316141561091d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061093d575061093b8133610734565b155b1561095b576040516367d9dca160e11b815260040160405180910390fd5b6109668383836116bd565b505050565b610966838383611719565b600061098183610fec565b82106109a0576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610a38576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156109fa57805192505b876001600160a01b0316836001600160a01b03161415610a2f5786841415610a28575093506107ff92505050565b6001909301925b506001016109a8565b50610a41612737565b50505092915050565b6007546001600160a01b03163314610a7d5760405162461bcd60e51b8152600401610a74906125b7565b60405180910390fd5b600a55565b6007546001600160a01b03163314610aac5760405162461bcd60e51b8152600401610a74906125b7565b604051600090339047908381818185875af1925050503d8060008114610aee576040519150601f19603f3d011682016040523d82523d6000602084013e610af3565b606091505b5050905080610b445760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a205472616e73666572204661696c656400000000006044820152606401610a74565b6010546001600160a01b031663a9059cbb336010546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610b9957600080fd5b505afa158015610bad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd19190612385565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610c1757600080fd5b505af1158015610c2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4f91906122cd565b5050565b601054600160a01b900460ff161515600114610cab5760405162461bcd60e51b815260206004820152601760248201527610dbdb5a58d0dbdd995c8e88139bdd0814dd185c9d1959604a1b6044820152606401610a74565b600d54811115610cf85760405162461bcd60e51b815260206004820152601860248201527710dbdb5a58d0dbdd995c8e88105b5bdd5b9d08131a5b5a5d60421b6044820152606401610a74565b80600954610d06919061266b565b3414610d545760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a20496e636f72726563742056616c756500000000006044820152606401610a74565b610c4f8282611936565b61096683838360405180602001604052806000815250611539565b6000610d8483611119565b8281518110610d9557610d95612779565b6020026020010151905092915050565b600080548210610dc8576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610df65760405162461bcd60e51b8152600401610a74906125b7565b8051610c4f906012906020840190611f2c565b6000610e1482611a31565b5192915050565b6007546001600160a01b03163314610e455760405162461bcd60e51b8152600401610a74906125b7565b8051825114610e965760405162461bcd60e51b815260206004820152601c60248201527f436f6d6963436f7665723a204c656e677468204d6973736d61746368000000006044820152606401610a74565b60005b825181101561096657610ede838281518110610eb757610eb7612779565b6020026020010151838381518110610ed157610ed1612779565b6020026020010151611936565b6000600c54118015610f0b5750818181518110610efd57610efd612779565b6020026020010151600c5410155b15610f4657818181518110610f2257610f22612779565b6020026020010151600c6000828254610f3b919061268a565b90915550610f4c9050565b6000600c555b80610f5681612708565b915050610e99565b60128054610f6b906126cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f97906126cd565b8015610fe45780601f10610fb957610100808354040283529160200191610fe4565b820191906000526020600020905b815481529060010190602001808311610fc757829003601f168201915b505050505081565b60006001600160a01b038216611015576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110645760405162461bcd60e51b8152600401610a74906125b7565b61106e6000611ac5565b565b6007546001600160a01b0316331461109a5760405162461bcd60e51b8152600401610a74906125b7565b601155565b6007546001600160a01b031633146110c95760405162461bcd60e51b8152600401610a74906125b7565b600955565b6007546001600160a01b031633146110f85760405162461bcd60e51b8152600401610a74906125b7565b6010805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6060600061112683610fec565b90506000816001600160401b038111156111425761114261278f565b60405190808252806020026020018201604052801561116b578160200160208202803683370190505b5090506000805b6000548110156111dc57856001600160a01b031661118f82610e09565b6001600160a01b031614156111ca57808383815181106111b1576111b1612779565b6020908102919091010152816111c681612708565b9250505b806111d481612708565b915050611172565b5090949350505050565b606060028054610814906126cd565b6001600160a01b03821633141561121f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601054600160a01b900460ff1615156001146112e35760405162461bcd60e51b815260206004820152601760248201527610dbdb5a58d0dbdd995c8e88139bdd0814dd185c9d1959604a1b6044820152606401610a74565b600e548311156113305760405162461bcd60e51b815260206004820152601860248201527710dbdb5a58d0dbdd995c8e88105b5bdd5b9d08131a5b5a5d60421b6044820152606401610a74565b6113a5828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611b17565b6113f15760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a204e6f742057686974656c697374656400000000006044820152606401610a74565b600e543360009081526013602052604090205461140f90859061263f565b111561145d5760405162461bcd60e51b815260206004820152601760248201527f436f6d6963436f7665723a20546f6b656e204c696d69740000000000000000006044820152606401610a74565b6010546001600160a01b03166323b872dd333086600a5461147e919061266b565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156114cd57600080fd5b505af11580156114e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150591906122cd565b506115103384611936565b336000908152601360205260408120805485929061152f90849061263f565b9091555050505050565b611544848484611719565b61155084848484611b2d565b61156d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611580826000541190565b61159d57604051630a14c4b560e41b815260040160405180910390fd5b60006115a7611c3c565b90508051600014156115c857604051806020016040528060008152506115f3565b806115d284611c4b565b6040516020016115e3929190612448565b6040516020818303038152906040525b9392505050565b6060601260405160200161160e9190612477565b604051602081830303815290604052905090565b6007546001600160a01b0316331461164c5760405162461bcd60e51b8152600401610a74906125b7565b6001600160a01b0381166116b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a74565b6116ba81611ac5565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061172482611a31565b80519091506000906001600160a01b0316336001600160a01b03161480611752575081516117529033610734565b8061176d57503361176284610897565b6001600160a01b0316145b90508061178d57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117c25760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117e957604051633a954ecd60e21b815260040160405180910390fd5b6117f960008484600001516116bd565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b0316021790559086018083529120549091166118ec576118a0816000541190565b156118ec57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b3233146119855760405162461bcd60e51b815260206004820152601a60248201527f436f6d6963436f7665723a2053656c66204d696e74204f6e6c790000000000006044820152606401610a74565b80801580159061199f5750600f5461199d9083612723565b155b156119be57600f546119b19083612657565b6119bb908261263f565b90505b600c54600b546119ce919061268a565b816119d860005490565b6119e2919061263f565b1115611a275760405162461bcd60e51b815260206004820152601460248201527310dbdb5a58d0dbdd995c8e8814dbdb190813dd5d60621b6044820152606401610a74565b6109668382611d48565b6040805180820190915260008082526020820152611a50826000541190565b611a6d57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611abb579392505050565b5060001901611a6f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611b248584611d62565b14949350505050565b60006001600160a01b0384163b15611c3057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b71903390899088908890600401612523565b602060405180830381600087803b158015611b8b57600080fd5b505af1925050508015611bbb575060408051601f3d908101601f19168201909252611bb891810190612320565b60015b611c16573d808015611be9576040519150601f19603f3d011682016040523d82523d6000602084013e611bee565b606091505b508051611c0e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c34565b5060015b949350505050565b606060128054610814906126cd565b606081611c6f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c995780611c8381612708565b9150611c929050600a83612657565b9150611c73565b6000816001600160401b03811115611cb357611cb361278f565b6040519080825280601f01601f191660200182016040528015611cdd576020820181803683370190505b5090505b8415611c3457611cf260018361268a565b9150611cff600a86612723565b611d0a90603061263f565b60f81b818381518110611d1f57611d1f612779565b60200101906001600160f81b031916908160001a905350611d41600a86612657565b9450611ce1565b610c4f828260405180602001604052806000815250611dd6565b600081815b8451811015611dce576000858281518110611d8457611d84612779565b60200260200101519050808311611daa5760008381526020829052604090209250611dbb565b600081815260208490526040902092505b5080611dc681612708565b915050611d67565b509392505050565b61096683838360016000546001600160a01b038516611e0757604051622e076360e81b815260040160405180910390fd5b83611e255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b85811015611f235760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ef95750611ef76000888488611b2d565b155b15611f17576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611ea2565b5060005561192f565b828054611f38906126cd565b90600052602060002090601f016020900481019282611f5a5760008555611fa0565b82601f10611f7357805160ff1916838001178555611fa0565b82800160010185558215611fa0579182015b82811115611fa0578251825591602001919060010190611f85565b50610dc89291505b80821115610dc85760008155600101611fa8565b60006001600160401b03831115611fd557611fd561278f565b611fe8601f8401601f19166020016125ec565b9050828152838383011115611ffc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461202a57600080fd5b919050565b600082601f83011261204057600080fd5b813560206120556120508361261c565b6125ec565b80838252828201915082860187848660051b890101111561207557600080fd5b60005b8581101561209457813584529284019290840190600101612078565b5090979650505050505050565b6000602082840312156120b357600080fd5b6115f382612013565b600080604083850312156120cf57600080fd5b6120d883612013565b91506120e660208401612013565b90509250929050565b60008060006060848603121561210457600080fd5b61210d84612013565b925061211b60208501612013565b9150604084013590509250925092565b6000806000806080858703121561214157600080fd5b61214a85612013565b935061215860208601612013565b92506040850135915060608501356001600160401b0381111561217a57600080fd5b8501601f8101871361218b57600080fd5b61219a87823560208401611fbc565b91505092959194509250565b600080604083850312156121b957600080fd5b6121c283612013565b915060208301356121d2816127a5565b809150509250929050565b600080604083850312156121f057600080fd5b6121f983612013565b946020939093013593505050565b6000806040838503121561221a57600080fd5b82356001600160401b038082111561223157600080fd5b818501915085601f83011261224557600080fd5b813560206122556120508361261c565b8083825282820191508286018a848660051b890101111561227557600080fd5b600096505b8487101561229f5761228b81612013565b83526001969096019591830191830161227a565b50965050860135925050808211156122b657600080fd5b506122c38582860161202f565b9150509250929050565b6000602082840312156122df57600080fd5b81516115f3816127a5565b6000602082840312156122fc57600080fd5b5035919050565b60006020828403121561231557600080fd5b81356115f3816127b3565b60006020828403121561233257600080fd5b81516115f3816127b3565b60006020828403121561234f57600080fd5b81356001600160401b0381111561236557600080fd5b8201601f8101841361237657600080fd5b611c3484823560208401611fbc565b60006020828403121561239757600080fd5b5051919050565b6000806000604084860312156123b357600080fd5b8335925060208401356001600160401b03808211156123d157600080fd5b818601915086601f8301126123e557600080fd5b8135818111156123f457600080fd5b8760208260051b850101111561240957600080fd5b6020830194508093505050509250925092565b600081518084526124348160208601602086016126a1565b601f01601f19169290920160200192915050565b6000835161245a8184602088016126a1565b83519083019061246e8183602088016126a1565b01949350505050565b600080835481600182811c91508083168061249357607f831692505b60208084108214156124b357634e487b7160e01b86526022600452602486fd5b8180156124c757600181146124d857612505565b60ff19861689528489019650612505565b60008a81526020902060005b868110156124fd5781548b8201529085019083016124e4565b505084890196505b505050505050611c34816718dbdb9d1c9858dd60c21b815260080190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125569083018461241c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125985783518352928401929184019160010161257c565b50909695505050505050565b6020815260006115f3602083018461241c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156126145761261461278f565b604052919050565b60006001600160401b038211156126355761263561278f565b5060051b60200190565b600082198211156126525761265261274d565b500190565b60008261266657612666612763565b500490565b60008160001904831182151516156126855761268561274d565b500290565b60008282101561269c5761269c61274d565b500390565b60005b838110156126bc5781810151838201526020016126a4565b8381111561156d5750506000910152565b600181811c908216806126e157607f821691505b6020821081141561270257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561271c5761271c61274d565b5060010190565b60008261273257612732612763565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146116ba57600080fd5b6001600160e01b0319811681146116ba57600080fdfea26469706673582212200aa519055a194a3b8e268299520247565b56f7eebea7840df120a86517d9da1364736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000606f1e2581dd7481035ad21777b29c15c694aaa21459fcc3def882f3c47aa6c52d000000000000000000000000ceb726e6383468dd8ac0b513c8330cc9fb4024a8000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6d657461646174612e7a6f6d626965636f6d6963732e696f2f31632f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636c0360eb11610144578063a22cb465116100b6578063cb4e83261161007a578063cb4e8326146106d8578063dd4ed4d3146106ee578063e8a3d48514610704578063e985e9c514610719578063f2fde38b14610762578063fe60d12c1461078257600080fd5b8063a22cb46514610642578063ae7c122e14610662578063b4f666da14610682578063b88d4fde14610698578063c87b56dd146106b857600080fd5b80638393634c116101085780638393634c1461058c5780638462151c146105a15780638da5cb5b146105ce57806395d89b41146105ec57806399288dbb146106015780639d76ea581461062257600080fd5b80636c0360eb1461050257806370a0823114610517578063715018a6146105375780637cb647591461054c5780637d9a7a4c1461056c57600080fd5b80632f745c59116101dd5780634707f44f116101a15780634707f44f146104355780634f6ccce71461045557806355f804b3146104755780636352211e1461049557806367243482146104b557806369ddd67d146104d557600080fd5b80632f745c59146103ad578063374329dc146103cd5780633ccfd60b146103ed57806340c10f191461040257806342842e0e1461041557600080fd5b80630d39fc81116102245780630d39fc811461033657806318160ddd1461034c57806323b872dd146103615780632a7065ea146103815780632eb4a7ab1461039757600080fd5b806301ffc9a71461026157806302fe47281461029657806306fdde03146102ba578063081812fc146102dc578063095ea7b314610314575b600080fd5b34801561026d57600080fd5b5061028161027c366004612303565b610798565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ac600f5481565b60405190815260200161028d565b3480156102c657600080fd5b506102cf610805565b60405161028d91906125a4565b3480156102e857600080fd5b506102fc6102f73660046122ea565b610897565b6040516001600160a01b03909116815260200161028d565b34801561032057600080fd5b5061033461032f3660046121dd565b6108dd565b005b34801561034257600080fd5b506102ac60095481565b34801561035857600080fd5b506000546102ac565b34801561036d57600080fd5b5061033461037c3660046120ef565b61096b565b34801561038d57600080fd5b506102ac600b5481565b3480156103a357600080fd5b506102ac60115481565b3480156103b957600080fd5b506102ac6103c83660046121dd565b610976565b3480156103d957600080fd5b506103346103e83660046122ea565b610a4a565b3480156103f957600080fd5b50610334610a82565b6103346104103660046121dd565b610c53565b34801561042157600080fd5b506103346104303660046120ef565b610d5e565b34801561044157600080fd5b506102ac6104503660046121dd565b610d79565b34801561046157600080fd5b506102ac6104703660046122ea565b610da5565b34801561048157600080fd5b5061033461049036600461233d565b610dcc565b3480156104a157600080fd5b506102fc6104b03660046122ea565b610e09565b3480156104c157600080fd5b506103346104d0366004612207565b610e1b565b3480156104e157600080fd5b506102ac6104f03660046120a1565b60136020526000908152604090205481565b34801561050e57600080fd5b506102cf610f5e565b34801561052357600080fd5b506102ac6105323660046120a1565b610fec565b34801561054357600080fd5b5061033461103a565b34801561055857600080fd5b506103346105673660046122ea565b611070565b34801561057857600080fd5b506103346105873660046122ea565b61109f565b34801561059857600080fd5b506103346110ce565b3480156105ad57600080fd5b506105c16105bc3660046120a1565b611119565b60405161028d9190612560565b3480156105da57600080fd5b506007546001600160a01b03166102fc565b3480156105f857600080fd5b506102cf6111e6565b34801561060d57600080fd5b5060105461028190600160a01b900460ff1681565b34801561062e57600080fd5b506010546102fc906001600160a01b031681565b34801561064e57600080fd5b5061033461065d3660046121a6565b6111f5565b34801561066e57600080fd5b5061033461067d36600461239e565b61128b565b34801561068e57600080fd5b506102ac600e5481565b3480156106a457600080fd5b506103346106b336600461212b565b611539565b3480156106c457600080fd5b506102cf6106d33660046122ea565b611573565b3480156106e457600080fd5b506102ac600d5481565b3480156106fa57600080fd5b506102ac600a5481565b34801561071057600080fd5b506102cf6115fa565b34801561072557600080fd5b506102816107343660046120bc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076e57600080fd5b5061033461077d3660046120a1565b611622565b34801561078e57600080fd5b506102ac600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107c957506001600160e01b03198216635b5e139f60e01b145b806107e457506001600160e01b0319821663780e9d6360e01b145b806107ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610814906126cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610840906126cd565b801561088d5780601f106108625761010080835404028352916020019161088d565b820191906000526020600020905b81548152906001019060200180831161087057829003601f168201915b5050505050905090565b60006108a4826000541190565b6108c1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108e882610e09565b9050806001600160a01b0316836001600160a01b0316141561091d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061093d575061093b8133610734565b155b1561095b576040516367d9dca160e11b815260040160405180910390fd5b6109668383836116bd565b505050565b610966838383611719565b600061098183610fec565b82106109a0576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610a38576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156109fa57805192505b876001600160a01b0316836001600160a01b03161415610a2f5786841415610a28575093506107ff92505050565b6001909301925b506001016109a8565b50610a41612737565b50505092915050565b6007546001600160a01b03163314610a7d5760405162461bcd60e51b8152600401610a74906125b7565b60405180910390fd5b600a55565b6007546001600160a01b03163314610aac5760405162461bcd60e51b8152600401610a74906125b7565b604051600090339047908381818185875af1925050503d8060008114610aee576040519150601f19603f3d011682016040523d82523d6000602084013e610af3565b606091505b5050905080610b445760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a205472616e73666572204661696c656400000000006044820152606401610a74565b6010546001600160a01b031663a9059cbb336010546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610b9957600080fd5b505afa158015610bad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd19190612385565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610c1757600080fd5b505af1158015610c2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4f91906122cd565b5050565b601054600160a01b900460ff161515600114610cab5760405162461bcd60e51b815260206004820152601760248201527610dbdb5a58d0dbdd995c8e88139bdd0814dd185c9d1959604a1b6044820152606401610a74565b600d54811115610cf85760405162461bcd60e51b815260206004820152601860248201527710dbdb5a58d0dbdd995c8e88105b5bdd5b9d08131a5b5a5d60421b6044820152606401610a74565b80600954610d06919061266b565b3414610d545760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a20496e636f72726563742056616c756500000000006044820152606401610a74565b610c4f8282611936565b61096683838360405180602001604052806000815250611539565b6000610d8483611119565b8281518110610d9557610d95612779565b6020026020010151905092915050565b600080548210610dc8576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610df65760405162461bcd60e51b8152600401610a74906125b7565b8051610c4f906012906020840190611f2c565b6000610e1482611a31565b5192915050565b6007546001600160a01b03163314610e455760405162461bcd60e51b8152600401610a74906125b7565b8051825114610e965760405162461bcd60e51b815260206004820152601c60248201527f436f6d6963436f7665723a204c656e677468204d6973736d61746368000000006044820152606401610a74565b60005b825181101561096657610ede838281518110610eb757610eb7612779565b6020026020010151838381518110610ed157610ed1612779565b6020026020010151611936565b6000600c54118015610f0b5750818181518110610efd57610efd612779565b6020026020010151600c5410155b15610f4657818181518110610f2257610f22612779565b6020026020010151600c6000828254610f3b919061268a565b90915550610f4c9050565b6000600c555b80610f5681612708565b915050610e99565b60128054610f6b906126cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f97906126cd565b8015610fe45780601f10610fb957610100808354040283529160200191610fe4565b820191906000526020600020905b815481529060010190602001808311610fc757829003601f168201915b505050505081565b60006001600160a01b038216611015576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110645760405162461bcd60e51b8152600401610a74906125b7565b61106e6000611ac5565b565b6007546001600160a01b0316331461109a5760405162461bcd60e51b8152600401610a74906125b7565b601155565b6007546001600160a01b031633146110c95760405162461bcd60e51b8152600401610a74906125b7565b600955565b6007546001600160a01b031633146110f85760405162461bcd60e51b8152600401610a74906125b7565b6010805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6060600061112683610fec565b90506000816001600160401b038111156111425761114261278f565b60405190808252806020026020018201604052801561116b578160200160208202803683370190505b5090506000805b6000548110156111dc57856001600160a01b031661118f82610e09565b6001600160a01b031614156111ca57808383815181106111b1576111b1612779565b6020908102919091010152816111c681612708565b9250505b806111d481612708565b915050611172565b5090949350505050565b606060028054610814906126cd565b6001600160a01b03821633141561121f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601054600160a01b900460ff1615156001146112e35760405162461bcd60e51b815260206004820152601760248201527610dbdb5a58d0dbdd995c8e88139bdd0814dd185c9d1959604a1b6044820152606401610a74565b600e548311156113305760405162461bcd60e51b815260206004820152601860248201527710dbdb5a58d0dbdd995c8e88105b5bdd5b9d08131a5b5a5d60421b6044820152606401610a74565b6113a5828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611b17565b6113f15760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a204e6f742057686974656c697374656400000000006044820152606401610a74565b600e543360009081526013602052604090205461140f90859061263f565b111561145d5760405162461bcd60e51b815260206004820152601760248201527f436f6d6963436f7665723a20546f6b656e204c696d69740000000000000000006044820152606401610a74565b6010546001600160a01b03166323b872dd333086600a5461147e919061266b565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156114cd57600080fd5b505af11580156114e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150591906122cd565b506115103384611936565b336000908152601360205260408120805485929061152f90849061263f565b9091555050505050565b611544848484611719565b61155084848484611b2d565b61156d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611580826000541190565b61159d57604051630a14c4b560e41b815260040160405180910390fd5b60006115a7611c3c565b90508051600014156115c857604051806020016040528060008152506115f3565b806115d284611c4b565b6040516020016115e3929190612448565b6040516020818303038152906040525b9392505050565b6060601260405160200161160e9190612477565b604051602081830303815290604052905090565b6007546001600160a01b0316331461164c5760405162461bcd60e51b8152600401610a74906125b7565b6001600160a01b0381166116b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a74565b6116ba81611ac5565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061172482611a31565b80519091506000906001600160a01b0316336001600160a01b03161480611752575081516117529033610734565b8061176d57503361176284610897565b6001600160a01b0316145b90508061178d57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117c25760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117e957604051633a954ecd60e21b815260040160405180910390fd5b6117f960008484600001516116bd565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b0316021790559086018083529120549091166118ec576118a0816000541190565b156118ec57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b3233146119855760405162461bcd60e51b815260206004820152601a60248201527f436f6d6963436f7665723a2053656c66204d696e74204f6e6c790000000000006044820152606401610a74565b80801580159061199f5750600f5461199d9083612723565b155b156119be57600f546119b19083612657565b6119bb908261263f565b90505b600c54600b546119ce919061268a565b816119d860005490565b6119e2919061263f565b1115611a275760405162461bcd60e51b815260206004820152601460248201527310dbdb5a58d0dbdd995c8e8814dbdb190813dd5d60621b6044820152606401610a74565b6109668382611d48565b6040805180820190915260008082526020820152611a50826000541190565b611a6d57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611abb579392505050565b5060001901611a6f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611b248584611d62565b14949350505050565b60006001600160a01b0384163b15611c3057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b71903390899088908890600401612523565b602060405180830381600087803b158015611b8b57600080fd5b505af1925050508015611bbb575060408051601f3d908101601f19168201909252611bb891810190612320565b60015b611c16573d808015611be9576040519150601f19603f3d011682016040523d82523d6000602084013e611bee565b606091505b508051611c0e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c34565b5060015b949350505050565b606060128054610814906126cd565b606081611c6f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c995780611c8381612708565b9150611c929050600a83612657565b9150611c73565b6000816001600160401b03811115611cb357611cb361278f565b6040519080825280601f01601f191660200182016040528015611cdd576020820181803683370190505b5090505b8415611c3457611cf260018361268a565b9150611cff600a86612723565b611d0a90603061263f565b60f81b818381518110611d1f57611d1f612779565b60200101906001600160f81b031916908160001a905350611d41600a86612657565b9450611ce1565b610c4f828260405180602001604052806000815250611dd6565b600081815b8451811015611dce576000858281518110611d8457611d84612779565b60200260200101519050808311611daa5760008381526020829052604090209250611dbb565b600081815260208490526040902092505b5080611dc681612708565b915050611d67565b509392505050565b61096683838360016000546001600160a01b038516611e0757604051622e076360e81b815260040160405180910390fd5b83611e255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b85811015611f235760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ef95750611ef76000888488611b2d565b155b15611f17576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611ea2565b5060005561192f565b828054611f38906126cd565b90600052602060002090601f016020900481019282611f5a5760008555611fa0565b82601f10611f7357805160ff1916838001178555611fa0565b82800160010185558215611fa0579182015b82811115611fa0578251825591602001919060010190611f85565b50610dc89291505b80821115610dc85760008155600101611fa8565b60006001600160401b03831115611fd557611fd561278f565b611fe8601f8401601f19166020016125ec565b9050828152838383011115611ffc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461202a57600080fd5b919050565b600082601f83011261204057600080fd5b813560206120556120508361261c565b6125ec565b80838252828201915082860187848660051b890101111561207557600080fd5b60005b8581101561209457813584529284019290840190600101612078565b5090979650505050505050565b6000602082840312156120b357600080fd5b6115f382612013565b600080604083850312156120cf57600080fd5b6120d883612013565b91506120e660208401612013565b90509250929050565b60008060006060848603121561210457600080fd5b61210d84612013565b925061211b60208501612013565b9150604084013590509250925092565b6000806000806080858703121561214157600080fd5b61214a85612013565b935061215860208601612013565b92506040850135915060608501356001600160401b0381111561217a57600080fd5b8501601f8101871361218b57600080fd5b61219a87823560208401611fbc565b91505092959194509250565b600080604083850312156121b957600080fd5b6121c283612013565b915060208301356121d2816127a5565b809150509250929050565b600080604083850312156121f057600080fd5b6121f983612013565b946020939093013593505050565b6000806040838503121561221a57600080fd5b82356001600160401b038082111561223157600080fd5b818501915085601f83011261224557600080fd5b813560206122556120508361261c565b8083825282820191508286018a848660051b890101111561227557600080fd5b600096505b8487101561229f5761228b81612013565b83526001969096019591830191830161227a565b50965050860135925050808211156122b657600080fd5b506122c38582860161202f565b9150509250929050565b6000602082840312156122df57600080fd5b81516115f3816127a5565b6000602082840312156122fc57600080fd5b5035919050565b60006020828403121561231557600080fd5b81356115f3816127b3565b60006020828403121561233257600080fd5b81516115f3816127b3565b60006020828403121561234f57600080fd5b81356001600160401b0381111561236557600080fd5b8201601f8101841361237657600080fd5b611c3484823560208401611fbc565b60006020828403121561239757600080fd5b5051919050565b6000806000604084860312156123b357600080fd5b8335925060208401356001600160401b03808211156123d157600080fd5b818601915086601f8301126123e557600080fd5b8135818111156123f457600080fd5b8760208260051b850101111561240957600080fd5b6020830194508093505050509250925092565b600081518084526124348160208601602086016126a1565b601f01601f19169290920160200192915050565b6000835161245a8184602088016126a1565b83519083019061246e8183602088016126a1565b01949350505050565b600080835481600182811c91508083168061249357607f831692505b60208084108214156124b357634e487b7160e01b86526022600452602486fd5b8180156124c757600181146124d857612505565b60ff19861689528489019650612505565b60008a81526020902060005b868110156124fd5781548b8201529085019083016124e4565b505084890196505b505050505050611c34816718dbdb9d1c9858dd60c21b815260080190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125569083018461241c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125985783518352928401929184019160010161257c565b50909695505050505050565b6020815260006115f3602083018461241c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156126145761261461278f565b604052919050565b60006001600160401b038211156126355761263561278f565b5060051b60200190565b600082198211156126525761265261274d565b500190565b60008261266657612666612763565b500490565b60008160001904831182151516156126855761268561274d565b500290565b60008282101561269c5761269c61274d565b500390565b60005b838110156126bc5781810151838201526020016126a4565b8381111561156d5750506000910152565b600181811c908216806126e157607f821691505b6020821081141561270257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561271c5761271c61274d565b5060010190565b60008261273257612732612763565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146116ba57600080fd5b6001600160e01b0319811681146116ba57600080fdfea26469706673582212200aa519055a194a3b8e268299520247565b56f7eebea7840df120a86517d9da1364736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000606f1e2581dd7481035ad21777b29c15c694aaa21459fcc3def882f3c47aa6c52d000000000000000000000000ceb726e6383468dd8ac0b513c8330cc9fb4024a8000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6d657461646174612e7a6f6d626965636f6d6963732e696f2f31632f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initURI (string): https://metadata.zombiecomics.io/1c/
Arg [1] : _merkleRoot (bytes32): 0x6f1e2581dd7481035ad21777b29c15c694aaa21459fcc3def882f3c47aa6c52d
Arg [2] : _tokenAddress (address): 0xceb726e6383468dD8AC0b513c8330CC9Fb4024a8

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 6f1e2581dd7481035ad21777b29c15c694aaa21459fcc3def882f3c47aa6c52d
Arg [2] : 000000000000000000000000ceb726e6383468dd8ac0b513c8330cc9fb4024a8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [4] : 68747470733a2f2f6d657461646174612e7a6f6d626965636f6d6963732e696f
Arg [5] : 2f31632f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46184:4730:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33083:372;;;;;;;;;;-1:-1:-1;33083:372:0;;;;;:::i;:::-;;:::i;:::-;;;11643:14:1;;11636:22;11618:41;;11606:2;11591:18;33083:372:0;;;;;;;;46477:31;;;;;;;;;;;;;;;;;;;11816:25:1;;;11804:2;11789:18;46477:31:0;11670:177:1;34842:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36319:204::-;;;;;;;;;;-1:-1:-1;36319:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9645:32:1;;;9627:51;;9615:2;9600:18;36319:204:0;9481:203:1;35908:345:0;;;;;;;;;;-1:-1:-1;35908:345:0;;;;;:::i;:::-;;:::i;:::-;;46248:36;;;;;;;;;;;;;;;;31350:101;;;;;;;;;;-1:-1:-1;31403:7:0;31430:13;31350:101;;37176:170;;;;;;;;;;-1:-1:-1;37176:170:0;;;;;:::i;:::-;;:::i;46335:29::-;;;;;;;;;;;;;;;;46588:25;;;;;;;;;;;;;;;;32004:1007;;;;;;;;;;-1:-1:-1;32004:1007:0;;;;;:::i;:::-;;:::i;49972:96::-;;;;;;;;;;-1:-1:-1;49972:96:0;;;;;:::i;:::-;;:::i;50076:357::-;;;;;;;;;;;;;:::i;47476:310::-;;;;;;:::i;:::-;;:::i;37417:185::-;;;;;;;;;;-1:-1:-1;37417:185:0;;;;;:::i;:::-;;:::i;49089:179::-;;;;;;;;;;-1:-1:-1;49089:179:0;;;;;:::i;:::-;;:::i;31528:176::-;;;;;;;;;;-1:-1:-1;31528:176:0;;;;;:::i;:::-;;:::i;50441:104::-;;;;;;;;;;-1:-1:-1;50441:104:0;;;;;:::i;:::-;;:::i;34651:124::-;;;;;;;;;;-1:-1:-1;34651:124:0;;;;;:::i;:::-;;:::i;48617:464::-;;;;;;;;;;-1:-1:-1;48617:464:0;;;;;:::i;:::-;;:::i;46657:53::-;;;;;;;;;;-1:-1:-1;46657:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;46622:26;;;;;;;;;;;;;:::i;33519:206::-;;;;;;;;;;-1:-1:-1;33519:206:0;;;;;:::i;:::-;;:::i;9878:103::-;;;;;;;;;;;;;:::i;50807:104::-;;;;;;;;;;-1:-1:-1;50807:104:0;;;;;:::i;:::-;;:::i;49868:96::-;;;;;;;;;;-1:-1:-1;49868:96:0;;;;;:::i;:::-;;:::i;49778:82::-;;;;;;;;;;;;;:::i;49276:494::-;;;;;;;;;;-1:-1:-1;49276:494:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9227:87::-;;;;;;;;;;-1:-1:-1;9300:6:0;;-1:-1:-1;;;;;9300:6:0;9227:87;;35011:104;;;;;;;;;;;;;:::i;46551:28::-;;;;;;;;;;-1:-1:-1;46551:28:0;;;;-1:-1:-1;;;46551:28:0;;;;;;46515:27;;;;;;;;;;-1:-1:-1;46515:27:0;;;;-1:-1:-1;;;;;46515:27:0;;;36595:279;;;;;;;;;;-1:-1:-1;36595:279:0;;;;;:::i;:::-;;:::i;47794:815::-;;;;;;;;;;-1:-1:-1;47794:815:0;;;;;:::i;:::-;;:::i;46441:27::-;;;;;;;;;;;;;;;;37673:308;;;;;;;;;;-1:-1:-1;37673:308:0;;;;;:::i;:::-;;:::i;35186:318::-;;;;;;;;;;-1:-1:-1;35186:318:0;;;;;:::i;:::-;;:::i;46406:28::-;;;;;;;;;;;;;;;;46291:35;;;;;;;;;;;;;;;;50669:130;;;;;;;;;;;;;:::i;36945:164::-;;;;;;;;;;-1:-1:-1;36945:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37066:25:0;;;37042:4;37066:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36945:164;10136:201;;;;;;;;;;-1:-1:-1;10136:201:0;;;;;:::i;:::-;;:::i;46371:28::-;;;;;;;;;;;;;;;;33083:372;33185:4;-1:-1:-1;;;;;;33222:40:0;;-1:-1:-1;;;33222:40:0;;:105;;-1:-1:-1;;;;;;;33279:48:0;;-1:-1:-1;;;33279:48:0;33222:105;:172;;;-1:-1:-1;;;;;;;33344:50:0;;-1:-1:-1;;;33344:50:0;33222:172;:225;;;-1:-1:-1;;;;;;;;;;22120:40:0;;;33411:36;33202:245;33083:372;-1:-1:-1;;33083:372:0:o;34842:100::-;34896:13;34929:5;34922:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34842:100;:::o;36319:204::-;36387:7;36412:16;36420:7;38293:4;38327:13;-1:-1:-1;38317:23:0;38236:112;36412:16;36407:64;;36437:34;;-1:-1:-1;;;36437:34:0;;;;;;;;;;;36407:64;-1:-1:-1;36491:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36491:24:0;;36319:204::o;35908:345::-;35981:13;35997:24;36013:7;35997:15;:24::i;:::-;35981:40;;36042:5;-1:-1:-1;;;;;36036:11:0;:2;-1:-1:-1;;;;;36036:11:0;;36032:48;;;36056:24;;-1:-1:-1;;;36056:24:0;;;;;;;;;;;36032:48;8031:10;-1:-1:-1;;;;;36097:21:0;;;;;;:63;;-1:-1:-1;36123:37:0;36140:5;8031:10;36945:164;:::i;36123:37::-;36122:38;36097:63;36093:111;;;36169:35;;-1:-1:-1;;;36169:35:0;;;;;;;;;;;36093:111;36217:28;36226:2;36230:7;36239:5;36217:8;:28::i;:::-;35970:283;35908:345;;:::o;37176:170::-;37310:28;37320:4;37326:2;37330:7;37310:9;:28::i;32004:1007::-;32093:7;32126:16;32136:5;32126:9;:16::i;:::-;32117:5;:25;32113:61;;32151:23;;-1:-1:-1;;;32151:23:0;;;;;;;;;;;32113:61;32185:22;31430:13;;;32185:22;;32448:466;32468:14;32464:1;:18;32448:466;;;32508:31;32542:14;;;:11;:14;;;;;;;;;32508:48;;;;;;;;;-1:-1:-1;;;;;32508:48:0;;;;;-1:-1:-1;;;32508:48:0;;;-1:-1:-1;;;;;32508:48:0;;;;;;;;32579:28;32575:111;;32652:14;;;-1:-1:-1;32575:111:0;32729:5;-1:-1:-1;;;;;32708:26:0;:17;-1:-1:-1;;;;;32708:26:0;;32704:195;;;32778:5;32763:11;:20;32759:85;;;-1:-1:-1;32819:1:0;-1:-1:-1;32812:8:0;;-1:-1:-1;;;32812:8:0;32759:85;32866:13;;;;;32704:195;-1:-1:-1;32484:3:0;;32448:466;;;-1:-1:-1;32990:13:0;;:::i;:::-;32102:909;;;32004:1007;;;;:::o;49972:96::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;;;;;;;;;50040:8:::1;:20:::0;49972:96::o;50076:357::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50144:84:::1;::::0;50125:13:::1;::::0;8031:10;;50192:21:::1;::::0;50125:13;50144:84;50125:13;50144:84;50192:21;8031:10;50144:84:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50124:104;;;50247:8;50239:48;;;::::0;-1:-1:-1;;;50239:48:0;;14812:2:1;50239:48:0::1;::::0;::::1;14794:21:1::0;14851:2;14831:18;;;14824:30;14890:29;14870:18;;;14863:57;14937:18;;50239:48:0::1;14610:351:1::0;50239:48:0::1;50305:12;::::0;-1:-1:-1;;;;;50305:12:0::1;50298:29;8031:10:::0;50376:12:::1;::::0;50369:45:::1;::::0;-1:-1:-1;;;50369:45:0;;50408:4:::1;50369:45;::::0;::::1;9627:51:1::0;-1:-1:-1;;;;;50376:12:0;;::::1;::::0;50369:30:::1;::::0;9600:18:1;;50369:45:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50298:127;::::0;-1:-1:-1;;;;;;50298:127:0::1;::::0;;;;;;-1:-1:-1;;;;;10754:32:1;;;50298:127:0::1;::::0;::::1;10736:51:1::0;10803:18;;;10796:34;10709:18;;50298:127:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50113:320;50076:357::o:0;47476:310::-;47554:8;;-1:-1:-1;;;47554:8:0;;;;:16;;47566:4;47554:16;47546:52;;;;-1:-1:-1;;;47546:52:0;;15523:2:1;47546:52:0;;;15505:21:1;15562:2;15542:18;;;15535:30;-1:-1:-1;;;15581:18:1;;;15574:53;15644:18;;47546:52:0;15321:347:1;47546:52:0;47628:9;;47617:7;:20;;47609:57;;;;-1:-1:-1;;;47609:57:0;;12278:2:1;47609:57:0;;;12260:21:1;12317:2;12297:18;;;12290:30;-1:-1:-1;;;12336:18:1;;;12329:54;12400:18;;47609:57:0;12076:348:1;47609:57:0;47709:7;47698:8;;:18;;;;:::i;:::-;47685:9;:31;47677:71;;;;-1:-1:-1;;;47677:71:0;;14456:2:1;47677:71:0;;;14438:21:1;14495:2;14475:18;;;14468:30;14534:29;14514:18;;;14507:57;14581:18;;47677:71:0;14254:351:1;47677:71:0;47759:19;47765:3;47770:7;47759:5;:19::i;37417:185::-;37555:39;37572:4;37578:2;37582:7;37555:39;;;;;;;;;;;;:16;:39::i;49089:179::-;49199:7;49231:21;49245:6;49231:13;:21::i;:::-;49253:6;49231:29;;;;;;;;:::i;:::-;;;;;;;49224:36;;49089:179;;;;:::o;31528:176::-;31595:7;31430:13;;31619:5;:22;31615:58;;31650:23;;-1:-1:-1;;;31650:23:0;;;;;;;;;;;31615:58;-1:-1:-1;31691:5:0;31528:176::o;50441:104::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50516:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;34651:124::-:0;34715:7;34742:20;34754:7;34742:11;:20::i;:::-;:25;;34651:124;-1:-1:-1;;34651:124:0:o;48617:464::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;48755:7:::1;:14;48741:3;:10;:28;48733:69;;;::::0;-1:-1:-1;;;48733:69:0;;15875:2:1;48733:69:0::1;::::0;::::1;15857:21:1::0;15914:2;15894:18;;;15887:30;15953;15933:18;;;15926:58;16001:18;;48733:69:0::1;15673:352:1::0;48733:69:0::1;48818:9;48813:261;48837:3;:10;48833:1;:14;48813:261;;;48869:25;48875:3;48879:1;48875:6;;;;;;;;:::i;:::-;;;;;;;48883:7;48891:1;48883:10;;;;;;;;:::i;:::-;;;;;;;48869:5;:25::i;:::-;48924:1;48913:8;;:12;:38;;;;;48941:7;48949:1;48941:10;;;;;;;;:::i;:::-;;;;;;;48929:8;;:22;;48913:38;48909:154;;;48984:7;48992:1;48984:10;;;;;;;;:::i;:::-;;;;;;;48972:8;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;48909:154:0::1;::::0;-1:-1:-1;48909:154:0::1;;49046:1;49035:8;:12:::0;48909:154:::1;48849:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48813:261;;46622:26:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33519:206::-;33583:7;-1:-1:-1;;;;;33607:19:0;;33603:60;;33635:28;;-1:-1:-1;;;33635:28:0;;;;;;;;;;;33603:60;-1:-1:-1;;;;;;33689:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33689:27:0;;33519:206::o;9878:103::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;9943:30:::1;9970:1;9943:18;:30::i;:::-;9878:103::o:0;50807:104::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50879:10:::1;:24:::0;50807:104::o;49868:96::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;49936:8:::1;:20:::0;49868:96::o;49778:82::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;49844:8:::1;::::0;;-1:-1:-1;;;;49832:20:0;::::1;-1:-1:-1::0;;;49844:8:0;;;::::1;;;49843:9;49832:20:::0;;::::1;;::::0;;49778:82::o;49276:494::-;49363:16;49397:19;49419:17;49429:6;49419:9;:17::i;:::-;49397:39;;49447:26;49490:11;-1:-1:-1;;;;;49476:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49476:26:0;;49447:55;;49513:19;49552:9;49547:189;31403:7;31430:13;49567:1;:17;49547:189;;;49624:6;-1:-1:-1;;;;;49610:20:0;:10;49618:1;49610:7;:10::i;:::-;-1:-1:-1;;;;;49610:20:0;;49606:119;;;49676:1;49651:9;49661:11;49651:22;;;;;;;;:::i;:::-;;;;;;;;;;:26;49696:13;;;;:::i;:::-;;;;49606:119;49586:3;;;;:::i;:::-;;;;49547:189;;;-1:-1:-1;49753:9:0;;49276:494;-1:-1:-1;;;;49276:494:0:o;35011:104::-;35067:13;35100:7;35093:14;;;;;:::i;36595:279::-;-1:-1:-1;;;;;36686:24:0;;8031:10;36686:24;36682:54;;;36719:17;;-1:-1:-1;;;36719:17:0;;;;;;;;;;;36682:54;8031:10;36749:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36749:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36749:53:0;;;;;;;;;;36818:48;;11618:41:1;;;36749:42:0;;8031:10;36818:48;;11591:18:1;36818:48:0;;;;;;;36595:279;;:::o;47794:815::-;47882:8;;-1:-1:-1;;;47882:8:0;;;;:16;;47894:4;47882:16;47874:52;;;;-1:-1:-1;;;47874:52:0;;15523:2:1;47874:52:0;;;15505:21:1;15562:2;15542:18;;;15535:30;-1:-1:-1;;;15581:18:1;;;15574:53;15644:18;;47874:52:0;15321:347:1;47874:52:0;47956:8;;47945:7;:19;;47937:56;;;;-1:-1:-1;;;47937:56:0;;12278:2:1;47937:56:0;;;12260:21:1;12317:2;12297:18;;;12290:30;-1:-1:-1;;;12336:18:1;;;12329:54;12400:18;;47937:56:0;12076:348:1;47937:56:0;48026:146;48063:5;;48026:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48087:10:0;;48126:30;;-1:-1:-1;;8031:10:0;7475:2:1;7471:15;7467:53;48126:30:0;;;7455:66:1;48087:10:0;;-1:-1:-1;7537:12:1;;;-1:-1:-1;48126:30:0;;;;;;;;;;;;48116:41;;;;;;48026:18;:146::i;:::-;48004:223;;;;-1:-1:-1;;;48004:223:0;;13739:2:1;48004:223:0;;;13721:21:1;13778:2;13758:18;;;13751:30;13817:29;13797:18;;;13790:57;13864:18;;48004:223:0;13537:351:1;48004:223:0;48306:8;;8031:10;48260:32;;;;:18;:32;;;;;;:42;;48295:7;;48260:42;:::i;:::-;:54;;48238:127;;;;-1:-1:-1;;;48238:127:0;;12631:2:1;48238:127:0;;;12613:21:1;12670:2;12650:18;;;12643:30;12709:25;12689:18;;;12682:53;12752:18;;48238:127:0;12429:347:1;48238:127:0;48383:12;;-1:-1:-1;;;;;48383:12:0;48376:33;8031:10;48459:4;48490:7;48479:8;;:18;;;;:::i;:::-;48376:132;;-1:-1:-1;;;;;;48376:132:0;;;;;;;-1:-1:-1;;;;;9947:15:1;;;48376:132:0;;;9929:34:1;9999:15;;;;9979:18;;;9972:43;10031:18;;;10024:34;9864:18;;48376:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;48519:28:0;8031:10;48539:7;48519:5;:28::i;:::-;8031:10;48558:32;;;;:18;:32;;;;;:43;;48594:7;;48558:32;:43;;48594:7;;48558:43;:::i;:::-;;;;-1:-1:-1;;;;;47794:815:0:o;37673:308::-;37832:28;37842:4;37848:2;37852:7;37832:9;:28::i;:::-;37876:48;37899:4;37905:2;37909:7;37918:5;37876:22;:48::i;:::-;37871:102;;37933:40;;-1:-1:-1;;;37933:40:0;;;;;;;;;;;37871:102;37673:308;;;;:::o;35186:318::-;35259:13;35290:16;35298:7;38293:4;38327:13;-1:-1:-1;38317:23:0;38236:112;35290:16;35285:59;;35315:29;;-1:-1:-1;;;35315:29:0;;;;;;;;;;;35285:59;35357:21;35381:10;:8;:10::i;:::-;35357:34;;35415:7;35409:21;35434:1;35409:26;;:87;;;;;;;;;;;;;;;;;35462:7;35471:18;:7;:16;:18::i;:::-;35445:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35409:87;35402:94;35186:318;-1:-1:-1;;;35186:318:0:o;50669:130::-;50713:13;50770:7;50753:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;50739:52;;50669:130;:::o;10136:201::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10225:22:0;::::1;10217:73;;;::::0;-1:-1:-1;;;10217:73:0;;12983:2:1;10217:73:0::1;::::0;::::1;12965:21:1::0;13022:2;13002:18;;;12995:30;13061:34;13041:18;;;13034:62;-1:-1:-1;;;13112:18:1;;;13105:36;13158:19;;10217:73:0::1;12781:402:1::0;10217:73:0::1;10301:28;10320:8;10301:18;:28::i;:::-;10136:201:::0;:::o;42999:196::-;43114:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43114:29:0;-1:-1:-1;;;;;43114:29:0;;;;;;;;;43159:28;;43114:24;;43159:28;;;;;;;42999:196;;;:::o;40919:1962::-;41034:35;41072:20;41084:7;41072:11;:20::i;:::-;41147:18;;41034:58;;-1:-1:-1;41105:22:0;;-1:-1:-1;;;;;41131:34:0;8031:10;-1:-1:-1;;;;;41131:34:0;;:101;;;-1:-1:-1;41199:18:0;;41182:50;;8031:10;36945:164;:::i;41182:50::-;41131:154;;;-1:-1:-1;8031:10:0;41249:20;41261:7;41249:11;:20::i;:::-;-1:-1:-1;;;;;41249:36:0;;41131:154;41105:181;;41304:17;41299:66;;41330:35;;-1:-1:-1;;;41330:35:0;;;;;;;;;;;41299:66;41402:4;-1:-1:-1;;;;;41380:26:0;:13;:18;;;-1:-1:-1;;;;;41380:26:0;;41376:67;;41415:28;;-1:-1:-1;;;41415:28:0;;;;;;;;;;;41376:67;-1:-1:-1;;;;;41458:16:0;;41454:52;;41483:23;;-1:-1:-1;;;41483:23:0;;;;;;;;;;;41454:52;41627:49;41644:1;41648:7;41657:13;:18;;;41627:8;:49::i;:::-;-1:-1:-1;;;;;41972:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;41972:31:0;;;-1:-1:-1;;;;;41972:31:0;;;-1:-1:-1;;41972:31:0;;;;;;;42018:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42018:29:0;;;;;;;;;;;;;42064:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42109:61:0;;;;-1:-1:-1;;;42154:15:0;-1:-1:-1;;;;;42109:61:0;;;;;42444:11;;;42474:24;;;;;:29;42444:11;;42474:29;42470:295;;42542:20;42550:11;38293:4;38327:13;-1:-1:-1;38317:23:0;38236:112;42542:20;42538:212;;;42619:18;;;42587:24;;;:11;:24;;;;;;;;:50;;42702:28;;;;-1:-1:-1;;;;;42660:70:0;-1:-1:-1;;;42660:70:0;-1:-1:-1;;;;;;42660:70:0;;;-1:-1:-1;;;;;42587:50:0;;;42660:70;;;;;;;42538:212;41947:829;42812:7;42808:2;-1:-1:-1;;;;;42793:27:0;42802:4;-1:-1:-1;;;;;42793:27:0;;;;;;;;;;;42831:42;41023:1858;;40919:1962;;;:::o;47000:468::-;47073:9;47086:10;47073:23;47065:62;;;;-1:-1:-1;;;47065:62:0;;15168:2:1;47065:62:0;;;15150:21:1;15207:2;15187:18;;;15180:30;15246:28;15226:18;;;15219:56;15292:18;;47065:62:0;14966:350:1;47065:62:0;47160:7;47182:11;;;;;:42;;-1:-1:-1;47207:12:0;;47197:22;;:7;:22;:::i;:::-;:27;47182:42;47178:112;;;47266:12;;47256:22;;:7;:22;:::i;:::-;47241:37;;;;:::i;:::-;;;47178:112;47365:8;;47354;;:19;;;;:::i;:::-;47338:11;47322:13;31403:7;31430:13;;31350:101;47322:13;:27;;;;:::i;:::-;:52;;47300:122;;;;-1:-1:-1;;;47300:122:0;;13390:2:1;47300:122:0;;;13372:21:1;13429:2;13409:18;;;13402:30;-1:-1:-1;;;13448:18:1;;;13441:50;13508:18;;47300:122:0;13188:344:1;47300:122:0;47433:27;47443:3;47448:11;47433:9;:27::i;34142:447::-;-1:-1:-1;;;;;;;;;;;;;;;;;34242:16:0;34250:7;38293:4;38327:13;-1:-1:-1;38317:23:0;38236:112;34242:16;34237:61;;34267:31;;-1:-1:-1;;;34267:31:0;;;;;;;;;;;34237:61;34356:7;34336:235;34393:31;34427:17;;;:11;:17;;;;;;;;;34393:51;;;;;;;;;-1:-1:-1;;;;;34393:51:0;;;;;-1:-1:-1;;;34393:51:0;;;-1:-1:-1;;;;;34393:51:0;;;;;;;;34467:28;34463:93;;34527:9;34142:447;-1:-1:-1;;;34142:447:0:o;34463:93::-;-1:-1:-1;;;34366:6:0;34336:235;;10497:191;10590:6;;;-1:-1:-1;;;;;10607:17:0;;;-1:-1:-1;;;;;;10607:17:0;;;;;;;10640:40;;10590:6;;;10607:17;10590:6;;10640:40;;10571:16;;10640:40;10560:128;10497:191;:::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;43760:765::-;43915:4;-1:-1:-1;;;;;43936:13:0;;12223:19;:23;43932:586;;43972:72;;-1:-1:-1;;;43972:72:0;;-1:-1:-1;;;;;43972:36:0;;;;;:72;;8031:10;;44023:4;;44029:7;;44038:5;;43972:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43972:72:0;;;;;;;;-1:-1:-1;;43972:72:0;;;;;;;;;;;;:::i;:::-;;;43968:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44218:13:0;;44214:234;;44245:40;;-1:-1:-1;;;44245:40:0;;;;;;;;;;;44214:234;44398:6;44392:13;44383:6;44379:2;44375:15;44368:38;43968:495;-1:-1:-1;;;;;;44095:55:0;-1:-1:-1;;;44095:55:0;;-1:-1:-1;44088:62:0;;43932:586;-1:-1:-1;44502:4:0;43932:586;43760:765;;;;;;:::o;50553:108::-;50613:13;50646:7;50639:14;;;;;:::i;5513:723::-;5569:13;5790:10;5786:53;;-1:-1:-1;;5817:10:0;;;;;;;;;;;;-1:-1:-1;;;5817:10:0;;;;;5513:723::o;5786:53::-;5864:5;5849:12;5905:78;5912:9;;5905:78;;5938:8;;;;:::i;:::-;;-1:-1:-1;5961:10:0;;-1:-1:-1;5969:2:0;5961:10;;:::i;:::-;;;5905:78;;;5993:19;6025:6;-1:-1:-1;;;;;6015:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6015:17:0;;5993:39;;6043:154;6050:10;;6043:154;;6077:11;6087:1;6077:11;;:::i;:::-;;-1:-1:-1;6146:10:0;6154:2;6146:5;:10;:::i;:::-;6133:24;;:2;:24;:::i;:::-;6120:39;;6103:6;6110;6103:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6103:56:0;;;;;;;;-1:-1:-1;6174:11:0;6183:2;6174:11;;:::i;:::-;;;6043:154;;38356:104;38425:27;38435:2;38439:8;38425:27;;;;;;;;;;;;:9;:27::i;1475:675::-;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;38823:163::-;38946:32;38952:2;38956:8;38966:5;38973:4;39384:20;39407:13;-1:-1:-1;;;;;39435:16:0;;39431:48;;39460:19;;-1:-1:-1;;;39460:19:0;;;;;;;;;;;39431:48;39494:13;39490:44;;39516:18;;-1:-1:-1;;;39516:18:0;;;;;;;;;;;39490:44;-1:-1:-1;;;;;39887:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;39887:45:0;;-1:-1:-1;;;;;39887:45:0;;;;;;;;;;39947:50;;;;;;;;;;;;;;40014:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;40064:66:0;;;;-1:-1:-1;;;40114:15:0;-1:-1:-1;;;;;40064:66:0;;;;;;40014:25;;40199:330;40219:8;40215:1;:12;40199:330;;;40258:38;;40283:12;;-1:-1:-1;;;;;40258:38:0;;;40275:1;;40258:38;;40275:1;;40258:38;40319:4;:68;;;;;40328:59;40359:1;40363:2;40367:12;40381:5;40328:22;:59::i;:::-;40327:60;40319:68;40315:164;;;40419:40;;-1:-1:-1;;;40419:40:0;;;;;;;;;;;40315:164;40499:14;;;;;40229:3;40199:330;;;-1:-1:-1;40545:13:0;:28;40597:60;37673:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:186::-;1340:6;1393:2;1381:9;1372:7;1368:23;1364:32;1361:52;;;1409:1;1406;1399:12;1361:52;1432:29;1451:9;1432:29;:::i;1472:260::-;1540:6;1548;1601:2;1589:9;1580:7;1576:23;1572:32;1569:52;;;1617:1;1614;1607:12;1569:52;1640:29;1659:9;1640:29;:::i;:::-;1630:39;;1688:38;1722:2;1711:9;1707:18;1688:38;:::i;:::-;1678:48;;1472:260;;;;;:::o;1737:328::-;1814:6;1822;1830;1883:2;1871:9;1862:7;1858:23;1854:32;1851:52;;;1899:1;1896;1889:12;1851:52;1922:29;1941:9;1922:29;:::i;:::-;1912:39;;1970:38;2004:2;1993:9;1989:18;1970:38;:::i;:::-;1960:48;;2055:2;2044:9;2040:18;2027:32;2017:42;;1737:328;;;;;:::o;2070:666::-;2165:6;2173;2181;2189;2242:3;2230:9;2221:7;2217:23;2213:33;2210:53;;;2259:1;2256;2249:12;2210:53;2282:29;2301:9;2282:29;:::i;:::-;2272:39;;2330:38;2364:2;2353:9;2349:18;2330:38;:::i;:::-;2320:48;;2415:2;2404:9;2400:18;2387:32;2377:42;;2470:2;2459:9;2455:18;2442:32;-1:-1:-1;;;;;2489:6:1;2486:30;2483:50;;;2529:1;2526;2519:12;2483:50;2552:22;;2605:4;2597:13;;2593:27;-1:-1:-1;2583:55:1;;2634:1;2631;2624:12;2583:55;2657:73;2722:7;2717:2;2704:16;2699:2;2695;2691:11;2657:73;:::i;:::-;2647:83;;;2070:666;;;;;;;:::o;2741:315::-;2806:6;2814;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;2906:29;2925:9;2906:29;:::i;:::-;2896:39;;2985:2;2974:9;2970:18;2957:32;2998:28;3020:5;2998:28;:::i;:::-;3045:5;3035:15;;;2741:315;;;;;:::o;3061:254::-;3129:6;3137;3190:2;3178:9;3169:7;3165:23;3161:32;3158:52;;;3206:1;3203;3196:12;3158:52;3229:29;3248:9;3229:29;:::i;:::-;3219:39;3305:2;3290:18;;;;3277:32;;-1:-1:-1;;;3061:254:1:o;3320:1157::-;3438:6;3446;3499:2;3487:9;3478:7;3474:23;3470:32;3467:52;;;3515:1;3512;3505:12;3467:52;3555:9;3542:23;-1:-1:-1;;;;;3625:2:1;3617:6;3614:14;3611:34;;;3641:1;3638;3631:12;3611:34;3679:6;3668:9;3664:22;3654:32;;3724:7;3717:4;3713:2;3709:13;3705:27;3695:55;;3746:1;3743;3736:12;3695:55;3782:2;3769:16;3804:4;3828:60;3844:43;3884:2;3844:43;:::i;3828:60::-;3910:3;3934:2;3929:3;3922:15;3962:2;3957:3;3953:12;3946:19;;3993:2;3989;3985:11;4041:7;4036:2;4030;4027:1;4023:10;4019:2;4015:19;4011:28;4008:41;4005:61;;;4062:1;4059;4052:12;4005:61;4084:1;4075:10;;4094:169;4108:2;4105:1;4102:9;4094:169;;;4165:23;4184:3;4165:23;:::i;:::-;4153:36;;4126:1;4119:9;;;;;4209:12;;;;4241;;4094:169;;;-1:-1:-1;4282:5:1;-1:-1:-1;;4325:18:1;;4312:32;;-1:-1:-1;;4356:16:1;;;4353:36;;;4385:1;4382;4375:12;4353:36;;4408:63;4463:7;4452:8;4441:9;4437:24;4408:63;:::i;:::-;4398:73;;;3320:1157;;;;;:::o;4482:245::-;4549:6;4602:2;4590:9;4581:7;4577:23;4573:32;4570:52;;;4618:1;4615;4608:12;4570:52;4650:9;4644:16;4669:28;4691:5;4669:28;:::i;4732:180::-;4791:6;4844:2;4832:9;4823:7;4819:23;4815:32;4812:52;;;4860:1;4857;4850:12;4812:52;-1:-1:-1;4883:23:1;;4732:180;-1:-1:-1;4732:180:1:o;4917:245::-;4975:6;5028:2;5016:9;5007:7;5003:23;4999:32;4996:52;;;5044:1;5041;5034:12;4996:52;5083:9;5070:23;5102:30;5126:5;5102:30;:::i;5167:249::-;5236:6;5289:2;5277:9;5268:7;5264:23;5260:32;5257:52;;;5305:1;5302;5295:12;5257:52;5337:9;5331:16;5356:30;5380:5;5356:30;:::i;5421:450::-;5490:6;5543:2;5531:9;5522:7;5518:23;5514:32;5511:52;;;5559:1;5556;5549:12;5511:52;5599:9;5586:23;-1:-1:-1;;;;;5624:6:1;5621:30;5618:50;;;5664:1;5661;5654:12;5618:50;5687:22;;5740:4;5732:13;;5728:27;-1:-1:-1;5718:55:1;;5769:1;5766;5759:12;5718:55;5792:73;5857:7;5852:2;5839:16;5834:2;5830;5826:11;5792:73;:::i;6061:184::-;6131:6;6184:2;6172:9;6163:7;6159:23;6155:32;6152:52;;;6200:1;6197;6190:12;6152:52;-1:-1:-1;6223:16:1;;6061:184;-1:-1:-1;6061:184:1:o;6250:683::-;6345:6;6353;6361;6414:2;6402:9;6393:7;6389:23;6385:32;6382:52;;;6430:1;6427;6420:12;6382:52;6466:9;6453:23;6443:33;;6527:2;6516:9;6512:18;6499:32;-1:-1:-1;;;;;6591:2:1;6583:6;6580:14;6577:34;;;6607:1;6604;6597:12;6577:34;6645:6;6634:9;6630:22;6620:32;;6690:7;6683:4;6679:2;6675:13;6671:27;6661:55;;6712:1;6709;6702:12;6661:55;6752:2;6739:16;6778:2;6770:6;6767:14;6764:34;;;6794:1;6791;6784:12;6764:34;6847:7;6842:2;6832:6;6829:1;6825:14;6821:2;6817:23;6813:32;6810:45;6807:65;;;6868:1;6865;6858:12;6807:65;6899:2;6895;6891:11;6881:21;;6921:6;6911:16;;;;;6250:683;;;;;:::o;6938:257::-;6979:3;7017:5;7011:12;7044:6;7039:3;7032:19;7060:63;7116:6;7109:4;7104:3;7100:14;7093:4;7086:5;7082:16;7060:63;:::i;:::-;7177:2;7156:15;-1:-1:-1;;7152:29:1;7143:39;;;;7184:4;7139:50;;6938:257;-1:-1:-1;;6938:257:1:o;7560:470::-;7739:3;7777:6;7771:13;7793:53;7839:6;7834:3;7827:4;7819:6;7815:17;7793:53;:::i;:::-;7909:13;;7868:16;;;;7931:57;7909:13;7868:16;7965:4;7953:17;;7931:57;:::i;:::-;8004:20;;7560:470;-1:-1:-1;;;;7560:470:1:o;8035:1231::-;8264:3;8293:1;8326:6;8320:13;8356:3;8378:1;8406:9;8402:2;8398:18;8388:28;;8466:2;8455:9;8451:18;8488;8478:61;;8532:4;8524:6;8520:17;8510:27;;8478:61;8558:2;8606;8598:6;8595:14;8575:18;8572:38;8569:165;;;-1:-1:-1;;;8633:33:1;;8689:4;8686:1;8679:15;8719:4;8640:3;8707:17;8569:165;8750:18;8777:104;;;;8895:1;8890:320;;;;8743:467;;8777:104;-1:-1:-1;;8810:24:1;;8798:37;;8855:16;;;;-1:-1:-1;8777:104:1;;8890:320;16753:1;16746:14;;;16790:4;16777:18;;8985:1;8999:165;9013:6;9010:1;9007:13;8999:165;;;9091:14;;9078:11;;;9071:35;9134:16;;;;9028:10;;8999:165;;;9003:3;;9193:6;9188:3;9184:16;9177:23;;8743:467;;;;;;;9226:34;9256:3;-1:-1:-1;;;7265:23:1;;7313:1;7304:11;;7200:121;10069:488;-1:-1:-1;;;;;10338:15:1;;;10320:34;;10390:15;;10385:2;10370:18;;10363:43;10437:2;10422:18;;10415:34;;;10485:3;10480:2;10465:18;;10458:31;;;10263:4;;10506:45;;10531:19;;10523:6;10506:45;:::i;:::-;10498:53;10069:488;-1:-1:-1;;;;;;10069:488:1:o;10841:632::-;11012:2;11064:21;;;11134:13;;11037:18;;;11156:22;;;10983:4;;11012:2;11235:15;;;;11209:2;11194:18;;;10983:4;11278:169;11292:6;11289:1;11286:13;11278:169;;;11353:13;;11341:26;;11422:15;;;;11387:12;;;;11314:1;11307:9;11278:169;;;-1:-1:-1;11464:3:1;;10841:632;-1:-1:-1;;;;;;10841:632:1:o;11852:219::-;12001:2;11990:9;11983:21;11964:4;12021:44;12061:2;12050:9;12046:18;12038:6;12021:44;:::i;13893:356::-;14095:2;14077:21;;;14114:18;;;14107:30;14173:34;14168:2;14153:18;;14146:62;14240:2;14225:18;;13893:356::o;16212:275::-;16283:2;16277:9;16348:2;16329:13;;-1:-1:-1;;16325:27:1;16313:40;;-1:-1:-1;;;;;16368:34:1;;16404:22;;;16365:62;16362:88;;;16430:18;;:::i;:::-;16466:2;16459:22;16212:275;;-1:-1:-1;16212:275:1:o;16492:183::-;16552:4;-1:-1:-1;;;;;16577:6:1;16574:30;16571:56;;;16607:18;;:::i;:::-;-1:-1:-1;16652:1:1;16648:14;16664:4;16644:25;;16492:183::o;16806:128::-;16846:3;16877:1;16873:6;16870:1;16867:13;16864:39;;;16883:18;;:::i;:::-;-1:-1:-1;16919:9:1;;16806:128::o;16939:120::-;16979:1;17005;16995:35;;17010:18;;:::i;:::-;-1:-1:-1;17044:9:1;;16939:120::o;17064:168::-;17104:7;17170:1;17166;17162:6;17158:14;17155:1;17152:21;17147:1;17140:9;17133:17;17129:45;17126:71;;;17177:18;;:::i;:::-;-1:-1:-1;17217:9:1;;17064:168::o;17237:125::-;17277:4;17305:1;17302;17299:8;17296:34;;;17310:18;;:::i;:::-;-1:-1:-1;17347:9:1;;17237:125::o;17367:258::-;17439:1;17449:113;17463:6;17460:1;17457:13;17449:113;;;17539:11;;;17533:18;17520:11;;;17513:39;17485:2;17478:10;17449:113;;;17580:6;17577:1;17574:13;17571:48;;;-1:-1:-1;;17615:1:1;17597:16;;17590:27;17367:258::o;17630:380::-;17709:1;17705:12;;;;17752;;;17773:61;;17827:4;17819:6;17815:17;17805:27;;17773:61;17880:2;17872:6;17869:14;17849:18;17846:38;17843:161;;;17926:10;17921:3;17917:20;17914:1;17907:31;17961:4;17958:1;17951:15;17989:4;17986:1;17979:15;17843:161;;17630:380;;;:::o;18015:135::-;18054:3;-1:-1:-1;;18075:17:1;;18072:43;;;18095:18;;:::i;:::-;-1:-1:-1;18142:1:1;18131:13;;18015:135::o;18155:112::-;18187:1;18213;18203:35;;18218:18;;:::i;:::-;-1:-1:-1;18252:9:1;;18155:112::o;18272:127::-;18333:10;18328:3;18324:20;18321:1;18314:31;18364:4;18361:1;18354:15;18388:4;18385:1;18378:15;18404:127;18465:10;18460:3;18456:20;18453:1;18446:31;18496:4;18493:1;18486:15;18520:4;18517:1;18510:15;18536:127;18597:10;18592:3;18588:20;18585:1;18578:31;18628:4;18625:1;18618:15;18652:4;18649:1;18642:15;18668:127;18729:10;18724:3;18720:20;18717:1;18710:31;18760:4;18757:1;18750:15;18784:4;18781:1;18774:15;18800:127;18861:10;18856:3;18852:20;18849:1;18842:31;18892:4;18889:1;18882:15;18916:4;18913:1;18906:15;18932:118;19018:5;19011:13;19004:21;18997:5;18994:32;18984:60;;19040:1;19037;19030:12;19055:131;-1:-1:-1;;;;;;19129:32:1;;19119:43;;19109:71;;19176:1;19173;19166:12

Swarm Source

ipfs://0aa519055a194a3b8e268299520247565b56f7eebea7840df120a86517d9da13
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.