ETH Price: $3,365.44 (-1.50%)
Gas: 7 Gwei

Token

Quirklings (QRKL)
 

Overview

Max Total Supply

9,647 QRKL

Holders

2,892

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
16 QRKL
0x04F92d566805aD7f95e32A7464c29C73321a44Ed
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,000 Quirklings, assisting in the fight for peace throughout Quirksville.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Quirklings

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-06-02
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


pragma solidity 0.8.11;





contract Quirklings is Ownable, ERC721, ReentrancyGuard {
    uint256 public nftPrice = 0.2 ether;
    uint256 public totalSupply = 0;

    uint256 public constant nftLimit = 10000;
    uint256 public constant mintLimit = 5000;
    uint256 public constant claimLimit = 5000;
    uint256 public reserved = 50;
    uint256 public capWhitelist = 1;
    uint256 public capPublic = 1;

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

    address public claimAddress;
    uint256 public mintCount = 0;
    bytes32 public merkleRoot;

    string public baseURI = "";

    mapping(address => uint256) public whitelistAddresses;
    mapping(uint256 => uint256) public claimedTokens;

    constructor(
        string memory _initURI,
        bytes32 _merkleRoot,
        address _claimAddress
    ) ERC721("Quirklings", "QRKL") {
        baseURI = _initURI;
        merkleRoot = _merkleRoot;
        claimAddress = _claimAddress;
    }

    function mint(uint256 _amount) public payable nonReentrant {
        require(tx.origin == msg.sender, "Quirklings: Self Mint Only");
        require(salePublic == true, "Quirklings: Not Started");
        require(_amount <= capPublic, "Quirklings: Amount Limit");
        _mint(_amount);
    }

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

    function mintClaim(uint256[] memory _tokenIds) public nonReentrant {
        require(saleClaim == true, "Quirklings: Not Started");
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            uint256 _tokenId = _tokenIds[i];
            require(
                IERC721(claimAddress).ownerOf(_tokenId) == _msgSender(),
                "Quirklings: Not Token Owner"
            );
            require(
                claimedTokens[_tokenId] == 0,
                "Quirklings: Token Already Claimed"
            );
            claimedTokens[_tokenId] = 1;
            _safeMint(_msgSender(), _tokenId);
        }
        totalSupply += _tokenIds.length;
    }

    function _mint(uint256 _amount) internal {
        require(msg.value == nftPrice * _amount, "Quirklings: Incorrect Value");
        for (uint256 i = 0; i < _amount; i++) {
            uint256 _tokenId = claimLimit + mintCount + i;
            require(_tokenId < nftLimit - reserved, "Quirklings: Sold Out");
            _safeMint(_msgSender(), _tokenId);
        }
        totalSupply += _amount;
        mintCount += _amount;
    }

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

    function adminClaimIds(
        address _to,
        uint256[] calldata _tokenIds
    ) public onlyOwner nonReentrant {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            uint256 _tokenId = _tokenIds[i];
            require(_tokenId < claimLimit, "Quirklings: Invalid Claim");
            if (claimedTokens[_tokenId] == 0) {
                claimedTokens[_tokenId] = 1;
                _safeMint(_to, _tokenId);
            }
        }
    }

    function adminClaimRange(
        address _to,
        uint256 _start,
        uint256 _end
    ) public onlyOwner nonReentrant {
        require(_end < claimLimit, "Quirklings: Invalid Claim");
        for (uint256 i = _start; i <= _end; i++) {
            if (claimedTokens[i] == 0) {
                claimedTokens[i] = 1;
                _safeMint(_to, i);
            }
        }
    }

    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 < nftLimit; i++) {
            if (_exists(i) && ownerOf(i) == _owner) {
                _tokenIds[_tokenIndex] = i;
                _tokenIndex++;
            }
        }
        return _tokenIds;
    }

    function tokenClaimStatus(uint256[] calldata _tokenIds)
        public
        view
        returns (uint256[] memory)
    {
        uint256[] memory claimed = new uint256[](_tokenIds.length);
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            claimed[i] = claimedTokens[_tokenIds[i]];
        }
        return claimed;
    }

    function withdraw() public payable onlyOwner {
        uint256 _balance = address(this).balance;
        address TEAM3 = 0xd56f05CaB51a36e5b17a8e06f4bB286a8104aE98;
        address TEAM2 = 0x1c46a964f9404193AFf03769559cAe1cbDE9e82d;
        address TEAM1 = 0xa176cBefedb9dbF436BfEFC102e4120aa2e9FC9b;

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

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

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

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

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

    function toggleSaleClaim() public onlyOwner {
        saleClaim = !saleClaim;
    }

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

    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"},{"internalType":"address","name":"_claimAddress","type":"address"}],"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":"_tokenIds","type":"uint256[]"}],"name":"adminClaimIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"adminClaimRange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedTokens","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":"_tokenIds","type":"uint256[]"}],"name":"mintClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"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":"saleClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"toggleSaleClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSalePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"tokenClaimStatus","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokensOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6702c68af0bb140000600855600060098190556032600a556001600b819055600c55600d805462ffffff19169055600e81905560a0604081905260808290526200004d9160109190620001ac565b503480156200005b57600080fd5b50604051620033ec380380620033ec8339810160408190526200007e9162000285565b6040518060400160405280600a815260200169517569726b6c696e677360b01b81525060405180604001604052806004815260200163145492d360e21b815250620000d8620000d26200015860201b60201c565b6200015c565b8151620000ed906001906020850190620001ac565b50805162000103906002906020840190620001ac565b5050600160075550825162000120906010906020860190620001ac565b50600f91909155600d80546001600160a01b039092166301000000026301000000600160b81b031990921691909117905550620003bd565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ba9062000380565b90600052602060002090601f016020900481019282620001de576000855562000229565b82601f10620001f957805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002295782518255916020019190600101906200020c565b50620002379291506200023b565b5090565b5b808211156200023757600081556001016200023c565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200028057600080fd5b919050565b6000806000606084860312156200029b57600080fd5b83516001600160401b0380821115620002b357600080fd5b818601915086601f830112620002c857600080fd5b815181811115620002dd57620002dd62000252565b604051601f8201601f19908116603f0116810190838211818310171562000308576200030862000252565b816040528281526020935089848487010111156200032557600080fd5b600091505b828210156200034957848201840151818301850152908301906200032a565b828211156200035b5760008484830101525b8097505050508086015193505050620003776040850162000268565b90509250925092565b600181811c908216806200039557607f821691505b60208210811415620003b757634e487b7160e01b600052602260045260246000fd5b50919050565b61301f80620003cd6000396000f3fe6080604052600436106102ae5760003560e01c80637cb6475911610175578063be610676116100dc578063e8a3d48511610095578063f2fde38b1161006f578063f2fde38b14610802578063f7aa2ffc14610822578063fe60d12c1461083c578063feccbf241461085257600080fd5b8063e8a3d48514610784578063e985e9c514610799578063ea55569d146107e257600080fd5b8063be61067614610663578063c87b56dd146106eb578063cb4e83261461070b578063d5e13d6514610721578063d682ed8614610737578063e5a342a31461075757600080fd5b80639659867e1161012e5780639659867e1461064d578063996517cf14610663578063a0712d6814610679578063a22cb4651461068c578063b88d4fde146106ac578063b8f929ad146106cc57600080fd5b80637cb647591461058d5780637d28a191146105ad5780637fe011ad146105da5780638462151c146105fa5780638da5cb5b1461061a57806395d89b411461063857600080fd5b80633ccfd60b116102195780636352211e116101d25780636352211e146104d6578063653b8e6e146104f657806369ddd67d146105165780636c0360eb1461054357806370a0823114610558578063715018a61461057857600080fd5b80633ccfd60b1461044457806342842e0e1461044c5780634707f44f1461046c5780634bffad9f1461048c5780634eabe20b146104a157806355f804b3146104b657600080fd5b80630d39fc811161026b5780630d39fc811461039e57806318160ddd146103c257806320a44794146103d857806323b872dd146103f85780632a7065ea146104185780632eb4a7ab1461042e57600080fd5b806301ffc9a7146102b357806305691ec8146102e8578063061431a81461032757806306fdde031461033c578063081812fc1461035e578063095ea7b31461037e575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046126fa565b610867565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50600d5461030f90630100000090046001600160a01b031681565b6040516001600160a01b0390911681526020016102df565b61033a610335366004612763565b6108b9565b005b34801561034857600080fd5b50610351610a76565b6040516102df9190612807565b34801561036a57600080fd5b5061030f61037936600461281a565b610b08565b34801561038a57600080fd5b5061033a610399366004612848565b610b9d565b3480156103aa57600080fd5b506103b460085481565b6040519081526020016102df565b3480156103ce57600080fd5b506103b460095481565b3480156103e457600080fd5b50600d546102d39062010000900460ff1681565b34801561040457600080fd5b5061033a610413366004612874565b610cb3565b34801561042457600080fd5b506103b461271081565b34801561043a57600080fd5b506103b4600f5481565b61033a610ce4565b34801561045857600080fd5b5061033a610467366004612874565b610f5b565b34801561047857600080fd5b506103b4610487366004612848565b610f76565b34801561049857600080fd5b5061033a610fa2565b3480156104ad57600080fd5b5061033a610feb565b3480156104c257600080fd5b5061033a6104d1366004612954565b611032565b3480156104e257600080fd5b5061030f6104f136600461281a565b611073565b34801561050257600080fd5b5061033a61051136600461299d565b6110ea565b34801561052257600080fd5b506103b46105313660046129d2565b60116020526000908152604090205481565b34801561054f57600080fd5b506103516111de565b34801561056457600080fd5b506103b46105733660046129d2565b61126c565b34801561058457600080fd5b5061033a6112f3565b34801561059957600080fd5b5061033a6105a836600461281a565b611329565b3480156105b957600080fd5b506105cd6105c83660046129ef565b611358565b6040516102df9190612a31565b3480156105e657600080fd5b5061033a6105f5366004612a75565b61140f565b34801561060657600080fd5b506105cd6106153660046129d2565b611518565b34801561062657600080fd5b506000546001600160a01b031661030f565b34801561064457600080fd5b50610351611608565b34801561065957600080fd5b506103b4600e5481565b34801561066f57600080fd5b506103b461138881565b61033a61068736600461281a565b611617565b34801561069857600080fd5b5061033a6106a7366004612ab1565b611719565b3480156106b857600080fd5b5061033a6106c7366004612aef565b611724565b3480156106d857600080fd5b50600d546102d390610100900460ff1681565b3480156106f757600080fd5b5061035161070636600461281a565b61175c565b34801561071757600080fd5b506103b4600c5481565b34801561072d57600080fd5b506103b4600b5481565b34801561074357600080fd5b5061033a6107523660046129ef565b611837565b34801561076357600080fd5b506103b461077236600461281a565b60126020526000908152604090205481565b34801561079057600080fd5b506103516119ac565b3480156107a557600080fd5b506102d36107b4366004612b6f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107ee57600080fd5b5061033a6107fd366004612b9d565b6119d4565b34801561080e57600080fd5b5061033a61081d3660046129d2565b611bd8565b34801561082e57600080fd5b50600d546102d39060ff1681565b34801561084857600080fd5b506103b4600a5481565b34801561085e57600080fd5b5061033a611c73565b60006001600160e01b031982166380ac58cd60e01b148061089857506001600160e01b03198216635b5e139f60e01b145b806108b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b600260075414156108e55760405162461bcd60e51b81526004016108dc90612c43565b60405180910390fd5b6002600755600d5460ff6101009091041615156001146109175760405162461bcd60e51b81526004016108dc90612c7a565b61098c82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611cb1565b6109d85760405162461bcd60e51b815260206004820152601b60248201527f517569726b6c696e67733a204e6f742057686974656c6973746564000000000060448201526064016108dc565b600b54336000908152601160205260409020546109f6908590612cc7565b1115610a3f5760405162461bcd60e51b8152602060048201526018602482015277145d5a5c9adb1a5b99dcce88105b5bdd5b9d08131a5b5a5d60421b60448201526064016108dc565b610a4883611cc7565b3360009081526011602052604081208054859290610a67908490612cc7565b90915550506001600755505050565b606060018054610a8590612cdf565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab190612cdf565b8015610afe5780601f10610ad357610100808354040283529160200191610afe565b820191906000526020600020905b815481529060010190602001808311610ae157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610b815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108dc565b506000908152600560205260409020546001600160a01b031690565b6000610ba882611073565b9050806001600160a01b0316836001600160a01b03161415610c165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108dc565b336001600160a01b0382161480610c325750610c3281336107b4565b610ca45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108dc565b610cae8383611df2565b505050565b610cbd3382611e60565b610cd95760405162461bcd60e51b81526004016108dc90612d1a565b610cae838383611f57565b6000546001600160a01b03163314610d0e5760405162461bcd60e51b81526004016108dc90612d6b565b4773d56f05cab51a36e5b17a8e06f4bb286a8104ae98731c46a964f9404193aff03769559cae1cbde9e82d73a176cbefedb9dbf436bfefc102e4120aa2e9fc9b6000836064610d5e87600f612da0565b610d689190612dd5565b604051600081818185875af1925050503d8060008114610da4576040519150601f19603f3d011682016040523d82523d6000602084013e610da9565b606091505b5050905080610dfa5760405162461bcd60e51b815260206004820152601d60248201527f517569726b6c696e67733a205472616e736665722033204661696c656400000060448201526064016108dc565b60006001600160a01b0384166064610e1388602d612da0565b610e1d9190612dd5565b604051600081818185875af1925050503d8060008114610e59576040519150601f19603f3d011682016040523d82523d6000602084013e610e5e565b606091505b5050905080610eaf5760405162461bcd60e51b815260206004820152601d60248201527f517569726b6c696e67733a205472616e736665722032204661696c656400000060448201526064016108dc565b6000836001600160a01b03164760405160006040518083038185875af1925050503d8060008114610efc576040519150601f19603f3d011682016040523d82523d6000602084013e610f01565b606091505b5050905080610f525760405162461bcd60e51b815260206004820152601d60248201527f517569726b6c696e67733a205472616e736665722031204661696c656400000060448201526064016108dc565b50505050505050565b610cae83838360405180602001604052806000815250611724565b6000610f8183611518565b8281518110610f9257610f92612de9565b6020026020010151905092915050565b6000546001600160a01b03163314610fcc5760405162461bcd60e51b81526004016108dc90612d6b565b600d805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b031633146110155760405162461bcd60e51b81526004016108dc90612d6b565b600d805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b0316331461105c5760405162461bcd60e51b81526004016108dc90612d6b565b805161106f90601090602084019061264b565b5050565b6000818152600360205260408120546001600160a01b0316806108b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108dc565b6000546001600160a01b031633146111145760405162461bcd60e51b81526004016108dc90612d6b565b600260075414156111375760405162461bcd60e51b81526004016108dc90612c43565b600260075561138881106111895760405162461bcd60e51b8152602060048201526019602482015278517569726b6c696e67733a20496e76616c696420436c61696d60381b60448201526064016108dc565b815b8181116111d3576000818152601260205260409020546111c1576000818152601260205260409020600190556111c184826120f3565b806111cb81612dff565b91505061118b565b505060016007555050565b601080546111eb90612cdf565b80601f016020809104026020016040519081016040528092919081815260200182805461121790612cdf565b80156112645780601f1061123957610100808354040283529160200191611264565b820191906000526020600020905b81548152906001019060200180831161124757829003601f168201915b505050505081565b60006001600160a01b0382166112d75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108dc565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461131d5760405162461bcd60e51b81526004016108dc90612d6b565b611327600061210d565b565b6000546001600160a01b031633146113535760405162461bcd60e51b81526004016108dc90612d6b565b600f55565b606060008267ffffffffffffffff811115611375576113756128b5565b60405190808252806020026020018201604052801561139e578160200160208202803683370190505b50905060005b8381101561140757601260008686848181106113c2576113c2612de9565b905060200201358152602001908152602001600020548282815181106113ea576113ea612de9565b6020908102919091010152806113ff81612dff565b9150506113a4565b509392505050565b6000546001600160a01b031633146114395760405162461bcd60e51b81526004016108dc90612d6b565b6002600754141561145c5760405162461bcd60e51b81526004016108dc90612c43565b600260075560005b818110156111d357600083838381811061148057611480612de9565b90506020020135905061138881106114d65760405162461bcd60e51b8152602060048201526019602482015278517569726b6c696e67733a20496e76616c696420436c61696d60381b60448201526064016108dc565b6000818152601260205260409020546115055760008181526012602052604090206001905561150585826120f3565b508061151081612dff565b915050611464565b606060006115258361126c565b905060008167ffffffffffffffff811115611542576115426128b5565b60405190808252806020026020018201604052801561156b578160200160208202803683370190505b5090506000805b6127108110156115fe576000818152600360205260409020546001600160a01b0316151580156115bb5750856001600160a01b03166115b082611073565b6001600160a01b0316145b156115ec57808383815181106115d3576115d3612de9565b6020908102919091010152816115e881612dff565b9250505b806115f681612dff565b915050611572565b5090949350505050565b606060028054610a8590612cdf565b6002600754141561163a5760405162461bcd60e51b81526004016108dc90612c43565b600260075532331461168e5760405162461bcd60e51b815260206004820152601a60248201527f517569726b6c696e67733a2053656c66204d696e74204f6e6c7900000000000060448201526064016108dc565b600d5462010000900460ff1615156001146116bb5760405162461bcd60e51b81526004016108dc90612c7a565b600c548111156117085760405162461bcd60e51b8152602060048201526018602482015277145d5a5c9adb1a5b99dcce88105b5bdd5b9d08131a5b5a5d60421b60448201526064016108dc565b61171181611cc7565b506001600755565b61106f33838361215d565b61172e3383611e60565b61174a5760405162461bcd60e51b81526004016108dc90612d1a565b6117568484848461222c565b50505050565b6000818152600360205260409020546060906001600160a01b03166117db5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108dc565b60006117e561225f565b905060008151116118055760405180602001604052806000815250611830565b8061180f8461226e565b604051602001611820929190612e1a565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118615760405162461bcd60e51b81526004016108dc90612d6b565b600260075414156118845760405162461bcd60e51b81526004016108dc90612c43565b600260075560005b8181101561193e57600081600e546113886118a79190612cc7565b6118b19190612cc7565b905061271081106118fb5760405162461bcd60e51b8152602060048201526014602482015273145d5a5c9adb1a5b99dcce8814dbdb190813dd5d60621b60448201526064016108dc565b61192b84848481811061191057611910612de9565b905060200201602081019061192591906129d2565b826120f3565b508061193681612dff565b91505061188c565b50600a548110156119695781819050600a600082825461195e9190612e49565b9091555061196f9050565b6000600a555b81819050600e60008282546119849190612cc7565b90915550506009805482919060009061199e908490612cc7565b909155505060016007555050565b606060106040516020016119c09190612e60565b604051602081830303815290604052905090565b600260075414156119f75760405162461bcd60e51b81526004016108dc90612c43565b6002600755600d5460ff161515600114611a235760405162461bcd60e51b81526004016108dc90612c7a565b60005b8151811015611bb7576000828281518110611a4357611a43612de9565b60200260200101519050611a543390565b600d546040516331a9108f60e11b8152600481018490526001600160a01b0392831692630100000090920490911690636352211e90602401602060405180830381865afa158015611aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acd9190612f0c565b6001600160a01b031614611b235760405162461bcd60e51b815260206004820152601b60248201527f517569726b6c696e67733a204e6f7420546f6b656e204f776e6572000000000060448201526064016108dc565b60008181526012602052604090205415611b895760405162461bcd60e51b815260206004820152602160248201527f517569726b6c696e67733a20546f6b656e20416c726561647920436c61696d656044820152601960fa1b60648201526084016108dc565b600081815260126020526040902060019055611ba433611925565b5080611baf81612dff565b915050611a26565b50805160096000828254611bcb9190612cc7565b9091555050600160075550565b6000546001600160a01b03163314611c025760405162461bcd60e51b81526004016108dc90612d6b565b6001600160a01b038116611c675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108dc565b611c708161210d565b50565b6000546001600160a01b03163314611c9d5760405162461bcd60e51b81526004016108dc90612d6b565b600d805460ff19811660ff90911615179055565b600082611cbe858461236c565b14949350505050565b80600854611cd59190612da0565b3414611d235760405162461bcd60e51b815260206004820152601b60248201527f517569726b6c696e67733a20496e636f72726563742056616c7565000000000060448201526064016108dc565b60005b81811015611dbe57600081600e54611388611d419190612cc7565b611d4b9190612cc7565b9050600a54612710611d5d9190612e49565b8110611da25760405162461bcd60e51b8152602060048201526014602482015273145d5a5c9adb1a5b99dcce8814dbdb190813dd5d60621b60448201526064016108dc565b611dab33611925565b5080611db681612dff565b915050611d26565b508060096000828254611dd19190612cc7565b9250508190555080600e6000828254611dea9190612cc7565b909155505050565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e2782611073565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611ed95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108dc565b6000611ee483611073565b9050806001600160a01b0316846001600160a01b03161480611f2b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b80611f4f5750836001600160a01b0316611f4484610b08565b6001600160a01b0316145b949350505050565b826001600160a01b0316611f6a82611073565b6001600160a01b031614611fce5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108dc565b6001600160a01b0382166120305760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108dc565b61203b600082611df2565b6001600160a01b0383166000908152600460205260408120805460019290612064908490612e49565b90915550506001600160a01b0382166000908152600460205260408120805460019290612092908490612cc7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61106f8282604051806020016040528060008152506123d8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156121bf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108dc565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612237848484611f57565b6122438484848461240b565b6117565760405162461bcd60e51b81526004016108dc90612f29565b606060108054610a8590612cdf565b6060816122925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122bc57806122a681612dff565b91506122b59050600a83612dd5565b9150612296565b60008167ffffffffffffffff8111156122d7576122d76128b5565b6040519080825280601f01601f191660200182016040528015612301576020820181803683370190505b5090505b8415611f4f57612316600183612e49565b9150612323600a86612f7b565b61232e906030612cc7565b60f81b81838151811061234357612343612de9565b60200101906001600160f81b031916908160001a905350612365600a86612dd5565b9450612305565b600081815b845181101561140757600085828151811061238e5761238e612de9565b602002602001015190508083116123b457600083815260208290526040902092506123c5565b600081815260208490526040902092505b50806123d081612dff565b915050612371565b6123e28383612509565b6123ef600084848461240b565b610cae5760405162461bcd60e51b81526004016108dc90612f29565b60006001600160a01b0384163b156124fe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061244f903390899088908890600401612f8f565b6020604051808303816000875af192505050801561248a575060408051601f3d908101601f1916820190925261248791810190612fcc565b60015b6124e4573d8080156124b8576040519150601f19603f3d011682016040523d82523d6000602084013e6124bd565b606091505b5080516124dc5760405162461bcd60e51b81526004016108dc90612f29565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f4f565b506001949350505050565b6001600160a01b03821661255f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108dc565b6000818152600360205260409020546001600160a01b0316156125c45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108dc565b6001600160a01b03821660009081526004602052604081208054600192906125ed908490612cc7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461265790612cdf565b90600052602060002090601f01602090048101928261267957600085556126bf565b82601f1061269257805160ff19168380011785556126bf565b828001600101855582156126bf579182015b828111156126bf5782518255916020019190600101906126a4565b506126cb9291506126cf565b5090565b5b808211156126cb57600081556001016126d0565b6001600160e01b031981168114611c7057600080fd5b60006020828403121561270c57600080fd5b8135611830816126e4565b60008083601f84011261272957600080fd5b50813567ffffffffffffffff81111561274157600080fd5b6020830191508360208260051b850101111561275c57600080fd5b9250929050565b60008060006040848603121561277857600080fd5b83359250602084013567ffffffffffffffff81111561279657600080fd5b6127a286828701612717565b9497909650939450505050565b60005b838110156127ca5781810151838201526020016127b2565b838111156117565750506000910152565b600081518084526127f38160208601602086016127af565b601f01601f19169290920160200192915050565b60208152600061183060208301846127db565b60006020828403121561282c57600080fd5b5035919050565b6001600160a01b0381168114611c7057600080fd5b6000806040838503121561285b57600080fd5b823561286681612833565b946020939093013593505050565b60008060006060848603121561288957600080fd5b833561289481612833565b925060208401356128a481612833565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156128f4576128f46128b5565b604052919050565b600067ffffffffffffffff831115612916576129166128b5565b612929601f8401601f19166020016128cb565b905082815283838301111561293d57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561296657600080fd5b813567ffffffffffffffff81111561297d57600080fd5b8201601f8101841361298e57600080fd5b611f4f848235602084016128fc565b6000806000606084860312156129b257600080fd5b83356129bd81612833565b95602085013595506040909401359392505050565b6000602082840312156129e457600080fd5b813561183081612833565b60008060208385031215612a0257600080fd5b823567ffffffffffffffff811115612a1957600080fd5b612a2585828601612717565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015612a6957835183529284019291840191600101612a4d565b50909695505050505050565b600080600060408486031215612a8a57600080fd5b8335612a9581612833565b9250602084013567ffffffffffffffff81111561279657600080fd5b60008060408385031215612ac457600080fd5b8235612acf81612833565b915060208301358015158114612ae457600080fd5b809150509250929050565b60008060008060808587031215612b0557600080fd5b8435612b1081612833565b93506020850135612b2081612833565b925060408501359150606085013567ffffffffffffffff811115612b4357600080fd5b8501601f81018713612b5457600080fd5b612b63878235602084016128fc565b91505092959194509250565b60008060408385031215612b8257600080fd5b8235612b8d81612833565b91506020830135612ae481612833565b60006020808385031215612bb057600080fd5b823567ffffffffffffffff80821115612bc857600080fd5b818501915085601f830112612bdc57600080fd5b813581811115612bee57612bee6128b5565b8060051b9150612bff8483016128cb565b8181529183018401918481019088841115612c1957600080fd5b938501935b83851015612c3757843582529385019390850190612c1e565b98975050505050505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526017908201527f517569726b6c696e67733a204e6f742053746172746564000000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612cda57612cda612cb1565b500190565b600181811c90821680612cf357607f821691505b60208210811415612d1457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615612dba57612dba612cb1565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612de457612de4612dbf565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612e1357612e13612cb1565b5060010190565b60008351612e2c8184602088016127af565b835190830190612e408183602088016127af565b01949350505050565b600082821015612e5b57612e5b612cb1565b500390565b600080835481600182811c915080831680612e7c57607f831692505b6020808410821415612e9c57634e487b7160e01b86526022600452602486fd5b818015612eb05760018114612ec157612eee565b60ff19861689528489019650612eee565b60008a81526020902060005b86811015612ee65781548b820152908501908301612ecd565b505084890196505b505050505050611f4f816718dbdb9d1c9858dd60c21b815260080190565b600060208284031215612f1e57600080fd5b815161183081612833565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612f8a57612f8a612dbf565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fc2908301846127db565b9695505050505050565b600060208284031215612fde57600080fd5b8151611830816126e456fea264697066735822122069adfb4aa178dcb68b9b2dd9cd6f63c74784ce005343022a758b05e26570054964736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000060e802bc5de3d1c16cc2e8ee9e4724a1e520cd769211aba06f54b8c3836d6b079a0000000000000000000000003903d4ffaaa700b62578a66e7a67ba4cb67787f90000000000000000000000000000000000000000000000000000000000000028687474703a2f2f717569726b6c696e67732d70726572657665616c2e717569726b6965732e696f2f000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80637cb6475911610175578063be610676116100dc578063e8a3d48511610095578063f2fde38b1161006f578063f2fde38b14610802578063f7aa2ffc14610822578063fe60d12c1461083c578063feccbf241461085257600080fd5b8063e8a3d48514610784578063e985e9c514610799578063ea55569d146107e257600080fd5b8063be61067614610663578063c87b56dd146106eb578063cb4e83261461070b578063d5e13d6514610721578063d682ed8614610737578063e5a342a31461075757600080fd5b80639659867e1161012e5780639659867e1461064d578063996517cf14610663578063a0712d6814610679578063a22cb4651461068c578063b88d4fde146106ac578063b8f929ad146106cc57600080fd5b80637cb647591461058d5780637d28a191146105ad5780637fe011ad146105da5780638462151c146105fa5780638da5cb5b1461061a57806395d89b411461063857600080fd5b80633ccfd60b116102195780636352211e116101d25780636352211e146104d6578063653b8e6e146104f657806369ddd67d146105165780636c0360eb1461054357806370a0823114610558578063715018a61461057857600080fd5b80633ccfd60b1461044457806342842e0e1461044c5780634707f44f1461046c5780634bffad9f1461048c5780634eabe20b146104a157806355f804b3146104b657600080fd5b80630d39fc811161026b5780630d39fc811461039e57806318160ddd146103c257806320a44794146103d857806323b872dd146103f85780632a7065ea146104185780632eb4a7ab1461042e57600080fd5b806301ffc9a7146102b357806305691ec8146102e8578063061431a81461032757806306fdde031461033c578063081812fc1461035e578063095ea7b31461037e575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046126fa565b610867565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50600d5461030f90630100000090046001600160a01b031681565b6040516001600160a01b0390911681526020016102df565b61033a610335366004612763565b6108b9565b005b34801561034857600080fd5b50610351610a76565b6040516102df9190612807565b34801561036a57600080fd5b5061030f61037936600461281a565b610b08565b34801561038a57600080fd5b5061033a610399366004612848565b610b9d565b3480156103aa57600080fd5b506103b460085481565b6040519081526020016102df565b3480156103ce57600080fd5b506103b460095481565b3480156103e457600080fd5b50600d546102d39062010000900460ff1681565b34801561040457600080fd5b5061033a610413366004612874565b610cb3565b34801561042457600080fd5b506103b461271081565b34801561043a57600080fd5b506103b4600f5481565b61033a610ce4565b34801561045857600080fd5b5061033a610467366004612874565b610f5b565b34801561047857600080fd5b506103b4610487366004612848565b610f76565b34801561049857600080fd5b5061033a610fa2565b3480156104ad57600080fd5b5061033a610feb565b3480156104c257600080fd5b5061033a6104d1366004612954565b611032565b3480156104e257600080fd5b5061030f6104f136600461281a565b611073565b34801561050257600080fd5b5061033a61051136600461299d565b6110ea565b34801561052257600080fd5b506103b46105313660046129d2565b60116020526000908152604090205481565b34801561054f57600080fd5b506103516111de565b34801561056457600080fd5b506103b46105733660046129d2565b61126c565b34801561058457600080fd5b5061033a6112f3565b34801561059957600080fd5b5061033a6105a836600461281a565b611329565b3480156105b957600080fd5b506105cd6105c83660046129ef565b611358565b6040516102df9190612a31565b3480156105e657600080fd5b5061033a6105f5366004612a75565b61140f565b34801561060657600080fd5b506105cd6106153660046129d2565b611518565b34801561062657600080fd5b506000546001600160a01b031661030f565b34801561064457600080fd5b50610351611608565b34801561065957600080fd5b506103b4600e5481565b34801561066f57600080fd5b506103b461138881565b61033a61068736600461281a565b611617565b34801561069857600080fd5b5061033a6106a7366004612ab1565b611719565b3480156106b857600080fd5b5061033a6106c7366004612aef565b611724565b3480156106d857600080fd5b50600d546102d390610100900460ff1681565b3480156106f757600080fd5b5061035161070636600461281a565b61175c565b34801561071757600080fd5b506103b4600c5481565b34801561072d57600080fd5b506103b4600b5481565b34801561074357600080fd5b5061033a6107523660046129ef565b611837565b34801561076357600080fd5b506103b461077236600461281a565b60126020526000908152604090205481565b34801561079057600080fd5b506103516119ac565b3480156107a557600080fd5b506102d36107b4366004612b6f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107ee57600080fd5b5061033a6107fd366004612b9d565b6119d4565b34801561080e57600080fd5b5061033a61081d3660046129d2565b611bd8565b34801561082e57600080fd5b50600d546102d39060ff1681565b34801561084857600080fd5b506103b4600a5481565b34801561085e57600080fd5b5061033a611c73565b60006001600160e01b031982166380ac58cd60e01b148061089857506001600160e01b03198216635b5e139f60e01b145b806108b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b600260075414156108e55760405162461bcd60e51b81526004016108dc90612c43565b60405180910390fd5b6002600755600d5460ff6101009091041615156001146109175760405162461bcd60e51b81526004016108dc90612c7a565b61098c82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611cb1565b6109d85760405162461bcd60e51b815260206004820152601b60248201527f517569726b6c696e67733a204e6f742057686974656c6973746564000000000060448201526064016108dc565b600b54336000908152601160205260409020546109f6908590612cc7565b1115610a3f5760405162461bcd60e51b8152602060048201526018602482015277145d5a5c9adb1a5b99dcce88105b5bdd5b9d08131a5b5a5d60421b60448201526064016108dc565b610a4883611cc7565b3360009081526011602052604081208054859290610a67908490612cc7565b90915550506001600755505050565b606060018054610a8590612cdf565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab190612cdf565b8015610afe5780601f10610ad357610100808354040283529160200191610afe565b820191906000526020600020905b815481529060010190602001808311610ae157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610b815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108dc565b506000908152600560205260409020546001600160a01b031690565b6000610ba882611073565b9050806001600160a01b0316836001600160a01b03161415610c165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108dc565b336001600160a01b0382161480610c325750610c3281336107b4565b610ca45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108dc565b610cae8383611df2565b505050565b610cbd3382611e60565b610cd95760405162461bcd60e51b81526004016108dc90612d1a565b610cae838383611f57565b6000546001600160a01b03163314610d0e5760405162461bcd60e51b81526004016108dc90612d6b565b4773d56f05cab51a36e5b17a8e06f4bb286a8104ae98731c46a964f9404193aff03769559cae1cbde9e82d73a176cbefedb9dbf436bfefc102e4120aa2e9fc9b6000836064610d5e87600f612da0565b610d689190612dd5565b604051600081818185875af1925050503d8060008114610da4576040519150601f19603f3d011682016040523d82523d6000602084013e610da9565b606091505b5050905080610dfa5760405162461bcd60e51b815260206004820152601d60248201527f517569726b6c696e67733a205472616e736665722033204661696c656400000060448201526064016108dc565b60006001600160a01b0384166064610e1388602d612da0565b610e1d9190612dd5565b604051600081818185875af1925050503d8060008114610e59576040519150601f19603f3d011682016040523d82523d6000602084013e610e5e565b606091505b5050905080610eaf5760405162461bcd60e51b815260206004820152601d60248201527f517569726b6c696e67733a205472616e736665722032204661696c656400000060448201526064016108dc565b6000836001600160a01b03164760405160006040518083038185875af1925050503d8060008114610efc576040519150601f19603f3d011682016040523d82523d6000602084013e610f01565b606091505b5050905080610f525760405162461bcd60e51b815260206004820152601d60248201527f517569726b6c696e67733a205472616e736665722031204661696c656400000060448201526064016108dc565b50505050505050565b610cae83838360405180602001604052806000815250611724565b6000610f8183611518565b8281518110610f9257610f92612de9565b6020026020010151905092915050565b6000546001600160a01b03163314610fcc5760405162461bcd60e51b81526004016108dc90612d6b565b600d805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b031633146110155760405162461bcd60e51b81526004016108dc90612d6b565b600d805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b0316331461105c5760405162461bcd60e51b81526004016108dc90612d6b565b805161106f90601090602084019061264b565b5050565b6000818152600360205260408120546001600160a01b0316806108b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108dc565b6000546001600160a01b031633146111145760405162461bcd60e51b81526004016108dc90612d6b565b600260075414156111375760405162461bcd60e51b81526004016108dc90612c43565b600260075561138881106111895760405162461bcd60e51b8152602060048201526019602482015278517569726b6c696e67733a20496e76616c696420436c61696d60381b60448201526064016108dc565b815b8181116111d3576000818152601260205260409020546111c1576000818152601260205260409020600190556111c184826120f3565b806111cb81612dff565b91505061118b565b505060016007555050565b601080546111eb90612cdf565b80601f016020809104026020016040519081016040528092919081815260200182805461121790612cdf565b80156112645780601f1061123957610100808354040283529160200191611264565b820191906000526020600020905b81548152906001019060200180831161124757829003601f168201915b505050505081565b60006001600160a01b0382166112d75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108dc565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461131d5760405162461bcd60e51b81526004016108dc90612d6b565b611327600061210d565b565b6000546001600160a01b031633146113535760405162461bcd60e51b81526004016108dc90612d6b565b600f55565b606060008267ffffffffffffffff811115611375576113756128b5565b60405190808252806020026020018201604052801561139e578160200160208202803683370190505b50905060005b8381101561140757601260008686848181106113c2576113c2612de9565b905060200201358152602001908152602001600020548282815181106113ea576113ea612de9565b6020908102919091010152806113ff81612dff565b9150506113a4565b509392505050565b6000546001600160a01b031633146114395760405162461bcd60e51b81526004016108dc90612d6b565b6002600754141561145c5760405162461bcd60e51b81526004016108dc90612c43565b600260075560005b818110156111d357600083838381811061148057611480612de9565b90506020020135905061138881106114d65760405162461bcd60e51b8152602060048201526019602482015278517569726b6c696e67733a20496e76616c696420436c61696d60381b60448201526064016108dc565b6000818152601260205260409020546115055760008181526012602052604090206001905561150585826120f3565b508061151081612dff565b915050611464565b606060006115258361126c565b905060008167ffffffffffffffff811115611542576115426128b5565b60405190808252806020026020018201604052801561156b578160200160208202803683370190505b5090506000805b6127108110156115fe576000818152600360205260409020546001600160a01b0316151580156115bb5750856001600160a01b03166115b082611073565b6001600160a01b0316145b156115ec57808383815181106115d3576115d3612de9565b6020908102919091010152816115e881612dff565b9250505b806115f681612dff565b915050611572565b5090949350505050565b606060028054610a8590612cdf565b6002600754141561163a5760405162461bcd60e51b81526004016108dc90612c43565b600260075532331461168e5760405162461bcd60e51b815260206004820152601a60248201527f517569726b6c696e67733a2053656c66204d696e74204f6e6c7900000000000060448201526064016108dc565b600d5462010000900460ff1615156001146116bb5760405162461bcd60e51b81526004016108dc90612c7a565b600c548111156117085760405162461bcd60e51b8152602060048201526018602482015277145d5a5c9adb1a5b99dcce88105b5bdd5b9d08131a5b5a5d60421b60448201526064016108dc565b61171181611cc7565b506001600755565b61106f33838361215d565b61172e3383611e60565b61174a5760405162461bcd60e51b81526004016108dc90612d1a565b6117568484848461222c565b50505050565b6000818152600360205260409020546060906001600160a01b03166117db5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108dc565b60006117e561225f565b905060008151116118055760405180602001604052806000815250611830565b8061180f8461226e565b604051602001611820929190612e1a565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118615760405162461bcd60e51b81526004016108dc90612d6b565b600260075414156118845760405162461bcd60e51b81526004016108dc90612c43565b600260075560005b8181101561193e57600081600e546113886118a79190612cc7565b6118b19190612cc7565b905061271081106118fb5760405162461bcd60e51b8152602060048201526014602482015273145d5a5c9adb1a5b99dcce8814dbdb190813dd5d60621b60448201526064016108dc565b61192b84848481811061191057611910612de9565b905060200201602081019061192591906129d2565b826120f3565b508061193681612dff565b91505061188c565b50600a548110156119695781819050600a600082825461195e9190612e49565b9091555061196f9050565b6000600a555b81819050600e60008282546119849190612cc7565b90915550506009805482919060009061199e908490612cc7565b909155505060016007555050565b606060106040516020016119c09190612e60565b604051602081830303815290604052905090565b600260075414156119f75760405162461bcd60e51b81526004016108dc90612c43565b6002600755600d5460ff161515600114611a235760405162461bcd60e51b81526004016108dc90612c7a565b60005b8151811015611bb7576000828281518110611a4357611a43612de9565b60200260200101519050611a543390565b600d546040516331a9108f60e11b8152600481018490526001600160a01b0392831692630100000090920490911690636352211e90602401602060405180830381865afa158015611aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acd9190612f0c565b6001600160a01b031614611b235760405162461bcd60e51b815260206004820152601b60248201527f517569726b6c696e67733a204e6f7420546f6b656e204f776e6572000000000060448201526064016108dc565b60008181526012602052604090205415611b895760405162461bcd60e51b815260206004820152602160248201527f517569726b6c696e67733a20546f6b656e20416c726561647920436c61696d656044820152601960fa1b60648201526084016108dc565b600081815260126020526040902060019055611ba433611925565b5080611baf81612dff565b915050611a26565b50805160096000828254611bcb9190612cc7565b9091555050600160075550565b6000546001600160a01b03163314611c025760405162461bcd60e51b81526004016108dc90612d6b565b6001600160a01b038116611c675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108dc565b611c708161210d565b50565b6000546001600160a01b03163314611c9d5760405162461bcd60e51b81526004016108dc90612d6b565b600d805460ff19811660ff90911615179055565b600082611cbe858461236c565b14949350505050565b80600854611cd59190612da0565b3414611d235760405162461bcd60e51b815260206004820152601b60248201527f517569726b6c696e67733a20496e636f72726563742056616c7565000000000060448201526064016108dc565b60005b81811015611dbe57600081600e54611388611d419190612cc7565b611d4b9190612cc7565b9050600a54612710611d5d9190612e49565b8110611da25760405162461bcd60e51b8152602060048201526014602482015273145d5a5c9adb1a5b99dcce8814dbdb190813dd5d60621b60448201526064016108dc565b611dab33611925565b5080611db681612dff565b915050611d26565b508060096000828254611dd19190612cc7565b9250508190555080600e6000828254611dea9190612cc7565b909155505050565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e2782611073565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611ed95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108dc565b6000611ee483611073565b9050806001600160a01b0316846001600160a01b03161480611f2b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b80611f4f5750836001600160a01b0316611f4484610b08565b6001600160a01b0316145b949350505050565b826001600160a01b0316611f6a82611073565b6001600160a01b031614611fce5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108dc565b6001600160a01b0382166120305760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108dc565b61203b600082611df2565b6001600160a01b0383166000908152600460205260408120805460019290612064908490612e49565b90915550506001600160a01b0382166000908152600460205260408120805460019290612092908490612cc7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61106f8282604051806020016040528060008152506123d8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156121bf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108dc565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612237848484611f57565b6122438484848461240b565b6117565760405162461bcd60e51b81526004016108dc90612f29565b606060108054610a8590612cdf565b6060816122925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122bc57806122a681612dff565b91506122b59050600a83612dd5565b9150612296565b60008167ffffffffffffffff8111156122d7576122d76128b5565b6040519080825280601f01601f191660200182016040528015612301576020820181803683370190505b5090505b8415611f4f57612316600183612e49565b9150612323600a86612f7b565b61232e906030612cc7565b60f81b81838151811061234357612343612de9565b60200101906001600160f81b031916908160001a905350612365600a86612dd5565b9450612305565b600081815b845181101561140757600085828151811061238e5761238e612de9565b602002602001015190508083116123b457600083815260208290526040902092506123c5565b600081815260208490526040902092505b50806123d081612dff565b915050612371565b6123e28383612509565b6123ef600084848461240b565b610cae5760405162461bcd60e51b81526004016108dc90612f29565b60006001600160a01b0384163b156124fe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061244f903390899088908890600401612f8f565b6020604051808303816000875af192505050801561248a575060408051601f3d908101601f1916820190925261248791810190612fcc565b60015b6124e4573d8080156124b8576040519150601f19603f3d011682016040523d82523d6000602084013e6124bd565b606091505b5080516124dc5760405162461bcd60e51b81526004016108dc90612f29565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f4f565b506001949350505050565b6001600160a01b03821661255f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108dc565b6000818152600360205260409020546001600160a01b0316156125c45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108dc565b6001600160a01b03821660009081526004602052604081208054600192906125ed908490612cc7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461265790612cdf565b90600052602060002090601f01602090048101928261267957600085556126bf565b82601f1061269257805160ff19168380011785556126bf565b828001600101855582156126bf579182015b828111156126bf5782518255916020019190600101906126a4565b506126cb9291506126cf565b5090565b5b808211156126cb57600081556001016126d0565b6001600160e01b031981168114611c7057600080fd5b60006020828403121561270c57600080fd5b8135611830816126e4565b60008083601f84011261272957600080fd5b50813567ffffffffffffffff81111561274157600080fd5b6020830191508360208260051b850101111561275c57600080fd5b9250929050565b60008060006040848603121561277857600080fd5b83359250602084013567ffffffffffffffff81111561279657600080fd5b6127a286828701612717565b9497909650939450505050565b60005b838110156127ca5781810151838201526020016127b2565b838111156117565750506000910152565b600081518084526127f38160208601602086016127af565b601f01601f19169290920160200192915050565b60208152600061183060208301846127db565b60006020828403121561282c57600080fd5b5035919050565b6001600160a01b0381168114611c7057600080fd5b6000806040838503121561285b57600080fd5b823561286681612833565b946020939093013593505050565b60008060006060848603121561288957600080fd5b833561289481612833565b925060208401356128a481612833565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156128f4576128f46128b5565b604052919050565b600067ffffffffffffffff831115612916576129166128b5565b612929601f8401601f19166020016128cb565b905082815283838301111561293d57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561296657600080fd5b813567ffffffffffffffff81111561297d57600080fd5b8201601f8101841361298e57600080fd5b611f4f848235602084016128fc565b6000806000606084860312156129b257600080fd5b83356129bd81612833565b95602085013595506040909401359392505050565b6000602082840312156129e457600080fd5b813561183081612833565b60008060208385031215612a0257600080fd5b823567ffffffffffffffff811115612a1957600080fd5b612a2585828601612717565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015612a6957835183529284019291840191600101612a4d565b50909695505050505050565b600080600060408486031215612a8a57600080fd5b8335612a9581612833565b9250602084013567ffffffffffffffff81111561279657600080fd5b60008060408385031215612ac457600080fd5b8235612acf81612833565b915060208301358015158114612ae457600080fd5b809150509250929050565b60008060008060808587031215612b0557600080fd5b8435612b1081612833565b93506020850135612b2081612833565b925060408501359150606085013567ffffffffffffffff811115612b4357600080fd5b8501601f81018713612b5457600080fd5b612b63878235602084016128fc565b91505092959194509250565b60008060408385031215612b8257600080fd5b8235612b8d81612833565b91506020830135612ae481612833565b60006020808385031215612bb057600080fd5b823567ffffffffffffffff80821115612bc857600080fd5b818501915085601f830112612bdc57600080fd5b813581811115612bee57612bee6128b5565b8060051b9150612bff8483016128cb565b8181529183018401918481019088841115612c1957600080fd5b938501935b83851015612c3757843582529385019390850190612c1e565b98975050505050505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526017908201527f517569726b6c696e67733a204e6f742053746172746564000000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612cda57612cda612cb1565b500190565b600181811c90821680612cf357607f821691505b60208210811415612d1457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615612dba57612dba612cb1565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612de457612de4612dbf565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612e1357612e13612cb1565b5060010190565b60008351612e2c8184602088016127af565b835190830190612e408183602088016127af565b01949350505050565b600082821015612e5b57612e5b612cb1565b500390565b600080835481600182811c915080831680612e7c57607f831692505b6020808410821415612e9c57634e487b7160e01b86526022600452602486fd5b818015612eb05760018114612ec157612eee565b60ff19861689528489019650612eee565b60008a81526020902060005b86811015612ee65781548b820152908501908301612ecd565b505084890196505b505050505050611f4f816718dbdb9d1c9858dd60c21b815260080190565b600060208284031215612f1e57600080fd5b815161183081612833565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612f8a57612f8a612dbf565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fc2908301846127db565b9695505050505050565b600060208284031215612fde57600080fd5b8151611830816126e456fea264697066735822122069adfb4aa178dcb68b9b2dd9cd6f63c74784ce005343022a758b05e26570054964736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000060e802bc5de3d1c16cc2e8ee9e4724a1e520cd769211aba06f54b8c3836d6b079a0000000000000000000000003903d4ffaaa700b62578a66e7a67ba4cb67787f90000000000000000000000000000000000000000000000000000000000000028687474703a2f2f717569726b6c696e67732d70726572657665616c2e717569726b6965732e696f2f000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initURI (string): http://quirklings-prereveal.quirkies.io/
