ETH Price: $3,482.21 (+3.08%)
Gas: 7 Gwei

Token

Quirkies (QRKS)
 

Overview

Max Total Supply

5,000 QRKS

Holders

1,705

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 QRKS
0x78f553B2858fC58473f7c5307446b2B27d240e6d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

5,000 Quirkies brought into the metaverse to celebrate everyone's quirks'.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Quirkies

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-10
*/

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


// OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// 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/Address.sol


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


pragma solidity 0.8.11;





contract Quirkies is Ownable, ERC721, ReentrancyGuard {
    uint256 public nftPrice = 0.05 ether;
    uint256 public totalSupply = 0;

    uint256 public nftLimit = 5000;
    uint256 public reserved = 50;
    uint256 public capWhitelist = 2;
    uint256 public capPublic = 5;

    bool public saleWhitelist = false;
    bool public salePublic = false;

    bytes32 public merkleRoot;

    string public baseURI = "";

    mapping(address => uint256) public presaleAddresses;

    constructor(string memory _initURI, bytes32 _merkleRoot)
        ERC721("Quirkies", "QRKS")
    {
        baseURI = _initURI;
        merkleRoot = _merkleRoot;
    }

    function mint(uint256 _amount) public payable nonReentrant {
        require(salePublic == true, "Quirkies: Not Started");
        require(_amount <= capPublic, "Quirkies: Amount Limit");
        require(
            totalSupply + _amount <= (nftLimit - reserved),
            "Quirkies: Sold Out"
        );
        _mint(_amount);
    }

    function mintWhitelist(uint256 _amount, bytes32[] calldata proof)
        public
        payable
        nonReentrant
    {
        require(saleWhitelist == true, "Quirkies: Not Started");
        require(
            MerkleProof.verify(
                proof,
                merkleRoot,
                keccak256(abi.encodePacked(_msgSender()))
            ),
            "Quirkies: Not Whitelisted"
        );
        require(
            presaleAddresses[_msgSender()] + _amount <= capWhitelist,
            "Quirkies: Amount Limit"
        );
        _mint(_amount);
        presaleAddresses[_msgSender()] += _amount;
    }

    function _mint(uint256 _amount) internal {
        require(tx.origin == msg.sender, "Quirkies: Self Mint Only");
        require(
            totalSupply + _amount <= (nftLimit - reserved),
            "Quirkies: Sold Out"
        );
        require(msg.value == nftPrice * _amount, "Quirkies: Incorrect Value");
        for (uint256 i = 0; i < _amount; i++) {
            _safeMint(_msgSender(), totalSupply);
            totalSupply++;
        }
    }

    function reserve(address[] calldata _tos) external onlyOwner nonReentrant {
        require(totalSupply + _tos.length <= nftLimit, "Quirkies: Sold Out");
        for (uint256 i = 0; i < _tos.length; i++) {
            _safeMint(_tos[i], totalSupply);
            totalSupply++;
            if (reserved > 0) {
                reserved--;
            }
        }
    }

    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 withdraw() public payable onlyOwner {
        uint256 _balance = address(this).balance;
        address TEAM5 = 0x1350BAA348fC0139999C40e5b80FdC26617E3F67;
        address TEAM4 = 0xec19a74D69329C531B133b6Ad752F5EdebDbdBC5;
        address TEAM3 = 0x74faad5e1f9a5B8427F33D5c8924870c949488f7;
        address TEAM2 = 0x761C9BDE27449415C924C64528BFaA01fbC68A6D;
        address TEAM1 = 0x816639f88d7f5405b0CCB0582908b388a1e2c8Bd;

        (bool t5tx, ) = payable(TEAM5).call{value: (_balance * 10) / 100}("");
        require(t5tx, "Quirkies: Transfer 5 Failed");

        (bool t4tx, ) = payable(TEAM4).call{value: (_balance * 5) / 100}("");
        require(t4tx, "Quirkies: Transfer 4 Failed");

        (bool team3tx, ) = payable(TEAM3).call{value: (_balance * 5) / 100}("");
        require(team3tx, "Quirkies: Transfer 3 Failed");

        (bool team2tx, ) = payable(TEAM2).call{value: (_balance * 5) / 100}("");
        require(team2tx, "Quirkies: Transfer 2 Failed");

        (bool _team1tx, ) = payable(TEAM1).call{value: address(this).balance}(
            ""
        );
        require(_team1tx, "Quirkies: Transfer 1 Failed");
    }

    function toggleSaleWhitelist() public onlyOwner {
        saleWhitelist = !saleWhitelist;
    }

    function toggleSalePublic() public onlyOwner {
        salePublic = !salePublic;
    }

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

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

    function setNftLimit(uint256 _nftLimit) public onlyOwner {
        nftLimit = _nftLimit;
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"capWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"mintWhitelist","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos","type":"address[]"}],"name":"reserve","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":"salePublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleWhitelist","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":"_nftLimit","type":"uint256"}],"name":"setNftLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPrice","type":"uint256"}],"name":"setNftPrice","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":"toggleSalePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleWhitelist","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

66b1a2bc2ec5000060085560006009819055611388600a556032600b556002600c556005600d55600e805461ffff1916905560a0604081905260808290526200004c91601091906200017c565b503480156200005a57600080fd5b5060405162002dbd38038062002dbd8339810160408190526200007d9162000238565b60405180604001604052806008815260200167517569726b69657360c01b8152506040518060400160405280600481526020016351524b5360e01b815250620000d5620000cf6200012860201b60201c565b6200012c565b8151620000ea9060019060208501906200017c565b508051620001009060029060208401906200017c565b505060016007555081516200011d9060109060208501906200017c565b50600f55506200035a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200018a906200031d565b90600052602060002090601f016020900481019282620001ae5760008555620001f9565b82601f10620001c957805160ff1916838001178555620001f9565b82800160010185558215620001f9579182015b82811115620001f9578251825591602001919060010190620001dc565b50620002079291506200020b565b5090565b5b808211156200020757600081556001016200020c565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200024c57600080fd5b82516001600160401b03808211156200026457600080fd5b818501915085601f8301126200027957600080fd5b8151818111156200028e576200028e62000222565b604051601f8201601f19908116603f01168101908382118183101715620002b957620002b962000222565b81604052828152602093508884848701011115620002d657600080fd5b600091505b82821015620002fa5784820184015181830185015290830190620002db565b828211156200030c5760008484830101525b969092015195979596505050505050565b600181811c908216806200033257607f821691505b602082108114156200035457634e487b7160e01b600052602260045260246000fd5b50919050565b612a53806200036a6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063d682ed861161006f578063d682ed861461064b578063e8a3d4851461066b578063e985e9c514610680578063f2fde38b146106c9578063fe60d12c146106e957600080fd5b8063b88d4fde146105c5578063b8f929ad146105e5578063c87b56dd146105ff578063cb4e83261461061f578063d5e13d651461063557600080fd5b80638462151c116100f25780638462151c146105325780638da5cb5b1461055f57806395d89b411461057d578063a0712d6814610592578063a22cb465146105a557600080fd5b806370a082311461049d578063711b9e92146104bd578063715018a6146104dd5780637cb64759146104f25780637d9a7a4c1461051257600080fd5b80632eb4a7ab116101bc5780634eabe20b116101805780634eabe20b1461040657806355f804b31461041b5780636352211e1461043b57806366fca9801461045b5780636c0360eb1461048857600080fd5b80632eb4a7ab146103935780633ccfd60b146103a957806342842e0e146103b15780634707f44f146103d15780634bffad9f146103f157600080fd5b80630d39fc81116102035780630d39fc811461030457806318160ddd1461032857806320a447941461033e57806323b872dd1461035d5780632a7065ea1461037d57600080fd5b806301ffc9a714610240578063061431a81461027557806306fdde031461028a578063081812fc146102ac578063095ea7b3146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b36600461226c565b6106ff565b60405190151581526020015b60405180910390f35b6102886102833660046122d5565b610751565b005b34801561029657600080fd5b5061029f61092e565b60405161026c9190612379565b3480156102b857600080fd5b506102cc6102c736600461238c565b6109c0565b6040516001600160a01b03909116815260200161026c565b3480156102f057600080fd5b506102886102ff3660046123c1565b610a55565b34801561031057600080fd5b5061031a60085481565b60405190815260200161026c565b34801561033457600080fd5b5061031a60095481565b34801561034a57600080fd5b50600e5461026090610100900460ff1681565b34801561036957600080fd5b506102886103783660046123eb565b610b6b565b34801561038957600080fd5b5061031a600a5481565b34801561039f57600080fd5b5061031a600f5481565b610288610b9c565b3480156103bd57600080fd5b506102886103cc3660046123eb565b610fab565b3480156103dd57600080fd5b5061031a6103ec3660046123c1565b610fc6565b3480156103fd57600080fd5b50610288610ff2565b34801561041257600080fd5b50610288611039565b34801561042757600080fd5b506102886104363660046124b3565b611077565b34801561044757600080fd5b506102cc61045636600461238c565b6110b8565b34801561046757600080fd5b5061031a6104763660046124fc565b60116020526000908152604090205481565b34801561049457600080fd5b5061029f61112f565b3480156104a957600080fd5b5061031a6104b83660046124fc565b6111bd565b3480156104c957600080fd5b506102886104d836600461238c565b611244565b3480156104e957600080fd5b50610288611273565b3480156104fe57600080fd5b5061028861050d36600461238c565b6112a9565b34801561051e57600080fd5b5061028861052d36600461238c565b6112d8565b34801561053e57600080fd5b5061055261054d3660046124fc565b611307565b60405161026c9190612517565b34801561056b57600080fd5b506000546001600160a01b03166102cc565b34801561058957600080fd5b5061029f6113d5565b6102886105a036600461238c565b6113e4565b3480156105b157600080fd5b506102886105c036600461255b565b6114f9565b3480156105d157600080fd5b506102886105e0366004612597565b611504565b3480156105f157600080fd5b50600e546102609060ff1681565b34801561060b57600080fd5b5061029f61061a36600461238c565b61153c565b34801561062b57600080fd5b5061031a600d5481565b34801561064157600080fd5b5061031a600c5481565b34801561065757600080fd5b50610288610666366004612613565b611617565b34801561067757600080fd5b5061029f611724565b34801561068c57600080fd5b5061026061069b366004612655565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106d557600080fd5b506102886106e43660046124fc565b61174c565b3480156106f557600080fd5b5061031a600b5481565b60006001600160e01b031982166380ac58cd60e01b148061073057506001600160e01b03198216635b5e139f60e01b145b8061074b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6002600754141561077d5760405162461bcd60e51b815260040161077490612688565b60405180910390fd5b6002600755600e5460ff1615156001146107d15760405162461bcd60e51b8152602060048201526015602482015274145d5a5c9ada595cce88139bdd0814dd185c9d1959605a1b6044820152606401610774565b61084682828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206117e7565b6108925760405162461bcd60e51b815260206004820152601960248201527f517569726b6965733a204e6f742057686974656c6973746564000000000000006044820152606401610774565b600c54336000908152601160205260409020546108b09085906126d5565b11156108f75760405162461bcd60e51b8152602060048201526016602482015275145d5a5c9ada595cce88105b5bdd5b9d08131a5b5a5d60521b6044820152606401610774565b610900836117fd565b336000908152601160205260408120805485929061091f9084906126d5565b90915550506001600755505050565b60606001805461093d906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610969906126ed565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610774565b506000908152600560205260409020546001600160a01b031690565b6000610a60826110b8565b9050806001600160a01b0316836001600160a01b03161415610ace5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610774565b336001600160a01b0382161480610aea5750610aea813361069b565b610b5c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610774565b610b668383611920565b505050565b610b75338261198e565b610b915760405162461bcd60e51b815260040161077490612728565b610b66838383611a85565b6000546001600160a01b03163314610bc65760405162461bcd60e51b815260040161077490612779565b47731350baa348fc0139999c40e5b80fdc26617e3f6773ec19a74d69329c531b133b6ad752f5edebdbdbc57374faad5e1f9a5b8427f33d5c8924870c949488f773761c9bde27449415c924c64528bfaa01fbc68a6d73816639f88d7f5405b0ccb0582908b388a1e2c8bd6000856064610c4089600a6127ae565b610c4a91906127e3565b604051600081818185875af1925050503d8060008114610c86576040519150601f19603f3d011682016040523d82523d6000602084013e610c8b565b606091505b5050905080610cdc5760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722035204661696c656400000000006044820152606401610774565b60006001600160a01b0386166064610cf58a60056127ae565b610cff91906127e3565b604051600081818185875af1925050503d8060008114610d3b576040519150601f19603f3d011682016040523d82523d6000602084013e610d40565b606091505b5050905080610d915760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722034204661696c656400000000006044820152606401610774565b60006001600160a01b0386166064610daa8b60056127ae565b610db491906127e3565b604051600081818185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e465760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722033204661696c656400000000006044820152606401610774565b60006001600160a01b0386166064610e5f8c60056127ae565b610e6991906127e3565b604051600081818185875af1925050503d8060008114610ea5576040519150601f19603f3d011682016040523d82523d6000602084013e610eaa565b606091505b5050905080610efb5760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722032204661696c656400000000006044820152606401610774565b6000856001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f48576040519150601f19603f3d011682016040523d82523d6000602084013e610f4d565b606091505b5050905080610f9e5760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722031204661696c656400000000006044820152606401610774565b5050505050505050505050565b610b6683838360405180602001604052806000815250611504565b6000610fd183611307565b8281518110610fe257610fe26127f7565b6020026020010151905092915050565b6000546001600160a01b0316331461101c5760405162461bcd60e51b815260040161077490612779565b600e805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146110635760405162461bcd60e51b815260040161077490612779565b600e805460ff19811660ff90911615179055565b6000546001600160a01b031633146110a15760405162461bcd60e51b815260040161077490612779565b80516110b49060109060208401906121bd565b5050565b6000818152600360205260408120546001600160a01b03168061074b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610774565b6010805461113c906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611168906126ed565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b505050505081565b60006001600160a01b0382166112285760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610774565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461126e5760405162461bcd60e51b815260040161077490612779565b600a55565b6000546001600160a01b0316331461129d5760405162461bcd60e51b815260040161077490612779565b6112a76000611c25565b565b6000546001600160a01b031633146112d35760405162461bcd60e51b815260040161077490612779565b600f55565b6000546001600160a01b031633146113025760405162461bcd60e51b815260040161077490612779565b600855565b60606000611314836111bd565b905060008167ffffffffffffffff81111561133157611331612427565b60405190808252806020026020018201604052801561135a578160200160208202803683370190505b5090506000805b6009548110156113cb57856001600160a01b031661137e826110b8565b6001600160a01b031614156113b957808383815181106113a0576113a06127f7565b6020908102919091010152816113b58161280d565b9250505b806113c38161280d565b915050611361565b5090949350505050565b60606002805461093d906126ed565b600260075414156114075760405162461bcd60e51b815260040161077490612688565b6002600755600e5460ff6101009091041615156001146114615760405162461bcd60e51b8152602060048201526015602482015274145d5a5c9ada595cce88139bdd0814dd185c9d1959605a1b6044820152606401610774565b600d548111156114ac5760405162461bcd60e51b8152602060048201526016602482015275145d5a5c9ada595cce88105b5bdd5b9d08131a5b5a5d60521b6044820152606401610774565b600b54600a546114bc9190612828565b816009546114ca91906126d5565b11156114e85760405162461bcd60e51b81526004016107749061283f565b6114f1816117fd565b506001600755565b6110b4338383611c75565b61150e338361198e565b61152a5760405162461bcd60e51b815260040161077490612728565b61153684848484611d44565b50505050565b6000818152600360205260409020546060906001600160a01b03166115bb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610774565b60006115c5611d77565b905060008151116115e55760405180602001604052806000815250611610565b806115ef84611d86565b60405160200161160092919061286b565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146116415760405162461bcd60e51b815260040161077490612779565b600260075414156116645760405162461bcd60e51b815260040161077490612688565b6002600755600a5460095461167a9083906126d5565b11156116985760405162461bcd60e51b81526004016107749061283f565b60005b8181101561171a576116d58383838181106116b8576116b86127f7565b90506020020160208101906116cd91906124fc565b600954611e84565b600980549060006116e58361280d565b9091555050600b541561170857600b80549060006117028361289a565b91905055505b806117128161280d565b91505061169b565b5050600160075550565b6060601060405160200161173891906128b1565b604051602081830303815290604052905090565b6000546001600160a01b031633146117765760405162461bcd60e51b815260040161077490612779565b6001600160a01b0381166117db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610774565b6117e481611c25565b50565b6000826117f48584611e9e565b14949350505050565b32331461184c5760405162461bcd60e51b815260206004820152601860248201527f517569726b6965733a2053656c66204d696e74204f6e6c7900000000000000006044820152606401610774565b600b54600a5461185c9190612828565b8160095461186a91906126d5565b11156118885760405162461bcd60e51b81526004016107749061283f565b8060085461189691906127ae565b34146118e45760405162461bcd60e51b815260206004820152601960248201527f517569726b6965733a20496e636f72726563742056616c7565000000000000006044820152606401610774565b60005b818110156110b4576118f8336116cd565b600980549060006119088361280d565b919050555080806119189061280d565b9150506118e7565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611955826110b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611a075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610774565b6000611a12836110b8565b9050806001600160a01b0316846001600160a01b03161480611a4d5750836001600160a01b0316611a42846109c0565b6001600160a01b0316145b80611a7d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a98826110b8565b6001600160a01b031614611b005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610774565b6001600160a01b038216611b625760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610774565b611b6d600082611920565b6001600160a01b0383166000908152600460205260408120805460019290611b96908490612828565b90915550506001600160a01b0382166000908152600460205260408120805460019290611bc49084906126d5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415611cd75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610774565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d4f848484611a85565b611d5b84848484611f4a565b6115365760405162461bcd60e51b81526004016107749061295d565b60606010805461093d906126ed565b606081611daa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd45780611dbe8161280d565b9150611dcd9050600a836127e3565b9150611dae565b60008167ffffffffffffffff811115611def57611def612427565b6040519080825280601f01601f191660200182016040528015611e19576020820181803683370190505b5090505b8415611a7d57611e2e600183612828565b9150611e3b600a866129af565b611e469060306126d5565b60f81b818381518110611e5b57611e5b6127f7565b60200101906001600160f81b031916908160001a905350611e7d600a866127e3565b9450611e1d565b6110b4828260405180602001604052806000815250612048565b600081815b8451811015611f42576000858281518110611ec057611ec06127f7565b60200260200101519050808311611f02576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f2f565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f3a8161280d565b915050611ea3565b509392505050565b60006001600160a01b0384163b1561203d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f8e9033908990889088906004016129c3565b6020604051808303816000875af1925050508015611fc9575060408051601f3d908101601f19168201909252611fc691810190612a00565b60015b612023573d808015611ff7576040519150601f19603f3d011682016040523d82523d6000602084013e611ffc565b606091505b50805161201b5760405162461bcd60e51b81526004016107749061295d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a7d565b506001949350505050565b612052838361207b565b61205f6000848484611f4a565b610b665760405162461bcd60e51b81526004016107749061295d565b6001600160a01b0382166120d15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610774565b6000818152600360205260409020546001600160a01b0316156121365760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610774565b6001600160a01b038216600090815260046020526040812080546001929061215f9084906126d5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121c9906126ed565b90600052602060002090601f0160209004810192826121eb5760008555612231565b82601f1061220457805160ff1916838001178555612231565b82800160010185558215612231579182015b82811115612231578251825591602001919060010190612216565b5061223d929150612241565b5090565b5b8082111561223d5760008155600101612242565b6001600160e01b0319811681146117e457600080fd5b60006020828403121561227e57600080fd5b813561161081612256565b60008083601f84011261229b57600080fd5b50813567ffffffffffffffff8111156122b357600080fd5b6020830191508360208260051b85010111156122ce57600080fd5b9250929050565b6000806000604084860312156122ea57600080fd5b83359250602084013567ffffffffffffffff81111561230857600080fd5b61231486828701612289565b9497909650939450505050565b60005b8381101561233c578181015183820152602001612324565b838111156115365750506000910152565b60008151808452612365816020860160208601612321565b601f01601f19169290920160200192915050565b602081526000611610602083018461234d565b60006020828403121561239e57600080fd5b5035919050565b80356001600160a01b03811681146123bc57600080fd5b919050565b600080604083850312156123d457600080fd5b6123dd836123a5565b946020939093013593505050565b60008060006060848603121561240057600080fd5b612409846123a5565b9250612417602085016123a5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561245857612458612427565b604051601f8501601f19908116603f0116810190828211818310171561248057612480612427565b8160405280935085815286868601111561249957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124c557600080fd5b813567ffffffffffffffff8111156124dc57600080fd5b8201601f810184136124ed57600080fd5b611a7d8482356020840161243d565b60006020828403121561250e57600080fd5b611610826123a5565b6020808252825182820181905260009190848201906040850190845b8181101561254f57835183529284019291840191600101612533565b50909695505050505050565b6000806040838503121561256e57600080fd5b612577836123a5565b91506020830135801515811461258c57600080fd5b809150509250929050565b600080600080608085870312156125ad57600080fd5b6125b6856123a5565b93506125c4602086016123a5565b925060408501359150606085013567ffffffffffffffff8111156125e757600080fd5b8501601f810187136125f857600080fd5b6126078782356020840161243d565b91505092959194509250565b6000806020838503121561262657600080fd5b823567ffffffffffffffff81111561263d57600080fd5b61264985828601612289565b90969095509350505050565b6000806040838503121561266857600080fd5b612671836123a5565b915061267f602084016123a5565b90509250929050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126e8576126e86126bf565b500190565b600181811c9082168061270157607f821691505b6020821081141561272257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008160001904831182151516156127c8576127c86126bf565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127f2576127f26127cd565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612821576128216126bf565b5060010190565b60008282101561283a5761283a6126bf565b500390565b602080825260129082015271145d5a5c9ada595cce8814dbdb190813dd5d60721b604082015260600190565b6000835161287d818460208801612321565b835190830190612891818360208801612321565b01949350505050565b6000816128a9576128a96126bf565b506000190190565b600080835481600182811c9150808316806128cd57607f831692505b60208084108214156128ed57634e487b7160e01b86526022600452602486fd5b81801561290157600181146129125761293f565b60ff1986168952848901965061293f565b60008a81526020902060005b868110156129375781548b82015290850190830161291e565b505084890196505b505050505050611a7d816718dbdb9d1c9858dd60c21b815260080190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826129be576129be6127cd565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f69083018461234d565b9695505050505050565b600060208284031215612a1257600080fd5b81516116108161225656fea264697066735822122098423ae928f95361e6d82d5ba059db9ef4e17445ec497beb0066ef2fb85cc5a764736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000040faf02f03c7f59521756198244727c3fad91a4404eec493cb15f2bc5122a83364000000000000000000000000000000000000000000000000000000000000001c687474703a2f2f6d657461646174612e717569726b6965732e696f2f00000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063d682ed861161006f578063d682ed861461064b578063e8a3d4851461066b578063e985e9c514610680578063f2fde38b146106c9578063fe60d12c146106e957600080fd5b8063b88d4fde146105c5578063b8f929ad146105e5578063c87b56dd146105ff578063cb4e83261461061f578063d5e13d651461063557600080fd5b80638462151c116100f25780638462151c146105325780638da5cb5b1461055f57806395d89b411461057d578063a0712d6814610592578063a22cb465146105a557600080fd5b806370a082311461049d578063711b9e92146104bd578063715018a6146104dd5780637cb64759146104f25780637d9a7a4c1461051257600080fd5b80632eb4a7ab116101bc5780634eabe20b116101805780634eabe20b1461040657806355f804b31461041b5780636352211e1461043b57806366fca9801461045b5780636c0360eb1461048857600080fd5b80632eb4a7ab146103935780633ccfd60b146103a957806342842e0e146103b15780634707f44f146103d15780634bffad9f146103f157600080fd5b80630d39fc81116102035780630d39fc811461030457806318160ddd1461032857806320a447941461033e57806323b872dd1461035d5780632a7065ea1461037d57600080fd5b806301ffc9a714610240578063061431a81461027557806306fdde031461028a578063081812fc146102ac578063095ea7b3146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b36600461226c565b6106ff565b60405190151581526020015b60405180910390f35b6102886102833660046122d5565b610751565b005b34801561029657600080fd5b5061029f61092e565b60405161026c9190612379565b3480156102b857600080fd5b506102cc6102c736600461238c565b6109c0565b6040516001600160a01b03909116815260200161026c565b3480156102f057600080fd5b506102886102ff3660046123c1565b610a55565b34801561031057600080fd5b5061031a60085481565b60405190815260200161026c565b34801561033457600080fd5b5061031a60095481565b34801561034a57600080fd5b50600e5461026090610100900460ff1681565b34801561036957600080fd5b506102886103783660046123eb565b610b6b565b34801561038957600080fd5b5061031a600a5481565b34801561039f57600080fd5b5061031a600f5481565b610288610b9c565b3480156103bd57600080fd5b506102886103cc3660046123eb565b610fab565b3480156103dd57600080fd5b5061031a6103ec3660046123c1565b610fc6565b3480156103fd57600080fd5b50610288610ff2565b34801561041257600080fd5b50610288611039565b34801561042757600080fd5b506102886104363660046124b3565b611077565b34801561044757600080fd5b506102cc61045636600461238c565b6110b8565b34801561046757600080fd5b5061031a6104763660046124fc565b60116020526000908152604090205481565b34801561049457600080fd5b5061029f61112f565b3480156104a957600080fd5b5061031a6104b83660046124fc565b6111bd565b3480156104c957600080fd5b506102886104d836600461238c565b611244565b3480156104e957600080fd5b50610288611273565b3480156104fe57600080fd5b5061028861050d36600461238c565b6112a9565b34801561051e57600080fd5b5061028861052d36600461238c565b6112d8565b34801561053e57600080fd5b5061055261054d3660046124fc565b611307565b60405161026c9190612517565b34801561056b57600080fd5b506000546001600160a01b03166102cc565b34801561058957600080fd5b5061029f6113d5565b6102886105a036600461238c565b6113e4565b3480156105b157600080fd5b506102886105c036600461255b565b6114f9565b3480156105d157600080fd5b506102886105e0366004612597565b611504565b3480156105f157600080fd5b50600e546102609060ff1681565b34801561060b57600080fd5b5061029f61061a36600461238c565b61153c565b34801561062b57600080fd5b5061031a600d5481565b34801561064157600080fd5b5061031a600c5481565b34801561065757600080fd5b50610288610666366004612613565b611617565b34801561067757600080fd5b5061029f611724565b34801561068c57600080fd5b5061026061069b366004612655565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106d557600080fd5b506102886106e43660046124fc565b61174c565b3480156106f557600080fd5b5061031a600b5481565b60006001600160e01b031982166380ac58cd60e01b148061073057506001600160e01b03198216635b5e139f60e01b145b8061074b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6002600754141561077d5760405162461bcd60e51b815260040161077490612688565b60405180910390fd5b6002600755600e5460ff1615156001146107d15760405162461bcd60e51b8152602060048201526015602482015274145d5a5c9ada595cce88139bdd0814dd185c9d1959605a1b6044820152606401610774565b61084682828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206117e7565b6108925760405162461bcd60e51b815260206004820152601960248201527f517569726b6965733a204e6f742057686974656c6973746564000000000000006044820152606401610774565b600c54336000908152601160205260409020546108b09085906126d5565b11156108f75760405162461bcd60e51b8152602060048201526016602482015275145d5a5c9ada595cce88105b5bdd5b9d08131a5b5a5d60521b6044820152606401610774565b610900836117fd565b336000908152601160205260408120805485929061091f9084906126d5565b90915550506001600755505050565b60606001805461093d906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610969906126ed565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610774565b506000908152600560205260409020546001600160a01b031690565b6000610a60826110b8565b9050806001600160a01b0316836001600160a01b03161415610ace5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610774565b336001600160a01b0382161480610aea5750610aea813361069b565b610b5c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610774565b610b668383611920565b505050565b610b75338261198e565b610b915760405162461bcd60e51b815260040161077490612728565b610b66838383611a85565b6000546001600160a01b03163314610bc65760405162461bcd60e51b815260040161077490612779565b47731350baa348fc0139999c40e5b80fdc26617e3f6773ec19a74d69329c531b133b6ad752f5edebdbdbc57374faad5e1f9a5b8427f33d5c8924870c949488f773761c9bde27449415c924c64528bfaa01fbc68a6d73816639f88d7f5405b0ccb0582908b388a1e2c8bd6000856064610c4089600a6127ae565b610c4a91906127e3565b604051600081818185875af1925050503d8060008114610c86576040519150601f19603f3d011682016040523d82523d6000602084013e610c8b565b606091505b5050905080610cdc5760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722035204661696c656400000000006044820152606401610774565b60006001600160a01b0386166064610cf58a60056127ae565b610cff91906127e3565b604051600081818185875af1925050503d8060008114610d3b576040519150601f19603f3d011682016040523d82523d6000602084013e610d40565b606091505b5050905080610d915760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722034204661696c656400000000006044820152606401610774565b60006001600160a01b0386166064610daa8b60056127ae565b610db491906127e3565b604051600081818185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e465760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722033204661696c656400000000006044820152606401610774565b60006001600160a01b0386166064610e5f8c60056127ae565b610e6991906127e3565b604051600081818185875af1925050503d8060008114610ea5576040519150601f19603f3d011682016040523d82523d6000602084013e610eaa565b606091505b5050905080610efb5760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722032204661696c656400000000006044820152606401610774565b6000856001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f48576040519150601f19603f3d011682016040523d82523d6000602084013e610f4d565b606091505b5050905080610f9e5760405162461bcd60e51b815260206004820152601b60248201527f517569726b6965733a205472616e736665722031204661696c656400000000006044820152606401610774565b5050505050505050505050565b610b6683838360405180602001604052806000815250611504565b6000610fd183611307565b8281518110610fe257610fe26127f7565b6020026020010151905092915050565b6000546001600160a01b0316331461101c5760405162461bcd60e51b815260040161077490612779565b600e805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146110635760405162461bcd60e51b815260040161077490612779565b600e805460ff19811660ff90911615179055565b6000546001600160a01b031633146110a15760405162461bcd60e51b815260040161077490612779565b80516110b49060109060208401906121bd565b5050565b6000818152600360205260408120546001600160a01b03168061074b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610774565b6010805461113c906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611168906126ed565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b505050505081565b60006001600160a01b0382166112285760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610774565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461126e5760405162461bcd60e51b815260040161077490612779565b600a55565b6000546001600160a01b0316331461129d5760405162461bcd60e51b815260040161077490612779565b6112a76000611c25565b565b6000546001600160a01b031633146112d35760405162461bcd60e51b815260040161077490612779565b600f55565b6000546001600160a01b031633146113025760405162461bcd60e51b815260040161077490612779565b600855565b60606000611314836111bd565b905060008167ffffffffffffffff81111561133157611331612427565b60405190808252806020026020018201604052801561135a578160200160208202803683370190505b5090506000805b6009548110156113cb57856001600160a01b031661137e826110b8565b6001600160a01b031614156113b957808383815181106113a0576113a06127f7565b6020908102919091010152816113b58161280d565b9250505b806113c38161280d565b915050611361565b5090949350505050565b60606002805461093d906126ed565b600260075414156114075760405162461bcd60e51b815260040161077490612688565b6002600755600e5460ff6101009091041615156001146114615760405162461bcd60e51b8152602060048201526015602482015274145d5a5c9ada595cce88139bdd0814dd185c9d1959605a1b6044820152606401610774565b600d548111156114ac5760405162461bcd60e51b8152602060048201526016602482015275145d5a5c9ada595cce88105b5bdd5b9d08131a5b5a5d60521b6044820152606401610774565b600b54600a546114bc9190612828565b816009546114ca91906126d5565b11156114e85760405162461bcd60e51b81526004016107749061283f565b6114f1816117fd565b506001600755565b6110b4338383611c75565b61150e338361198e565b61152a5760405162461bcd60e51b815260040161077490612728565b61153684848484611d44565b50505050565b6000818152600360205260409020546060906001600160a01b03166115bb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610774565b60006115c5611d77565b905060008151116115e55760405180602001604052806000815250611610565b806115ef84611d86565b60405160200161160092919061286b565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146116415760405162461bcd60e51b815260040161077490612779565b600260075414156116645760405162461bcd60e51b815260040161077490612688565b6002600755600a5460095461167a9083906126d5565b11156116985760405162461bcd60e51b81526004016107749061283f565b60005b8181101561171a576116d58383838181106116b8576116b86127f7565b90506020020160208101906116cd91906124fc565b600954611e84565b600980549060006116e58361280d565b9091555050600b541561170857600b80549060006117028361289a565b91905055505b806117128161280d565b91505061169b565b5050600160075550565b6060601060405160200161173891906128b1565b604051602081830303815290604052905090565b6000546001600160a01b031633146117765760405162461bcd60e51b815260040161077490612779565b6001600160a01b0381166117db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610774565b6117e481611c25565b50565b6000826117f48584611e9e565b14949350505050565b32331461184c5760405162461bcd60e51b815260206004820152601860248201527f517569726b6965733a2053656c66204d696e74204f6e6c7900000000000000006044820152606401610774565b600b54600a5461185c9190612828565b8160095461186a91906126d5565b11156118885760405162461bcd60e51b81526004016107749061283f565b8060085461189691906127ae565b34146118e45760405162461bcd60e51b815260206004820152601960248201527f517569726b6965733a20496e636f72726563742056616c7565000000000000006044820152606401610774565b60005b818110156110b4576118f8336116cd565b600980549060006119088361280d565b919050555080806119189061280d565b9150506118e7565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611955826110b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611a075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610774565b6000611a12836110b8565b9050806001600160a01b0316846001600160a01b03161480611a4d5750836001600160a01b0316611a42846109c0565b6001600160a01b0316145b80611a7d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a98826110b8565b6001600160a01b031614611b005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610774565b6001600160a01b038216611b625760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610774565b611b6d600082611920565b6001600160a01b0383166000908152600460205260408120805460019290611b96908490612828565b90915550506001600160a01b0382166000908152600460205260408120805460019290611bc49084906126d5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415611cd75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610774565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d4f848484611a85565b611d5b84848484611f4a565b6115365760405162461bcd60e51b81526004016107749061295d565b60606010805461093d906126ed565b606081611daa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd45780611dbe8161280d565b9150611dcd9050600a836127e3565b9150611dae565b60008167ffffffffffffffff811115611def57611def612427565b6040519080825280601f01601f191660200182016040528015611e19576020820181803683370190505b5090505b8415611a7d57611e2e600183612828565b9150611e3b600a866129af565b611e469060306126d5565b60f81b818381518110611e5b57611e5b6127f7565b60200101906001600160f81b031916908160001a905350611e7d600a866127e3565b9450611e1d565b6110b4828260405180602001604052806000815250612048565b600081815b8451811015611f42576000858281518110611ec057611ec06127f7565b60200260200101519050808311611f02576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f2f565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f3a8161280d565b915050611ea3565b509392505050565b60006001600160a01b0384163b1561203d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f8e9033908990889088906004016129c3565b6020604051808303816000875af1925050508015611fc9575060408051601f3d908101601f19168201909252611fc691810190612a00565b60015b612023573d808015611ff7576040519150601f19603f3d011682016040523d82523d6000602084013e611ffc565b606091505b50805161201b5760405162461bcd60e51b81526004016107749061295d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a7d565b506001949350505050565b612052838361207b565b61205f6000848484611f4a565b610b665760405162461bcd60e51b81526004016107749061295d565b6001600160a01b0382166120d15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610774565b6000818152600360205260409020546001600160a01b0316156121365760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610774565b6001600160a01b038216600090815260046020526040812080546001929061215f9084906126d5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121c9906126ed565b90600052602060002090601f0160209004810192826121eb5760008555612231565b82601f1061220457805160ff1916838001178555612231565b82800160010185558215612231579182015b82811115612231578251825591602001919060010190612216565b5061223d929150612241565b5090565b5b8082111561223d5760008155600101612242565b6001600160e01b0319811681146117e457600080fd5b60006020828403121561227e57600080fd5b813561161081612256565b60008083601f84011261229b57600080fd5b50813567ffffffffffffffff8111156122b357600080fd5b6020830191508360208260051b85010111156122ce57600080fd5b9250929050565b6000806000604084860312156122ea57600080fd5b83359250602084013567ffffffffffffffff81111561230857600080fd5b61231486828701612289565b9497909650939450505050565b60005b8381101561233c578181015183820152602001612324565b838111156115365750506000910152565b60008151808452612365816020860160208601612321565b601f01601f19169290920160200192915050565b602081526000611610602083018461234d565b60006020828403121561239e57600080fd5b5035919050565b80356001600160a01b03811681146123bc57600080fd5b919050565b600080604083850312156123d457600080fd5b6123dd836123a5565b946020939093013593505050565b60008060006060848603121561240057600080fd5b612409846123a5565b9250612417602085016123a5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561245857612458612427565b604051601f8501601f19908116603f0116810190828211818310171561248057612480612427565b8160405280935085815286868601111561249957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124c557600080fd5b813567ffffffffffffffff8111156124dc57600080fd5b8201601f810184136124ed57600080fd5b611a7d8482356020840161243d565b60006020828403121561250e57600080fd5b611610826123a5565b6020808252825182820181905260009190848201906040850190845b8181101561254f57835183529284019291840191600101612533565b50909695505050505050565b6000806040838503121561256e57600080fd5b612577836123a5565b91506020830135801515811461258c57600080fd5b809150509250929050565b600080600080608085870312156125ad57600080fd5b6125b6856123a5565b93506125c4602086016123a5565b925060408501359150606085013567ffffffffffffffff8111156125e757600080fd5b8501601f810187136125f857600080fd5b6126078782356020840161243d565b91505092959194509250565b6000806020838503121561262657600080fd5b823567ffffffffffffffff81111561263d57600080fd5b61264985828601612289565b90969095509350505050565b6000806040838503121561266857600080fd5b612671836123a5565b915061267f602084016123a5565b90509250929050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126e8576126e86126bf565b500190565b600181811c9082168061270157607f821691505b6020821081141561272257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008160001904831182151516156127c8576127c86126bf565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127f2576127f26127cd565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612821576128216126bf565b5060010190565b60008282101561283a5761283a6126bf565b500390565b602080825260129082015271145d5a5c9ada595cce8814dbdb190813dd5d60721b604082015260600190565b6000835161287d818460208801612321565b835190830190612891818360208801612321565b01949350505050565b6000816128a9576128a96126bf565b506000190190565b600080835481600182811c9150808316806128cd57607f831692505b60208084108214156128ed57634e487b7160e01b86526022600452602486fd5b81801561290157600181146129125761293f565b60ff1986168952848901965061293f565b60008a81526020902060005b868110156129375781548b82015290850190830161291e565b505084890196505b505050505050611a7d816718dbdb9d1c9858dd60c21b815260080190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826129be576129be6127cd565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f69083018461234d565b9695505050505050565b600060208284031215612a1257600080fd5b81516116108161225656fea264697066735822122098423ae928f95361e6d82d5ba059db9ef4e17445ec497beb0066ef2fb85cc5a764736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000040faf02f03c7f59521756198244727c3fad91a4404eec493cb15f2bc5122a83364000000000000000000000000000000000000000000000000000000000000001c687474703a2f2f6d657461646174612e717569726b6965732e696f2f00000000

-----Decoded View---------------
Arg [0] : _initURI (string): http://metadata.quirkies.io/
Arg [1] : _merkleRoot (bytes32): 0xfaf02f03c7f59521756198244727c3fad91a4404eec493cb15f2bc5122a83364

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : faf02f03c7f59521756198244727c3fad91a4404eec493cb15f2bc5122a83364
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [3] : 687474703a2f2f6d657461646174612e717569726b6965732e696f2f00000000


Deployed Bytecode Sourcemap

41171:5294:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26139:305;;;;;;;;;;-1:-1:-1;26139:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26139:305:0;;;;;;;;42201:648;;;;;;:::i;:::-;;:::i;:::-;;27084:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28643:221::-;;;;;;;;;;-1:-1:-1;28643:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2574:32:1;;;2556:51;;2544:2;2529:18;28643:221:0;2410:203:1;28166:411:0;;;;;;;;;;-1:-1:-1;28166:411:0;;;;;:::i;:::-;;:::i;41232:36::-;;;;;;;;;;;;;;;;;;;3201:25:1;;;3189:2;3174:18;41232:36:0;3055:177:1;41275:30:0;;;;;;;;;;;;;;;;41501;;;;;;;;;;-1:-1:-1;41501:30:0;;;;;;;;;;;29393:339;;;;;;;;;;-1:-1:-1;29393:339:0;;;;;:::i;:::-;;:::i;41314:30::-;;;;;;;;;;;;;;;;41540:25;;;;;;;;;;;;;;;;44400:1175;;;:::i;29803:185::-;;;;;;;;;;-1:-1:-1;29803:185:0;;;;;:::i;:::-;;:::i;43713:179::-;;;;;;;;;;-1:-1:-1;43713:179:0;;;;;:::i;:::-;;:::i;45688:88::-;;;;;;;;;;;;;:::i;45583:97::-;;;;;;;;;;;;;:::i;45784:104::-;;;;;;;;;;-1:-1:-1;45784:104:0;;;;;:::i;:::-;;:::i;26778:239::-;;;;;;;;;;-1:-1:-1;26778:239:0;;;;;:::i;:::-;;:::i;41609:51::-;;;;;;;;;;-1:-1:-1;41609:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;41574:26;;;;;;;;;;;;;:::i;26508:208::-;;;;;;;;;;-1:-1:-1;26508:208:0;;;;;:::i;:::-;;:::i;46000:96::-;;;;;;;;;;-1:-1:-1;46000:96:0;;;;;:::i;:::-;;:::i;40292:103::-;;;;;;;;;;;;;:::i;46104:104::-;;;;;;;;;;-1:-1:-1;46104:104:0;;;;;:::i;:::-;;:::i;45896:96::-;;;;;;;;;;-1:-1:-1;45896:96:0;;;;;:::i;:::-;;:::i;43900:492::-;;;;;;;;;;-1:-1:-1;43900:492:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39641:87::-;;;;;;;;;;-1:-1:-1;39687:7:0;39714:6;-1:-1:-1;;;;;39714:6:0;39641:87;;27253:104;;;;;;;;;;;;;:::i;41847:346::-;;;;;;:::i;:::-;;:::i;28936:155::-;;;;;;;;;;-1:-1:-1;28936:155:0;;;;;:::i;:::-;;:::i;30059:328::-;;;;;;;;;;-1:-1:-1;30059:328:0;;;;;:::i;:::-;;:::i;41461:33::-;;;;;;;;;;-1:-1:-1;41461:33:0;;;;;;;;27428:334;;;;;;;;;;-1:-1:-1;27428:334:0;;;;;:::i;:::-;;:::i;41424:28::-;;;;;;;;;;;;;;;;41386:31;;;;;;;;;;;;;;;;43329:376;;;;;;;;;;-1:-1:-1;43329:376:0;;;;;:::i;:::-;;:::i;46332:130::-;;;;;;;;;;;;;:::i;29162:164::-;;;;;;;;;;-1:-1:-1;29162:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29283:25:0;;;29259:4;29283:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29162:164;40550:201;;;;;;;;;;-1:-1:-1;40550:201:0;;;;;:::i;:::-;;:::i;41351:28::-;;;;;;;;;;;;;;;;26139:305;26241:4;-1:-1:-1;;;;;;26278:40:0;;-1:-1:-1;;;26278:40:0;;:105;;-1:-1:-1;;;;;;;26335:48:0;;-1:-1:-1;;;26335:48:0;26278:105;:158;;;-1:-1:-1;;;;;;;;;;18124:40:0;;;26400:36;26258:178;26139:305;-1:-1:-1;;26139:305:0:o;42201:648::-;3980:1;4578:7;;:19;;4570:63;;;;-1:-1:-1;;;4570:63:0;;;;;;;:::i;:::-;;;;;;;;;3980:1;4711:7;:18;42346:13:::1;::::0;::::1;;:21;;:13:::0;:21:::1;42338:55;;;::::0;-1:-1:-1;;;42338:55:0;;8283:2:1;42338:55:0::1;::::0;::::1;8265:21:1::0;8322:2;8302:18;;;8295:30;-1:-1:-1;;;8341:18:1;;;8334:51;8402:18;;42338:55:0::1;8081:345:1::0;42338:55:0::1;42426:146;42463:5;;42426:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;42487:10:0::1;::::0;42526:30:::1;::::0;-1:-1:-1;;24613:10:0;8580:2:1;8576:15;8572:53;42526:30:0::1;::::0;::::1;8560:66:1::0;42487:10:0;;-1:-1:-1;8642:12:1;;;-1:-1:-1;42526:30:0::1;;;;;;;;;;;;42516:41;;;;;;42426:18;:146::i;:::-;42404:221;;;::::0;-1:-1:-1;;;42404:221:0;;8867:2:1;42404:221:0::1;::::0;::::1;8849:21:1::0;8906:2;8886:18;;;8879:30;8945:27;8925:18;;;8918:55;8990:18;;42404:221:0::1;8665:349:1::0;42404:221:0::1;42702:12;::::0;24613:10;42658:30:::1;::::0;;;:16:::1;:30;::::0;;;;;:40:::1;::::0;42691:7;;42658:40:::1;:::i;:::-;:56;;42636:128;;;::::0;-1:-1:-1;;;42636:128:0;;9486:2:1;42636:128:0::1;::::0;::::1;9468:21:1::0;9525:2;9505:18;;;9498:30;-1:-1:-1;;;9544:18:1;;;9537:52;9606:18;;42636:128:0::1;9284:346:1::0;42636:128:0::1;42775:14;42781:7;42775:5;:14::i;:::-;24613:10:::0;42800:30:::1;::::0;;;:16:::1;:30;::::0;;;;:41;;42834:7;;42800:30;:41:::1;::::0;42834:7;;42800:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;3936:1:0;4890:7;:22;-1:-1:-1;;;42201:648:0:o;27084:100::-;27138:13;27171:5;27164:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27084:100;:::o;28643:221::-;28719:7;31986:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31986:16:0;28739:73;;;;-1:-1:-1;;;28739:73:0;;10222:2:1;28739:73:0;;;10204:21:1;10261:2;10241:18;;;10234:30;10300:34;10280:18;;;10273:62;-1:-1:-1;;;10351:18:1;;;10344:42;10403:19;;28739:73:0;10020:408:1;28739:73:0;-1:-1:-1;28832:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28832:24:0;;28643:221::o;28166:411::-;28247:13;28263:23;28278:7;28263:14;:23::i;:::-;28247:39;;28311:5;-1:-1:-1;;;;;28305:11:0;:2;-1:-1:-1;;;;;28305:11:0;;;28297:57;;;;-1:-1:-1;;;28297:57:0;;10635:2:1;28297:57:0;;;10617:21:1;10674:2;10654:18;;;10647:30;10713:34;10693:18;;;10686:62;-1:-1:-1;;;10764:18:1;;;10757:31;10805:19;;28297:57:0;10433:397:1;28297:57:0;24613:10;-1:-1:-1;;;;;28389:21:0;;;;:62;;-1:-1:-1;28414:37:0;28431:5;24613:10;29162:164;:::i;28414:37::-;28367:168;;;;-1:-1:-1;;;28367:168:0;;11037:2:1;28367:168:0;;;11019:21:1;11076:2;11056:18;;;11049:30;11115:34;11095:18;;;11088:62;11186:26;11166:18;;;11159:54;11230:19;;28367:168:0;10835:420:1;28367:168:0;28548:21;28557:2;28561:7;28548:8;:21::i;:::-;28236:341;28166:411;;:::o;29393:339::-;29588:41;24613:10;29621:7;29588:18;:41::i;:::-;29580:103;;;;-1:-1:-1;;;29580:103:0;;;;;;;:::i;:::-;29696:28;29706:4;29712:2;29716:7;29696:9;:28::i;44400:1175::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;44475:21:::1;44523:42;44592;44661;44730;44799;44456:16;44523:42:::0;44915:3:::1;44898:13;44475:21:::0;44909:2:::1;44898:13;:::i;:::-;44897:21;;;;:::i;:::-;44870:53;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44854:69;;;44942:4;44934:44;;;::::0;-1:-1:-1;;;44934:44:0;;12881:2:1;44934:44:0::1;::::0;::::1;12863:21:1::0;12920:2;12900:18;;;12893:30;12959:29;12939:18;;;12932:57;13006:18;;44934:44:0::1;12679:351:1::0;44934:44:0::1;44992:9;-1:-1:-1::0;;;;;45007:19:0;::::1;45051:3;45035:12;:8:::0;45046:1:::1;45035:12;:::i;:::-;45034:20;;;;:::i;:::-;45007:52;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44991:68;;;45078:4;45070:44;;;::::0;-1:-1:-1;;;45070:44:0;;13237:2:1;45070:44:0::1;::::0;::::1;13219:21:1::0;13276:2;13256:18;;;13249:30;13315:29;13295:18;;;13288:57;13362:18;;45070:44:0::1;13035:351:1::0;45070:44:0::1;45128:12;-1:-1:-1::0;;;;;45146:19:0;::::1;45190:3;45174:12;:8:::0;45185:1:::1;45174:12;:::i;:::-;45173:20;;;;:::i;:::-;45146:52;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45127:71;;;45217:7;45209:47;;;::::0;-1:-1:-1;;;45209:47:0;;13593:2:1;45209:47:0::1;::::0;::::1;13575:21:1::0;13632:2;13612:18;;;13605:30;13671:29;13651:18;;;13644:57;13718:18;;45209:47:0::1;13391:351:1::0;45209:47:0::1;45270:12;-1:-1:-1::0;;;;;45288:19:0;::::1;45332:3;45316:12;:8:::0;45327:1:::1;45316:12;:::i;:::-;45315:20;;;;:::i;:::-;45288:52;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45269:71;;;45359:7;45351:47;;;::::0;-1:-1:-1;;;45351:47:0;;13949:2:1;45351:47:0::1;::::0;::::1;13931:21:1::0;13988:2;13968:18;;;13961:30;14027:29;14007:18;;;14000:57;14074:18;;45351:47:0::1;13747:351:1::0;45351:47:0::1;45412:13;45439:5;-1:-1:-1::0;;;;;45431:19:0::1;45458:21;45431:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45411:97;;;45527:8;45519:48;;;::::0;-1:-1:-1;;;45519:48:0;;14305:2:1;45519:48:0::1;::::0;::::1;14287:21:1::0;14344:2;14324:18;;;14317:30;14383:29;14363:18;;;14356:57;14430:18;;45519:48:0::1;14103:351:1::0;45519:48:0::1;44445:1130;;;;;;;;;;;44400:1175::o:0;29803:185::-;29941:39;29958:4;29964:2;29968:7;29941:39;;;;;;;;;;;;:16;:39::i;43713:179::-;43823:7;43855:21;43869:6;43855:13;:21::i;:::-;43877:6;43855:29;;;;;;;;:::i;:::-;;;;;;;43848:36;;43713:179;;;;:::o;45688:88::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;45758:10:::1;::::0;;-1:-1:-1;;45744:24:0;::::1;45758:10;::::0;;;::::1;;;45757:11;45744:24:::0;;::::1;;::::0;;45688:88::o;45583:97::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;45659:13:::1;::::0;;-1:-1:-1;;45642:30:0;::::1;45659:13;::::0;;::::1;45658:14;45642:30;::::0;;45583:97::o;45784:104::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;45859:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45784:104:::0;:::o;26778:239::-;26850:7;26886:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26886:16:0;26921:19;26913:73;;;;-1:-1:-1;;;26913:73:0;;14793:2:1;26913:73:0;;;14775:21:1;14832:2;14812:18;;;14805:30;14871:34;14851:18;;;14844:62;-1:-1:-1;;;14922:18:1;;;14915:39;14971:19;;26913:73:0;14591:405:1;41574:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26508:208::-;26580:7;-1:-1:-1;;;;;26608:19:0;;26600:74;;;;-1:-1:-1;;;26600:74:0;;15203:2:1;26600:74:0;;;15185:21:1;15242:2;15222:18;;;15215:30;15281:34;15261:18;;;15254:62;-1:-1:-1;;;15332:18:1;;;15325:40;15382:19;;26600:74:0;15001:406:1;26600:74:0;-1:-1:-1;;;;;;26692:16:0;;;;;:9;:16;;;;;;;26508:208::o;46000:96::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;46068:8:::1;:20:::0;46000:96::o;40292:103::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;40357:30:::1;40384:1;40357:18;:30::i;:::-;40292:103::o:0;46104:104::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;46176:10:::1;:24:::0;46104:104::o;45896:96::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;45964:8:::1;:20:::0;45896:96::o;43900:492::-;43987:16;44021:19;44043:17;44053:6;44043:9;:17::i;:::-;44021:39;;44071:26;44114:11;44100:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44100:26:0;;44071:55;;44137:19;44176:9;44171:187;44195:11;;44191:1;:15;44171:187;;;44246:6;-1:-1:-1;;;;;44232:20:0;:10;44240:1;44232:7;:10::i;:::-;-1:-1:-1;;;;;44232:20:0;;44228:119;;;44298:1;44273:9;44283:11;44273:22;;;;;;;;:::i;:::-;;;;;;;;;;:26;44318:13;;;;:::i;:::-;;;;44228:119;44208:3;;;;:::i;:::-;;;;44171:187;;;-1:-1:-1;44375:9:0;;43900:492;-1:-1:-1;;;;43900:492:0:o;27253:104::-;27309:13;27342:7;27335:14;;;;;:::i;41847:346::-;3980:1;4578:7;;:19;;4570:63;;;;-1:-1:-1;;;4570:63:0;;;;;;;:::i;:::-;3980:1;4711:7;:18;41925:10:::1;::::0;::::1;;::::0;;::::1;;:18;;:10;:18;41917:52;;;::::0;-1:-1:-1;;;41917:52:0;;8283:2:1;41917:52:0::1;::::0;::::1;8265:21:1::0;8322:2;8302:18;;;8295:30;-1:-1:-1;;;8341:18:1;;;8334:51;8402:18;;41917:52:0::1;8081:345:1::0;41917:52:0::1;41999:9;;41988:7;:20;;41980:55;;;::::0;-1:-1:-1;;;41980:55:0;;9486:2:1;41980:55:0::1;::::0;::::1;9468:21:1::0;9525:2;9505:18;;;9498:30;-1:-1:-1;;;9544:18:1;;;9537:52;9606:18;;41980:55:0::1;9284:346:1::0;41980:55:0::1;42105:8;;42094;;:19;;;;:::i;:::-;42082:7;42068:11;;:21;;;;:::i;:::-;:46;;42046:114;;;;-1:-1:-1::0;;;42046:114:0::1;;;;;;;:::i;:::-;42171:14;42177:7;42171:5;:14::i;:::-;-1:-1:-1::0;3936:1:0;4890:7;:22;41847:346::o;28936:155::-;29031:52;24613:10;29064:8;29074;29031:18;:52::i;30059:328::-;30234:41;24613:10;30267:7;30234:18;:41::i;:::-;30226:103;;;;-1:-1:-1;;;30226:103:0;;;;;;;:::i;:::-;30340:39;30354:4;30360:2;30364:7;30373:5;30340:13;:39::i;:::-;30059:328;;;;:::o;27428:334::-;31962:4;31986:16;;;:7;:16;;;;;;27501:13;;-1:-1:-1;;;;;31986:16:0;27527:76;;;;-1:-1:-1;;;27527:76:0;;16231:2:1;27527:76:0;;;16213:21:1;16270:2;16250:18;;;16243:30;16309:34;16289:18;;;16282:62;-1:-1:-1;;;16360:18:1;;;16353:45;16415:19;;27527:76:0;16029:411:1;27527:76:0;27616:21;27640:10;:8;:10::i;:::-;27616:34;;27692:1;27674:7;27668:21;:25;:86;;;;;;;;;;;;;;;;;27720:7;27729:18;:7;:16;:18::i;:::-;27703:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27668:86;27661:93;27428:334;-1:-1:-1;;;27428:334:0:o;43329:376::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;3980:1:::1;4578:7;;:19;;4570:63;;;;-1:-1:-1::0;;;4570:63:0::1;;;;;;;:::i;:::-;3980:1;4711:7;:18:::0;43451:8:::2;::::0;43422:11:::2;::::0;:25:::2;::::0;43436:4;;43422:25:::2;:::i;:::-;:37;;43414:68;;;;-1:-1:-1::0;;;43414:68:0::2;;;;;;;:::i;:::-;43498:9;43493:205;43513:15:::0;;::::2;43493:205;;;43550:31;43560:4;;43565:1;43560:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;43569:11;;43550:9;:31::i;:::-;43596:11;:13:::0;;;:11:::2;:13;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;43628:8:0::2;::::0;:12;43624:63:::2;;43661:8;:10:::0;;;:8:::2;:10;::::0;::::2;:::i;:::-;;;;;;43624:63;43530:3:::0;::::2;::::0;::::2;:::i;:::-;;;;43493:205;;;-1:-1:-1::0;;3936:1:0::1;4890:7;:22:::0;-1:-1:-1;43329:376:0:o;46332:130::-;46376:13;46433:7;46416:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;46402:52;;46332:130;:::o;40550:201::-;39687:7;39714:6;-1:-1:-1;;;;;39714:6:0;24613:10;39861:23;39853:68;;;;-1:-1:-1;;;39853:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40639:22:0;::::1;40631:73;;;::::0;-1:-1:-1;;;40631:73:0;;18751:2:1;40631:73:0::1;::::0;::::1;18733:21:1::0;18790:2;18770:18;;;18763:30;18829:34;18809:18;;;18802:62;-1:-1:-1;;;18880:18:1;;;18873:36;18926:19;;40631:73:0::1;18549:402:1::0;40631:73:0::1;40715:28;40734:8;40715:18;:28::i;:::-;40550:201:::0;:::o;908:190::-;1033:4;1086;1057:25;1070:5;1077:4;1057:12;:25::i;:::-;:33;;908:190;-1:-1:-1;;;;908:190:0:o;42857:464::-;42917:9;42930:10;42917:23;42909:60;;;;-1:-1:-1;;;42909:60:0;;19158:2:1;42909:60:0;;;19140:21:1;19197:2;19177:18;;;19170:30;19236:26;19216:18;;;19209:54;19280:18;;42909:60:0;18956:348:1;42909:60:0;43039:8;;43028;;:19;;;;:::i;:::-;43016:7;43002:11;;:21;;;;:::i;:::-;:46;;42980:114;;;;-1:-1:-1;;;42980:114:0;;;;;;;:::i;:::-;43137:7;43126:8;;:18;;;;:::i;:::-;43113:9;:31;43105:69;;;;-1:-1:-1;;;43105:69:0;;19511:2:1;43105:69:0;;;19493:21:1;19550:2;19530:18;;;19523:30;19589:27;19569:18;;;19562:55;19634:18;;43105:69:0;19309:349:1;43105:69:0;43190:9;43185:129;43209:7;43205:1;:11;43185:129;;;43238:36;24613:10;43248:12;24533:98;43238:36;43289:11;:13;;;:11;:13;;;:::i;:::-;;;;;;43218:3;;;;;:::i;:::-;;;;43185:129;;35879:174;35954:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35954:29:0;-1:-1:-1;;;;;35954:29:0;;;;;;;;:24;;36008:23;35954:24;36008:14;:23::i;:::-;-1:-1:-1;;;;;35999:46:0;;;;;;;;;;;35879:174;;:::o;32191:348::-;32284:4;31986:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31986:16:0;32301:73;;;;-1:-1:-1;;;32301:73:0;;19865:2:1;32301:73:0;;;19847:21:1;19904:2;19884:18;;;19877:30;19943:34;19923:18;;;19916:62;-1:-1:-1;;;19994:18:1;;;19987:42;20046:19;;32301:73:0;19663:408:1;32301:73:0;32385:13;32401:23;32416:7;32401:14;:23::i;:::-;32385:39;;32454:5;-1:-1:-1;;;;;32443:16:0;:7;-1:-1:-1;;;;;32443:16:0;;:51;;;;32487:7;-1:-1:-1;;;;;32463:31:0;:20;32475:7;32463:11;:20::i;:::-;-1:-1:-1;;;;;32463:31:0;;32443:51;:87;;;-1:-1:-1;;;;;;29283:25:0;;;29259:4;29283:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32498:32;32435:96;32191:348;-1:-1:-1;;;;32191:348:0:o;35183:578::-;35342:4;-1:-1:-1;;;;;35315:31:0;:23;35330:7;35315:14;:23::i;:::-;-1:-1:-1;;;;;35315:31:0;;35307:85;;;;-1:-1:-1;;;35307:85:0;;20278:2:1;35307:85:0;;;20260:21:1;20317:2;20297:18;;;20290:30;20356:34;20336:18;;;20329:62;-1:-1:-1;;;20407:18:1;;;20400:39;20456:19;;35307:85:0;20076:405:1;35307:85:0;-1:-1:-1;;;;;35411:16:0;;35403:65;;;;-1:-1:-1;;;35403:65:0;;20688:2:1;35403:65:0;;;20670:21:1;20727:2;20707:18;;;20700:30;20766:34;20746:18;;;20739:62;-1:-1:-1;;;20817:18:1;;;20810:34;20861:19;;35403:65:0;20486:400:1;35403:65:0;35585:29;35602:1;35606:7;35585:8;:29::i;:::-;-1:-1:-1;;;;;35627:15:0;;;;;;:9;:15;;;;;:20;;35646:1;;35627:15;:20;;35646:1;;35627:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35658:13:0;;;;;;:9;:13;;;;;:18;;35675:1;;35658:13;:18;;35675:1;;35658:18;:::i;:::-;;;;-1:-1:-1;;35687:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35687:21:0;-1:-1:-1;;;;;35687:21:0;;;;;;;;;35726:27;;35687:16;;35726:27;;;;;;;35183:578;;;:::o;40911:191::-;40985:16;41004:6;;-1:-1:-1;;;;;41021:17:0;;;-1:-1:-1;;;;;;41021:17:0;;;;;;41054:40;;41004:6;;;;;;;41054:40;;40985:16;41054:40;40974:128;40911:191;:::o;36195:315::-;36350:8;-1:-1:-1;;;;;36341:17:0;:5;-1:-1:-1;;;;;36341:17:0;;;36333:55;;;;-1:-1:-1;;;36333:55:0;;21093:2:1;36333:55:0;;;21075:21:1;21132:2;21112:18;;;21105:30;21171:27;21151:18;;;21144:55;21216:18;;36333:55:0;20891:349:1;36333:55:0;-1:-1:-1;;;;;36399:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36399:46:0;;;;;;;;;;36461:41;;540::1;;;36461::0;;513:18:1;36461:41:0;;;;;;;36195:315;;;:::o;31269:::-;31426:28;31436:4;31442:2;31446:7;31426:9;:28::i;:::-;31473:48;31496:4;31502:2;31506:7;31515:5;31473:22;:48::i;:::-;31465:111;;;;-1:-1:-1;;;31465:111:0;;;;;;;:::i;46216:108::-;46276:13;46309:7;46302:14;;;;;:::i;5292:723::-;5348:13;5569:10;5565:53;;-1:-1:-1;;5596:10:0;;;;;;;;;;;;-1:-1:-1;;;5596:10:0;;;;;5292:723::o;5565:53::-;5643:5;5628:12;5684:78;5691:9;;5684:78;;5717:8;;;;:::i;:::-;;-1:-1:-1;5740:10:0;;-1:-1:-1;5748:2:0;5740:10;;:::i;:::-;;;5684:78;;;5772:19;5804:6;5794:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5794:17:0;;5772:39;;5822:154;5829:10;;5822:154;;5856:11;5866:1;5856:11;;:::i;:::-;;-1:-1:-1;5925:10:0;5933:2;5925:5;:10;:::i;:::-;5912:24;;:2;:24;:::i;:::-;5899:39;;5882:6;5889;5882:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5882:56:0;;;;;;;;-1:-1:-1;5953:11:0;5962:2;5953:11;;:::i;:::-;;;5822:154;;32881:110;32957:26;32967:2;32971:7;32957:26;;;;;;;;;;;;:9;:26::i;1460:701::-;1543:7;1586:4;1543:7;1601:523;1625:5;:12;1621:1;:16;1601:523;;;1659:20;1682:5;1688:1;1682:8;;;;;;;;:::i;:::-;;;;;;;1659:31;;1725:12;1709;:28;1705:408;;1862:44;;;;;;21938:19:1;;;21973:12;;;21966:28;;;22010:12;;1862:44:0;;;;;;;;;;;;1852:55;;;;;;1837:70;;1705:408;;;2052:44;;;;;;21938:19:1;;;21973:12;;;21966:28;;;22010:12;;2052:44:0;;;;;;;;;;;;2042:55;;;;;;2027:70;;1705:408;-1:-1:-1;1639:3:0;;;;:::i;:::-;;;;1601:523;;;-1:-1:-1;2141:12:0;1460:701;-1:-1:-1;;;1460:701:0:o;37075:799::-;37230:4;-1:-1:-1;;;;;37251:13:0;;8194:20;8242:8;37247:620;;37287:72;;-1:-1:-1;;;37287:72:0;;-1:-1:-1;;;;;37287:36:0;;;;;:72;;24613:10;;37338:4;;37344:7;;37353:5;;37287:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37287:72:0;;;;;;;;-1:-1:-1;;37287:72:0;;;;;;;;;;;;:::i;:::-;;;37283:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37529:13:0;;37525:272;;37572:60;;-1:-1:-1;;;37572:60:0;;;;;;;:::i;37525:272::-;37747:6;37741:13;37732:6;37728:2;37724:15;37717:38;37283:529;-1:-1:-1;;;;;;37410:51:0;-1:-1:-1;;;37410:51:0;;-1:-1:-1;37403:58:0;;37247:620;-1:-1:-1;37851:4:0;37075:799;;;;;;:::o;33218:321::-;33348:18;33354:2;33358:7;33348:5;:18::i;:::-;33399:54;33430:1;33434:2;33438:7;33447:5;33399:22;:54::i;:::-;33377:154;;;;-1:-1:-1;;;33377:154:0;;;;;;;:::i;33875:382::-;-1:-1:-1;;;;;33955:16:0;;33947:61;;;;-1:-1:-1;;;33947:61:0;;22983:2:1;33947:61:0;;;22965:21:1;;;23002:18;;;22995:30;23061:34;23041:18;;;23034:62;23113:18;;33947:61:0;22781:356:1;33947:61:0;31962:4;31986:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31986:16:0;:30;34019:58;;;;-1:-1:-1;;;34019:58:0;;23344:2:1;34019:58:0;;;23326:21:1;23383:2;23363:18;;;23356:30;23422;23402:18;;;23395:58;23470:18;;34019:58:0;23142:352:1;34019:58:0;-1:-1:-1;;;;;34148:13:0;;;;;;:9;:13;;;;;:18;;34165:1;;34148:13;:18;;34165:1;;34148:18;:::i;:::-;;;;-1:-1:-1;;34177:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34177:21:0;-1:-1:-1;;;;;34177:21:0;;;;;;;;34216:33;;34177:16;;;34216:33;;34177:16;;34216:33;33875:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:367::-;655:8;665:6;719:3;712:4;704:6;700:17;696:27;686:55;;737:1;734;727:12;686:55;-1:-1:-1;760:20:1;;803:18;792:30;;789:50;;;835:1;832;825:12;789:50;872:4;864:6;860:17;848:29;;932:3;925:4;915:6;912:1;908:14;900:6;896:27;892:38;889:47;886:67;;;949:1;946;939:12;886:67;592:367;;;;;:::o;964:505::-;1059:6;1067;1075;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1180:9;1167:23;1157:33;;1241:2;1230:9;1226:18;1213:32;1268:18;1260:6;1257:30;1254:50;;;1300:1;1297;1290:12;1254:50;1339:70;1401:7;1392:6;1381:9;1377:22;1339:70;:::i;:::-;964:505;;1428:8;;-1:-1:-1;1313:96:1;;-1:-1:-1;;;;964:505:1:o;1474:258::-;1546:1;1556:113;1570:6;1567:1;1564:13;1556:113;;;1646:11;;;1640:18;1627:11;;;1620:39;1592:2;1585:10;1556:113;;;1687:6;1684:1;1681:13;1678:48;;;-1:-1:-1;;1722:1:1;1704:16;;1697:27;1474:258::o;1737:::-;1779:3;1817:5;1811:12;1844:6;1839:3;1832:19;1860:63;1916:6;1909:4;1904:3;1900:14;1893:4;1886:5;1882:16;1860:63;:::i;:::-;1977:2;1956:15;-1:-1:-1;;1952:29:1;1943:39;;;;1984:4;1939:50;;1737:258;-1:-1:-1;;1737:258:1:o;2000:220::-;2149:2;2138:9;2131:21;2112:4;2169:45;2210:2;2199:9;2195:18;2187:6;2169:45;:::i;2225:180::-;2284:6;2337:2;2325:9;2316:7;2312:23;2308:32;2305:52;;;2353:1;2350;2343:12;2305:52;-1:-1:-1;2376:23:1;;2225:180;-1:-1:-1;2225:180:1:o;2618:173::-;2686:20;;-1:-1:-1;;;;;2735:31:1;;2725:42;;2715:70;;2781:1;2778;2771:12;2715:70;2618:173;;;:::o;2796:254::-;2864:6;2872;2925:2;2913:9;2904:7;2900:23;2896:32;2893:52;;;2941:1;2938;2931:12;2893:52;2964:29;2983:9;2964:29;:::i;:::-;2954:39;3040:2;3025:18;;;;3012:32;;-1:-1:-1;;;2796:254:1:o;3237:328::-;3314:6;3322;3330;3383:2;3371:9;3362:7;3358:23;3354:32;3351:52;;;3399:1;3396;3389:12;3351:52;3422:29;3441:9;3422:29;:::i;:::-;3412:39;;3470:38;3504:2;3493:9;3489:18;3470:38;:::i;:::-;3460:48;;3555:2;3544:9;3540:18;3527:32;3517:42;;3237:328;;;;;:::o;3752:127::-;3813:10;3808:3;3804:20;3801:1;3794:31;3844:4;3841:1;3834:15;3868:4;3865:1;3858:15;3884:632;3949:5;3979:18;4020:2;4012:6;4009:14;4006:40;;;4026:18;;:::i;:::-;4101:2;4095:9;4069:2;4155:15;;-1:-1:-1;;4151:24:1;;;4177:2;4147:33;4143:42;4131:55;;;4201:18;;;4221:22;;;4198:46;4195:72;;;4247:18;;:::i;:::-;4287:10;4283:2;4276:22;4316:6;4307:15;;4346:6;4338;4331:22;4386:3;4377:6;4372:3;4368:16;4365:25;4362:45;;;4403:1;4400;4393:12;4362:45;4453:6;4448:3;4441:4;4433:6;4429:17;4416:44;4508:1;4501:4;4492:6;4484;4480:19;4476:30;4469:41;;;;3884:632;;;;;:::o;4521:451::-;4590:6;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4699:9;4686:23;4732:18;4724:6;4721:30;4718:50;;;4764:1;4761;4754:12;4718:50;4787:22;;4840:4;4832:13;;4828:27;-1:-1:-1;4818:55:1;;4869:1;4866;4859:12;4818:55;4892:74;4958:7;4953:2;4940:16;4935:2;4931;4927:11;4892:74;:::i;4977:186::-;5036:6;5089:2;5077:9;5068:7;5064:23;5060:32;5057:52;;;5105:1;5102;5095:12;5057:52;5128:29;5147:9;5128:29;:::i;5353:632::-;5524:2;5576:21;;;5646:13;;5549:18;;;5668:22;;;5495:4;;5524:2;5747:15;;;;5721:2;5706:18;;;5495:4;5790:169;5804:6;5801:1;5798:13;5790:169;;;5865:13;;5853:26;;5934:15;;;;5899:12;;;;5826:1;5819:9;5790:169;;;-1:-1:-1;5976:3:1;;5353:632;-1:-1:-1;;;;;;5353:632:1:o;5990:347::-;6055:6;6063;6116:2;6104:9;6095:7;6091:23;6087:32;6084:52;;;6132:1;6129;6122:12;6084:52;6155:29;6174:9;6155:29;:::i;:::-;6145:39;;6234:2;6223:9;6219:18;6206:32;6281:5;6274:13;6267:21;6260:5;6257:32;6247:60;;6303:1;6300;6293:12;6247:60;6326:5;6316:15;;;5990:347;;;;;:::o;6342:667::-;6437:6;6445;6453;6461;6514:3;6502:9;6493:7;6489:23;6485:33;6482:53;;;6531:1;6528;6521:12;6482:53;6554:29;6573:9;6554:29;:::i;:::-;6544:39;;6602:38;6636:2;6625:9;6621:18;6602:38;:::i;:::-;6592:48;;6687:2;6676:9;6672:18;6659:32;6649:42;;6742:2;6731:9;6727:18;6714:32;6769:18;6761:6;6758:30;6755:50;;;6801:1;6798;6791:12;6755:50;6824:22;;6877:4;6869:13;;6865:27;-1:-1:-1;6855:55:1;;6906:1;6903;6896:12;6855:55;6929:74;6995:7;6990:2;6977:16;6972:2;6968;6964:11;6929:74;:::i;:::-;6919:84;;;6342:667;;;;;;;:::o;7014:437::-;7100:6;7108;7161:2;7149:9;7140:7;7136:23;7132:32;7129:52;;;7177:1;7174;7167:12;7129:52;7217:9;7204:23;7250:18;7242:6;7239:30;7236:50;;;7282:1;7279;7272:12;7236:50;7321:70;7383:7;7374:6;7363:9;7359:22;7321:70;:::i;:::-;7410:8;;7295:96;;-1:-1:-1;7014:437:1;-1:-1:-1;;;;7014:437:1:o;7456:260::-;7524:6;7532;7585:2;7573:9;7564:7;7560:23;7556:32;7553:52;;;7601:1;7598;7591:12;7553:52;7624:29;7643:9;7624:29;:::i;:::-;7614:39;;7672:38;7706:2;7695:9;7691:18;7672:38;:::i;:::-;7662:48;;7456:260;;;;;:::o;7721:355::-;7923:2;7905:21;;;7962:2;7942:18;;;7935:30;8001:33;7996:2;7981:18;;7974:61;8067:2;8052:18;;7721:355::o;9019:127::-;9080:10;9075:3;9071:20;9068:1;9061:31;9111:4;9108:1;9101:15;9135:4;9132:1;9125:15;9151:128;9191:3;9222:1;9218:6;9215:1;9212:13;9209:39;;;9228:18;;:::i;:::-;-1:-1:-1;9264:9:1;;9151:128::o;9635:380::-;9714:1;9710:12;;;;9757;;;9778:61;;9832:4;9824:6;9820:17;9810:27;;9778:61;9885:2;9877:6;9874:14;9854:18;9851:38;9848:161;;;9931:10;9926:3;9922:20;9919:1;9912:31;9966:4;9963:1;9956:15;9994:4;9991:1;9984:15;9848:161;;9635:380;;;:::o;11260:413::-;11462:2;11444:21;;;11501:2;11481:18;;;11474:30;11540:34;11535:2;11520:18;;11513:62;-1:-1:-1;;;11606:2:1;11591:18;;11584:47;11663:3;11648:19;;11260:413::o;11678:356::-;11880:2;11862:21;;;11899:18;;;11892:30;11958:34;11953:2;11938:18;;11931:62;12025:2;12010:18;;11678:356::o;12039:168::-;12079:7;12145:1;12141;12137:6;12133:14;12130:1;12127:21;12122:1;12115:9;12108:17;12104:45;12101:71;;;12152:18;;:::i;:::-;-1:-1:-1;12192:9:1;;12039:168::o;12212:127::-;12273:10;12268:3;12264:20;12261:1;12254:31;12304:4;12301:1;12294:15;12328:4;12325:1;12318:15;12344:120;12384:1;12410;12400:35;;12415:18;;:::i;:::-;-1:-1:-1;12449:9:1;;12344:120::o;14459:127::-;14520:10;14515:3;14511:20;14508:1;14501:31;14551:4;14548:1;14541:15;14575:4;14572:1;14565:15;15412:135;15451:3;-1:-1:-1;;15472:17:1;;15469:43;;;15492:18;;:::i;:::-;-1:-1:-1;15539:1:1;15528:13;;15412:135::o;15552:125::-;15592:4;15620:1;15617;15614:8;15611:34;;;15625:18;;:::i;:::-;-1:-1:-1;15662:9:1;;15552:125::o;15682:342::-;15884:2;15866:21;;;15923:2;15903:18;;;15896:30;-1:-1:-1;;;15957:2:1;15942:18;;15935:48;16015:2;16000:18;;15682:342::o;16445:470::-;16624:3;16662:6;16656:13;16678:53;16724:6;16719:3;16712:4;16704:6;16700:17;16678:53;:::i;:::-;16794:13;;16753:16;;;;16816:57;16794:13;16753:16;16850:4;16838:17;;16816:57;:::i;:::-;16889:20;;16445:470;-1:-1:-1;;;;16445:470:1:o;16920:136::-;16959:3;16987:5;16977:39;;16996:18;;:::i;:::-;-1:-1:-1;;;17032:18:1;;16920:136::o;17313:1231::-;17542:3;17571:1;17604:6;17598:13;17634:3;17656:1;17684:9;17680:2;17676:18;17666:28;;17744:2;17733:9;17729:18;17766;17756:61;;17810:4;17802:6;17798:17;17788:27;;17756:61;17836:2;17884;17876:6;17873:14;17853:18;17850:38;17847:165;;;-1:-1:-1;;;17911:33:1;;17967:4;17964:1;17957:15;17997:4;17918:3;17985:17;17847:165;18028:18;18055:104;;;;18173:1;18168:320;;;;18021:467;;18055:104;-1:-1:-1;;18088:24:1;;18076:37;;18133:16;;;;-1:-1:-1;18055:104:1;;18168:320;17134:1;17127:14;;;17171:4;17158:18;;18263:1;18277:165;18291:6;18288:1;18285:13;18277:165;;;18369:14;;18356:11;;;18349:35;18412:16;;;;18306:10;;18277:165;;;18281:3;;18471:6;18466:3;18462:16;18455:23;;18021:467;;;;;;;18504:34;18534:3;-1:-1:-1;;;17252:23:1;;17300:1;17291:11;;17187:121;21245:414;21447:2;21429:21;;;21486:2;21466:18;;;21459:30;21525:34;21520:2;21505:18;;21498:62;-1:-1:-1;;;21591:2:1;21576:18;;21569:48;21649:3;21634:19;;21245:414::o;21664:112::-;21696:1;21722;21712:35;;21727:18;;:::i;:::-;-1:-1:-1;21761:9:1;;21664:112::o;22033:489::-;-1:-1:-1;;;;;22302:15:1;;;22284:34;;22354:15;;22349:2;22334:18;;22327:43;22401:2;22386:18;;22379:34;;;22449:3;22444:2;22429:18;;22422:31;;;22227:4;;22470:46;;22496:19;;22488:6;22470:46;:::i;:::-;22462:54;22033:489;-1:-1:-1;;;;;;22033:489:1:o;22527:249::-;22596:6;22649:2;22637:9;22628:7;22624:23;22620:32;22617:52;;;22665:1;22662;22655:12;22617:52;22697:9;22691:16;22716:30;22740:5;22716:30;:::i

Swarm Source

ipfs://98423ae928f95361e6d82d5ba059db9ef4e17445ec497beb0066ef2fb85cc5a7
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.