ETH Price: $3,338.04 (-0.04%)
 

Overview

Max Total Supply

0 MR.F

Holders

321

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MR.F
0x80086076294245d56725e91f53579c70f776c62b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MrFingerNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

        _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: mrfinger.sol

pragma solidity ^0.8.0;

/// SPDX-License-Identifier: UNLICENSED






contract MrFingerNFT is ERC721, Ownable, ReentrancyGuard {

    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public maxSupply = 9999;
    uint256 public maxTx = 20;
    uint256 public price = 0.01 ether;

    bool public MrFingerPresaleOpen = true;
    bool public MrFingerMainsaleOpen = false;

    bytes32 public merkleRoot = 0xaccf7d34fbd84c5cbcb9dc624ce046254c6c77b603b2de1ce6c3376632db7c4c;

    mapping (address => uint256) walletMinted;

    constructor(string memory _initBaseURI) ERC721("Mr Finger NFT", "MR.F")
    {
        setBaseURI(_initBaseURI);

        for(uint i=0;i<100;i++)
        {
            _tokenIdTracker.increment();
            _safeMint(0x05A9EA16D81cA39F9028725E16648AE1a3eC1520, totalToken());
        }
    }

    modifier isPresaleOpen
    {
         require(MrFingerPresaleOpen == true);
         _;
    }

    modifier isMainsaleOpen
    {
         require(MrFingerMainsaleOpen == true);
         _;
    }

    function flipPresale() public onlyOwner
    {
        MrFingerPresaleOpen = false;
        MrFingerMainsaleOpen = true;
    }

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

    function setMaxTx(uint256 _maxTx) public onlyOwner
    {
        maxTx = _maxTx;
    }

    function changeMaxSupply(uint256 _supply) public onlyOwner
    {
        maxSupply = _supply;
    }

    function changePrice(uint256 _price) public onlyOwner
    {
        price = _price;
    }

    function preSale(bytes32[] calldata _merkleProof, uint8 mintTotal) public payable isPresaleOpen
    {
        uint256 totalMinted = mintTotal + walletMinted[msg.sender];
        
        require(totalMinted <= maxTx, "Mint exceeds limitations");
        require(mintTotal >= 1 , "Mint Amount Incorrect");
        require(msg.value >= price * mintTotal, "Minting a Mr.Finger NFT costs 0.01 Ether Each!");
        require((totalToken() + mintTotal) <= maxSupply, "SOLD OUT!");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof.");
       
        for(uint i=0;i<mintTotal;i++)
        {
            walletMinted[msg.sender] += 1;
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalToken());
        }
    }

    
    function mainSale(uint8 mintTotal) public payable isMainsaleOpen
    {
        uint256 totalMinted = mintTotal + walletMinted[msg.sender];

        require(totalMinted <= maxTx, "Mint exceeds limitations");
        require(mintTotal >= 1 , "Mint Amount Incorrect");
        require(msg.value >= price * mintTotal, "Minting a Mr.Finger NFT costs 0.01 Ether Each!");
        require((totalToken() + mintTotal) <= maxSupply, "SOLD OUT!");
       
        for(uint i=0;i<mintTotal;i++)
        {
            walletMinted[msg.sender] += 1;
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalToken());
        }
    }

    function withdrawContractEther() external onlyOwner
    {
        address payable teamWallet = payable(0x05A9EA16D81cA39F9028725E16648AE1a3eC1520);
        teamWallet.transfer(getBalance());

    }

    function totalToken() public view returns (uint256) {
            return _tokenIdTracker.current();
    }

    function getBalance() public view returns(uint)
    {
        return address(this).balance;
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
   
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
   
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":[],"name":"MrFingerMainsaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MrFingerPresaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintTotal","type":"uint8"}],"name":"mainSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint8","name":"mintTotal","type":"uint8"}],"name":"preSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"incomingBytes","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawContractEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620005f3565b5061270f600b556014600c55662386f26fc10000600d55600e805461ffff191660011790557faccf7d34fbd84c5cbcb9dc624ce046254c6c77b603b2de1ce6c3376632db7c4c600f553480156200007e57600080fd5b5060405162002bdd38038062002bdd833981016040819052620000a191620006cc565b604080518082018252600d81526c135c88119a5b99d95c88139195609a1b60208083019182528351808501909452600484526326a9172360e11b908401528151919291620000f291600091620005f3565b50805162000108906001906020840190620005f3565b505050620001256200011f6200019f60201b60201c565b620001a3565b60016007556200013581620001f5565b60005b606481101562000197576200015960086200026e60201b620012751760201c565b620001827305a9ea16d81ca39f9028725e16648ae1a3ec15206200017c62000277565b62000295565b806200018e8162000865565b91505062000138565b5050620008af565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516200026a906009906020840190620005f3565b5050565b80546001019055565b6000620002906008620002b760201b6200127e1760201c565b905090565b6200026a828260405180602001604052806000815250620002bb60201b60201c565b5490565b620002c7838362000333565b620002d660008484846200047b565b6200032e5760405162461bcd60e51b8152602060048201526032602482015260008051602062002bbd83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200024c565b505050565b6001600160a01b0382166200038b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200024c565b6000818152600260205260409020546001600160a01b031615620003f25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200024c565b6001600160a01b03821660009081526003602052604081208054600192906200041d908490620007da565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200049c846001600160a01b0316620005e460201b620012821760201c565b15620005d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004d690339089908890889060040162000784565b602060405180830381600087803b158015620004f157600080fd5b505af192505050801562000524575060408051601f3d908101601f19168201909252620005219181019062000699565b60015b620005bd573d80801562000555576040519150601f19603f3d011682016040523d82523d6000602084013e6200055a565b606091505b508051620005b55760405162461bcd60e51b8152602060048201526032602482015260008051602062002bbd83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200024c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005dc565b5060015b949350505050565b6001600160a01b03163b151590565b828054620006019062000828565b90600052602060002090601f01602090048101928262000625576000855562000670565b82601f106200064057805160ff191683800117855562000670565b8280016001018555821562000670579182015b828111156200067057825182559160200191906001019062000653565b506200067e92915062000682565b5090565b5b808211156200067e576000815560010162000683565b600060208284031215620006ac57600080fd5b81516001600160e01b031981168114620006c557600080fd5b9392505050565b600060208284031215620006df57600080fd5b81516001600160401b0380821115620006f757600080fd5b818401915084601f8301126200070c57600080fd5b81518181111562000721576200072162000899565b604051601f8201601f19908116603f011681019083821181831017156200074c576200074c62000899565b816040528281528760208487010111156200076657600080fd5b62000779836020830160208801620007f5565b979650505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007c38160a0850160208701620007f5565b601f01601f19169190910160a00195945050505050565b60008219821115620007f057620007f062000883565b500190565b60005b8381101562000812578181015183820152602001620007f8565b8381111562000822576000848401525b50505050565b600181811c908216806200083d57607f821691505b602082108114156200085f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200087c576200087c62000883565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6122fe80620008bf6000396000f3fe6080604052600436106102035760003560e01c806370a0823111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610576578063e341afdf1461058c578063e8079b1d1461059f578063e985e9c5146105be578063f2fde38b1461060757600080fd5b8063b88d4fde14610501578063bc33718214610521578063c668286214610541578063c87b56dd1461055657600080fd5b80638da5cb5b116100e75780638da5cb5b1461047857806395d89b4114610496578063a035b1fe146104ab578063a22cb465146104c1578063a2b40d19146104e157600080fd5b806370a082311461040d578063715018a61461042d5780637437681e146104425780637cb647591461045857600080fd5b80632a2488e91161019b57806355f804b31161016a57806355f804b31461038e5780635c77ddab146103ae578063626be567146103c35780636352211e146103d85780636c0360eb146103f857600080fd5b80632a2488e9146103255780632eb4a7ab14610338578063404c7cdd1461034e57806342842e0e1461036e57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ae57806312065fe0146102ce57806323b872dd146102eb578063283f4bd81461030b57600080fd5b8062acf3481461020857806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276575b600080fd5b34801561021457600080fd5b5061021d610627565b005b34801561022b57600080fd5b5061023f61023a366004611e5e565b61066b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106bd565b60405161024b9190612029565b34801561028257600080fd5b50610296610291366004611e45565b61074f565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061021d6102c9366004611d97565b6107e4565b3480156102da57600080fd5b50475b60405190815260200161024b565b3480156102f757600080fd5b5061021d610306366004611ca3565b6108fa565b34801561031757600080fd5b50600e5461023f9060ff1681565b61021d610333366004611dc1565b61092b565b34801561034457600080fd5b506102dd600f5481565b34801561035a57600080fd5b5061021d610369366004611e45565b610b98565b34801561037a57600080fd5b5061021d610389366004611ca3565b610bc7565b34801561039a57600080fd5b5061021d6103a9366004611e98565b610be2565b3480156103ba57600080fd5b5061021d610c23565b3480156103cf57600080fd5b506102dd610c8f565b3480156103e457600080fd5b506102966103f3366004611e45565b610c9f565b34801561040457600080fd5b50610269610d16565b34801561041957600080fd5b506102dd610428366004611c55565b610da4565b34801561043957600080fd5b5061021d610e2b565b34801561044e57600080fd5b506102dd600c5481565b34801561046457600080fd5b5061021d610473366004611e45565b610e61565b34801561048457600080fd5b506006546001600160a01b0316610296565b3480156104a257600080fd5b50610269610e90565b3480156104b757600080fd5b506102dd600d5481565b3480156104cd57600080fd5b5061021d6104dc366004611d5b565b610e9f565b3480156104ed57600080fd5b5061021d6104fc366004611e45565b610eaa565b34801561050d57600080fd5b5061021d61051c366004611cdf565b610ed9565b34801561052d57600080fd5b5061021d61053c366004611e45565b610f11565b34801561054d57600080fd5b50610269610f40565b34801561056257600080fd5b50610269610571366004611e45565b610f4d565b34801561058257600080fd5b506102dd600b5481565b61021d61059a366004611ee1565b61102b565b3480156105ab57600080fd5b50600e5461023f90610100900460ff1681565b3480156105ca57600080fd5b5061023f6105d9366004611c70565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061357600080fd5b5061021d610622366004611c55565b6111da565b6006546001600160a01b0316331461065a5760405162461bcd60e51b8152600401610651906120dc565b60405180910390fd5b600e805461ffff1916610100179055565b60006001600160e01b031982166380ac58cd60e01b148061069c57506001600160e01b03198216635b5e139f60e01b145b806106b757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106cc906121f0565b80601f01602080910402602001604051908101604052809291908181526020018280546106f8906121f0565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107c85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610651565b506000908152600460205260409020546001600160a01b031690565b60006107ef82610c9f565b9050806001600160a01b0316836001600160a01b0316141561085d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610651565b336001600160a01b0382161480610879575061087981336105d9565b6108eb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610651565b6108f58383611291565b505050565b61090433826112ff565b6109205760405162461bcd60e51b815260040161065190612111565b6108f58383836113f6565b600e5460ff16151560011461093f57600080fd5b3360009081526010602052604081205461095c9060ff8416612162565b9050600c548111156109ab5760405162461bcd60e51b81526020600482015260186024820152774d696e742065786365656473206c696d69746174696f6e7360401b6044820152606401610651565b60018260ff1610156109f75760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b6044820152606401610651565b8160ff16600d54610a08919061218e565b341015610a275760405162461bcd60e51b81526004016106519061208e565b600b548260ff16610a36610c8f565b610a409190612162565b1115610a7a5760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b6044820152606401610651565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610af485858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611592565b610b315760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610651565b60005b8360ff16811015610b9057336000908152601060205260408120805460019290610b5f908490612162565b9091555050600880546001019055610b7e33610b79610c8f565b6115a8565b80610b888161222b565b915050610b34565b505050505050565b6006546001600160a01b03163314610bc25760405162461bcd60e51b8152600401610651906120dc565b600b55565b6108f583838360405180602001604052806000815250610ed9565b6006546001600160a01b03163314610c0c5760405162461bcd60e51b8152600401610651906120dc565b8051610c1f906009906020840190611b19565b5050565b6006546001600160a01b03163314610c4d5760405162461bcd60e51b8152600401610651906120dc565b7305a9ea16d81ca39f9028725e16648ae1a3ec1520806108fc476040518115909202916000818181858888f19350505050158015610c1f573d6000803e3d6000fd5b6000610c9a60085490565b905090565b6000818152600260205260408120546001600160a01b0316806106b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610651565b60098054610d23906121f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4f906121f0565b8015610d9c5780601f10610d7157610100808354040283529160200191610d9c565b820191906000526020600020905b815481529060010190602001808311610d7f57829003601f168201915b505050505081565b60006001600160a01b038216610e0f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610651565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e555760405162461bcd60e51b8152600401610651906120dc565b610e5f60006115c2565b565b6006546001600160a01b03163314610e8b5760405162461bcd60e51b8152600401610651906120dc565b600f55565b6060600180546106cc906121f0565b610c1f338383611614565b6006546001600160a01b03163314610ed45760405162461bcd60e51b8152600401610651906120dc565b600d55565b610ee333836112ff565b610eff5760405162461bcd60e51b815260040161065190612111565b610f0b848484846116e3565b50505050565b6006546001600160a01b03163314610f3b5760405162461bcd60e51b8152600401610651906120dc565b600c55565b600a8054610d23906121f0565b6000818152600260205260409020546060906001600160a01b0316610fcc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610651565b6000610fd6611716565b90506000815111610ff65760405180602001604052806000815250611024565b8061100084611725565b600a60405160200161101493929190611f28565b6040516020818303038152906040525b9392505050565b600e5460ff61010090910416151560011461104557600080fd5b336000908152601060205260408120546110629060ff8416612162565b9050600c548111156110b15760405162461bcd60e51b81526020600482015260186024820152774d696e742065786365656473206c696d69746174696f6e7360401b6044820152606401610651565b60018260ff1610156110fd5760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b6044820152606401610651565b8160ff16600d5461110e919061218e565b34101561112d5760405162461bcd60e51b81526004016106519061208e565b600b548260ff1661113c610c8f565b6111469190612162565b11156111805760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b6044820152606401610651565b60005b8260ff168110156108f5573360009081526010602052604081208054600192906111ae908490612162565b90915550506008805460010190556111c833610b79610c8f565b806111d28161222b565b915050611183565b6006546001600160a01b031633146112045760405162461bcd60e51b8152600401610651906120dc565b6001600160a01b0381166112695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610651565b611272816115c2565b50565b80546001019055565b5490565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c682610c9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610651565b600061138383610c9f565b9050806001600160a01b0316846001600160a01b031614806113be5750836001600160a01b03166113b38461074f565b6001600160a01b0316145b806113ee57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661140982610c9f565b6001600160a01b03161461146d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610651565b6001600160a01b0382166114cf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610651565b6114da600082611291565b6001600160a01b03831660009081526003602052604081208054600192906115039084906121ad565b90915550506001600160a01b0382166000908152600360205260408120805460019290611531908490612162565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008261159f8584611823565b14949350505050565b610c1f828260405180602001604052806000815250611897565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116765760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610651565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116ee8484846113f6565b6116fa848484846118ca565b610f0b5760405162461bcd60e51b81526004016106519061203c565b6060600980546106cc906121f0565b6060816117495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611773578061175d8161222b565b915061176c9050600a8361217a565b915061174d565b60008167ffffffffffffffff81111561178e5761178e61229c565b6040519080825280601f01601f1916602001820160405280156117b8576020820181803683370190505b5090505b84156113ee576117cd6001836121ad565b91506117da600a86612246565b6117e5906030612162565b60f81b8183815181106117fa576117fa612286565b60200101906001600160f81b031916908160001a90535061181c600a8661217a565b94506117bc565b600081815b845181101561188f57600085828151811061184557611845612286565b6020026020010151905080831161186b576000838152602082905260409020925061187c565b600081815260208490526040902092505b50806118878161222b565b915050611828565b509392505050565b6118a183836119d7565b6118ae60008484846118ca565b6108f55760405162461bcd60e51b81526004016106519061203c565b60006001600160a01b0384163b156119cc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190e903390899088908890600401611fec565b602060405180830381600087803b15801561192857600080fd5b505af1925050508015611958575060408051601f3d908101601f1916820190925261195591810190611e7b565b60015b6119b2573d808015611986576040519150601f19603f3d011682016040523d82523d6000602084013e61198b565b606091505b5080516119aa5760405162461bcd60e51b81526004016106519061203c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ee565b506001949350505050565b6001600160a01b038216611a2d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610651565b6000818152600260205260409020546001600160a01b031615611a925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610651565b6001600160a01b0382166000908152600360205260408120805460019290611abb908490612162565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b25906121f0565b90600052602060002090601f016020900481019282611b475760008555611b8d565b82601f10611b6057805160ff1916838001178555611b8d565b82800160010185558215611b8d579182015b82811115611b8d578251825591602001919060010190611b72565b50611b99929150611b9d565b5090565b5b80821115611b995760008155600101611b9e565b600067ffffffffffffffff80841115611bcd57611bcd61229c565b604051601f8501601f19908116603f01168101908282118183101715611bf557611bf561229c565b81604052809350858152868686011115611c0e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c3f57600080fd5b919050565b803560ff81168114611c3f57600080fd5b600060208284031215611c6757600080fd5b61102482611c28565b60008060408385031215611c8357600080fd5b611c8c83611c28565b9150611c9a60208401611c28565b90509250929050565b600080600060608486031215611cb857600080fd5b611cc184611c28565b9250611ccf60208501611c28565b9150604084013590509250925092565b60008060008060808587031215611cf557600080fd5b611cfe85611c28565b9350611d0c60208601611c28565b925060408501359150606085013567ffffffffffffffff811115611d2f57600080fd5b8501601f81018713611d4057600080fd5b611d4f87823560208401611bb2565b91505092959194509250565b60008060408385031215611d6e57600080fd5b611d7783611c28565b915060208301358015158114611d8c57600080fd5b809150509250929050565b60008060408385031215611daa57600080fd5b611db383611c28565b946020939093013593505050565b600080600060408486031215611dd657600080fd5b833567ffffffffffffffff80821115611dee57600080fd5b818601915086601f830112611e0257600080fd5b813581811115611e1157600080fd5b8760208260051b8501011115611e2657600080fd5b602092830195509350611e3c9186019050611c44565b90509250925092565b600060208284031215611e5757600080fd5b5035919050565b600060208284031215611e7057600080fd5b8135611024816122b2565b600060208284031215611e8d57600080fd5b8151611024816122b2565b600060208284031215611eaa57600080fd5b813567ffffffffffffffff811115611ec157600080fd5b8201601f81018413611ed257600080fd5b6113ee84823560208401611bb2565b600060208284031215611ef357600080fd5b61102482611c44565b60008151808452611f148160208601602086016121c4565b601f01601f19169290920160200192915050565b600084516020611f3b8285838a016121c4565b855191840191611f4e8184848a016121c4565b8554920191600090600181811c9080831680611f6b57607f831692505b858310811415611f8957634e487b7160e01b85526022600452602485fd5b808015611f9d5760018114611fae57611fdb565b60ff19851688528388019550611fdb565b60008b81526020902060005b85811015611fd35781548a820152908401908801611fba565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061201f90830184611efc565b9695505050505050565b6020815260006110246020830184611efc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4d696e74696e672061204d722e46696e676572204e465420636f73747320302e60408201526d303120457468657220456163682160901b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121755761217561225a565b500190565b60008261218957612189612270565b500490565b60008160001904831182151516156121a8576121a861225a565b500290565b6000828210156121bf576121bf61225a565b500390565b60005b838110156121df5781810151838201526020016121c7565b83811115610f0b5750506000910152565b600181811c9082168061220457607f821691505b6020821081141561222557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223f5761223f61225a565b5060010190565b60008261225557612255612270565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461127257600080fdfea26469706673582212205ab017bbae38d713e81594c1b0877548285cd78cffb183d59b7924b3b79af33d64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152650000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f63637a6c7767672e6d7970696e6174612e636c6f75642f697066732f516d4e584a55784641486b6434454c63397966755642645a71454d4c4a67344144616e53506f6e435151333938542f00000000000000000000000000

Deployed Bytecode

0x6080604052600436106102035760003560e01c806370a0823111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610576578063e341afdf1461058c578063e8079b1d1461059f578063e985e9c5146105be578063f2fde38b1461060757600080fd5b8063b88d4fde14610501578063bc33718214610521578063c668286214610541578063c87b56dd1461055657600080fd5b80638da5cb5b116100e75780638da5cb5b1461047857806395d89b4114610496578063a035b1fe146104ab578063a22cb465146104c1578063a2b40d19146104e157600080fd5b806370a082311461040d578063715018a61461042d5780637437681e146104425780637cb647591461045857600080fd5b80632a2488e91161019b57806355f804b31161016a57806355f804b31461038e5780635c77ddab146103ae578063626be567146103c35780636352211e146103d85780636c0360eb146103f857600080fd5b80632a2488e9146103255780632eb4a7ab14610338578063404c7cdd1461034e57806342842e0e1461036e57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ae57806312065fe0146102ce57806323b872dd146102eb578063283f4bd81461030b57600080fd5b8062acf3481461020857806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276575b600080fd5b34801561021457600080fd5b5061021d610627565b005b34801561022b57600080fd5b5061023f61023a366004611e5e565b61066b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106bd565b60405161024b9190612029565b34801561028257600080fd5b50610296610291366004611e45565b61074f565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061021d6102c9366004611d97565b6107e4565b3480156102da57600080fd5b50475b60405190815260200161024b565b3480156102f757600080fd5b5061021d610306366004611ca3565b6108fa565b34801561031757600080fd5b50600e5461023f9060ff1681565b61021d610333366004611dc1565b61092b565b34801561034457600080fd5b506102dd600f5481565b34801561035a57600080fd5b5061021d610369366004611e45565b610b98565b34801561037a57600080fd5b5061021d610389366004611ca3565b610bc7565b34801561039a57600080fd5b5061021d6103a9366004611e98565b610be2565b3480156103ba57600080fd5b5061021d610c23565b3480156103cf57600080fd5b506102dd610c8f565b3480156103e457600080fd5b506102966103f3366004611e45565b610c9f565b34801561040457600080fd5b50610269610d16565b34801561041957600080fd5b506102dd610428366004611c55565b610da4565b34801561043957600080fd5b5061021d610e2b565b34801561044e57600080fd5b506102dd600c5481565b34801561046457600080fd5b5061021d610473366004611e45565b610e61565b34801561048457600080fd5b506006546001600160a01b0316610296565b3480156104a257600080fd5b50610269610e90565b3480156104b757600080fd5b506102dd600d5481565b3480156104cd57600080fd5b5061021d6104dc366004611d5b565b610e9f565b3480156104ed57600080fd5b5061021d6104fc366004611e45565b610eaa565b34801561050d57600080fd5b5061021d61051c366004611cdf565b610ed9565b34801561052d57600080fd5b5061021d61053c366004611e45565b610f11565b34801561054d57600080fd5b50610269610f40565b34801561056257600080fd5b50610269610571366004611e45565b610f4d565b34801561058257600080fd5b506102dd600b5481565b61021d61059a366004611ee1565b61102b565b3480156105ab57600080fd5b50600e5461023f90610100900460ff1681565b3480156105ca57600080fd5b5061023f6105d9366004611c70565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061357600080fd5b5061021d610622366004611c55565b6111da565b6006546001600160a01b0316331461065a5760405162461bcd60e51b8152600401610651906120dc565b60405180910390fd5b600e805461ffff1916610100179055565b60006001600160e01b031982166380ac58cd60e01b148061069c57506001600160e01b03198216635b5e139f60e01b145b806106b757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106cc906121f0565b80601f01602080910402602001604051908101604052809291908181526020018280546106f8906121f0565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107c85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610651565b506000908152600460205260409020546001600160a01b031690565b60006107ef82610c9f565b9050806001600160a01b0316836001600160a01b0316141561085d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610651565b336001600160a01b0382161480610879575061087981336105d9565b6108eb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610651565b6108f58383611291565b505050565b61090433826112ff565b6109205760405162461bcd60e51b815260040161065190612111565b6108f58383836113f6565b600e5460ff16151560011461093f57600080fd5b3360009081526010602052604081205461095c9060ff8416612162565b9050600c548111156109ab5760405162461bcd60e51b81526020600482015260186024820152774d696e742065786365656473206c696d69746174696f6e7360401b6044820152606401610651565b60018260ff1610156109f75760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b6044820152606401610651565b8160ff16600d54610a08919061218e565b341015610a275760405162461bcd60e51b81526004016106519061208e565b600b548260ff16610a36610c8f565b610a409190612162565b1115610a7a5760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b6044820152606401610651565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610af485858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611592565b610b315760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610651565b60005b8360ff16811015610b9057336000908152601060205260408120805460019290610b5f908490612162565b9091555050600880546001019055610b7e33610b79610c8f565b6115a8565b80610b888161222b565b915050610b34565b505050505050565b6006546001600160a01b03163314610bc25760405162461bcd60e51b8152600401610651906120dc565b600b55565b6108f583838360405180602001604052806000815250610ed9565b6006546001600160a01b03163314610c0c5760405162461bcd60e51b8152600401610651906120dc565b8051610c1f906009906020840190611b19565b5050565b6006546001600160a01b03163314610c4d5760405162461bcd60e51b8152600401610651906120dc565b7305a9ea16d81ca39f9028725e16648ae1a3ec1520806108fc476040518115909202916000818181858888f19350505050158015610c1f573d6000803e3d6000fd5b6000610c9a60085490565b905090565b6000818152600260205260408120546001600160a01b0316806106b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610651565b60098054610d23906121f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4f906121f0565b8015610d9c5780601f10610d7157610100808354040283529160200191610d9c565b820191906000526020600020905b815481529060010190602001808311610d7f57829003601f168201915b505050505081565b60006001600160a01b038216610e0f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610651565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e555760405162461bcd60e51b8152600401610651906120dc565b610e5f60006115c2565b565b6006546001600160a01b03163314610e8b5760405162461bcd60e51b8152600401610651906120dc565b600f55565b6060600180546106cc906121f0565b610c1f338383611614565b6006546001600160a01b03163314610ed45760405162461bcd60e51b8152600401610651906120dc565b600d55565b610ee333836112ff565b610eff5760405162461bcd60e51b815260040161065190612111565b610f0b848484846116e3565b50505050565b6006546001600160a01b03163314610f3b5760405162461bcd60e51b8152600401610651906120dc565b600c55565b600a8054610d23906121f0565b6000818152600260205260409020546060906001600160a01b0316610fcc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610651565b6000610fd6611716565b90506000815111610ff65760405180602001604052806000815250611024565b8061100084611725565b600a60405160200161101493929190611f28565b6040516020818303038152906040525b9392505050565b600e5460ff61010090910416151560011461104557600080fd5b336000908152601060205260408120546110629060ff8416612162565b9050600c548111156110b15760405162461bcd60e51b81526020600482015260186024820152774d696e742065786365656473206c696d69746174696f6e7360401b6044820152606401610651565b60018260ff1610156110fd5760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b6044820152606401610651565b8160ff16600d5461110e919061218e565b34101561112d5760405162461bcd60e51b81526004016106519061208e565b600b548260ff1661113c610c8f565b6111469190612162565b11156111805760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b6044820152606401610651565b60005b8260ff168110156108f5573360009081526010602052604081208054600192906111ae908490612162565b90915550506008805460010190556111c833610b79610c8f565b806111d28161222b565b915050611183565b6006546001600160a01b031633146112045760405162461bcd60e51b8152600401610651906120dc565b6001600160a01b0381166112695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610651565b611272816115c2565b50565b80546001019055565b5490565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c682610c9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610651565b600061138383610c9f565b9050806001600160a01b0316846001600160a01b031614806113be5750836001600160a01b03166113b38461074f565b6001600160a01b0316145b806113ee57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661140982610c9f565b6001600160a01b03161461146d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610651565b6001600160a01b0382166114cf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610651565b6114da600082611291565b6001600160a01b03831660009081526003602052604081208054600192906115039084906121ad565b90915550506001600160a01b0382166000908152600360205260408120805460019290611531908490612162565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008261159f8584611823565b14949350505050565b610c1f828260405180602001604052806000815250611897565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116765760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610651565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116ee8484846113f6565b6116fa848484846118ca565b610f0b5760405162461bcd60e51b81526004016106519061203c565b6060600980546106cc906121f0565b6060816117495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611773578061175d8161222b565b915061176c9050600a8361217a565b915061174d565b60008167ffffffffffffffff81111561178e5761178e61229c565b6040519080825280601f01601f1916602001820160405280156117b8576020820181803683370190505b5090505b84156113ee576117cd6001836121ad565b91506117da600a86612246565b6117e5906030612162565b60f81b8183815181106117fa576117fa612286565b60200101906001600160f81b031916908160001a90535061181c600a8661217a565b94506117bc565b600081815b845181101561188f57600085828151811061184557611845612286565b6020026020010151905080831161186b576000838152602082905260409020925061187c565b600081815260208490526040902092505b50806118878161222b565b915050611828565b509392505050565b6118a183836119d7565b6118ae60008484846118ca565b6108f55760405162461bcd60e51b81526004016106519061203c565b60006001600160a01b0384163b156119cc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190e903390899088908890600401611fec565b602060405180830381600087803b15801561192857600080fd5b505af1925050508015611958575060408051601f3d908101601f1916820190925261195591810190611e7b565b60015b6119b2573d808015611986576040519150601f19603f3d011682016040523d82523d6000602084013e61198b565b606091505b5080516119aa5760405162461bcd60e51b81526004016106519061203c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ee565b506001949350505050565b6001600160a01b038216611a2d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610651565b6000818152600260205260409020546001600160a01b031615611a925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610651565b6001600160a01b0382166000908152600360205260408120805460019290611abb908490612162565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b25906121f0565b90600052602060002090601f016020900481019282611b475760008555611b8d565b82601f10611b6057805160ff1916838001178555611b8d565b82800160010185558215611b8d579182015b82811115611b8d578251825591602001919060010190611b72565b50611b99929150611b9d565b5090565b5b80821115611b995760008155600101611b9e565b600067ffffffffffffffff80841115611bcd57611bcd61229c565b604051601f8501601f19908116603f01168101908282118183101715611bf557611bf561229c565b81604052809350858152868686011115611c0e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c3f57600080fd5b919050565b803560ff81168114611c3f57600080fd5b600060208284031215611c6757600080fd5b61102482611c28565b60008060408385031215611c8357600080fd5b611c8c83611c28565b9150611c9a60208401611c28565b90509250929050565b600080600060608486031215611cb857600080fd5b611cc184611c28565b9250611ccf60208501611c28565b9150604084013590509250925092565b60008060008060808587031215611cf557600080fd5b611cfe85611c28565b9350611d0c60208601611c28565b925060408501359150606085013567ffffffffffffffff811115611d2f57600080fd5b8501601f81018713611d4057600080fd5b611d4f87823560208401611bb2565b91505092959194509250565b60008060408385031215611d6e57600080fd5b611d7783611c28565b915060208301358015158114611d8c57600080fd5b809150509250929050565b60008060408385031215611daa57600080fd5b611db383611c28565b946020939093013593505050565b600080600060408486031215611dd657600080fd5b833567ffffffffffffffff80821115611dee57600080fd5b818601915086601f830112611e0257600080fd5b813581811115611e1157600080fd5b8760208260051b8501011115611e2657600080fd5b602092830195509350611e3c9186019050611c44565b90509250925092565b600060208284031215611e5757600080fd5b5035919050565b600060208284031215611e7057600080fd5b8135611024816122b2565b600060208284031215611e8d57600080fd5b8151611024816122b2565b600060208284031215611eaa57600080fd5b813567ffffffffffffffff811115611ec157600080fd5b8201601f81018413611ed257600080fd5b6113ee84823560208401611bb2565b600060208284031215611ef357600080fd5b61102482611c44565b60008151808452611f148160208601602086016121c4565b601f01601f19169290920160200192915050565b600084516020611f3b8285838a016121c4565b855191840191611f4e8184848a016121c4565b8554920191600090600181811c9080831680611f6b57607f831692505b858310811415611f8957634e487b7160e01b85526022600452602485fd5b808015611f9d5760018114611fae57611fdb565b60ff19851688528388019550611fdb565b60008b81526020902060005b85811015611fd35781548a820152908401908801611fba565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061201f90830184611efc565b9695505050505050565b6020815260006110246020830184611efc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4d696e74696e672061204d722e46696e676572204e465420636f73747320302e60408201526d303120457468657220456163682160901b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121755761217561225a565b500190565b60008261218957612189612270565b500490565b60008160001904831182151516156121a8576121a861225a565b500290565b6000828210156121bf576121bf61225a565b500390565b60005b838110156121df5781810151838201526020016121c7565b83811115610f0b5750506000910152565b600181811c9082168061220457607f821691505b6020821081141561222557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223f5761223f61225a565b5060010190565b60008261225557612255612270565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461127257600080fdfea26469706673582212205ab017bbae38d713e81594c1b0877548285cd78cffb183d59b7924b3b79af33d64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f63637a6c7767672e6d7970696e6174612e636c6f75642f697066732f516d4e584a55784641486b6434454c63397966755642645a71454d4c4a67344144616e53506f6e435151333938542f00000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://cczlwgg.mypinata.cloud/ipfs/QmNXJUxFAHkd4ELc9yfuVBdZqEMLJg4ADanSPonCQQ398T/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [2] : 68747470733a2f2f63637a6c7767672e6d7970696e6174612e636c6f75642f69
Arg [3] : 7066732f516d4e584a55784641486b6434454c63397966755642645a71454d4c
Arg [4] : 4a67344144616e53506f6e435151333938542f00000000000000000000000000


Deployed Bytecode Sourcemap

44935:4284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46078:129;;;;;;;;;;;;;:::i;:::-;;31715:305;;;;;;;;;;-1:-1:-1;31715:305:0;;;;;:::i;:::-;;:::i;:::-;;;8166:14:1;;8159:22;8141:41;;8129:2;8114:18;31715:305:0;;;;;;;;32660:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34220:221::-;;;;;;;;;;-1:-1:-1;34220:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7464:32:1;;;7446:51;;7434:2;7419:18;34220:221:0;7300:203:1;33743:411:0;;;;;;;;;;-1:-1:-1;33743:411:0;;;;;:::i;:::-;;:::i;48494:100::-;;;;;;;;;;-1:-1:-1;48565:21:0;48494:100;;;8339:25:1;;;8327:2;8312:18;48494:100:0;8193:177:1;34970:339:0;;;;;;;;;;-1:-1:-1;34970:339:0;;;;;:::i;:::-;;:::i;45310:38::-;;;;;;;;;;-1:-1:-1;45310:38:0;;;;;;;;46643:849;;;;;;:::i;:::-;;:::i;45404:94::-;;;;;;;;;;;;;;;;46433:102;;;;;;;;;;-1:-1:-1;46433:102:0;;;;;:::i;:::-;;:::i;35380:185::-;;;;;;;;;;-1:-1:-1;35380:185:0;;;;;:::i;:::-;;:::i;48724:104::-;;;;;;;;;;-1:-1:-1;48724:104:0;;;;;:::i;:::-;;:::i;48169:202::-;;;;;;;;;;;;;:::i;48379:107::-;;;;;;;;;;;;;:::i;32354:239::-;;;;;;;;;;-1:-1:-1;32354:239:0;;;;;:::i;:::-;;:::i;45126:21::-;;;;;;;;;;;;;:::i;32084:208::-;;;;;;;;;;-1:-1:-1;32084:208:0;;;;;:::i;:::-;;:::i;11957:103::-;;;;;;;;;;;;;:::i;45236:25::-;;;;;;;;;;;;;;;;46215:113;;;;;;;;;;-1:-1:-1;46215:113:0;;;;;:::i;:::-;;:::i;11306:87::-;;;;;;;;;;-1:-1:-1;11379:6:0;;-1:-1:-1;;;;;11379:6:0;11306:87;;32829:104;;;;;;;;;;;;;:::i;45268:33::-;;;;;;;;;;;;;;;;34513:155;;;;;;;;;;-1:-1:-1;34513:155:0;;;;;:::i;:::-;;:::i;46543:92::-;;;;;;;;;;-1:-1:-1;46543:92:0;;;;;:::i;:::-;;:::i;35636:328::-;;;;;;;;;;-1:-1:-1;35636:328:0;;;;;:::i;:::-;;:::i;46336:89::-;;;;;;;;;;-1:-1:-1;46336:89:0;;;;;:::i;:::-;;:::i;45154:37::-;;;;;;;;;;;;;:::i;48839:375::-;;;;;;;;;;-1:-1:-1;48839:375:0;;;;;:::i;:::-;;:::i;45198:31::-;;;;;;;;;;;;;;;;47506:655;;;;;;:::i;:::-;;:::i;45355:40::-;;;;;;;;;;-1:-1:-1;45355:40:0;;;;;;;;;;;34739:164;;;;;;;;;;-1:-1:-1;34739:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34860:25:0;;;34836:4;34860:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34739:164;12215:201;;;;;;;;;;-1:-1:-1;12215:201:0;;;;;:::i;:::-;;:::i;46078:129::-;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;;;;;;;;;46134:19:::1;:27:::0;;-1:-1:-1;;46172:27:0;46134::::1;46172;::::0;;46078:129::o;31715:305::-;31817:4;-1:-1:-1;;;;;;31854:40:0;;-1:-1:-1;;;31854:40:0;;:105;;-1:-1:-1;;;;;;;31911:48:0;;-1:-1:-1;;;31911:48:0;31854:105;:158;;;-1:-1:-1;;;;;;;;;;24419:40:0;;;31976:36;31834:178;31715:305;-1:-1:-1;;31715:305:0:o;32660:100::-;32714:13;32747:5;32740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32660:100;:::o;34220:221::-;34296:7;37563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37563:16:0;34316:73;;;;-1:-1:-1;;;34316:73:0;;13937:2:1;34316:73:0;;;13919:21:1;13976:2;13956:18;;;13949:30;14015:34;13995:18;;;13988:62;-1:-1:-1;;;14066:18:1;;;14059:42;14118:19;;34316:73:0;13735:408:1;34316:73:0;-1:-1:-1;34409:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34409:24:0;;34220:221::o;33743:411::-;33824:13;33840:23;33855:7;33840:14;:23::i;:::-;33824:39;;33888:5;-1:-1:-1;;;;;33882:11:0;:2;-1:-1:-1;;;;;33882:11:0;;;33874:57;;;;-1:-1:-1;;;33874:57:0;;15814:2:1;33874:57:0;;;15796:21:1;15853:2;15833:18;;;15826:30;15892:34;15872:18;;;15865:62;-1:-1:-1;;;15943:18:1;;;15936:31;15984:19;;33874:57:0;15612:397:1;33874:57:0;10057:10;-1:-1:-1;;;;;33966:21:0;;;;:62;;-1:-1:-1;33991:37:0;34008:5;10057:10;34739:164;:::i;33991:37::-;33944:168;;;;-1:-1:-1;;;33944:168:0;;12330:2:1;33944:168:0;;;12312:21:1;12369:2;12349:18;;;12342:30;12408:34;12388:18;;;12381:62;12479:26;12459:18;;;12452:54;12523:19;;33944:168:0;12128:420:1;33944:168:0;34125:21;34134:2;34138:7;34125:8;:21::i;:::-;33813:341;33743:411;;:::o;34970:339::-;35165:41;10057:10;35198:7;35165:18;:41::i;:::-;35157:103;;;;-1:-1:-1;;;35157:103:0;;;;;;;:::i;:::-;35273:28;35283:4;35289:2;35293:7;35273:9;:28::i;46643:849::-;45914:19;;;;:27;;:19;:27;45906:36;;;;;;46802:10:::1;46755:19;46789:24:::0;;;:12:::1;:24;::::0;;;;;46777:36:::1;::::0;::::1;::::0;::::1;;:::i;:::-;46755:58;;46857:5;;46842:11;:20;;46834:57;;;::::0;-1:-1:-1;;;46834:57:0;;11562:2:1;46834:57:0::1;::::0;::::1;11544:21:1::0;11601:2;11581:18;;;11574:30;-1:-1:-1;;;11620:18:1;;;11613:54;11684:18;;46834:57:0::1;11360:348:1::0;46834:57:0::1;46923:1;46910:9;:14;;;;46902:49;;;::::0;-1:-1:-1;;;46902:49:0;;14687:2:1;46902:49:0::1;::::0;::::1;14669:21:1::0;14726:2;14706:18;;;14699:30;-1:-1:-1;;;14745:18:1;;;14738:51;14806:18;;46902:49:0::1;14485:345:1::0;46902:49:0::1;46991:9;46983:17;;:5;;:17;;;;:::i;:::-;46970:9;:30;;46962:89;;;;-1:-1:-1::0;;;46962:89:0::1;;;;;;;:::i;:::-;47100:9;;47086;47071:24;;:12;:10;:12::i;:::-;:24;;;;:::i;:::-;47070:39;;47062:61;;;::::0;-1:-1:-1;;;47062:61:0;;14350:2:1;47062:61:0::1;::::0;::::1;14332:21:1::0;14389:1;14369:18;;;14362:29;-1:-1:-1;;;14407:18:1;;;14400:39;14456:18;;47062:61:0::1;14148:332:1::0;47062:61:0::1;47161:28;::::0;-1:-1:-1;;47178:10:0::1;5683:2:1::0;5679:15;5675:53;47161:28:0::1;::::0;::::1;5663:66:1::0;47136:12:0::1;::::0;5745::1;;47161:28:0::1;;;;;;;;;;;;47151:39;;;;;;47136:54;;47209:50;47228:12;;47209:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;47242:10:0::1;::::0;;-1:-1:-1;47254:4:0;;-1:-1:-1;47209:18:0::1;:50::i;:::-;47201:77;;;::::0;-1:-1:-1;;;47201:77:0;;16634:2:1;47201:77:0::1;::::0;::::1;16616:21:1::0;16673:2;16653:18;;;16646:30;-1:-1:-1;;;16692:18:1;;;16685:44;16746:18;;47201:77:0::1;16432:338:1::0;47201:77:0::1;47302:6;47298:187;47313:9;47311:11;;:1;:11;47298:187;;;47365:10;47352:24;::::0;;;:12:::1;:24;::::0;;;;:29;;47380:1:::1;::::0;47352:24;:29:::1;::::0;47380:1;;47352:29:::1;:::i;:::-;::::0;;;-1:-1:-1;;47396:15:0::1;3874:19:::0;;3892:1;3874:19;;;47438:35:::1;47448:10;47460:12;:10;:12::i;:::-;47438:9;:35::i;:::-;47323:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47298:187;;;;46744:748;;46643:849:::0;;;:::o;46433:102::-;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;46508:9:::1;:19:::0;46433:102::o;35380:185::-;35518:39;35535:4;35541:2;35545:7;35518:39;;;;;;;;;;;;:16;:39::i;48724:104::-;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;48799:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48724:104:::0;:::o;48169:202::-;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;48274:42:::1;::::0;48328:33:::1;48565:21:::0;48328:33:::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;48379:107:::0;48422:7;48453:25;:15;3755:14;;3663:114;48453:25;48446:32;;48379:107;:::o;32354:239::-;32426:7;32462:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32462:16:0;32497:19;32489:73;;;;-1:-1:-1;;;32489:73:0;;13166:2:1;32489:73:0;;;13148:21:1;13205:2;13185:18;;;13178:30;13244:34;13224:18;;;13217:62;-1:-1:-1;;;13295:18:1;;;13288:39;13344:19;;32489:73:0;12964:405:1;45126:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32084:208::-;32156:7;-1:-1:-1;;;;;32184:19:0;;32176:74;;;;-1:-1:-1;;;32176:74:0;;12755:2:1;32176:74:0;;;12737:21:1;12794:2;12774:18;;;12767:30;12833:34;12813:18;;;12806:62;-1:-1:-1;;;12884:18:1;;;12877:40;12934:19;;32176:74:0;12553:406:1;32176:74:0;-1:-1:-1;;;;;;32268:16:0;;;;;:9;:16;;;;;;;32084:208::o;11957:103::-;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;12022:30:::1;12049:1;12022:18;:30::i;:::-;11957:103::o:0;46215:113::-;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;46294:10:::1;:26:::0;46215:113::o;32829:104::-;32885:13;32918:7;32911:14;;;;;:::i;34513:155::-;34608:52;10057:10;34641:8;34651;34608:18;:52::i;46543:92::-;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;46613:5:::1;:14:::0;46543:92::o;35636:328::-;35811:41;10057:10;35844:7;35811:18;:41::i;:::-;35803:103;;;;-1:-1:-1;;;35803:103:0;;;;;;;:::i;:::-;35917:39;35931:4;35937:2;35941:7;35950:5;35917:13;:39::i;:::-;35636:328;;;;:::o;46336:89::-;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;46403:5:::1;:14:::0;46336:89::o;45154:37::-;;;;;;;:::i;48839:375::-;37539:4;37563:16;;;:7;:16;;;;;;48912:13;;-1:-1:-1;;;;;37563:16:0;48943:76;;;;-1:-1:-1;;;48943:76:0;;15398:2:1;48943:76:0;;;15380:21:1;15437:2;15417:18;;;15410:30;15476:34;15456:18;;;15449:62;-1:-1:-1;;;15527:18:1;;;15520:45;15582:19;;48943:76:0;15196:411:1;48943:76:0;49032:28;49063:10;:8;:10::i;:::-;49032:41;;49122:1;49097:14;49091:28;:32;:115;;;;;;;;;;;;;;;;;49150:14;49166:18;:7;:16;:18::i;:::-;49186:13;49133:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49091:115;49084:122;48839:375;-1:-1:-1;;;48839:375:0:o;47506:655::-;46020:20;;;;;;;;:28;;:20;:28;46012:37;;;;;;47634:10:::1;47587:19;47621:24:::0;;;:12:::1;:24;::::0;;;;;47609:36:::1;::::0;::::1;::::0;::::1;;:::i;:::-;47587:58;;47681:5;;47666:11;:20;;47658:57;;;::::0;-1:-1:-1;;;47658:57:0;;11562:2:1;47658:57:0::1;::::0;::::1;11544:21:1::0;11601:2;11581:18;;;11574:30;-1:-1:-1;;;11620:18:1;;;11613:54;11684:18;;47658:57:0::1;11360:348:1::0;47658:57:0::1;47747:1;47734:9;:14;;;;47726:49;;;::::0;-1:-1:-1;;;47726:49:0;;14687:2:1;47726:49:0::1;::::0;::::1;14669:21:1::0;14726:2;14706:18;;;14699:30;-1:-1:-1;;;14745:18:1;;;14738:51;14806:18;;47726:49:0::1;14485:345:1::0;47726:49:0::1;47815:9;47807:17;;:5;;:17;;;;:::i;:::-;47794:9;:30;;47786:89;;;;-1:-1:-1::0;;;47786:89:0::1;;;;;;;:::i;:::-;47924:9;;47910;47895:24;;:12;:10;:12::i;:::-;:24;;;;:::i;:::-;47894:39;;47886:61;;;::::0;-1:-1:-1;;;47886:61:0;;14350:2:1;47886:61:0::1;::::0;::::1;14332:21:1::0;14389:1;14369:18;;;14362:29;-1:-1:-1;;;14407:18:1;;;14400:39;14456:18;;47886:61:0::1;14148:332:1::0;47886:61:0::1;47971:6;47967:187;47982:9;47980:11;;:1;:11;47967:187;;;48034:10;48021:24;::::0;;;:12:::1;:24;::::0;;;;:29;;48049:1:::1;::::0;48021:24;:29:::1;::::0;48049:1;;48021:29:::1;:::i;:::-;::::0;;;-1:-1:-1;;48065:15:0::1;3874:19:::0;;3892:1;3874:19;;;48107:35:::1;48117:10;48129:12;:10;:12::i;48107:35::-;47992:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47967:187;;12215:201:::0;11379:6;;-1:-1:-1;;;;;11379:6:0;10057:10;11526:23;11518:68;;;;-1:-1:-1;;;11518:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12304:22:0;::::1;12296:73;;;::::0;-1:-1:-1;;;12296:73:0;;9220:2:1;12296:73:0::1;::::0;::::1;9202:21:1::0;9259:2;9239:18;;;9232:30;9298:34;9278:18;;;9271:62;-1:-1:-1;;;9349:18:1;;;9342:36;9395:19;;12296:73:0::1;9018:402:1::0;12296:73:0::1;12380:28;12399:8;12380:18;:28::i;:::-;12215:201:::0;:::o;3785:127::-;3874:19;;3892:1;3874:19;;;3785:127::o;3663:114::-;3755:14;;3663:114::o;14060:326::-;-1:-1:-1;;;;;14355:19:0;;:23;;;14060:326::o;41620:174::-;41695:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41695:29:0;-1:-1:-1;;;;;41695:29:0;;;;;;;;:24;;41749:23;41695:24;41749:14;:23::i;:::-;-1:-1:-1;;;;;41740:46:0;;;;;;;;;;;41620:174;;:::o;37768:348::-;37861:4;37563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37563:16:0;37878:73;;;;-1:-1:-1;;;37878:73:0;;11149:2:1;37878:73:0;;;11131:21:1;11188:2;11168:18;;;11161:30;11227:34;11207:18;;;11200:62;-1:-1:-1;;;11278:18:1;;;11271:42;11330:19;;37878:73:0;10947:408:1;37878:73:0;37962:13;37978:23;37993:7;37978:14;:23::i;:::-;37962:39;;38031:5;-1:-1:-1;;;;;38020:16:0;:7;-1:-1:-1;;;;;38020:16:0;;:51;;;;38064:7;-1:-1:-1;;;;;38040:31:0;:20;38052:7;38040:11;:20::i;:::-;-1:-1:-1;;;;;38040:31:0;;38020:51;:87;;;-1:-1:-1;;;;;;34860:25:0;;;34836:4;34860:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38075:32;38012:96;37768:348;-1:-1:-1;;;;37768:348:0:o;40877:625::-;41036:4;-1:-1:-1;;;;;41009:31:0;:23;41024:7;41009:14;:23::i;:::-;-1:-1:-1;;;;;41009:31:0;;41001:81;;;;-1:-1:-1;;;41001:81:0;;9627:2:1;41001:81:0;;;9609:21:1;9666:2;9646:18;;;9639:30;9705:34;9685:18;;;9678:62;-1:-1:-1;;;9756:18:1;;;9749:35;9801:19;;41001:81:0;9425:401:1;41001:81:0;-1:-1:-1;;;;;41101:16:0;;41093:65;;;;-1:-1:-1;;;41093:65:0;;10390:2:1;41093:65:0;;;10372:21:1;10429:2;10409:18;;;10402:30;10468:34;10448:18;;;10441:62;-1:-1:-1;;;10519:18:1;;;10512:34;10563:19;;41093:65:0;10188:400:1;41093:65:0;41275:29;41292:1;41296:7;41275:8;:29::i;:::-;-1:-1:-1;;;;;41317:15:0;;;;;;:9;:15;;;;;:20;;41336:1;;41317:15;:20;;41336:1;;41317:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41348:13:0;;;;;;:9;:13;;;;;:18;;41365:1;;41348:13;:18;;41365:1;;41348:18;:::i;:::-;;;;-1:-1:-1;;41377:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41377:21:0;-1:-1:-1;;;;;41377:21:0;;;;;;;;;41416:27;;41377:16;;41416:27;;;;;;;33813:341;33743:411;;:::o;1273:190::-;1398:4;1451;1422:25;1435:5;1442:4;1422:12;:25::i;:::-;:33;;1273:190;-1:-1:-1;;;;1273:190:0:o;38458:110::-;38534:26;38544:2;38548:7;38534:26;;;;;;;;;;;;:9;:26::i;12576:191::-;12669:6;;;-1:-1:-1;;;;;12686:17:0;;;-1:-1:-1;;;;;;12686:17:0;;;;;;;12719:40;;12669:6;;;12686:17;12669:6;;12719:40;;12650:16;;12719:40;12639:128;12576:191;:::o;41936:315::-;42091:8;-1:-1:-1;;;;;42082:17:0;:5;-1:-1:-1;;;;;42082:17:0;;;42074:55;;;;-1:-1:-1;;;42074:55:0;;10795:2:1;42074:55:0;;;10777:21:1;10834:2;10814:18;;;10807:30;10873:27;10853:18;;;10846:55;10918:18;;42074:55:0;10593:349:1;42074:55:0;-1:-1:-1;;;;;42140:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42140:46:0;;;;;;;;;;42202:41;;8141::1;;;42202::0;;8114:18:1;42202:41:0;;;;;;;41936:315;;;:::o;36846:::-;37003:28;37013:4;37019:2;37023:7;37003:9;:28::i;:::-;37050:48;37073:4;37079:2;37083:7;37092:5;37050:22;:48::i;:::-;37042:111;;;;-1:-1:-1;;;37042:111:0;;;;;;;:::i;48605:108::-;48665:13;48698:7;48691:14;;;;;:::i;7486:723::-;7542:13;7763:10;7759:53;;-1:-1:-1;;7790:10:0;;;;;;;;;;;;-1:-1:-1;;;7790:10:0;;;;;7486:723::o;7759:53::-;7837:5;7822:12;7878:78;7885:9;;7878:78;;7911:8;;;;:::i;:::-;;-1:-1:-1;7934:10:0;;-1:-1:-1;7942:2:0;7934:10;;:::i;:::-;;;7878:78;;;7966:19;7998:6;7988:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7988:17:0;;7966:39;;8016:154;8023:10;;8016:154;;8050:11;8060:1;8050:11;;:::i;:::-;;-1:-1:-1;8119:10:0;8127:2;8119:5;:10;:::i;:::-;8106:24;;:2;:24;:::i;:::-;8093:39;;8076:6;8083;8076:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8076:56:0;;;;;;;;-1:-1:-1;8147:11:0;8156:2;8147:11;;:::i;:::-;;;8016:154;;1824:675;1907:7;1950:4;1907:7;1965:497;1989:5;:12;1985:1;:16;1965:497;;;2023:20;2046:5;2052:1;2046:8;;;;;;;;:::i;:::-;;;;;;;2023:31;;2089:12;2073;:28;2069:382;;2575:13;2625:15;;;2661:4;2654:15;;;2708:4;2692:21;;2201:57;;2069:382;;;2575:13;2625:15;;;2661:4;2654:15;;;2708:4;2692:21;;2378:57;;2069:382;-1:-1:-1;2003:3:0;;;;:::i;:::-;;;;1965:497;;;-1:-1:-1;2479:12:0;1824:675;-1:-1:-1;;;1824:675:0:o;38795:321::-;38925:18;38931:2;38935:7;38925:5;:18::i;:::-;38976:54;39007:1;39011:2;39015:7;39024:5;38976:22;:54::i;:::-;38954:154;;;;-1:-1:-1;;;38954:154:0;;;;;;;:::i;42816:799::-;42971:4;-1:-1:-1;;;;;42992:13:0;;14355:19;:23;42988:620;;43028:72;;-1:-1:-1;;;43028:72:0;;-1:-1:-1;;;;;43028:36:0;;;;;:72;;10057:10;;43079:4;;43085:7;;43094:5;;43028:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43028:72:0;;;;;;;;-1:-1:-1;;43028:72:0;;;;;;;;;;;;:::i;:::-;;;43024:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43270:13:0;;43266:272;;43313:60;;-1:-1:-1;;;43313:60:0;;;;;;;:::i;43266:272::-;43488:6;43482:13;43473:6;43469:2;43465:15;43458:38;43024:529;-1:-1:-1;;;;;;43151:51:0;-1:-1:-1;;;43151:51:0;;-1:-1:-1;43144:58:0;;42988:620;-1:-1:-1;43592:4:0;42816:799;;;;;;:::o;39452:439::-;-1:-1:-1;;;;;39532:16:0;;39524:61;;;;-1:-1:-1;;;39524:61:0;;13576:2:1;39524:61:0;;;13558:21:1;;;13595:18;;;13588:30;13654:34;13634:18;;;13627:62;13706:18;;39524:61:0;13374:356:1;39524:61:0;37539:4;37563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37563:16:0;:30;39596:58;;;;-1:-1:-1;;;39596:58:0;;10033:2:1;39596:58:0;;;10015:21:1;10072:2;10052:18;;;10045:30;10111;10091:18;;;10084:58;10159:18;;39596:58:0;9831:352:1;39596:58:0;-1:-1:-1;;;;;39725:13:0;;;;;;:9;:13;;;;;:18;;39742:1;;39725:13;:18;;39742:1;;39725:18;:::i;:::-;;;;-1:-1:-1;;39754:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39754:21:0;-1:-1:-1;;;;;39754:21:0;;;;;;;;39793:33;;39754:16;;;39793:33;;39754:16;;39793:33;48799:21:::1;48724:104:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;2205:18;2197:6;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:691::-;3153:6;3161;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3278:9;3265:23;3307:18;3348:2;3340:6;3337:14;3334:34;;;3364:1;3361;3354:12;3334:34;3402:6;3391:9;3387:22;3377:32;;3447:7;3440:4;3436:2;3432:13;3428:27;3418:55;;3469:1;3466;3459:12;3418:55;3509:2;3496:16;3535:2;3527:6;3524:14;3521:34;;;3551:1;3548;3541:12;3521:34;3606:7;3599:4;3589:6;3586:1;3582:14;3578:2;3574:23;3570:34;3567:47;3564:67;;;3627:1;3624;3617:12;3564:67;3658:4;3650:13;;;;-1:-1:-1;3682:6:1;-1:-1:-1;3707:38:1;;3724:20;;;-1:-1:-1;3707:38:1;:::i;:::-;3697:48;;3060:691;;;;;:::o;3756:180::-;3815:6;3868:2;3856:9;3847:7;3843:23;3839:32;3836:52;;;3884:1;3881;3874:12;3836:52;-1:-1:-1;3907:23:1;;3756:180;-1:-1:-1;3756:180:1:o;3941:245::-;3999:6;4052:2;4040:9;4031:7;4027:23;4023:32;4020:52;;;4068:1;4065;4058:12;4020:52;4107:9;4094:23;4126:30;4150:5;4126:30;:::i;4191:249::-;4260:6;4313:2;4301:9;4292:7;4288:23;4284:32;4281:52;;;4329:1;4326;4319:12;4281:52;4361:9;4355:16;4380:30;4404:5;4380:30;:::i;4445:450::-;4514:6;4567:2;4555:9;4546:7;4542:23;4538:32;4535:52;;;4583:1;4580;4573:12;4535:52;4623:9;4610:23;4656:18;4648:6;4645:30;4642:50;;;4688:1;4685;4678:12;4642:50;4711:22;;4764:4;4756:13;;4752:27;-1:-1:-1;4742:55:1;;4793:1;4790;4783:12;4742:55;4816:73;4881:7;4876:2;4863:16;4858:2;4854;4850:11;4816:73;:::i;5085:182::-;5142:6;5195:2;5183:9;5174:7;5170:23;5166:32;5163:52;;;5211:1;5208;5201:12;5163:52;5234:27;5251:9;5234:27;:::i;5272:257::-;5313:3;5351:5;5345:12;5378:6;5373:3;5366:19;5394:63;5450:6;5443:4;5438:3;5434:14;5427:4;5420:5;5416:16;5394:63;:::i;:::-;5511:2;5490:15;-1:-1:-1;;5486:29:1;5477:39;;;;5518:4;5473:50;;5272:257;-1:-1:-1;;5272:257:1:o;5768:1527::-;5992:3;6030:6;6024:13;6056:4;6069:51;6113:6;6108:3;6103:2;6095:6;6091:15;6069:51;:::i;:::-;6183:13;;6142:16;;;;6205:55;6183:13;6142:16;6227:15;;;6205:55;:::i;:::-;6349:13;;6282:20;;;6322:1;;6409;6431:18;;;;6484;;;;6511:93;;6589:4;6579:8;6575:19;6563:31;;6511:93;6652:2;6642:8;6639:16;6619:18;6616:40;6613:167;;;-1:-1:-1;;;6679:33:1;;6735:4;6732:1;6725:15;6765:4;6686:3;6753:17;6613:167;6796:18;6823:110;;;;6947:1;6942:328;;;;6789:481;;6823:110;-1:-1:-1;;6858:24:1;;6844:39;;6903:20;;;;-1:-1:-1;6823:110:1;;6942:328;17030:1;17023:14;;;17067:4;17054:18;;7037:1;7051:169;7065:8;7062:1;7059:15;7051:169;;;7147:14;;7132:13;;;7125:37;7190:16;;;;7082:10;;7051:169;;;7055:3;;7251:8;7244:5;7240:20;7233:27;;6789:481;-1:-1:-1;7286:3:1;;5768:1527;-1:-1:-1;;;;;;;;;;;5768:1527:1:o;7508:488::-;-1:-1:-1;;;;;7777:15:1;;;7759:34;;7829:15;;7824:2;7809:18;;7802:43;7876:2;7861:18;;7854:34;;;7924:3;7919:2;7904:18;;7897:31;;;7702:4;;7945:45;;7970:19;;7962:6;7945:45;:::i;:::-;7937:53;7508:488;-1:-1:-1;;;;;;7508:488:1:o;8375:219::-;8524:2;8513:9;8506:21;8487:4;8544:44;8584:2;8573:9;8569:18;8561:6;8544:44;:::i;8599:414::-;8801:2;8783:21;;;8840:2;8820:18;;;8813:30;8879:34;8874:2;8859:18;;8852:62;-1:-1:-1;;;8945:2:1;8930:18;;8923:48;9003:3;8988:19;;8599:414::o;11713:410::-;11915:2;11897:21;;;11954:2;11934:18;;;11927:30;11993:34;11988:2;11973:18;;11966:62;-1:-1:-1;;;12059:2:1;12044:18;;12037:44;12113:3;12098:19;;11713:410::o;14835:356::-;15037:2;15019:21;;;15056:18;;;15049:30;15115:34;15110:2;15095:18;;15088:62;15182:2;15167:18;;14835:356::o;16014:413::-;16216:2;16198:21;;;16255:2;16235:18;;;16228:30;16294:34;16289:2;16274:18;;16267:62;-1:-1:-1;;;16360:2:1;16345:18;;16338:47;16417:3;16402:19;;16014:413::o;17083:128::-;17123:3;17154:1;17150:6;17147:1;17144:13;17141:39;;;17160:18;;:::i;:::-;-1:-1:-1;17196:9:1;;17083:128::o;17216:120::-;17256:1;17282;17272:35;;17287:18;;:::i;:::-;-1:-1:-1;17321:9:1;;17216:120::o;17341:168::-;17381:7;17447:1;17443;17439:6;17435:14;17432:1;17429:21;17424:1;17417:9;17410:17;17406:45;17403:71;;;17454:18;;:::i;:::-;-1:-1:-1;17494:9:1;;17341:168::o;17514:125::-;17554:4;17582:1;17579;17576:8;17573:34;;;17587:18;;:::i;:::-;-1:-1:-1;17624:9:1;;17514:125::o;17644:258::-;17716:1;17726:113;17740:6;17737:1;17734:13;17726:113;;;17816:11;;;17810:18;17797:11;;;17790:39;17762:2;17755:10;17726:113;;;17857:6;17854:1;17851:13;17848:48;;;-1:-1:-1;;17892:1:1;17874:16;;17867:27;17644:258::o;17907:380::-;17986:1;17982:12;;;;18029;;;18050:61;;18104:4;18096:6;18092:17;18082:27;;18050:61;18157:2;18149:6;18146:14;18126:18;18123:38;18120:161;;;18203:10;18198:3;18194:20;18191:1;18184:31;18238:4;18235:1;18228:15;18266:4;18263:1;18256:15;18120:161;;17907:380;;;:::o;18292:135::-;18331:3;-1:-1:-1;;18352:17:1;;18349:43;;;18372:18;;:::i;:::-;-1:-1:-1;18419:1:1;18408:13;;18292:135::o;18432:112::-;18464:1;18490;18480:35;;18495:18;;:::i;:::-;-1:-1:-1;18529:9:1;;18432:112::o;18549:127::-;18610:10;18605:3;18601:20;18598:1;18591:31;18641:4;18638:1;18631:15;18665:4;18662:1;18655:15;18681:127;18742:10;18737:3;18733:20;18730:1;18723:31;18773:4;18770:1;18763:15;18797:4;18794:1;18787:15;18813:127;18874:10;18869:3;18865:20;18862:1;18855:31;18905:4;18902:1;18895:15;18929:4;18926:1;18919:15;18945:127;19006:10;19001:3;18997:20;18994:1;18987:31;19037:4;19034:1;19027:15;19061:4;19058:1;19051:15;19077:131;-1:-1:-1;;;;;;19151:32:1;;19141:43;;19131:71;;19198:1;19195;19188:12

Swarm Source

ipfs://5ab017bbae38d713e81594c1b0877548285cd78cffb183d59b7924b3b79af33d
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.