Arg [1] : _merkleRoot (bytes32): 0xe802bc5de3d1c16cc2e8ee9e4724a1e520cd769211aba06f54b8c3836d6b079a
Arg [2] : _claimAddress (address): 0x3903d4fFaAa700b62578a66e7a67Ba4cb67787f9

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : e802bc5de3d1c16cc2e8ee9e4724a1e520cd769211aba06f54b8c3836d6b079a
Arg [2] : 0000000000000000000000003903d4ffaaa700b62578a66e7a67ba4cb67787f9
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [4] : 687474703a2f2f717569726b6c696e67732d70726572657665616c2e71756972
Arg [5] : 6b6965732e696f2f000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42770:7209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27061:305;;;;;;;;;;-1:-1:-1;27061:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27061:305:0;;;;;;;;43281:27;;;;;;;;;;-1:-1:-1;43281:27:0;;;;;;;-1:-1:-1;;;;;43281:27:0;;;;;;-1:-1:-1;;;;;756:32:1;;;738:51;;726:2;711:18;43281:27:0;592:203:1;44104:658:0;;;;;;:::i;:::-;;:::i;:::-;;28006:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29566:221::-;;;;;;;;;;-1:-1:-1;29566:221:0;;;;;:::i;:::-;;:::i;29089:411::-;;;;;;;;;;-1:-1:-1;29089:411:0;;;;;:::i;:::-;;:::i;42833:35::-;;;;;;;;;;;;;;;;;;;3220:25:1;;;3208:2;3193:18;42833:35:0;3074:177:1;42875:30:0;;;;;;;;;;;;;;;;43242;;;;;;;;;;-1:-1:-1;43242:30:0;;;;;;;;;;;30316:339;;;;;;;;;;-1:-1:-1;30316:339:0;;;;;:::i;:::-;;:::i;42914:40::-;;;;;;;;;;;;42949:5;42914:40;;43350:25;;;;;;;;;;;;;;;;48386:818;;;:::i;30726:185::-;;;;;;;;;;-1:-1:-1;30726:185:0;;;;;:::i;:::-;;:::i;47327:179::-;;;;;;;;;;-1:-1:-1;47327:179:0;;;;;:::i;:::-;;:::i;49317:88::-;;;;;;;;;;;;;:::i;49212:97::-;;;;;;;;;;;;;:::i;49506:104::-;;;;;;;;;;-1:-1:-1;49506:104:0;;;;;:::i;:::-;;:::i;27700:239::-;;;;;;;;;;-1:-1:-1;27700:239:0;;;;;:::i;:::-;;:::i;46918:401::-;;;;;;;;;;-1:-1:-1;46918:401:0;;;;;:::i;:::-;;:::i;43419:53::-;;;;;;;;;;-1:-1:-1;43419:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;43384:26;;;;;;;;;;;;;:::i;27430:208::-;;;;;;;;;;-1:-1:-1;27430:208:0;;;;;:::i;:::-;;:::i;41889:103::-;;;;;;;;;;;;;:::i;49618:104::-;;;;;;;;;;-1:-1:-1;49618:104:0;;;;;:::i;:::-;;:::i;48025:353::-;;;;;;;;;;-1:-1:-1;48025:353:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46439:471::-;;;;;;;;;;-1:-1:-1;46439:471:0;;;;;:::i;:::-;;:::i;47514:503::-;;;;;;;;;;-1:-1:-1;47514:503:0;;;;;:::i;:::-;;:::i;41238:87::-;;;;;;;;;;-1:-1:-1;41284:7:0;41311:6;-1:-1:-1;;;;;41311:6:0;41238:87;;28175:104;;;;;;;;;;;;;:::i;43315:28::-;;;;;;;;;;;;;;;;42961:40;;;;;;;;;;;;42997:4;42961:40;;43798:298;;;;;;:::i;:::-;;:::i;29859:155::-;;;;;;;;;;-1:-1:-1;29859:155:0;;;;;:::i;:::-;;:::i;30982:328::-;;;;;;;;;;-1:-1:-1;30982:328:0;;;;;:::i;:::-;;:::i;43202:33::-;;;;;;;;;;-1:-1:-1;43202:33:0;;;;;;;;;;;28350:334;;;;;;;;;;-1:-1:-1;28350:334:0;;;;;:::i;:::-;;:::i;43129:28::-;;;;;;;;;;;;;;;;43091:31;;;;;;;;;;;;;;;;45910:521;;;;;;;;;;-1:-1:-1;45910:521:0;;;;;:::i;:::-;;:::i;43479:48::-;;;;;;;;;;-1:-1:-1;43479:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;49846:130;;;;;;;;;;;;;:::i;30085:164::-;;;;;;;;;;-1:-1:-1;30085:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30206:25:0;;;30182:4;30206:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30085:164;44770:683;;;;;;;;;;-1:-1:-1;44770:683:0;;;;;:::i;:::-;;:::i;42147:201::-;;;;;;;;;;-1:-1:-1;42147:201:0;;;;;:::i;:::-;;:::i;43166:29::-;;;;;;;;;;-1:-1:-1;43166:29:0;;;;;;;;43056:28;;;;;;;;;;;;;;;;49413:85;;;;;;;;;;;;;:::i;27061:305::-;27163:4;-1:-1:-1;;;;;;27200:40:0;;-1:-1:-1;;;27200:40:0;;:105;;-1:-1:-1;;;;;;;27257:48:0;;-1:-1:-1;;;27257:48:0;27200:105;:158;;;-1:-1:-1;;;;;;;;;;19016:40:0;;;27322:36;27180:178;27061:305;-1:-1:-1;;27061:305:0:o;44104:658::-;4497:1;5095:7;;:19;;5087:63;;;;-1:-1:-1;;;5087:63:0;;;;;;;:::i;:::-;;;;;;;;;4497:1;5228:7;:18;44249:13:::1;::::0;::::1;;::::0;;::::1;;:21;;:13;:21;44241:57;;;;-1:-1:-1::0;;;44241:57:0::1;;;;;;;:::i;:::-;44331:146;44368:5;;44331:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;44392:10:0::1;::::0;44431:30:::1;::::0;-1:-1:-1;;25520:10:0;11528:2:1;11524:15;11520:53;44431:30:0::1;::::0;::::1;11508:66:1::0;44392:10:0;;-1:-1:-1;11590:12:1;;;-1:-1:-1;44431:30:0::1;;;;;;;;;;;;44421:41;;;;;;44331:18;:146::i;:::-;44309:223;;;::::0;-1:-1:-1;;;44309:223:0;;11815:2:1;44309:223:0::1;::::0;::::1;11797:21:1::0;11854:2;11834:18;;;11827:30;11893:29;11873:18;;;11866:57;11940:18;;44309:223:0::1;11613:351:1::0;44309:223:0::1;44611:12;::::0;25520:10;44565:32:::1;::::0;;;:18:::1;:32;::::0;;;;;:42:::1;::::0;44600:7;;44565:42:::1;:::i;:::-;:58;;44543:132;;;::::0;-1:-1:-1;;;44543:132:0;;12436:2:1;44543:132:0::1;::::0;::::1;12418:21:1::0;12475:2;12455:18;;;12448:30;-1:-1:-1;;;12494:18:1;;;12487:54;12558:18;;44543:132:0::1;12234:348:1::0;44543:132:0::1;44686:14;44692:7;44686:5;:14::i;:::-;25520:10:::0;44711:32:::1;::::0;;;:18:::1;:32;::::0;;;;:43;;44747:7;;44711:32;:43:::1;::::0;44747:7;;44711:43:::1;:::i;:::-;::::0;;;-1:-1:-1;;4453:1:0;5407:7;:22;-1:-1:-1;;;44104:658:0:o;28006:100::-;28060:13;28093:5;28086:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28006:100;:::o;29566:221::-;29642:7;32909:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32909:16:0;29662:73;;;;-1:-1:-1;;;29662:73:0;;13174:2:1;29662:73:0;;;13156:21:1;13213:2;13193:18;;;13186:30;13252:34;13232:18;;;13225:62;-1:-1:-1;;;13303:18:1;;;13296:42;13355:19;;29662:73:0;12972:408:1;29662:73:0;-1:-1:-1;29755:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29755:24:0;;29566:221::o;29089:411::-;29170:13;29186:23;29201:7;29186:14;:23::i;:::-;29170:39;;29234:5;-1:-1:-1;;;;;29228:11:0;:2;-1:-1:-1;;;;;29228:11:0;;;29220:57;;;;-1:-1:-1;;;29220:57:0;;13587:2:1;29220:57:0;;;13569:21:1;13626:2;13606:18;;;13599:30;13665:34;13645:18;;;13638:62;-1:-1:-1;;;13716:18:1;;;13709:31;13757:19;;29220:57:0;13385:397:1;29220:57:0;25520:10;-1:-1:-1;;;;;29312:21:0;;;;:62;;-1:-1:-1;29337:37:0;29354:5;25520:10;30085:164;:::i;29337:37::-;29290:168;;;;-1:-1:-1;;;29290:168:0;;13989:2:1;29290:168:0;;;13971:21:1;14028:2;14008:18;;;14001:30;14067:34;14047:18;;;14040:62;14138:26;14118:18;;;14111:54;14182:19;;29290:168:0;13787:420:1;29290:168:0;29471:21;29480:2;29484:7;29471:8;:21::i;:::-;29159:341;29089:411;;:::o;30316:339::-;30511:41;25520:10;30544:7;30511:18;:41::i;:::-;30503:103;;;;-1:-1:-1;;;30503:103:0;;;;;;;:::i;:::-;30619:28;30629:4;30635:2;30639:7;30619:9;:28::i;48386:818::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;48461:21:::1;48509:42;48578;48647;48442:16;48509:42:::0;48766:3:::1;48749:13;48461:21:::0;48760:2:::1;48749:13;:::i;:::-;48748:21;;;;:::i;:::-;48721:77;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48702:96;;;48817:7;48809:49;;;::::0;-1:-1:-1;;;48809:49:0;;15833:2:1;48809:49:0::1;::::0;::::1;15815:21:1::0;15872:2;15852:18;;;15845:30;15911:31;15891:18;;;15884:59;15960:18;;48809:49:0::1;15631:353:1::0;48809:49:0::1;48872:12;-1:-1:-1::0;;;;;48890:19:0;::::1;48935:3;48918:13;:8:::0;48929:2:::1;48918:13;:::i;:::-;48917:21;;;;:::i;:::-;48890:77;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48871:96;;;48986:7;48978:49;;;::::0;-1:-1:-1;;;48978:49:0;;16191:2:1;48978:49:0::1;::::0;::::1;16173:21:1::0;16230:2;16210:18;;;16203:30;16269:31;16249:18;;;16242:59;16318:18;;48978:49:0::1;15989:353:1::0;48978:49:0::1;49041:12;49067:5;-1:-1:-1::0;;;;;49059:19:0::1;49086:21;49059:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49040:96;;;49155:7;49147:49;;;::::0;-1:-1:-1;;;49147:49:0;;16549:2:1;49147:49:0::1;::::0;::::1;16531:21:1::0;16588:2;16568:18;;;16561:30;16627:31;16607:18;;;16600:59;16676:18;;49147:49:0::1;16347:353:1::0;49147:49:0::1;48431:773;;;;;;;48386:818::o:0;30726:185::-;30864:39;30881:4;30887:2;30891:7;30864:39;;;;;;;;;;;;:16;:39::i;47327:179::-;47437:7;47469:21;47483:6;47469:13;:21::i;:::-;47491:6;47469:29;;;;;;;;:::i;:::-;;;;;;;47462:36;;47327:179;;;;:::o;49317:88::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;49387:10:::1;::::0;;-1:-1:-1;;49373:24:0;::::1;49387:10:::0;;;;::::1;;;49386:11;49373:24:::0;;::::1;;::::0;;49317:88::o;49212:97::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;49288:13:::1;::::0;;-1:-1:-1;;49271:30:0;::::1;49288:13;::::0;;;::::1;;;49287:14;49271:30:::0;;::::1;;::::0;;49212:97::o;49506:104::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;49581:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49506:104:::0;:::o;27700:239::-;27772:7;27808:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27808:16:0;27843:19;27835:73;;;;-1:-1:-1;;;27835:73:0;;17039:2:1;27835:73:0;;;17021:21:1;17078:2;17058:18;;;17051:30;17117:34;17097:18;;;17090:62;-1:-1:-1;;;17168:18:1;;;17161:39;17217:19;;27835:73:0;16837:405:1;46918:401:0;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;4497:1:::1;5095:7;;:19;;5087:63;;;;-1:-1:-1::0;;;5087:63:0::1;;;;;;;:::i;:::-;4497:1;5228:7;:18:::0;43045:4:::2;47069:17:::0;::::2;47061:55;;;::::0;-1:-1:-1;;;47061:55:0;;17449:2:1;47061:55:0::2;::::0;::::2;17431:21:1::0;17488:2;17468:18;;;17461:30;-1:-1:-1;;;17507:18:1;;;17500:55;17572:18;;47061:55:0::2;17247:349:1::0;47061:55:0::2;47144:6:::0;47127:185:::2;47157:4;47152:1;:9;47127:185;;47187:16;::::0;;;:13:::2;:16;::::0;;;;;47183:118:::2;;47229:16;::::0;;;:13:::2;:16;::::0;;;;47248:1:::2;47229:20:::0;;47268:17:::2;47278:3:::0;47243:1;47268:9:::2;:17::i;:::-;47163:3:::0;::::2;::::0;::::2;:::i;:::-;;;;47127:185;;;-1:-1:-1::0;;4453:1:0::1;5407:7;:22:::0;-1:-1:-1;;46918:401:0:o;43384:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27430:208::-;27502:7;-1:-1:-1;;;;;27530:19:0;;27522:74;;;;-1:-1:-1;;;27522:74:0;;17943:2:1;27522:74:0;;;17925:21:1;17982:2;17962:18;;;17955:30;18021:34;18001:18;;;17994:62;-1:-1:-1;;;18072:18:1;;;18065:40;18122:19;;27522:74:0;17741:406:1;27522:74:0;-1:-1:-1;;;;;;27614:16:0;;;;;:9;:16;;;;;;;27430:208::o;41889:103::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;41954:30:::1;41981:1;41954:18;:30::i;:::-;41889:103::o:0;49618:104::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;49690:10:::1;:24:::0;49618:104::o;48025:353::-;48129:16;48163:24;48204:9;48190:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48190:31:0;;48163:58;;48237:9;48232:114;48252:20;;;48232:114;;;48307:13;:27;48321:9;;48331:1;48321:12;;;;;;;:::i;:::-;;;;;;;48307:27;;;;;;;;;;;;48294:7;48302:1;48294:10;;;;;;;;:::i;:::-;;;;;;;;;;:40;48274:3;;;;:::i;:::-;;;;48232:114;;;-1:-1:-1;48363:7:0;48025:353;-1:-1:-1;;;48025:353:0:o;46439:471::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;4497:1:::1;5095:7;;:19;;5087:63;;;;-1:-1:-1::0;;;5087:63:0::1;;;;;;;:::i;:::-;4497:1;5228:7;:18:::0;46576:9:::2;46571:332;46591:20:::0;;::::2;46571:332;;;46633:16;46652:9;;46662:1;46652:12;;;;;;;:::i;:::-;;;;;;;46633:31;;43045:4;46687:8;:21;46679:59;;;::::0;-1:-1:-1;;;46679:59:0;;17449:2:1;46679:59:0::2;::::0;::::2;17431:21:1::0;17488:2;17468:18;;;17461:30;-1:-1:-1;;;17507:18:1;;;17500:55;17572:18;;46679:59:0::2;17247:349:1::0;46679:59:0::2;46757:23;::::0;;;:13:::2;:23;::::0;;;;;46753:139:::2;;46806:23;::::0;;;:13:::2;:23;::::0;;;;46832:1:::2;46806:27:::0;;46852:24:::2;46862:3:::0;46820:8;46852:9:::2;:24::i;:::-;-1:-1:-1::0;46613:3:0;::::2;::::0;::::2;:::i;:::-;;;;46571:332;;47514:503:::0;47601:16;47635:19;47657:17;47667:6;47657:9;:17::i;:::-;47635:39;;47685:26;47728:11;47714:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47714:26:0;;47685:55;;47751:19;47790:9;47785:198;42949:5;47805:1;:12;47785:198;;;32885:4;32909:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32909:16:0;:30;;47843:34;;;;;47871:6;-1:-1:-1;;;;;47857:20:0;:10;47865:1;47857:7;:10::i;:::-;-1:-1:-1;;;;;47857:20:0;;47843:34;47839:133;;;47923:1;47898:9;47908:11;47898:22;;;;;;;;:::i;:::-;;;;;;;;;;:26;47943:13;;;;:::i;:::-;;;;47839:133;47819:3;;;;:::i;:::-;;;;47785:198;;;-1:-1:-1;48000:9:0;;47514:503;-1:-1:-1;;;;47514:503:0:o;28175:104::-;28231:13;28264:7;28257:14;;;;;:::i;43798:298::-;4497:1;5095:7;;:19;;5087:63;;;;-1:-1:-1;;;5087:63:0;;;;;;;:::i;:::-;4497:1;5228:7;:18;43876:9:::1;43889:10;43876:23;43868:62;;;::::0;-1:-1:-1;;;43868:62:0;;18354:2:1;43868:62:0::1;::::0;::::1;18336:21:1::0;18393:2;18373:18;;;18366:30;18432:28;18412:18;;;18405:56;18478:18;;43868:62:0::1;18152:350:1::0;43868:62:0::1;43949:10;::::0;;;::::1;;;:18;;43963:4;43949:18;43941:54;;;;-1:-1:-1::0;;;43941:54:0::1;;;;;;;:::i;:::-;44025:9;;44014:7;:20;;44006:57;;;::::0;-1:-1:-1;;;44006:57:0;;12436:2:1;44006:57:0::1;::::0;::::1;12418:21:1::0;12475:2;12455:18;;;12448:30;-1:-1:-1;;;12494:18:1;;;12487:54;12558:18;;44006:57:0::1;12234:348:1::0;44006:57:0::1;44074:14;44080:7;44074:5;:14::i;:::-;-1:-1:-1::0;4453:1:0;5407:7;:22;43798:298::o;29859:155::-;29954:52;25520:10;29987:8;29997;29954:18;:52::i;30982:328::-;31157:41;25520:10;31190:7;31157:18;:41::i;:::-;31149:103;;;;-1:-1:-1;;;31149:103:0;;;;;;;:::i;:::-;31263:39;31277:4;31283:2;31287:7;31296:5;31263:13;:39::i;:::-;30982:328;;;;:::o;28350:334::-;32885:4;32909:16;;;:7;:16;;;;;;28423:13;;-1:-1:-1;;;;;32909:16:0;28449:76;;;;-1:-1:-1;;;28449:76:0;;18709:2:1;28449:76:0;;;18691:21:1;18748:2;18728:18;;;18721:30;18787:34;18767:18;;;18760:62;-1:-1:-1;;;18838:18:1;;;18831:45;18893:19;;28449:76:0;18507:411:1;28449:76:0;28538:21;28562:10;:8;:10::i;:::-;28538:34;;28614:1;28596:7;28590:21;:25;:86;;;;;;;;;;;;;;;;;28642:7;28651:18;:7;:16;:18::i;:::-;28625:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28590:86;28583:93;28350:334;-1:-1:-1;;;28350:334:0:o;45910:521::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;4497:1:::1;5095:7;;:19;;5087:63;;;;-1:-1:-1::0;;;5087:63:0::1;;;;;;;:::i;:::-;4497:1;5228:7;:18:::0;46000:9:::2;45995:224;46015:15:::0;;::::2;45995:224;;;46052:16;46096:1;46084:9;;43045:4;46071:22;;;;:::i;:::-;:26;;;;:::i;:::-;46052:45;;42949:5;46120:8;:19;46112:52;;;::::0;-1:-1:-1;;;46112:52:0;;19600:2:1;46112:52:0::2;::::0;::::2;19582:21:1::0;19639:2;19619:18;;;19612:30;-1:-1:-1;;;19658:18:1;;;19651:50;19718:18;;46112:52:0::2;19398:344:1::0;46112:52:0::2;46179:28;46189:4;;46194:1;46189:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46198:8;46179:9;:28::i;:::-;-1:-1:-1::0;46032:3:0;::::2;::::0;::::2;:::i;:::-;;;;45995:224;;;-1:-1:-1::0;46233:8:0::2;::::0;:22;-1:-1:-1;46229:123:0::2;;;46284:4;;:11;;46272:8;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;46229:123:0::2;::::0;-1:-1:-1;46229:123:0::2;;46339:1;46328:8;:12:::0;46229:123:::2;46375:4;;:11;;46362:9;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;46397:11:0::2;:26:::0;;46412:4;;46397:11;::::2;::::0;:26:::2;::::0;46412:4;;46397:26:::2;:::i;:::-;::::0;;;-1:-1:-1;;4453:1:0::1;5407:7;:22:::0;-1:-1:-1;;45910:521:0:o;49846:130::-;49890:13;49947:7;49930:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;49916:52;;49846:130;:::o;44770:683::-;4497:1;5095:7;;:19;;5087:63;;;;-1:-1:-1;;;5087:63:0;;;;;;;:::i;:::-;4497:1;5228:7;:18;44856:9:::1;::::0;::::1;;:17;;:9:::0;:17:::1;44848:53;;;;-1:-1:-1::0;;;44848:53:0::1;;;;;;;:::i;:::-;44917:9;44912:492;44936:9;:16;44932:1;:20;44912:492;;;44974:16;44993:9;45003:1;44993:12;;;;;;;;:::i;:::-;;;;;;;44974:31;;45089:12;25520:10:::0;;25440:98;45089:12:::1;45054;::::0;45046:39:::1;::::0;-1:-1:-1;;;45046:39:0;;::::1;::::0;::::1;3220:25:1::0;;;-1:-1:-1;;;;;45046:55:0;;::::1;::::0;45054:12;;;::::1;::::0;;::::1;::::0;45046:29:::1;::::0;3193:18:1;;45046:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45046:55:0::1;;45020:144;;;::::0;-1:-1:-1;;;45020:144:0;;21823:2:1;45020:144:0::1;::::0;::::1;21805:21:1::0;21862:2;21842:18;;;21835:30;21901:29;21881:18;;;21874:57;21948:18;;45020:144:0::1;21621:351:1::0;45020:144:0::1;45205:23;::::0;;;:13:::1;:23;::::0;;;;;:28;45179:123:::1;;;::::0;-1:-1:-1;;;45179:123:0;;22179:2:1;45179:123:0::1;::::0;::::1;22161:21:1::0;22218:2;22198:18;;;22191:30;22257:34;22237:18;;;22230:62;-1:-1:-1;;;22308:18:1;;;22301:31;22349:19;;45179:123:0::1;21977:397:1::0;45179:123:0::1;45317:23;::::0;;;:13:::1;:23;::::0;;;;45343:1:::1;45317:27:::0;;45359:33:::1;25520:10:::0;45369:12:::1;25440:98:::0;45359:33:::1;-1:-1:-1::0;44954:3:0;::::1;::::0;::::1;:::i;:::-;;;;44912:492;;;;45429:9;:16;45414:11;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;4453:1:0;5407:7;:22;-1:-1:-1;44770:683:0:o;42147:201::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42236:22:0;::::1;42228:73;;;::::0;-1:-1:-1;;;42228:73:0;;22581:2:1;42228:73:0::1;::::0;::::1;22563:21:1::0;22620:2;22600:18;;;22593:30;22659:34;22639:18;;;22632:62;-1:-1:-1;;;22710:18:1;;;22703:36;22756:19;;42228:73:0::1;22379:402:1::0;42228:73:0::1;42312:28;42331:8;42312:18;:28::i;:::-;42147:201:::0;:::o;49413:85::-;41284:7;41311:6;-1:-1:-1;;;;;41311:6:0;25520:10;41458:23;41450:68;;;;-1:-1:-1;;;41450:68:0;;;;;;;:::i;:::-;49481:9:::1;::::0;;-1:-1:-1;;49468:22:0;::::1;49481:9;::::0;;::::1;49480:10;49468:22;::::0;;49413:85::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;;1220:190;-1:-1:-1;;;;1220:190:0:o;45461:441::-;45545:7;45534:8;;:18;;;;:::i;:::-;45521:9;:31;45513:71;;;;-1:-1:-1;;;45513:71:0;;22988:2:1;45513:71:0;;;22970:21:1;23027:2;23007:18;;;23000:30;23066:29;23046:18;;;23039:57;23113:18;;45513:71:0;22786:351:1;45513:71:0;45600:9;45595:236;45619:7;45615:1;:11;45595:236;;;45648:16;45692:1;45680:9;;43045:4;45667:22;;;;:::i;:::-;:26;;;;:::i;:::-;45648:45;;45738:8;;42949:5;45727:19;;;;:::i;:::-;45716:8;:30;45708:63;;;;-1:-1:-1;;;45708:63:0;;19600:2:1;45708:63:0;;;19582:21:1;19639:2;19619:18;;;19612:30;-1:-1:-1;;;19658:18:1;;;19651:50;19718:18;;45708:63:0;19398:344:1;45708:63:0;45786:33;25520:10;45796:12;25440:98;45786:33;-1:-1:-1;45628:3:0;;;;:::i;:::-;;;;45595:236;;;;45856:7;45841:11;;:22;;;;;;;:::i;:::-;;;;;;;;45887:7;45874:9;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;;45461:441:0:o;36966:174::-;37041:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37041:29:0;-1:-1:-1;;;;;37041:29:0;;;;;;;;:24;;37095:23;37041:24;37095:14;:23::i;:::-;-1:-1:-1;;;;;37086:46:0;;;;;;;;;;;36966:174;;:::o;33114:348::-;33207:4;32909:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32909:16:0;33224:73;;;;-1:-1:-1;;;33224:73:0;;23344:2:1;33224:73:0;;;23326:21:1;23383:2;23363:18;;;23356:30;23422:34;23402:18;;;23395:62;-1:-1:-1;;;23473:18:1;;;23466:42;23525:19;;33224:73:0;23142:408:1;33224:73:0;33308:13;33324:23;33339:7;33324:14;:23::i;:::-;33308:39;;33377:5;-1:-1:-1;;;;;33366:16:0;:7;-1:-1:-1;;;;;33366:16:0;;:52;;;-1:-1:-1;;;;;;30206:25:0;;;30182:4;30206:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33386:32;33366:87;;;;33446:7;-1:-1:-1;;;;;33422:31:0;:20;33434:7;33422:11;:20::i;:::-;-1:-1:-1;;;;;33422:31:0;;33366:87;33358:96;33114:348;-1:-1:-1;;;;33114:348:0:o;36223:625::-;36382:4;-1:-1:-1;;;;;36355:31:0;:23;36370:7;36355:14;:23::i;:::-;-1:-1:-1;;;;;36355:31:0;;36347:81;;;;-1:-1:-1;;;36347:81:0;;23757:2:1;36347:81:0;;;23739:21:1;23796:2;23776:18;;;23769:30;23835:34;23815:18;;;23808:62;-1:-1:-1;;;23886:18:1;;;23879:35;23931:19;;36347:81:0;23555:401:1;36347:81:0;-1:-1:-1;;;;;36447:16:0;;36439:65;;;;-1:-1:-1;;;36439:65:0;;24163:2:1;36439:65:0;;;24145:21:1;24202:2;24182:18;;;24175:30;24241:34;24221:18;;;24214:62;-1:-1:-1;;;24292:18:1;;;24285:34;24336:19;;36439:65:0;23961:400:1;36439:65:0;36621:29;36638:1;36642:7;36621:8;:29::i;:::-;-1:-1:-1;;;;;36663:15:0;;;;;;:9;:15;;;;;:20;;36682:1;;36663:15;:20;;36682:1;;36663:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36694:13:0;;;;;;:9;:13;;;;;:18;;36711:1;;36694:13;:18;;36711:1;;36694:18;:::i;:::-;;;;-1:-1:-1;;36723:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36723:21:0;-1:-1:-1;;;;;36723:21:0;;;;;;;;;36762:27;;36723:16;;36762:27;;;;;;;29159:341;29089:411;;:::o;33804:110::-;33880:26;33890:2;33894:7;33880:26;;;;;;;;;;;;:9;:26::i;42508:191::-;42582:16;42601:6;;-1:-1:-1;;;;;42618:17:0;;;-1:-1:-1;;;;;;42618:17:0;;;;;;42651:40;;42601:6;;;;;;;42651:40;;42582:16;42651:40;42571:128;42508:191;:::o;37282:315::-;37437:8;-1:-1:-1;;;;;37428:17:0;:5;-1:-1:-1;;;;;37428:17:0;;;37420:55;;;;-1:-1:-1;;;37420:55:0;;24568:2:1;37420:55:0;;;24550:21:1;24607:2;24587:18;;;24580:30;24646:27;24626:18;;;24619:55;24691:18;;37420:55:0;24366:349:1;37420:55:0;-1:-1:-1;;;;;37486:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37486:46:0;;;;;;;;;;37548:41;;540::1;;;37548::0;;513:18:1;37548:41:0;;;;;;;37282:315;;;:::o;32192:::-;32349:28;32359:4;32365:2;32369:7;32349:9;:28::i;:::-;32396:48;32419:4;32425:2;32429:7;32438:5;32396:22;:48::i;:::-;32388:111;;;;-1:-1:-1;;;32388:111:0;;;;;;;:::i;49730:108::-;49790:13;49823:7;49816:14;;;;;:::i;5809:723::-;5865:13;6086:10;6082:53;;-1:-1:-1;;6113:10:0;;;;;;;;;;;;-1:-1:-1;;;6113:10:0;;;;;5809:723::o;6082:53::-;6160:5;6145:12;6201:78;6208:9;;6201:78;;6234:8;;;;:::i;:::-;;-1:-1:-1;6257:10:0;;-1:-1:-1;6265:2:0;6257:10;;:::i;:::-;;;6201:78;;;6289:19;6321:6;6311:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6311:17:0;;6289:39;;6339:154;6346:10;;6339:154;;6373:11;6383:1;6373:11;;:::i;:::-;;-1:-1:-1;6442:10:0;6450:2;6442:5;:10;:::i;:::-;6429:24;;:2;:24;:::i;:::-;6416:39;;6399:6;6406;6399:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6399:56:0;;;;;;;;-1:-1:-1;6470:11:0;6479:2;6470:11;;:::i;:::-;;;6339:154;;1771:675;1854:7;1897:4;1854:7;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2148:57;;2016:382;;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2325:57;;2016:382;-1:-1:-1;1950:3:0;;;;:::i;:::-;;;;1912:497;;34141:321;34271:18;34277:2;34281:7;34271:5;:18::i;:::-;34322:54;34353:1;34357:2;34361:7;34370:5;34322:22;:54::i;:::-;34300:154;;;;-1:-1:-1;;;34300:154:0;;;;;;;:::i;38162:799::-;38317:4;-1:-1:-1;;;;;38338:13:0;;9096:19;:23;38334:620;;38374:72;;-1:-1:-1;;;38374:72:0;;-1:-1:-1;;;;;38374:36:0;;;;;:72;;25520:10;;38425:4;;38431:7;;38440:5;;38374:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38374:72:0;;;;;;;;-1:-1:-1;;38374:72:0;;;;;;;;;;;;:::i;:::-;;;38370:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38616:13:0;;38612:272;;38659:60;;-1:-1:-1;;;38659:60:0;;;;;;;:::i;38612:272::-;38834:6;38828:13;38819:6;38815:2;38811:15;38804:38;38370:529;-1:-1:-1;;;;;;38497:51:0;-1:-1:-1;;;38497:51:0;;-1:-1:-1;38490:58:0;;38334:620;-1:-1:-1;38938:4:0;38162:799;;;;;;:::o;34798:439::-;-1:-1:-1;;;;;34878:16:0;;34870:61;;;;-1:-1:-1;;;34870:61:0;;26206:2:1;34870:61:0;;;26188:21:1;;;26225:18;;;26218:30;26284:34;26264:18;;;26257:62;26336:18;;34870:61:0;26004:356:1;34870:61:0;32885:4;32909:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32909:16:0;:30;34942:58;;;;-1:-1:-1;;;34942:58:0;;26567:2:1;34942:58:0;;;26549:21:1;26606:2;26586:18;;;26579:30;26645;26625:18;;;26618:58;26693:18;;34942:58:0;26365:352:1;34942:58:0;-1:-1:-1;;;;;35071:13:0;;;;;;:9;:13;;;;;:18;;35088:1;;35071:13;:18;;35088:1;;35071:18;:::i;:::-;;;;-1:-1:-1;;35100:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35100:21:0;-1:-1:-1;;;;;35100:21:0;;;;;;;;35139:33;;35100:16;;;35139:33;;35100:16;;35139:33;49581:21:::1;49506:104:::0;:::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;800:367::-;863:8;873:6;927:3;920:4;912:6;908:17;904:27;894:55;;945:1;942;935:12;894:55;-1:-1:-1;968:20:1;;1011:18;1000:30;;997:50;;;1043:1;1040;1033:12;997:50;1080:4;1072:6;1068:17;1056:29;;1140:3;1133:4;1123:6;1120:1;1116:14;1108:6;1104:27;1100:38;1097:47;1094:67;;;1157:1;1154;1147:12;1094:67;800:367;;;;;:::o;1172:505::-;1267:6;1275;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1388:9;1375:23;1365:33;;1449:2;1438:9;1434:18;1421:32;1476:18;1468:6;1465:30;1462:50;;;1508:1;1505;1498:12;1462:50;1547:70;1609:7;1600:6;1589:9;1585:22;1547:70;:::i;:::-;1172:505;;1636:8;;-1:-1:-1;1521:96:1;;-1:-1:-1;;;;1172:505:1:o;1682:258::-;1754:1;1764:113;1778:6;1775:1;1772:13;1764:113;;;1854:11;;;1848:18;1835:11;;;1828:39;1800:2;1793:10;1764:113;;;1895:6;1892:1;1889:13;1886:48;;;-1:-1:-1;;1930:1:1;1912:16;;1905:27;1682:258::o;1945:::-;1987:3;2025:5;2019:12;2052:6;2047:3;2040:19;2068:63;2124:6;2117:4;2112:3;2108:14;2101:4;2094:5;2090:16;2068:63;:::i;:::-;2185:2;2164:15;-1:-1:-1;;2160:29:1;2151:39;;;;2192:4;2147:50;;1945:258;-1:-1:-1;;1945:258:1:o;2208:220::-;2357:2;2346:9;2339:21;2320:4;2377:45;2418:2;2407:9;2403:18;2395:6;2377:45;:::i;2433:180::-;2492:6;2545:2;2533:9;2524:7;2520:23;2516:32;2513:52;;;2561:1;2558;2551:12;2513:52;-1:-1:-1;2584:23:1;;2433:180;-1:-1:-1;2433:180:1:o;2618:131::-;-1:-1:-1;;;;;2693:31:1;;2683:42;;2673:70;;2739:1;2736;2729:12;2754:315;2822:6;2830;2883:2;2871:9;2862:7;2858:23;2854:32;2851:52;;;2899:1;2896;2889:12;2851:52;2938:9;2925:23;2957:31;2982:5;2957:31;:::i;:::-;3007:5;3059:2;3044:18;;;;3031:32;;-1:-1:-1;;;2754:315:1:o;3256:456::-;3333:6;3341;3349;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3457:9;3444:23;3476:31;3501:5;3476:31;:::i;:::-;3526:5;-1:-1:-1;3583:2:1;3568:18;;3555:32;3596:33;3555:32;3596:33;:::i;:::-;3256:456;;3648:7;;-1:-1:-1;;;3702:2:1;3687:18;;;;3674:32;;3256:456::o;3899:127::-;3960:10;3955:3;3951:20;3948:1;3941:31;3991:4;3988:1;3981:15;4015:4;4012:1;4005:15;4031:275;4102:2;4096:9;4167:2;4148:13;;-1:-1:-1;;4144:27:1;4132:40;;4202:18;4187:34;;4223:22;;;4184:62;4181:88;;;4249:18;;:::i;:::-;4285:2;4278:22;4031:275;;-1:-1:-1;4031:275:1:o;4311:407::-;4376:5;4410:18;4402:6;4399:30;4396:56;;;4432:18;;:::i;:::-;4470:57;4515:2;4494:15;;-1:-1:-1;;4490:29:1;4521:4;4486:40;4470:57;:::i;:::-;4461:66;;4550:6;4543:5;4536:21;4590:3;4581:6;4576:3;4572:16;4569:25;4566:45;;;4607:1;4604;4597:12;4566:45;4656:6;4651:3;4644:4;4637:5;4633:16;4620:43;4710:1;4703:4;4694:6;4687:5;4683:18;4679:29;4672:40;4311:407;;;;;:::o;4723:451::-;4792:6;4845:2;4833:9;4824:7;4820:23;4816:32;4813:52;;;4861:1;4858;4851:12;4813:52;4901:9;4888:23;4934:18;4926:6;4923:30;4920:50;;;4966:1;4963;4956:12;4920:50;4989:22;;5042:4;5034:13;;5030:27;-1:-1:-1;5020:55:1;;5071:1;5068;5061:12;5020:55;5094:74;5160:7;5155:2;5142:16;5137:2;5133;5129:11;5094:74;:::i;5179:383::-;5256:6;5264;5272;5325:2;5313:9;5304:7;5300:23;5296:32;5293:52;;;5341:1;5338;5331:12;5293:52;5380:9;5367:23;5399:31;5424:5;5399:31;:::i;:::-;5449:5;5501:2;5486:18;;5473:32;;-1:-1:-1;5552:2:1;5537:18;;;5524:32;;5179:383;-1:-1:-1;;;5179:383:1:o;5567:247::-;5626:6;5679:2;5667:9;5658:7;5654:23;5650:32;5647:52;;;5695:1;5692;5685:12;5647:52;5734:9;5721:23;5753:31;5778:5;5753:31;:::i;6004:437::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6207:9;6194:23;6240:18;6232:6;6229:30;6226:50;;;6272:1;6269;6262:12;6226:50;6311:70;6373:7;6364:6;6353:9;6349:22;6311:70;:::i;:::-;6400:8;;6285:96;;-1:-1:-1;6004:437:1;-1:-1:-1;;;;6004:437:1:o;6446:632::-;6617:2;6669:21;;;6739:13;;6642:18;;;6761:22;;;6588:4;;6617:2;6840:15;;;;6814:2;6799:18;;;6588:4;6883:169;6897:6;6894:1;6891:13;6883:169;;;6958:13;;6946:26;;7027:15;;;;6992:12;;;;6919:1;6912:9;6883:169;;;-1:-1:-1;7069:3:1;;6446:632;-1:-1:-1;;;;;;6446:632:1:o;7083:572::-;7178:6;7186;7194;7247:2;7235:9;7226:7;7222:23;7218:32;7215:52;;;7263:1;7260;7253:12;7215:52;7302:9;7289:23;7321:31;7346:5;7321:31;:::i;:::-;7371:5;-1:-1:-1;7427:2:1;7412:18;;7399:32;7454:18;7443:30;;7440:50;;;7486:1;7483;7476:12;7660:416;7725:6;7733;7786:2;7774:9;7765:7;7761:23;7757:32;7754:52;;;7802:1;7799;7792:12;7754:52;7841:9;7828:23;7860:31;7885:5;7860:31;:::i;:::-;7910:5;-1:-1:-1;7967:2:1;7952:18;;7939:32;8009:15;;8002:23;7990:36;;7980:64;;8040:1;8037;8030:12;7980:64;8063:7;8053:17;;;7660:416;;;;;:::o;8081:795::-;8176:6;8184;8192;8200;8253:3;8241:9;8232:7;8228:23;8224:33;8221:53;;;8270:1;8267;8260:12;8221:53;8309:9;8296:23;8328:31;8353:5;8328:31;:::i;:::-;8378:5;-1:-1:-1;8435:2:1;8420:18;;8407:32;8448:33;8407:32;8448:33;:::i;:::-;8500:7;-1:-1:-1;8554:2:1;8539:18;;8526:32;;-1:-1:-1;8609:2:1;8594:18;;8581:32;8636:18;8625:30;;8622:50;;;8668:1;8665;8658:12;8622:50;8691:22;;8744:4;8736:13;;8732:27;-1:-1:-1;8722:55:1;;8773:1;8770;8763:12;8722:55;8796:74;8862:7;8857:2;8844:16;8839:2;8835;8831:11;8796:74;:::i;:::-;8786:84;;;8081:795;;;;;;;:::o;9323:388::-;9391:6;9399;9452:2;9440:9;9431:7;9427:23;9423:32;9420:52;;;9468:1;9465;9458:12;9420:52;9507:9;9494:23;9526:31;9551:5;9526:31;:::i;:::-;9576:5;-1:-1:-1;9633:2:1;9618:18;;9605:32;9646:33;9605:32;9646:33;:::i;9716:946::-;9800:6;9831:2;9874;9862:9;9853:7;9849:23;9845:32;9842:52;;;9890:1;9887;9880:12;9842:52;9930:9;9917:23;9959:18;10000:2;9992:6;9989:14;9986:34;;;10016:1;10013;10006:12;9986:34;10054:6;10043:9;10039:22;10029:32;;10099:7;10092:4;10088:2;10084:13;10080:27;10070:55;;10121:1;10118;10111:12;10070:55;10157:2;10144:16;10179:2;10175;10172:10;10169:36;;;10185:18;;:::i;:::-;10231:2;10228:1;10224:10;10214:20;;10254:28;10278:2;10274;10270:11;10254:28;:::i;:::-;10316:15;;;10386:11;;;10382:20;;;10347:12;;;;10414:19;;;10411:39;;;10446:1;10443;10436:12;10411:39;10470:11;;;;10490:142;10506:6;10501:3;10498:15;10490:142;;;10572:17;;10560:30;;10523:12;;;;10610;;;;10490:142;;;10651:5;9716:946;-1:-1:-1;;;;;;;;9716:946:1:o;10667:355::-;10869:2;10851:21;;;10908:2;10888:18;;;10881:30;10947:33;10942:2;10927:18;;10920:61;11013:2;10998:18;;10667:355::o;11027:347::-;11229:2;11211:21;;;11268:2;11248:18;;;11241:30;11307:25;11302:2;11287:18;;11280:53;11365:2;11350:18;;11027:347::o;11969:127::-;12030:10;12025:3;12021:20;12018:1;12011:31;12061:4;12058:1;12051:15;12085:4;12082:1;12075:15;12101:128;12141:3;12172:1;12168:6;12165:1;12162:13;12159:39;;;12178:18;;:::i;:::-;-1:-1:-1;12214:9:1;;12101:128::o;12587:380::-;12666:1;12662:12;;;;12709;;;12730:61;;12784:4;12776:6;12772:17;12762:27;;12730:61;12837:2;12829:6;12826:14;12806:18;12803:38;12800:161;;;12883:10;12878:3;12874:20;12871:1;12864:31;12918:4;12915:1;12908:15;12946:4;12943:1;12936:15;12800:161;;12587:380;;;:::o;14212:413::-;14414:2;14396:21;;;14453:2;14433:18;;;14426:30;14492:34;14487:2;14472:18;;14465:62;-1:-1:-1;;;14558:2:1;14543:18;;14536:47;14615:3;14600:19;;14212:413::o;14630:356::-;14832:2;14814:21;;;14851:18;;;14844:30;14910:34;14905:2;14890:18;;14883:62;14977:2;14962:18;;14630:356::o;14991:168::-;15031:7;15097:1;15093;15089:6;15085:14;15082:1;15079:21;15074:1;15067:9;15060:17;15056:45;15053:71;;;15104:18;;:::i;:::-;-1:-1:-1;15144:9:1;;14991:168::o;15164:127::-;15225:10;15220:3;15216:20;15213:1;15206:31;15256:4;15253:1;15246:15;15280:4;15277:1;15270:15;15296:120;15336:1;15362;15352:35;;15367:18;;:::i;:::-;-1:-1:-1;15401:9:1;;15296:120::o;16705:127::-;16766:10;16761:3;16757:20;16754:1;16747:31;16797:4;16794:1;16787:15;16821:4;16818:1;16811:15;17601:135;17640:3;-1:-1:-1;;17661:17:1;;17658:43;;;17681:18;;:::i;:::-;-1:-1:-1;17728:1:1;17717:13;;17601:135::o;18923:470::-;19102:3;19140:6;19134:13;19156:53;19202:6;19197:3;19190:4;19182:6;19178:17;19156:53;:::i;:::-;19272:13;;19231:16;;;;19294:57;19272:13;19231:16;19328:4;19316:17;;19294:57;:::i;:::-;19367:20;;18923:470;-1:-1:-1;;;;18923:470:1:o;19747:125::-;19787:4;19815:1;19812;19809:8;19806:34;;;19820:18;;:::i;:::-;-1:-1:-1;19857:9:1;;19747:125::o;20129:1231::-;20358:3;20387:1;20420:6;20414:13;20450:3;20472:1;20500:9;20496:2;20492:18;20482:28;;20560:2;20549:9;20545:18;20582;20572:61;;20626:4;20618:6;20614:17;20604:27;;20572:61;20652:2;20700;20692:6;20689:14;20669:18;20666:38;20663:165;;;-1:-1:-1;;;20727:33:1;;20783:4;20780:1;20773:15;20813:4;20734:3;20801:17;20663:165;20844:18;20871:104;;;;20989:1;20984:320;;;;20837:467;;20871:104;-1:-1:-1;;20904:24:1;;20892:37;;20949:16;;;;-1:-1:-1;20871:104:1;;20984:320;19950:1;19943:14;;;19987:4;19974:18;;21079:1;21093:165;21107:6;21104:1;21101:13;21093:165;;;21185:14;;21172:11;;;21165:35;21228:16;;;;21122:10;;21093:165;;;21097:3;;21287:6;21282:3;21278:16;21271:23;;20837:467;;;;;;;21320:34;21350:3;-1:-1:-1;;;20068:23:1;;20116:1;20107:11;;20003:121;21365:251;21435:6;21488:2;21476:9;21467:7;21463:23;21459:32;21456:52;;;21504:1;21501;21494:12;21456:52;21536:9;21530:16;21555:31;21580:5;21555:31;:::i;24720:414::-;24922:2;24904:21;;;24961:2;24941:18;;;24934:30;25000:34;24995:2;24980:18;;24973:62;-1:-1:-1;;;25066:2:1;25051:18;;25044:48;25124:3;25109:19;;24720:414::o;25139:112::-;25171:1;25197;25187:35;;25202:18;;:::i;:::-;-1:-1:-1;25236:9:1;;25139:112::o;25256:489::-;-1:-1:-1;;;;;25525:15:1;;;25507:34;;25577:15;;25572:2;25557:18;;25550:43;25624:2;25609:18;;25602:34;;;25672:3;25667:2;25652:18;;25645:31;;;25450:4;;25693:46;;25719:19;;25711:6;25693:46;:::i;:::-;25685:54;25256:489;-1:-1:-1;;;;;;25256:489:1:o;25750:249::-;25819:6;25872:2;25860:9;25851:7;25847:23;25843:32;25840:52;;;25888:1;25885;25878:12;25840:52;25920:9;25914:16;25939:30;25963:5;25939:30;:::i

Swarm Source

ipfs://69adfb4aa178dcb68b9b2dd9cd6f63c74784ce005343022a758b05e265700549
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.