ETH Price: $2,684.38 (-2.30%)

Token

Mr Idiot (MRI)
 

Overview

Max Total Supply

377 MRI

Holders

73

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MRI
0xaa8167de65ac8951492fc20b43929a2ba085c8a7
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:
MrIdiot

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-01
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

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

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: contracts/contract.sol



pragma solidity ^0.8.0;




contract MrIdiot is ERC721A, Ownable {
    enum Status {
        Pending,
        Freemint,
        Publicmint1,
        Publicmint2,
        Publicmint3
    }

    Status public status;
    string public baseURI;
    bytes32 public root;
    uint256 public tokensReserved;
    uint256 public immutable maxPresaleMint;
    uint256 public immutable maxPublicMint;
    uint256 public immutable maxSupply;
    uint256 public immutable reserveAmount;
    uint256 public max_mint_allowed = 3;
    uint256 public freemintprice = 0;
    uint256 public publicmint1price = 0.01 ether;
    uint256 public publicmint2price = 0.02 ether;
    uint256 public publicmint3price = 0.03 ether;
    uint256 public freemint = 1000;
    uint256 public publicmint1 = 2000; 
    uint256 public publicmint2 = 1000;
    uint256 public publicmint3 = 800;


    event Minted(address minter, uint256 amount);
    event StatusChanged(Status status);
    event RootChanged(bytes32 root);
    event ReservedToken(address minter, address recipient, uint256 amount);
    event BaseURIChanged(string newBaseURI);

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Contract is not allowed to mint.");
        _;
    }

    constructor(
        string memory initBaseURI,
        uint256 _maxPresaleMint,
        uint256 _maxPublicMint,
        uint256 _maxSupply,
        uint256 _reserveAmount
    )
     ERC721A(
            "Mr Idiot",
            "MRI",
            _maxPresaleMint > _maxPublicMint ? _maxPresaleMint : _maxPublicMint,
            _maxSupply
        )
    {
        baseURI = initBaseURI;
        maxPresaleMint = _maxPresaleMint;
        maxPublicMint = _maxPublicMint;
        maxSupply = _maxSupply;
        reserveAmount = _reserveAmount;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        string memory uri = super.tokenURI(tokenId);
        return
            bytes(uri).length > 0 ? string(abi.encodePacked(uri, ".json")) : "";
    }

    function reserve(address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "Zero address");
        require(amount > 0, "Invalid amount");
        require(totalSupply() + amount <= collectionSize,"Max supply exceeded");
        require(tokensReserved + amount <= reserveAmount,"Max reserve amount exceeded");

        uint256 multiple = amount / maxBatchSize;
        for (uint256 i = 0; i < multiple; i++) {
            _safeMint(recipient, maxBatchSize);
        }
        uint256 remainder = amount % maxBatchSize;
        if (remainder != 0) {
            _safeMint(recipient, remainder);
        }
        tokensReserved += amount;
        emit ReservedToken(msg.sender, recipient, amount);
    }

    function Freemint(uint256 amount)
        external
        payable
        callerIsUser
    {
        require(status == Status.Freemint, "Freemint is not active.");
        require(numberMinted(msg.sender) + amount <= max_mint_allowed,"Max mint amount per wallet exceeded." );
        require(totalSupply() + amount + reserveAmount - tokensReserved <= collectionSize, "Max supply exceeded.");
        _safeMint(msg.sender, amount);
        refundIfOver(freemintprice * amount);
        emit Minted(msg.sender, amount);
    }

    function Publicmint1(uint256 amount) external payable callerIsUser {
        require(status == Status.Publicmint1, "Public sale is not active.");
        require(totalSupply() + amount + reserveAmount - tokensReserved <= collectionSize, "Max supply exceeded.");
        _safeMint(msg.sender, amount);
        refundIfOver(publicmint1price * amount);
        emit Minted(msg.sender, amount);
    }

     function Publicmint2(uint256 amount) external payable callerIsUser {
        require(status == Status.Publicmint2, "Public sale is not active.");
        require(totalSupply() + amount + reserveAmount - tokensReserved <= collectionSize, "Max supply exceeded.");
        _safeMint(msg.sender, amount);
        refundIfOver(publicmint2price * amount);
        emit Minted(msg.sender, amount);
    }

     function Publicmint3(uint256 amount) external payable callerIsUser {
        require(status == Status.Publicmint3, "Public sale is not active.");
        require(totalSupply() + amount + reserveAmount - tokensReserved <= collectionSize, "Max supply exceeded.");
        _safeMint(msg.sender, amount);
        refundIfOver(publicmint3price * amount);
        emit Minted(msg.sender, amount);
    }

   

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

  
    function changeMaxMintAllowed(uint _maxMintAllowed) external onlyOwner {
        max_mint_allowed = _maxMintAllowed;
    }

    function changefreemintPrice(uint _freemintprice) external onlyOwner {
        freemintprice = _freemintprice;
    }


     function changepublicmint1price(uint _publicmint1price) external onlyOwner {
        publicmint1price = _publicmint1price;
    }
    function changepublicmint2price(uint _publicmint2price) external onlyOwner {
        publicmint2price = _publicmint2price;
    }
     function changepublicmint3price(uint _publicmint3price) external onlyOwner {
        publicmint3price = _publicmint3price;
    }


    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

    function setStatus(Status _status) external onlyOwner {
        status = _status;
        emit StatusChanged(_status);
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
        emit RootChanged(_root);
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
    
    function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success, "Withdrawal of funds failed");
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"uint256","name":"_maxPresaleMint","type":"uint256"},{"internalType":"uint256","name":"_maxPublicMint","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReservedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"RootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum MrIdiot.Status","name":"status","type":"uint8"}],"name":"StatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Publicmint1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Publicmint2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Publicmint3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAllowed","type":"uint256"}],"name":"changeMaxMintAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freemintprice","type":"uint256"}],"name":"changefreemintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicmint1price","type":"uint256"}],"name":"changepublicmint1price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicmint2price","type":"uint256"}],"name":"changepublicmint2price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicmint3price","type":"uint256"}],"name":"changepublicmint3price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freemint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemintprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint_allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicmint1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicmint1price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicmint2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicmint2price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicmint3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicmint3price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MrIdiot.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum MrIdiot.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6101406040526000805560006007556003600c556000600d55662386f26fc10000600e5566470de4df820000600f55666a94d74f4300006010556103e86011556107d06012556103e86013556103206014553480156200005e57600080fd5b50604051620037cf380380620037cf833981016040819052620000819162000266565b60405180604001604052806008815260200167135c8812591a5bdd60c21b815250604051806040016040528060038152602001624d524960e81b815250848611620000cd5784620000cf565b855b84600081116200013d5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200019f5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000134565b6001620001ad8582620003f7565b506002620001bc8482620003f7565b5060a09190915260805250620001d4905033620001fe565b6009620001e28682620003f7565b5060c09390935260e091909152610100526101205250620004c3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600080600080600060a086880312156200027f57600080fd5b85516001600160401b03808211156200029757600080fd5b818801915088601f830112620002ac57600080fd5b815181811115620002c157620002c162000250565b604051601f8201601f19908116603f01168101908382118183101715620002ec57620002ec62000250565b81604052828152602093508b848487010111156200030957600080fd5b600091505b828210156200032d57848201840151818301850152908301906200030e565b828211156200033f5760008484830101525b928a015160408b015160608c01516080909c0151949d919c509a99509297509195505050505050565b600181811c908216806200037d57607f821691505b6020821081036200039e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f257600081815260208120601f850160051c81016020861015620003cd5750805b601f850160051c820191505b81811015620003ee57828155600101620003d9565b5050505b505050565b81516001600160401b0381111562000413576200041362000250565b6200042b8162000424845462000368565b84620003a4565b602080601f8311600181146200046357600084156200044a5750858301515b600019600386901b1c1916600185901b178555620003ee565b600085815260208120601f198616915b82811015620004945788860151825594840194600190910190840162000473565b5085821015620004b35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e051610100516101205161324c62000583600039600081816105a601528181610d2001528181611118015281816112fb0152818161173501526119fa015260006108820152600061082e0152600061078e0152600081816117b7015281816117ef0152818161182d01528181612294015281816122be0152612721015260008181610cfc015281816110f4015281816112d7015281816116bc015281816119d60152818161209901526120cb015261324c6000f3fe6080604052600436106103355760003560e01c80636c0360eb116101ab578063cabadaa0116100f7578063dc33e68111610095578063ebf0c7171161006f578063ebf0c7171461098c578063f2fde38b146109a2578063f9cb63ac146109c2578063fbebc5b8146109d857600080fd5b8063dc33e6811461090d578063e731aeaa1461092d578063e985e9c51461094357600080fd5b8063d708fef7116100d1578063d708fef7146108a4578063d7224ba0146108c4578063d984fed8146108da578063dab5f340146108ed57600080fd5b8063cabadaa01461081c578063cc47a40b14610850578063d5abeb011461087057600080fd5b80639ad91d7011610164578063b88d4fde1161013e578063b88d4fde146107b0578063ba0c60c9146107d0578063c87b56dd146107e6578063c8c2b4721461080657600080fd5b80639ad91d7014610746578063a22cb4651461075c578063b45762781461077c57600080fd5b80636c0360eb1461067b57806370a0823114610690578063715018a6146106b05780638da5cb5b146106c55780639231ab2a146106e357806395d89b411461073157600080fd5b806331bc5ebd116102855780634b09b72a11610223578063549df2df116101fd578063549df2df1461060857806355f804b3146106285780636352211e1461064857806364d8a4491461066857600080fd5b80634b09b72a146105945780634d35279d146105c85780634f6ccce7146105e857600080fd5b80633ccfd60b1161025f5780633ccfd60b1461054357806342842e0e1461054b578063433adb051461056b5780634a5cd5f31461058157600080fd5b806331bc5ebd14610501578063354163fa1461051757806338ae43161461052d57600080fd5b80631971e59c116102f25780632d20fb60116102cc5780632d20fb60146104815780632e49d78b146104a15780632f28ea0a146104c15780632f745c59146104e157600080fd5b80631971e59c1461041d578063200d2ed21461043357806323b872dd1461046157600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c95780630c6dd1b6146103eb57806318160ddd146103fe575b600080fd5b34801561034657600080fd5b5061035a610355366004612a65565b6109f8565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a65565b6040516103669190612ada565b34801561039d57600080fd5b506103b16103ac366004612aed565b610af7565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e4366004612b22565b610b87565b005b6103e96103f9366004612aed565b610c9e565b34801561040a57600080fd5b506000545b604051908152602001610366565b34801561042957600080fd5b5061040f600e5481565b34801561043f57600080fd5b5060085461045490600160a01b900460ff1681565b6040516103669190612b62565b34801561046d57600080fd5b506103e961047c366004612b8a565b610de2565b34801561048d57600080fd5b506103e961049c366004612aed565b610ded565b3480156104ad57600080fd5b506103e96104bc366004612bc6565b610e01565b3480156104cd57600080fd5b506103e96104dc366004612aed565b610e62565b3480156104ed57600080fd5b5061040f6104fc366004612b22565b610e6f565b34801561050d57600080fd5b5061040f600d5481565b34801561052357600080fd5b5061040f600f5481565b34801561053957600080fd5b5061040f60135481565b6103e9610fdb565b34801561055757600080fd5b506103e9610566366004612b8a565b61107b565b34801561057757600080fd5b5061040f600b5481565b6103e961058f366004612aed565b611096565b3480156105a057600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d457600080fd5b506103e96105e3366004612aed565b611198565b3480156105f457600080fd5b5061040f610603366004612aed565b6111a5565b34801561061457600080fd5b506103e9610623366004612aed565b611207565b34801561063457600080fd5b506103e9610643366004612be7565b611214565b34801561065457600080fd5b506103b1610663366004612aed565b611267565b6103e9610676366004612aed565b611279565b34801561068757600080fd5b5061038461137b565b34801561069c57600080fd5b5061040f6106ab366004612c59565b611409565b3480156106bc57600080fd5b506103e961149a565b3480156106d157600080fd5b506008546001600160a01b03166103b1565b3480156106ef57600080fd5b506107036106fe366004612aed565b6114ae565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610366565b34801561073d57600080fd5b506103846114cb565b34801561075257600080fd5b5061040f60145481565b34801561076857600080fd5b506103e9610777366004612c74565b6114da565b34801561078857600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156107bc57600080fd5b506103e96107cb366004612cc6565b61159e565b3480156107dc57600080fd5b5061040f600c5481565b3480156107f257600080fd5b50610384610801366004612aed565b6115d7565b34801561081257600080fd5b5061040f60125481565b34801561082857600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561085c57600080fd5b506103e961086b366004612b22565b61162c565b34801561087c57600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156108b057600080fd5b506103e96108bf366004612aed565b6118ca565b3480156108d057600080fd5b5061040f60075481565b6103e96108e8366004612aed565b6118d7565b3480156108f957600080fd5b506103e9610908366004612aed565b611a7a565b34801561091957600080fd5b5061040f610928366004612c59565b611ab7565b34801561093957600080fd5b5061040f60105481565b34801561094f57600080fd5b5061035a61095e366004612da2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561099857600080fd5b5061040f600a5481565b3480156109ae57600080fd5b506103e96109bd366004612c59565b611ac2565b3480156109ce57600080fd5b5061040f60115481565b3480156109e457600080fd5b506103e96109f3366004612aed565b611b38565b60006001600160e01b031982166380ac58cd60e01b1480610a2957506001600160e01b03198216635b5e139f60e01b145b80610a4457506001600160e01b0319821663780e9d6360e01b145b80610a5f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610a7490612dd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa090612dd5565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b5050505050905090565b6000610b04826000541190565b610b6b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610b9282611267565b9050806001600160a01b0316836001600160a01b031603610c005760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b62565b336001600160a01b0382161480610c1c5750610c1c813361095e565b610c8e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b62565b610c99838383611b45565b505050565b323314610cbd5760405162461bcd60e51b8152600401610b6290612e0f565b6003600854600160a01b900460ff166004811115610cdd57610cdd612b4c565b14610cfa5760405162461bcd60e51b8152600401610b6290612e44565b7f0000000000000000000000000000000000000000000000000000000000000000600b547f000000000000000000000000000000000000000000000000000000000000000083610d4960005490565b610d539190612e91565b610d5d9190612e91565b610d679190612ea9565b1115610d855760405162461bcd60e51b8152600401610b6290612ec0565b610d8f3382611ba1565b610da581600f54610da09190612eee565b611bbf565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe91015b60405180910390a150565b610c99838383611c46565b610df5611fce565b610dfe81612028565b50565b610e09611fce565b6008805482919060ff60a01b1916600160a01b836004811115610e2e57610e2e612b4c565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610dd79190612b62565b610e6a611fce565b600e55565b6000610e7a83611409565b8210610ed35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b62565b600080549080805b83811015610f7b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f2e57805192505b876001600160a01b0316836001600160a01b031603610f6857868403610f5a57509350610a5f92505050565b83610f6481612f0d565b9450505b5080610f7381612f0d565b915050610edb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b62565b610fe3611fce565b604051600090339047908381818185875af1925050503d8060008114611025576040519150601f19603f3d011682016040523d82523d6000602084013e61102a565b606091505b5050905080610dfe5760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c206f662066756e6473206661696c65640000000000006044820152606401610b62565b610c998383836040518060200160405280600081525061159e565b3233146110b55760405162461bcd60e51b8152600401610b6290612e0f565b6004600854600160a01b900460ff1660048111156110d5576110d5612b4c565b146110f25760405162461bcd60e51b8152600401610b6290612e44565b7f0000000000000000000000000000000000000000000000000000000000000000600b547f00000000000000000000000000000000000000000000000000000000000000008361114160005490565b61114b9190612e91565b6111559190612e91565b61115f9190612ea9565b111561117d5760405162461bcd60e51b8152600401610b6290612ec0565b6111873382611ba1565b610da581601054610da09190612eee565b6111a0611fce565b601055565b6000805482106112035760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b62565b5090565b61120f611fce565b600c55565b61121c611fce565b6009611229828483612f6c565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6828260405161125b92919061302d565b60405180910390a15050565b600061127282612212565b5192915050565b3233146112985760405162461bcd60e51b8152600401610b6290612e0f565b6002600854600160a01b900460ff1660048111156112b8576112b8612b4c565b146112d55760405162461bcd60e51b8152600401610b6290612e44565b7f0000000000000000000000000000000000000000000000000000000000000000600b547f00000000000000000000000000000000000000000000000000000000000000008361132460005490565b61132e9190612e91565b6113389190612e91565b6113429190612ea9565b11156113605760405162461bcd60e51b8152600401610b6290612ec0565b61136a3382611ba1565b610da581600e54610da09190612eee565b6009805461138890612dd5565b80601f01602080910402602001604051908101604052809291908181526020018280546113b490612dd5565b80156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b505050505081565b60006001600160a01b0382166114755760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b62565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6114a2611fce565b6114ac60006123bc565b565b6040805180820190915260008082526020820152610a5f82612212565b606060028054610a7490612dd5565b336001600160a01b038316036115325760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b62565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115a9848484611c46565b6115b58484848461240e565b6115d15760405162461bcd60e51b8152600401610b629061305c565b50505050565b606060006115e483612510565b905060008151116116045760405180602001604052806000815250611625565b8060405160200161161591906130af565b6040516020818303038152906040525b9392505050565b611634611fce565b6001600160a01b0382166116795760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401610b62565b600081116116ba5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610b62565b7f0000000000000000000000000000000000000000000000000000000000000000816116e560005490565b6116ef9190612e91565b11156117335760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610b62565b7f000000000000000000000000000000000000000000000000000000000000000081600b546117629190612e91565b11156117b05760405162461bcd60e51b815260206004820152601b60248201527f4d6178207265736572766520616d6f756e7420657863656564656400000000006044820152606401610b62565b60006117dc7f0000000000000000000000000000000000000000000000000000000000000000836130ee565b905060005b8181101561182557611813847f0000000000000000000000000000000000000000000000000000000000000000611ba1565b8061181d81612f0d565b9150506117e1565b5060006118527f000000000000000000000000000000000000000000000000000000000000000084613102565b90508015611864576118648482611ba1565b82600b60008282546118769190612e91565b9091555050604080513381526001600160a01b03861660208201529081018490527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600160405180910390a150505050565b6118d2611fce565b600f55565b3233146118f65760405162461bcd60e51b8152600401610b6290612e0f565b6001600854600160a01b900460ff16600481111561191657611916612b4c565b146119635760405162461bcd60e51b815260206004820152601760248201527f467265656d696e74206973206e6f74206163746976652e0000000000000000006044820152606401610b62565b600c548161197033611ab7565b61197a9190612e91565b11156119d45760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722077616c6c65742065786365656044820152633232b21760e11b6064820152608401610b62565b7f0000000000000000000000000000000000000000000000000000000000000000600b547f000000000000000000000000000000000000000000000000000000000000000083611a2360005490565b611a2d9190612e91565b611a379190612e91565b611a419190612ea9565b1115611a5f5760405162461bcd60e51b8152600401610b6290612ec0565b611a693382611ba1565b610da581600d54610da09190612eee565b611a82611fce565b600a8190556040518181527f545a99af2f74d472d3ceb11889ff68b31a1a02f48a9431f04cda814892ee57e290602001610dd7565b6000610a5f826125c6565b611aca611fce565b6001600160a01b038116611b2f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b62565b610dfe816123bc565b611b40611fce565b600d55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611bbb828260405180602001604052806000815250612664565b5050565b80341015611c085760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610b62565b80341115610dfe57336108fc611c1e8334612ea9565b6040518115909202916000818181858888f19350505050158015611bbb573d6000803e3d6000fd5b6000611c5182612212565b80519091506000906001600160a01b0316336001600160a01b03161480611c88575033611c7d84610af7565b6001600160a01b0316145b80611c9a57508151611c9a903361095e565b905080611d045760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b62565b846001600160a01b031682600001516001600160a01b031614611d785760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b62565b6001600160a01b038416611ddc5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b62565b611dec6000848460000151611b45565b6001600160a01b0385166000908152600460205260408120805460019290611e1e9084906001600160801b0316613116565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611e6a9185911661313e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611ef2846001612e91565b6000818152600360205260409020549091506001600160a01b0316611f8457611f1c816000541190565b15611f845760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146114ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b62565b600754816120785760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b62565b600060016120868484612e91565b6120909190612ea9565b90506120bd60017f0000000000000000000000000000000000000000000000000000000000000000612ea9565b8111156120f2576120ef60017f0000000000000000000000000000000000000000000000000000000000000000612ea9565b90505b6120fd816000541190565b6121585760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b62565b815b8181116121fe576000818152600360205260409020546001600160a01b03166121ec57600061218882612212565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806121f681612f0d565b91505061215a565b5061220a816001612e91565b600755505050565b6040805180820190915260008082526020820152612231826000541190565b6122905760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b62565b60007f000000000000000000000000000000000000000000000000000000000000000083106122f1576122e37f000000000000000000000000000000000000000000000000000000000000000084612ea9565b6122ee906001612e91565b90505b825b81811061235b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561234857949350505050565b508061235381613169565b9150506122f3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b62565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561250457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612452903390899088908890600401613180565b6020604051808303816000875af192505050801561248d575060408051601f3d908101601f1916820190925261248a918101906131bd565b60015b6124ea573d8080156124bb576040519150601f19603f3d011682016040523d82523d6000602084013e6124c0565b606091505b5080516000036124e25760405162461bcd60e51b8152600401610b629061305c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612508565b5060015b949350505050565b606061251d826000541190565b6125815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b62565b600061258b61293f565b905060008151116125ab5760405180602001604052806000815250611625565b806125b58461294e565b6040516020016116159291906131da565b60006001600160a01b0382166126385760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610b62565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166126c75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b62565b6126d2816000541190565b1561271f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b62565b7f000000000000000000000000000000000000000000000000000000000000000083111561279a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b62565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127f690879061313e565b6001600160801b03168152602001858360200151612814919061313e565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156129345760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128f8600088848861240e565b6129145760405162461bcd60e51b8152600401610b629061305c565b8161291e81612f0d565b925050808061292c90612f0d565b9150506128ab565b506000819055611fc6565b606060098054610a7490612dd5565b6060816000036129755750506040805180820190915260018152600360fc1b602082015290565b8160005b811561299f578061298981612f0d565b91506129989050600a836130ee565b9150612979565b60008167ffffffffffffffff8111156129ba576129ba612cb0565b6040519080825280601f01601f1916602001820160405280156129e4576020820181803683370190505b5090505b8415612508576129f9600183612ea9565b9150612a06600a86613102565b612a11906030612e91565b60f81b818381518110612a2657612a26613200565b60200101906001600160f81b031916908160001a905350612a48600a866130ee565b94506129e8565b6001600160e01b031981168114610dfe57600080fd5b600060208284031215612a7757600080fd5b813561162581612a4f565b60005b83811015612a9d578181015183820152602001612a85565b838111156115d15750506000910152565b60008151808452612ac6816020860160208601612a82565b601f01601f19169290920160200192915050565b6020815260006116256020830184612aae565b600060208284031215612aff57600080fd5b5035919050565b80356001600160a01b0381168114612b1d57600080fd5b919050565b60008060408385031215612b3557600080fd5b612b3e83612b06565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6020810160058310612b8457634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215612b9f57600080fd5b612ba884612b06565b9250612bb660208501612b06565b9150604084013590509250925092565b600060208284031215612bd857600080fd5b81356005811061162557600080fd5b60008060208385031215612bfa57600080fd5b823567ffffffffffffffff80821115612c1257600080fd5b818501915085601f830112612c2657600080fd5b813581811115612c3557600080fd5b866020828501011115612c4757600080fd5b60209290920196919550909350505050565b600060208284031215612c6b57600080fd5b61162582612b06565b60008060408385031215612c8757600080fd5b612c9083612b06565b915060208301358015158114612ca557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612cdc57600080fd5b612ce585612b06565b9350612cf360208601612b06565b925060408501359150606085013567ffffffffffffffff80821115612d1757600080fd5b818701915087601f830112612d2b57600080fd5b813581811115612d3d57612d3d612cb0565b604051601f8201601f19908116603f01168101908382118183101715612d6557612d65612cb0565b816040528281528a6020848701011115612d7e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612db557600080fd5b612dbe83612b06565b9150612dcc60208401612b06565b90509250929050565b600181811c90821680612de957607f821691505b602082108103612e0957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e604082015260600190565b6020808252601a908201527f5075626c69632073616c65206973206e6f74206163746976652e000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612ea457612ea4612e7b565b500190565b600082821015612ebb57612ebb612e7b565b500390565b60208082526014908201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b604082015260600190565b6000816000190483118215151615612f0857612f08612e7b565b500290565b600060018201612f1f57612f1f612e7b565b5060010190565b601f821115610c9957600081815260208120601f850160051c81016020861015612f4d5750805b601f850160051c820191505b81811015611fc657828155600101612f59565b67ffffffffffffffff831115612f8457612f84612cb0565b612f9883612f928354612dd5565b83612f26565b6000601f841160018114612fcc5760008515612fb45750838201355b600019600387901b1c1916600186901b178355613026565b600083815260209020601f19861690835b82811015612ffd5786850135825560209485019460019092019101612fdd565b508682101561301a5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082516130c1818460208701612a82565b64173539b7b760d91b920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b6000826130fd576130fd6130d8565b500490565b600082613111576131116130d8565b500690565b60006001600160801b038381169083168181101561313657613136612e7b565b039392505050565b60006001600160801b0380831681851680830382111561316057613160612e7b565b01949350505050565b60008161317857613178612e7b565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131b390830184612aae565b9695505050505050565b6000602082840312156131cf57600080fd5b815161162581612a4f565b600083516131ec818460208801612a82565b835190830190613160818360208801612a82565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202a7703300c9e42c03a70ad5a34c1bf8370be581fc2eb40351911f5fb9a3f228364736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d656e65364d45583632694862537a5066534e6b4168636362666e534268596750767777736565666a6d3734782f00000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c80636c0360eb116101ab578063cabadaa0116100f7578063dc33e68111610095578063ebf0c7171161006f578063ebf0c7171461098c578063f2fde38b146109a2578063f9cb63ac146109c2578063fbebc5b8146109d857600080fd5b8063dc33e6811461090d578063e731aeaa1461092d578063e985e9c51461094357600080fd5b8063d708fef7116100d1578063d708fef7146108a4578063d7224ba0146108c4578063d984fed8146108da578063dab5f340146108ed57600080fd5b8063cabadaa01461081c578063cc47a40b14610850578063d5abeb011461087057600080fd5b80639ad91d7011610164578063b88d4fde1161013e578063b88d4fde146107b0578063ba0c60c9146107d0578063c87b56dd146107e6578063c8c2b4721461080657600080fd5b80639ad91d7014610746578063a22cb4651461075c578063b45762781461077c57600080fd5b80636c0360eb1461067b57806370a0823114610690578063715018a6146106b05780638da5cb5b146106c55780639231ab2a146106e357806395d89b411461073157600080fd5b806331bc5ebd116102855780634b09b72a11610223578063549df2df116101fd578063549df2df1461060857806355f804b3146106285780636352211e1461064857806364d8a4491461066857600080fd5b80634b09b72a146105945780634d35279d146105c85780634f6ccce7146105e857600080fd5b80633ccfd60b1161025f5780633ccfd60b1461054357806342842e0e1461054b578063433adb051461056b5780634a5cd5f31461058157600080fd5b806331bc5ebd14610501578063354163fa1461051757806338ae43161461052d57600080fd5b80631971e59c116102f25780632d20fb60116102cc5780632d20fb60146104815780632e49d78b146104a15780632f28ea0a146104c15780632f745c59146104e157600080fd5b80631971e59c1461041d578063200d2ed21461043357806323b872dd1461046157600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c95780630c6dd1b6146103eb57806318160ddd146103fe575b600080fd5b34801561034657600080fd5b5061035a610355366004612a65565b6109f8565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a65565b6040516103669190612ada565b34801561039d57600080fd5b506103b16103ac366004612aed565b610af7565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e4366004612b22565b610b87565b005b6103e96103f9366004612aed565b610c9e565b34801561040a57600080fd5b506000545b604051908152602001610366565b34801561042957600080fd5b5061040f600e5481565b34801561043f57600080fd5b5060085461045490600160a01b900460ff1681565b6040516103669190612b62565b34801561046d57600080fd5b506103e961047c366004612b8a565b610de2565b34801561048d57600080fd5b506103e961049c366004612aed565b610ded565b3480156104ad57600080fd5b506103e96104bc366004612bc6565b610e01565b3480156104cd57600080fd5b506103e96104dc366004612aed565b610e62565b3480156104ed57600080fd5b5061040f6104fc366004612b22565b610e6f565b34801561050d57600080fd5b5061040f600d5481565b34801561052357600080fd5b5061040f600f5481565b34801561053957600080fd5b5061040f60135481565b6103e9610fdb565b34801561055757600080fd5b506103e9610566366004612b8a565b61107b565b34801561057757600080fd5b5061040f600b5481565b6103e961058f366004612aed565b611096565b3480156105a057600080fd5b5061040f7f00000000000000000000000000000000000000000000000000000000000000c881565b3480156105d457600080fd5b506103e96105e3366004612aed565b611198565b3480156105f457600080fd5b5061040f610603366004612aed565b6111a5565b34801561061457600080fd5b506103e9610623366004612aed565b611207565b34801561063457600080fd5b506103e9610643366004612be7565b611214565b34801561065457600080fd5b506103b1610663366004612aed565b611267565b6103e9610676366004612aed565b611279565b34801561068757600080fd5b5061038461137b565b34801561069c57600080fd5b5061040f6106ab366004612c59565b611409565b3480156106bc57600080fd5b506103e961149a565b3480156106d157600080fd5b506008546001600160a01b03166103b1565b3480156106ef57600080fd5b506107036106fe366004612aed565b6114ae565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610366565b34801561073d57600080fd5b506103846114cb565b34801561075257600080fd5b5061040f60145481565b34801561076857600080fd5b506103e9610777366004612c74565b6114da565b34801561078857600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000000381565b3480156107bc57600080fd5b506103e96107cb366004612cc6565b61159e565b3480156107dc57600080fd5b5061040f600c5481565b3480156107f257600080fd5b50610384610801366004612aed565b6115d7565b34801561081257600080fd5b5061040f60125481565b34801561082857600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000000381565b34801561085c57600080fd5b506103e961086b366004612b22565b61162c565b34801561087c57600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000138881565b3480156108b057600080fd5b506103e96108bf366004612aed565b6118ca565b3480156108d057600080fd5b5061040f60075481565b6103e96108e8366004612aed565b6118d7565b3480156108f957600080fd5b506103e9610908366004612aed565b611a7a565b34801561091957600080fd5b5061040f610928366004612c59565b611ab7565b34801561093957600080fd5b5061040f60105481565b34801561094f57600080fd5b5061035a61095e366004612da2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561099857600080fd5b5061040f600a5481565b3480156109ae57600080fd5b506103e96109bd366004612c59565b611ac2565b3480156109ce57600080fd5b5061040f60115481565b3480156109e457600080fd5b506103e96109f3366004612aed565b611b38565b60006001600160e01b031982166380ac58cd60e01b1480610a2957506001600160e01b03198216635b5e139f60e01b145b80610a4457506001600160e01b0319821663780e9d6360e01b145b80610a5f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610a7490612dd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa090612dd5565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b5050505050905090565b6000610b04826000541190565b610b6b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610b9282611267565b9050806001600160a01b0316836001600160a01b031603610c005760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b62565b336001600160a01b0382161480610c1c5750610c1c813361095e565b610c8e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b62565b610c99838383611b45565b505050565b323314610cbd5760405162461bcd60e51b8152600401610b6290612e0f565b6003600854600160a01b900460ff166004811115610cdd57610cdd612b4c565b14610cfa5760405162461bcd60e51b8152600401610b6290612e44565b7f0000000000000000000000000000000000000000000000000000000000001388600b547f00000000000000000000000000000000000000000000000000000000000000c883610d4960005490565b610d539190612e91565b610d5d9190612e91565b610d679190612ea9565b1115610d855760405162461bcd60e51b8152600401610b6290612ec0565b610d8f3382611ba1565b610da581600f54610da09190612eee565b611bbf565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe91015b60405180910390a150565b610c99838383611c46565b610df5611fce565b610dfe81612028565b50565b610e09611fce565b6008805482919060ff60a01b1916600160a01b836004811115610e2e57610e2e612b4c565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610dd79190612b62565b610e6a611fce565b600e55565b6000610e7a83611409565b8210610ed35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b62565b600080549080805b83811015610f7b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f2e57805192505b876001600160a01b0316836001600160a01b031603610f6857868403610f5a57509350610a5f92505050565b83610f6481612f0d565b9450505b5080610f7381612f0d565b915050610edb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b62565b610fe3611fce565b604051600090339047908381818185875af1925050503d8060008114611025576040519150601f19603f3d011682016040523d82523d6000602084013e61102a565b606091505b5050905080610dfe5760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c206f662066756e6473206661696c65640000000000006044820152606401610b62565b610c998383836040518060200160405280600081525061159e565b3233146110b55760405162461bcd60e51b8152600401610b6290612e0f565b6004600854600160a01b900460ff1660048111156110d5576110d5612b4c565b146110f25760405162461bcd60e51b8152600401610b6290612e44565b7f0000000000000000000000000000000000000000000000000000000000001388600b547f00000000000000000000000000000000000000000000000000000000000000c88361114160005490565b61114b9190612e91565b6111559190612e91565b61115f9190612ea9565b111561117d5760405162461bcd60e51b8152600401610b6290612ec0565b6111873382611ba1565b610da581601054610da09190612eee565b6111a0611fce565b601055565b6000805482106112035760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b62565b5090565b61120f611fce565b600c55565b61121c611fce565b6009611229828483612f6c565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6828260405161125b92919061302d565b60405180910390a15050565b600061127282612212565b5192915050565b3233146112985760405162461bcd60e51b8152600401610b6290612e0f565b6002600854600160a01b900460ff1660048111156112b8576112b8612b4c565b146112d55760405162461bcd60e51b8152600401610b6290612e44565b7f0000000000000000000000000000000000000000000000000000000000001388600b547f00000000000000000000000000000000000000000000000000000000000000c88361132460005490565b61132e9190612e91565b6113389190612e91565b6113429190612ea9565b11156113605760405162461bcd60e51b8152600401610b6290612ec0565b61136a3382611ba1565b610da581600e54610da09190612eee565b6009805461138890612dd5565b80601f01602080910402602001604051908101604052809291908181526020018280546113b490612dd5565b80156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b505050505081565b60006001600160a01b0382166114755760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b62565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6114a2611fce565b6114ac60006123bc565b565b6040805180820190915260008082526020820152610a5f82612212565b606060028054610a7490612dd5565b336001600160a01b038316036115325760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b62565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115a9848484611c46565b6115b58484848461240e565b6115d15760405162461bcd60e51b8152600401610b629061305c565b50505050565b606060006115e483612510565b905060008151116116045760405180602001604052806000815250611625565b8060405160200161161591906130af565b6040516020818303038152906040525b9392505050565b611634611fce565b6001600160a01b0382166116795760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401610b62565b600081116116ba5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610b62565b7f0000000000000000000000000000000000000000000000000000000000001388816116e560005490565b6116ef9190612e91565b11156117335760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610b62565b7f00000000000000000000000000000000000000000000000000000000000000c881600b546117629190612e91565b11156117b05760405162461bcd60e51b815260206004820152601b60248201527f4d6178207265736572766520616d6f756e7420657863656564656400000000006044820152606401610b62565b60006117dc7f0000000000000000000000000000000000000000000000000000000000000003836130ee565b905060005b8181101561182557611813847f0000000000000000000000000000000000000000000000000000000000000003611ba1565b8061181d81612f0d565b9150506117e1565b5060006118527f000000000000000000000000000000000000000000000000000000000000000384613102565b90508015611864576118648482611ba1565b82600b60008282546118769190612e91565b9091555050604080513381526001600160a01b03861660208201529081018490527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600160405180910390a150505050565b6118d2611fce565b600f55565b3233146118f65760405162461bcd60e51b8152600401610b6290612e0f565b6001600854600160a01b900460ff16600481111561191657611916612b4c565b146119635760405162461bcd60e51b815260206004820152601760248201527f467265656d696e74206973206e6f74206163746976652e0000000000000000006044820152606401610b62565b600c548161197033611ab7565b61197a9190612e91565b11156119d45760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722077616c6c65742065786365656044820152633232b21760e11b6064820152608401610b62565b7f0000000000000000000000000000000000000000000000000000000000001388600b547f00000000000000000000000000000000000000000000000000000000000000c883611a2360005490565b611a2d9190612e91565b611a379190612e91565b611a419190612ea9565b1115611a5f5760405162461bcd60e51b8152600401610b6290612ec0565b611a693382611ba1565b610da581600d54610da09190612eee565b611a82611fce565b600a8190556040518181527f545a99af2f74d472d3ceb11889ff68b31a1a02f48a9431f04cda814892ee57e290602001610dd7565b6000610a5f826125c6565b611aca611fce565b6001600160a01b038116611b2f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b62565b610dfe816123bc565b611b40611fce565b600d55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611bbb828260405180602001604052806000815250612664565b5050565b80341015611c085760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610b62565b80341115610dfe57336108fc611c1e8334612ea9565b6040518115909202916000818181858888f19350505050158015611bbb573d6000803e3d6000fd5b6000611c5182612212565b80519091506000906001600160a01b0316336001600160a01b03161480611c88575033611c7d84610af7565b6001600160a01b0316145b80611c9a57508151611c9a903361095e565b905080611d045760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b62565b846001600160a01b031682600001516001600160a01b031614611d785760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b62565b6001600160a01b038416611ddc5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b62565b611dec6000848460000151611b45565b6001600160a01b0385166000908152600460205260408120805460019290611e1e9084906001600160801b0316613116565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611e6a9185911661313e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611ef2846001612e91565b6000818152600360205260409020549091506001600160a01b0316611f8457611f1c816000541190565b15611f845760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146114ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b62565b600754816120785760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b62565b600060016120868484612e91565b6120909190612ea9565b90506120bd60017f0000000000000000000000000000000000000000000000000000000000001388612ea9565b8111156120f2576120ef60017f0000000000000000000000000000000000000000000000000000000000001388612ea9565b90505b6120fd816000541190565b6121585760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b62565b815b8181116121fe576000818152600360205260409020546001600160a01b03166121ec57600061218882612212565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806121f681612f0d565b91505061215a565b5061220a816001612e91565b600755505050565b6040805180820190915260008082526020820152612231826000541190565b6122905760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b62565b60007f000000000000000000000000000000000000000000000000000000000000000383106122f1576122e37f000000000000000000000000000000000000000000000000000000000000000384612ea9565b6122ee906001612e91565b90505b825b81811061235b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561234857949350505050565b508061235381613169565b9150506122f3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b62565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561250457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612452903390899088908890600401613180565b6020604051808303816000875af192505050801561248d575060408051601f3d908101601f1916820190925261248a918101906131bd565b60015b6124ea573d8080156124bb576040519150601f19603f3d011682016040523d82523d6000602084013e6124c0565b606091505b5080516000036124e25760405162461bcd60e51b8152600401610b629061305c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612508565b5060015b949350505050565b606061251d826000541190565b6125815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b62565b600061258b61293f565b905060008151116125ab5760405180602001604052806000815250611625565b806125b58461294e565b6040516020016116159291906131da565b60006001600160a01b0382166126385760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610b62565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166126c75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b62565b6126d2816000541190565b1561271f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b62565b7f000000000000000000000000000000000000000000000000000000000000000383111561279a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b62565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127f690879061313e565b6001600160801b03168152602001858360200151612814919061313e565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156129345760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128f8600088848861240e565b6129145760405162461bcd60e51b8152600401610b629061305c565b8161291e81612f0d565b925050808061292c90612f0d565b9150506128ab565b506000819055611fc6565b606060098054610a7490612dd5565b6060816000036129755750506040805180820190915260018152600360fc1b602082015290565b8160005b811561299f578061298981612f0d565b91506129989050600a836130ee565b9150612979565b60008167ffffffffffffffff8111156129ba576129ba612cb0565b6040519080825280601f01601f1916602001820160405280156129e4576020820181803683370190505b5090505b8415612508576129f9600183612ea9565b9150612a06600a86613102565b612a11906030612e91565b60f81b818381518110612a2657612a26613200565b60200101906001600160f81b031916908160001a905350612a48600a866130ee565b94506129e8565b6001600160e01b031981168114610dfe57600080fd5b600060208284031215612a7757600080fd5b813561162581612a4f565b60005b83811015612a9d578181015183820152602001612a85565b838111156115d15750506000910152565b60008151808452612ac6816020860160208601612a82565b601f01601f19169290920160200192915050565b6020815260006116256020830184612aae565b600060208284031215612aff57600080fd5b5035919050565b80356001600160a01b0381168114612b1d57600080fd5b919050565b60008060408385031215612b3557600080fd5b612b3e83612b06565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6020810160058310612b8457634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215612b9f57600080fd5b612ba884612b06565b9250612bb660208501612b06565b9150604084013590509250925092565b600060208284031215612bd857600080fd5b81356005811061162557600080fd5b60008060208385031215612bfa57600080fd5b823567ffffffffffffffff80821115612c1257600080fd5b818501915085601f830112612c2657600080fd5b813581811115612c3557600080fd5b866020828501011115612c4757600080fd5b60209290920196919550909350505050565b600060208284031215612c6b57600080fd5b61162582612b06565b60008060408385031215612c8757600080fd5b612c9083612b06565b915060208301358015158114612ca557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612cdc57600080fd5b612ce585612b06565b9350612cf360208601612b06565b925060408501359150606085013567ffffffffffffffff80821115612d1757600080fd5b818701915087601f830112612d2b57600080fd5b813581811115612d3d57612d3d612cb0565b604051601f8201601f19908116603f01168101908382118183101715612d6557612d65612cb0565b816040528281528a6020848701011115612d7e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612db557600080fd5b612dbe83612b06565b9150612dcc60208401612b06565b90509250929050565b600181811c90821680612de957607f821691505b602082108103612e0957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e604082015260600190565b6020808252601a908201527f5075626c69632073616c65206973206e6f74206163746976652e000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612ea457612ea4612e7b565b500190565b600082821015612ebb57612ebb612e7b565b500390565b60208082526014908201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b604082015260600190565b6000816000190483118215151615612f0857612f08612e7b565b500290565b600060018201612f1f57612f1f612e7b565b5060010190565b601f821115610c9957600081815260208120601f850160051c81016020861015612f4d5750805b601f850160051c820191505b81811015611fc657828155600101612f59565b67ffffffffffffffff831115612f8457612f84612cb0565b612f9883612f928354612dd5565b83612f26565b6000601f841160018114612fcc5760008515612fb45750838201355b600019600387901b1c1916600186901b178355613026565b600083815260209020601f19861690835b82811015612ffd5786850135825560209485019460019092019101612fdd565b508682101561301a5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082516130c1818460208701612a82565b64173539b7b760d91b920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b6000826130fd576130fd6130d8565b500490565b600082613111576131116130d8565b500690565b60006001600160801b038381169083168181101561313657613136612e7b565b039392505050565b60006001600160801b0380831681851680830382111561316057613160612e7b565b01949350505050565b60008161317857613178612e7b565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131b390830184612aae565b9695505050505050565b6000602082840312156131cf57600080fd5b815161162581612a4f565b600083516131ec818460208801612a82565b835190830190613160818360208801612a82565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202a7703300c9e42c03a70ad5a34c1bf8370be581fc2eb40351911f5fb9a3f228364736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d656e65364d45583632694862537a5066534e6b4168636362666e534268596750767777736565666a6d3734782f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://Qmene6MEX62iHbSzPfSNkAhccbfnSBhYgPvwwseefjm74x/
Arg [1] : _maxPresaleMint (uint256): 3
Arg [2] : _maxPublicMint (uint256): 3
Arg [3] : _maxSupply (uint256): 5000
Arg [4] : _reserveAmount (uint256): 200

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d656e65364d45583632694862537a5066534e6b41686363
Arg [7] : 62666e534268596750767777736565666a6d3734782f00000000000000000000


Deployed Bytecode Sourcemap

51275:6718:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34580:422;;;;;;;;;;-1:-1:-1;34580:422:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34580:422:0;;;;;;;;36541:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38236:292::-;;;;;;;;;;-1:-1:-1;38236:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;38236:292:0;1528:203:1;37757:413:0;;;;;;;;;;-1:-1:-1;37757:413:0;;;;;:::i;:::-;;:::i;:::-;;55228:402;;;;;;:::i;:::-;;:::i;32936:100::-;;;;;;;;;;-1:-1:-1;32989:7:0;33016:12;32936:100;;;2319:25:1;;;2307:2;2292:18;32936:100:0;2173:177:1;51824:44:0;;;;;;;;;;;;;;;;51449:20;;;;;;;;;;-1:-1:-1;51449:20:0;;;;-1:-1:-1;;;51449:20:0;;;;;;;;;;;;;:::i;39263:162::-;;;;;;;;;;-1:-1:-1;39263:162:0;;;;;:::i;:::-;;:::i;57381:111::-;;;;;;;;;;-1:-1:-1;57381:111:0;;;;;:::i;:::-;;:::i;57122:127::-;;;;;;;;;;-1:-1:-1;57122:127:0;;;;;:::i;:::-;;:::i;56553:130::-;;;;;;;;;;-1:-1:-1;56553:130:0;;;;;:::i;:::-;;:::i;33644:864::-;;;;;;;;;;-1:-1:-1;33644:864:0;;;;;:::i;:::-;;:::i;51785:32::-;;;;;;;;;;;;;;;;51875:44;;;;;;;;;;;;;;;;52055:33;;;;;;;;;;;;;;;;57800:188;;;:::i;39496:177::-;;;;;;;;;;-1:-1:-1;39496:177:0;;;;;:::i;:::-;;:::i;51530:29::-;;;;;;;;;;;;;;;;55639:402;;;;;;:::i;:::-;;:::i;51698:38::-;;;;;;;;;;;;;;;56826:130;;;;;;;;;;-1:-1:-1;56826:130:0;;;;;:::i;:::-;;:::i;33113:228::-;;;;;;;;;;-1:-1:-1;33113:228:0;;;;;:::i;:::-;;:::i;56292:124::-;;;;;;;;;;-1:-1:-1;56292:124:0;;;;;:::i;:::-;;:::i;56966:148::-;;;;;;;;;;-1:-1:-1;56966:148:0;;;;;:::i;:::-;;:::i;36350:124::-;;;;;;;;;;-1:-1:-1;36350:124:0;;;;;:::i;:::-;;:::i;54817:402::-;;;;;;:::i;:::-;;:::i;51476:21::-;;;;;;;;;;;;;:::i;35066:258::-;;;;;;;;;;-1:-1:-1;35066:258:0;;;;;:::i;:::-;;:::i;50386:103::-;;;;;;;;;;;;;:::i;49738:87::-;;;;;;;;;;-1:-1:-1;49811:6:0;;-1:-1:-1;;;;;49811:6:0;49738:87;;57621:167;;;;;;;;;;-1:-1:-1;57621:167:0;;;;;:::i;:::-;;:::i;:::-;;;;4456:13:1;;-1:-1:-1;;;;;4452:39:1;4434:58;;4552:4;4540:17;;;4534:24;4560:18;4530:49;4508:20;;;4501:79;;;;4407:18;57621:167:0;4224:362:1;36710:104:0;;;;;;;;;;;;;:::i;52095:32::-;;;;;;;;;;;;;;;;38600:311;;;;;;;;;;-1:-1:-1;38600:311:0;;;;;:::i;:::-;;:::i;51566:39::-;;;;;;;;;;;;;;;39744:355;;;;;;;;;;-1:-1:-1;39744:355:0;;;;;:::i;:::-;;:::i;51743:35::-;;;;;;;;;;;;;;;;53204:298;;;;;;;;;;-1:-1:-1;53204:298:0;;;;;:::i;:::-;;:::i;52014:33::-;;;;;;;;;;;;;;;;51612:38;;;;;;;;;;;;;;;53510:756;;;;;;;;;;-1:-1:-1;53510:756:0;;;;;:::i;:::-;;:::i;51657:34::-;;;;;;;;;;;;;;;56689:130;;;;;;;;;;-1:-1:-1;56689:130:0;;;;;:::i;:::-;;:::i;44625:43::-;;;;;;;;;;;;;;;;54274:535;;;;;;:::i;:::-;;:::i;57257:116::-;;;;;;;;;;-1:-1:-1;57257:116:0;;;;;:::i;:::-;;:::i;57500:113::-;;;;;;;;;;-1:-1:-1;57500:113:0;;;;;:::i;:::-;;:::i;51926:44::-;;;;;;;;;;;;;;;;38982:214;;;;;;;;;;-1:-1:-1;38982:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;39153:25:0;;;39124:4;39153:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38982:214;51504:19;;;;;;;;;;;;;;;;50644:201;;;;;;;;;;-1:-1:-1;50644:201:0;;;;;:::i;:::-;;:::i;51977:30::-;;;;;;;;;;;;;;;;56424:118;;;;;;;;;;-1:-1:-1;56424:118:0;;;;;:::i;:::-;;:::i;34580:422::-;34727:4;-1:-1:-1;;;;;;34769:40:0;;-1:-1:-1;;;34769:40:0;;:105;;-1:-1:-1;;;;;;;34826:48:0;;-1:-1:-1;;;34826:48:0;34769:105;:172;;;-1:-1:-1;;;;;;;34891:50:0;;-1:-1:-1;;;34891:50:0;34769:172;:225;;;-1:-1:-1;;;;;;;;;;14030:40:0;;;34958:36;34749:245;34580:422;-1:-1:-1;;34580:422:0:o;36541:100::-;36595:13;36628:5;36621:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36541:100;:::o;38236:292::-;38340:7;38387:16;38395:7;40411:4;40445:12;-1:-1:-1;40435:22:0;40354:111;38387:16;38365:111;;;;-1:-1:-1;;;38365:111:0;;7437:2:1;38365:111:0;;;7419:21:1;7476:2;7456:18;;;7449:30;7515:34;7495:18;;;7488:62;-1:-1:-1;;;7566:18:1;;;7559:43;7619:19;;38365:111:0;;;;;;;;;-1:-1:-1;38496:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38496:24:0;;38236:292::o;37757:413::-;37830:13;37846:24;37862:7;37846:15;:24::i;:::-;37830:40;;37895:5;-1:-1:-1;;;;;37889:11:0;:2;-1:-1:-1;;;;;37889:11:0;;37881:58;;;;-1:-1:-1;;;37881:58:0;;7851:2:1;37881:58:0;;;7833:21:1;7890:2;7870:18;;;7863:30;7929:34;7909:18;;;7902:62;-1:-1:-1;;;7980:18:1;;;7973:32;8022:19;;37881:58:0;7649:398:1;37881:58:0;30336:10;-1:-1:-1;;;;;37974:21:0;;;;:62;;-1:-1:-1;37999:37:0;38016:5;30336:10;38982:214;:::i;37999:37::-;37952:169;;;;-1:-1:-1;;;37952:169:0;;8254:2:1;37952:169:0;;;8236:21:1;8293:2;8273:18;;;8266:30;8332:34;8312:18;;;8305:62;8403:27;8383:18;;;8376:55;8448:19;;37952:169:0;8052:421:1;37952:169:0;38134:28;38143:2;38147:7;38156:5;38134:8;:28::i;:::-;37819:351;37757:413;;:::o;55228:402::-;52436:9;52449:10;52436:23;52428:68;;;;-1:-1:-1;;;52428:68:0;;;;;;;:::i;:::-;55324:18:::1;55314:6;::::0;-1:-1:-1;;;55314:6:0;::::1;;;:28;::::0;::::1;;;;;;:::i;:::-;;55306:67;;;;-1:-1:-1::0;;;55306:67:0::1;;;;;;;:::i;:::-;55451:14;55433;;55417:13;55408:6;55392:13;32989:7:::0;33016:12;;32936:100;55392:13:::1;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:73;;55384:106;;;;-1:-1:-1::0;;;55384:106:0::1;;;;;;;:::i;:::-;55501:29;55511:10;55523:6;55501:9;:29::i;:::-;55541:39;55573:6;55554:16;;:25;;;;:::i;:::-;55541:12;:39::i;:::-;55596:26;::::0;;55603:10:::1;10285:51:1::0;;10367:2;10352:18;;10345:34;;;55596:26:0::1;::::0;10258:18:1;55596:26:0::1;;;;;;;;55228:402:::0;:::o;39263:162::-;39389:28;39399:4;39405:2;39409:7;39389:9;:28::i;57381:111::-;49624:13;:11;:13::i;:::-;57456:28:::1;57475:8;57456:18;:28::i;:::-;57381:111:::0;:::o;57122:127::-;49624:13;:11;:13::i;:::-;57187:6:::1;:16:::0;;57196:7;;57187:6;-1:-1:-1;;;;57187:16:0::1;-1:-1:-1::0;;;57196:7:0;57187:16:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;57219:22;57233:7;57219:22;;;;;;:::i;56553:130::-:0;49624:13;:11;:13::i;:::-;56639:16:::1;:36:::0;56553:130::o;33644:864::-;33769:7;33810:16;33820:5;33810:9;:16::i;:::-;33802:5;:24;33794:71;;;;-1:-1:-1;;;33794:71:0;;10592:2:1;33794:71:0;;;10574:21:1;10631:2;10611:18;;;10604:30;10670:34;10650:18;;;10643:62;-1:-1:-1;;;10721:18:1;;;10714:32;10763:19;;33794:71:0;10390:398:1;33794:71:0;33876:22;33016:12;;;33876:22;;34008:426;34032:14;34028:1;:18;34008:426;;;34068:31;34102:14;;;:11;:14;;;;;;;;;34068:48;;;;;;;;;-1:-1:-1;;;;;34068:48:0;;;;;-1:-1:-1;;;34068:48:0;;;;;;;;;;;;34135:28;34131:103;;34204:14;;;-1:-1:-1;34131:103:0;34273:5;-1:-1:-1;;;;;34252:26:0;:17;-1:-1:-1;;;;;34252:26:0;;34248:175;;34318:5;34303:11;:20;34299:77;;-1:-1:-1;34355:1:0;-1:-1:-1;34348:8:0;;-1:-1:-1;;;34348:8:0;34299:77;34394:13;;;;:::i;:::-;;;;34248:175;-1:-1:-1;34048:3:0;;;;:::i;:::-;;;;34008:426;;;-1:-1:-1;34444:56:0;;-1:-1:-1;;;34444:56:0;;11135:2:1;34444:56:0;;;11117:21:1;11174:2;11154:18;;;11147:30;11213:34;11193:18;;;11186:62;-1:-1:-1;;;11264:18:1;;;11257:44;11318:19;;34444:56:0;10933:410:1;57800:188:0;49624:13;:11;:13::i;:::-;57871:58:::1;::::0;57853:12:::1;::::0;57879:10:::1;::::0;57903:21:::1;::::0;57853:12;57871:58;57853:12;57871:58;57903:21;57879:10;57871:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57852:77;;;57944:7;57936:46;;;::::0;-1:-1:-1;;;57936:46:0;;11760:2:1;57936:46:0::1;::::0;::::1;11742:21:1::0;11799:2;11779:18;;;11772:30;11838:28;11818:18;;;11811:56;11884:18;;57936:46:0::1;11558:350:1::0;39496:177:0;39626:39;39643:4;39649:2;39653:7;39626:39;;;;;;;;;;;;:16;:39::i;55639:402::-;52436:9;52449:10;52436:23;52428:68;;;;-1:-1:-1;;;52428:68:0;;;;;;;:::i;:::-;55735:18:::1;55725:6;::::0;-1:-1:-1;;;55725:6:0;::::1;;;:28;::::0;::::1;;;;;;:::i;:::-;;55717:67;;;;-1:-1:-1::0;;;55717:67:0::1;;;;;;;:::i;:::-;55862:14;55844;;55828:13;55819:6;55803:13;32989:7:::0;33016:12;;32936:100;55803:13:::1;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:73;;55795:106;;;;-1:-1:-1::0;;;55795:106:0::1;;;;;;;:::i;:::-;55912:29;55922:10;55934:6;55912:9;:29::i;:::-;55952:39;55984:6;55965:16;;:25;;;;:::i;56826:130::-:0;49624:13;:11;:13::i;:::-;56912:16:::1;:36:::0;56826:130::o;33113:228::-;33216:7;33016:12;;33249:5;:21;33241:69;;;;-1:-1:-1;;;33241:69:0;;12115:2:1;33241:69:0;;;12097:21:1;12154:2;12134:18;;;12127:30;12193:34;12173:18;;;12166:62;-1:-1:-1;;;12244:18:1;;;12237:33;12287:19;;33241:69:0;11913:399:1;33241:69:0;-1:-1:-1;33328:5:0;33113:228::o;56292:124::-;49624:13;:11;:13::i;:::-;56374:16:::1;:34:::0;56292:124::o;56966:148::-;49624:13;:11;:13::i;:::-;57044:7:::1;:20;57054:10:::0;;57044:7;:20:::1;:::i;:::-;;57080:26;57095:10;;57080:26;;;;;;;:::i;:::-;;;;;;;;56966:148:::0;;:::o;36350:124::-;36414:7;36441:20;36453:7;36441:11;:20::i;:::-;:25;;36350:124;-1:-1:-1;;36350:124:0:o;54817:402::-;52436:9;52449:10;52436:23;52428:68;;;;-1:-1:-1;;;52428:68:0;;;;;;;:::i;:::-;54913:18:::1;54903:6;::::0;-1:-1:-1;;;54903:6:0;::::1;;;:28;::::0;::::1;;;;;;:::i;:::-;;54895:67;;;;-1:-1:-1::0;;;54895:67:0::1;;;;;;;:::i;:::-;55040:14;55022;;55006:13;54997:6;54981:13;32989:7:::0;33016:12;;32936:100;54981:13:::1;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:73;;54973:106;;;;-1:-1:-1::0;;;54973:106:0::1;;;;;;;:::i;:::-;55090:29;55100:10;55112:6;55090:9;:29::i;:::-;55130:39;55162:6;55143:16;;:25;;;;:::i;51476:21::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35066:258::-;35130:7;-1:-1:-1;;;;;35172:19:0;;35150:112;;;;-1:-1:-1;;;35150:112:0;;14972:2:1;35150:112:0;;;14954:21:1;15011:2;14991:18;;;14984:30;15050:34;15030:18;;;15023:62;-1:-1:-1;;;15101:18:1;;;15094:41;15152:19;;35150:112:0;14770:407:1;35150:112:0;-1:-1:-1;;;;;;35288:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35288:27:0;;35066:258::o;50386:103::-;49624:13;:11;:13::i;:::-;50451:30:::1;50478:1;50451:18;:30::i;:::-;50386:103::o:0;57621:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;57760:20:0;57772:7;57760:11;:20::i;36710:104::-;36766:13;36799:7;36792:14;;;;;:::i;38600:311::-;30336:10;-1:-1:-1;;;;;38718:24:0;;;38710:63;;;;-1:-1:-1;;;38710:63:0;;15384:2:1;38710:63:0;;;15366:21:1;15423:2;15403:18;;;15396:30;15462:28;15442:18;;;15435:56;15508:18;;38710:63:0;15182:350:1;38710:63:0;30336:10;38786:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38786:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38786:53:0;;;;;;;;;;38855:48;;540:41:1;;;38786:42:0;;30336:10;38855:48;;513:18:1;38855:48:0;;;;;;;38600:311;;:::o;39744:355::-;39903:28;39913:4;39919:2;39923:7;39903:9;:28::i;:::-;39964:48;39987:4;39993:2;39997:7;40006:5;39964:22;:48::i;:::-;39942:149;;;;-1:-1:-1;;;39942:149:0;;;;;;;:::i;:::-;39744:355;;;;:::o;53204:298::-;53322:13;53353:17;53373:23;53388:7;53373:14;:23::i;:::-;53353:43;;53447:1;53433:3;53427:17;:21;:67;;;;;;;;;;;;;;;;;53475:3;53458:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;53427:67;53407:87;53204:298;-1:-1:-1;;;53204:298:0:o;53510:756::-;49624:13;:11;:13::i;:::-;-1:-1:-1;;;;;53600:23:0;::::1;53592:48;;;::::0;-1:-1:-1;;;53592:48:0;;16607:2:1;53592:48:0::1;::::0;::::1;16589:21:1::0;16646:2;16626:18;;;16619:30;-1:-1:-1;;;16665:18:1;;;16658:42;16717:18;;53592:48:0::1;16405:336:1::0;53592:48:0::1;53668:1;53659:6;:10;53651:37;;;::::0;-1:-1:-1;;;53651:37:0;;16948:2:1;53651:37:0::1;::::0;::::1;16930:21:1::0;16987:2;16967:18;;;16960:30;-1:-1:-1;;;17006:18:1;;;16999:44;17060:18;;53651:37:0::1;16746:338:1::0;53651:37:0::1;53733:14;53723:6;53707:13;32989:7:::0;33016:12;;32936:100;53707:13:::1;:22;;;;:::i;:::-;:40;;53699:71;;;::::0;-1:-1:-1;;;53699:71:0;;17291:2:1;53699:71:0::1;::::0;::::1;17273:21:1::0;17330:2;17310:18;;;17303:30;-1:-1:-1;;;17349:18:1;;;17342:49;17408:18;;53699:71:0::1;17089:343:1::0;53699:71:0::1;53816:13;53806:6;53789:14;;:23;;;;:::i;:::-;:40;;53781:79;;;::::0;-1:-1:-1;;;53781:79:0;;17639:2:1;53781:79:0::1;::::0;::::1;17621:21:1::0;17678:2;17658:18;;;17651:30;17717:29;17697:18;;;17690:57;17764:18;;53781:79:0::1;17437:351:1::0;53781:79:0::1;53873:16;53892:21;53901:12;53892:6:::0;:21:::1;:::i;:::-;53873:40;;53929:9;53924:100;53948:8;53944:1;:12;53924:100;;;53978:34;53988:9;53999:12;53978:9;:34::i;:::-;53958:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53924:100;;;-1:-1:-1::0;54034:17:0::1;54054:21;54063:12;54054:6:::0;:21:::1;:::i;:::-;54034:41:::0;-1:-1:-1;54090:14:0;;54086:78:::1;;54121:31;54131:9;54142;54121;:31::i;:::-;54192:6;54174:14;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;54214:44:0::1;::::0;;54228:10:::1;18407:34:1::0;;-1:-1:-1;;;;;18477:15:1;;18472:2;18457:18;;18450:43;18509:18;;;18502:34;;;54214:44:0::1;::::0;18357:2:1;18342:18;54214:44:0::1;;;;;;;53581:685;;53510:756:::0;;:::o;56689:130::-;49624:13;:11;:13::i;:::-;56775:16:::1;:36:::0;56689:130::o;54274:535::-;52436:9;52449:10;52436:23;52428:68;;;;-1:-1:-1;;;52428:68:0;;;;;;;:::i;:::-;54399:15:::1;54389:6;::::0;-1:-1:-1;;;54389:6:0;::::1;;;:25;::::0;::::1;;;;;;:::i;:::-;;54381:61;;;::::0;-1:-1:-1;;;54381:61:0;;18749:2:1;54381:61:0::1;::::0;::::1;18731:21:1::0;18788:2;18768:18;;;18761:30;18827:25;18807:18;;;18800:53;18870:18;;54381:61:0::1;18547:347:1::0;54381:61:0::1;54498:16;;54488:6;54461:24;54474:10;54461:12;:24::i;:::-;:33;;;;:::i;:::-;:53;;54453:102;;;::::0;-1:-1:-1;;;54453:102:0;;19101:2:1;54453:102:0::1;::::0;::::1;19083:21:1::0;19140:2;19120:18;;;19113:30;19179:34;19159:18;;;19152:62;-1:-1:-1;;;19230:18:1;;;19223:34;19274:19;;54453:102:0::1;18899:400:1::0;54453:102:0::1;54633:14;54615;;54599:13;54590:6;54574:13;32989:7:::0;33016:12;;32936:100;54574:13:::1;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:73;;54566:106;;;;-1:-1:-1::0;;;54566:106:0::1;;;;;;;:::i;:::-;54683:29;54693:10;54705:6;54683:9;:29::i;:::-;54723:36;54752:6;54736:13;;:22;;;;:::i;57257:116::-:0;49624:13;:11;:13::i;:::-;57319:4:::1;:12:::0;;;57347:18:::1;::::0;2319:25:1;;;57347:18:0::1;::::0;2307:2:1;2292:18;57347::0::1;2173:177:1::0;57500:113:0;57558:7;57585:20;57599:5;57585:13;:20::i;50644:201::-;49624:13;:11;:13::i;:::-;-1:-1:-1;;;;;50733:22:0;::::1;50725:73;;;::::0;-1:-1:-1;;;50725:73:0;;19506:2:1;50725:73:0::1;::::0;::::1;19488:21:1::0;19545:2;19525:18;;;19518:30;19584:34;19564:18;;;19557:62;-1:-1:-1;;;19635:18:1;;;19628:36;19681:19;;50725:73:0::1;19304:402:1::0;50725:73:0::1;50809:28;50828:8;50809:18;:28::i;56424:118::-:0;49624:13;:11;:13::i;:::-;56504::::1;:30:::0;56424:118::o;44421:196::-;44536:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44536:29:0;-1:-1:-1;;;;;44536:29:0;;;;;;;;;44581:28;;44536:24;;44581:28;;;;;;;44421:196;;;:::o;40473:104::-;40542:27;40552:2;40556:8;40542:27;;;;;;;;;;;;:9;:27::i;:::-;40473:104;;:::o;56056:224::-;56133:5;56120:9;:18;;56112:53;;;;-1:-1:-1;;;56112:53:0;;19913:2:1;56112:53:0;;;19895:21:1;19952:2;19932:18;;;19925:30;-1:-1:-1;;;19971:18:1;;;19964:52;20033:18;;56112:53:0;19711:346:1;56112:53:0;56192:5;56180:9;:17;56176:97;;;56222:10;56214:47;56243:17;56255:5;56243:9;:17;:::i;:::-;56214:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42594:1709;42709:35;42747:20;42759:7;42747:11;:20::i;:::-;42822:18;;42709:58;;-1:-1:-1;42780:22:0;;-1:-1:-1;;;;;42806:34:0;30336:10;-1:-1:-1;;;;;42806:34:0;;:87;;;-1:-1:-1;30336:10:0;42857:20;42869:7;42857:11;:20::i;:::-;-1:-1:-1;;;;;42857:36:0;;42806:87;:154;;;-1:-1:-1;42927:18:0;;42910:50;;30336:10;38982:214;:::i;42910:50::-;42780:181;;42996:17;42974:117;;;;-1:-1:-1;;;42974:117:0;;20264:2:1;42974:117:0;;;20246:21:1;20303:2;20283:18;;;20276:30;20342:34;20322:18;;;20315:62;-1:-1:-1;;;20393:18:1;;;20386:48;20451:19;;42974:117:0;20062:414:1;42974:117:0;43148:4;-1:-1:-1;;;;;43126:26:0;:13;:18;;;-1:-1:-1;;;;;43126:26:0;;43104:114;;;;-1:-1:-1;;;43104:114:0;;20683:2:1;43104:114:0;;;20665:21:1;20722:2;20702:18;;;20695:30;20761:34;20741:18;;;20734:62;-1:-1:-1;;;20812:18:1;;;20805:36;20858:19;;43104:114:0;20481:402:1;43104:114:0;-1:-1:-1;;;;;43237:16:0;;43229:66;;;;-1:-1:-1;;;43229:66:0;;21090:2:1;43229:66:0;;;21072:21:1;21129:2;21109:18;;;21102:30;21168:34;21148:18;;;21141:62;-1:-1:-1;;;21219:18:1;;;21212:35;21264:19;;43229:66:0;20888:401:1;43229:66:0;43416:49;43433:1;43437:7;43446:13;:18;;;43416:8;:49::i;:::-;-1:-1:-1;;;;;43478:18:0;;;;;;:12;:18;;;;;:31;;43508:1;;43478:18;:31;;43508:1;;-1:-1:-1;;;;;43478:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;43478:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43520:16:0;;-1:-1:-1;43520:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;43520:16:0;;:29;;-1:-1:-1;;43520:29:0;;:::i;:::-;;;-1:-1:-1;;;;;43520:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43583:43:0;;;;;;;;-1:-1:-1;;;;;43583:43:0;;;;;;43609:15;43583:43;;;;;;;;;-1:-1:-1;43560:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;43560:66:0;-1:-1:-1;;;;;;43560:66:0;;;;;;;;;;;43888:11;43572:7;-1:-1:-1;43888:11:0;:::i;:::-;43955:1;43914:24;;;:11;:24;;;;;:29;43866:33;;-1:-1:-1;;;;;;43914:29:0;43910:288;;43978:20;43986:11;40411:4;40445:12;-1:-1:-1;40435:22:0;40354:111;43978:20;43974:213;;;44046:125;;;;;;;;44083:18;;-1:-1:-1;;;;;44046:125:0;;;;;;44124:28;;;;44046:125;;;;;;;;;;-1:-1:-1;44019:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;44019:152:0;-1:-1:-1;;;;;;44019:152:0;;;;;;;;;;;;43974:213;44234:7;44230:2;-1:-1:-1;;;;;44215:27:0;44224:4;-1:-1:-1;;;;;44215:27:0;;;;;;;;;;;44253:42;42698:1605;;;42594:1709;;;:::o;49903:132::-;49811:6;;-1:-1:-1;;;;;49811:6:0;30336:10;49967:23;49959:68;;;;-1:-1:-1;;;49959:68:0;;22005:2:1;49959:68:0;;;21987:21:1;;;22024:18;;;22017:30;22083:34;22063:18;;;22056:62;22135:18;;49959:68:0;21803:356:1;44781:950:0;44875:24;;44918:12;44910:49;;;;-1:-1:-1;;;44910:49:0;;22366:2:1;44910:49:0;;;22348:21:1;22405:2;22385:18;;;22378:30;22444:26;22424:18;;;22417:54;22488:18;;44910:49:0;22164:348:1;44910:49:0;44970:16;45020:1;44989:28;45009:8;44989:17;:28;:::i;:::-;:32;;;;:::i;:::-;44970:51;-1:-1:-1;45047:18:0;45064:1;45047:14;:18;:::i;:::-;45036:8;:29;45032:91;;;45093:18;45110:1;45093:14;:18;:::i;:::-;45082:29;;45032:91;45246:17;45254:8;40411:4;40445:12;-1:-1:-1;40435:22:0;40354:111;45246:17;45238:68;;;;-1:-1:-1;;;45238:68:0;;22719:2:1;45238:68:0;;;22701:21:1;22758:2;22738:18;;;22731:30;22797:34;22777:18;;;22770:62;-1:-1:-1;;;22848:18:1;;;22841:36;22894:19;;45238:68:0;22517:402:1;45238:68:0;45334:17;45317:357;45358:8;45353:1;:13;45317:357;;45423:1;45392:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;45392:19:0;45388:275;;45446:31;45480:14;45492:1;45480:11;:14::i;:::-;45530:117;;;;;;;;45567:14;;-1:-1:-1;;;;;45530:117:0;;;;;;45604:24;;;;45530:117;;;;;;;;;;-1:-1:-1;45513:14:0;;;:11;:14;;;;;;;:134;;;;;;;;;-1:-1:-1;;;45513:134:0;-1:-1:-1;;;;;;45513:134:0;;;;;;;;;;;;-1:-1:-1;45388:275:0;45368:3;;;;:::i;:::-;;;;45317:357;;;-1:-1:-1;45711:12:0;:8;45722:1;45711:12;:::i;:::-;45684:24;:39;-1:-1:-1;;;44781:950:0:o;35606:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;35741:16:0;35749:7;40411:4;40445:12;-1:-1:-1;40435:22:0;40354:111;35741:16;35733:71;;;;-1:-1:-1;;;35733:71:0;;23126:2:1;35733:71:0;;;23108:21:1;23165:2;23145:18;;;23138:30;23204:34;23184:18;;;23177:62;-1:-1:-1;;;23255:18:1;;;23248:40;23305:19;;35733:71:0;22924:406:1;35733:71:0;35817:26;35869:12;35858:7;:23;35854:103;;35919:22;35929:12;35919:7;:22;:::i;:::-;:26;;35944:1;35919:26;:::i;:::-;35898:47;;35854:103;35989:7;35969:242;36006:18;35998:4;:26;35969:242;;36049:31;36083:17;;;:11;:17;;;;;;;;;36049:51;;;;;;;;;-1:-1:-1;;;;;36049:51:0;;;;;-1:-1:-1;;;36049:51:0;;;;;;;;;;;;36119:28;36115:85;;36175:9;35606:682;-1:-1:-1;;;;35606:682:0:o;36115:85::-;-1:-1:-1;36026:6:0;;;;:::i;:::-;;;;35969:242;;;-1:-1:-1;36223:57:0;;-1:-1:-1;;;36223:57:0;;23678:2:1;36223:57:0;;;23660:21:1;23717:2;23697:18;;;23690:30;23756:34;23736:18;;;23729:62;-1:-1:-1;;;23807:18:1;;;23800:45;23862:19;;36223:57:0;23476:411:1;51005:191:0;51098:6;;;-1:-1:-1;;;;;51115:17:0;;;-1:-1:-1;;;;;;51115:17:0;;;;;;;51148:40;;51098:6;;;51115:17;51098:6;;51148:40;;51079:16;;51148:40;51068:128;51005:191;:::o;46296:985::-;46451:4;-1:-1:-1;;;;;46472:13:0;;4060:19;:23;46468:806;;46525:175;;-1:-1:-1;;;46525:175:0;;-1:-1:-1;;;;;46525:36:0;;;;;:175;;30336:10;;46619:4;;46646:7;;46676:5;;46525:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46525:175:0;;;;;;;;-1:-1:-1;;46525:175:0;;;;;;;;;;;;:::i;:::-;;;46504:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46887:6;:13;46904:1;46887:18;46883:321;;46930:109;;-1:-1:-1;;;46930:109:0;;;;;;;:::i;46883:321::-;47154:6;47148:13;47139:6;47135:2;47131:15;47124:38;46504:715;-1:-1:-1;;;;;;46764:55:0;-1:-1:-1;;;46764:55:0;;-1:-1:-1;46757:62:0;;46468:806;-1:-1:-1;47258:4:0;46468:806;46296:985;;;;;;:::o;36885:468::-;37003:13;37056:16;37064:7;40411:4;40445:12;-1:-1:-1;40435:22:0;40354:111;37056:16;37034:113;;;;-1:-1:-1;;;37034:113:0;;24842:2:1;37034:113:0;;;24824:21:1;24881:2;24861:18;;;24854:30;24920:34;24900:18;;;24893:62;-1:-1:-1;;;24971:18:1;;;24964:45;25026:19;;37034:113:0;24640:411:1;37034:113:0;37160:21;37184:10;:8;:10::i;:::-;37160:34;;37249:1;37231:7;37225:21;:25;:120;;;;;;;;;;;;;;;;;37294:7;37303:18;:7;:16;:18::i;:::-;37277:45;;;;;;;;;:::i;35332:266::-;35393:7;-1:-1:-1;;;;;35435:19:0;;35413:118;;;;-1:-1:-1;;;35413:118:0;;25733:2:1;35413:118:0;;;25715:21:1;25772:2;25752:18;;;25745:30;25811:34;25791:18;;;25784:62;-1:-1:-1;;;25862:18:1;;;25855:47;25919:19;;35413:118:0;25531:413:1;35413:118:0;-1:-1:-1;;;;;;35557:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;35557:32:0;;-1:-1:-1;;;;;35557:32:0;;35332:266::o;40940:1400::-;41063:20;41086:12;-1:-1:-1;;;;;41117:16:0;;41109:62;;;;-1:-1:-1;;;41109:62:0;;26151:2:1;41109:62:0;;;26133:21:1;26190:2;26170:18;;;26163:30;26229:34;26209:18;;;26202:62;-1:-1:-1;;;26280:18:1;;;26273:31;26321:19;;41109:62:0;25949:397:1;41109:62:0;41316:21;41324:12;40411:4;40445:12;-1:-1:-1;40435:22:0;40354:111;41316:21;41315:22;41307:64;;;;-1:-1:-1;;;41307:64:0;;26553:2:1;41307:64:0;;;26535:21:1;26592:2;26572:18;;;26565:30;26631:31;26611:18;;;26604:59;26680:18;;41307:64:0;26351:353:1;41307:64:0;41402:12;41390:8;:24;;41382:71;;;;-1:-1:-1;;;41382:71:0;;26911:2:1;41382:71:0;;;26893:21:1;26950:2;26930:18;;;26923:30;26989:34;26969:18;;;26962:62;-1:-1:-1;;;27040:18:1;;;27033:32;27082:19;;41382:71:0;26709:398:1;41382:71:0;-1:-1:-1;;;;;41573:16:0;;41540:30;41573:16;;;:12;:16;;;;;;;;;41540:49;;;;;;;;;-1:-1:-1;;;;;41540:49:0;;;;;-1:-1:-1;;;41540:49:0;;;;;;;;;;;41619:135;;;;;;;;41645:19;;41540:49;;41619:135;;;41645:39;;41675:8;;41645:39;:::i;:::-;-1:-1:-1;;;;;41619:135:0;;;;;41734:8;41699:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;41619:135:0;;;;;;-1:-1:-1;;;;;41600:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;41600:154:0;;;;;;;;;;;;41793:43;;;;;;;;;;;41819:15;41793:43;;;;;;;;41765:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;41765:71:0;-1:-1:-1;;;;;;41765:71:0;;;;;;;;;;;;;;;;;;41777:12;;41897:325;41921:8;41917:1;:12;41897:325;;;41956:38;;41981:12;;-1:-1:-1;;;;;41956:38:0;;;41973:1;;41956:38;;41973:1;;41956:38;42035:59;42066:1;42070:2;42074:12;42088:5;42035:22;:59::i;:::-;42009:172;;;;-1:-1:-1;;;42009:172:0;;;;;;;:::i;:::-;42196:14;;;;:::i;:::-;;;;41931:3;;;;;:::i;:::-;;;;41897:325;;;-1:-1:-1;42234:12:0;:27;;;42272:60;39744:355;53096:100;53148:13;53181:7;53174:14;;;;;:::i;465:723::-;521:13;742:5;751:1;742:10;738:53;;-1:-1:-1;;769:10:0;;;;;;;;;;;;-1:-1:-1;;;769:10:0;;;;;465:723::o;738:53::-;816:5;801:12;857:78;864:9;;857:78;;890:8;;;;:::i;:::-;;-1:-1:-1;913:10:0;;-1:-1:-1;921:2:0;913:10;;:::i;:::-;;;857:78;;;945:19;977:6;967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;967:17:0;;945:39;;995:154;1002:10;;995:154;;1029:11;1039:1;1029:11;;:::i;:::-;;-1:-1:-1;1098:10:0;1106:2;1098:5;:10;:::i;:::-;1085:24;;:2;:24;:::i;:::-;1072:39;;1055:6;1062;1055:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1055:56:0;;;;;;;;-1:-1:-1;1126:11:0;1135:2;1126:11;;:::i;:::-;;;995:154;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:339;2630:2;2615:18;;2663:1;2652:13;;2642:144;;2708:10;2703:3;2699:20;2696:1;2689:31;2743:4;2740:1;2733:15;2771:4;2768:1;2761:15;2642:144;2795:25;;;2487:339;:::o;2831:328::-;2908:6;2916;2924;2977:2;2965:9;2956:7;2952:23;2948:32;2945:52;;;2993:1;2990;2983:12;2945:52;3016:29;3035:9;3016:29;:::i;:::-;3006:39;;3064:38;3098:2;3087:9;3083:18;3064:38;:::i;:::-;3054:48;;3149:2;3138:9;3134:18;3121:32;3111:42;;2831:328;;;;;:::o;3164:267::-;3234:6;3287:2;3275:9;3266:7;3262:23;3258:32;3255:52;;;3303:1;3300;3293:12;3255:52;3342:9;3329:23;3381:1;3374:5;3371:12;3361:40;;3397:1;3394;3387:12;3436:592;3507:6;3515;3568:2;3556:9;3547:7;3543:23;3539:32;3536:52;;;3584:1;3581;3574:12;3536:52;3624:9;3611:23;3653:18;3694:2;3686:6;3683:14;3680:34;;;3710:1;3707;3700:12;3680:34;3748:6;3737:9;3733:22;3723:32;;3793:7;3786:4;3782:2;3778:13;3774:27;3764:55;;3815:1;3812;3805:12;3764:55;3855:2;3842:16;3881:2;3873:6;3870:14;3867:34;;;3897:1;3894;3887:12;3867:34;3942:7;3937:2;3928:6;3924:2;3920:15;3916:24;3913:37;3910:57;;;3963:1;3960;3953:12;3910:57;3994:2;3986:11;;;;;4016:6;;-1:-1:-1;3436:592:1;;-1:-1:-1;;;;3436:592:1:o;4033:186::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4184:29;4203:9;4184:29;:::i;4591:347::-;4656:6;4664;4717:2;4705:9;4696:7;4692:23;4688:32;4685:52;;;4733:1;4730;4723:12;4685:52;4756:29;4775:9;4756:29;:::i;:::-;4746:39;;4835:2;4824:9;4820:18;4807:32;4882:5;4875:13;4868:21;4861:5;4858:32;4848:60;;4904:1;4901;4894:12;4848:60;4927:5;4917:15;;;4591:347;;;;;:::o;4943:127::-;5004:10;4999:3;4995:20;4992:1;4985:31;5035:4;5032:1;5025:15;5059:4;5056:1;5049:15;5075:1138;5170:6;5178;5186;5194;5247:3;5235:9;5226:7;5222:23;5218:33;5215:53;;;5264:1;5261;5254:12;5215:53;5287:29;5306:9;5287:29;:::i;:::-;5277:39;;5335:38;5369:2;5358:9;5354:18;5335:38;:::i;:::-;5325:48;;5420:2;5409:9;5405:18;5392:32;5382:42;;5475:2;5464:9;5460:18;5447:32;5498:18;5539:2;5531:6;5528:14;5525:34;;;5555:1;5552;5545:12;5525:34;5593:6;5582:9;5578:22;5568:32;;5638:7;5631:4;5627:2;5623:13;5619:27;5609:55;;5660:1;5657;5650:12;5609:55;5696:2;5683:16;5718:2;5714;5711:10;5708:36;;;5724:18;;:::i;:::-;5799:2;5793:9;5767:2;5853:13;;-1:-1:-1;;5849:22:1;;;5873:2;5845:31;5841:40;5829:53;;;5897:18;;;5917:22;;;5894:46;5891:72;;;5943:18;;:::i;:::-;5983:10;5979:2;5972:22;6018:2;6010:6;6003:18;6058:7;6053:2;6048;6044;6040:11;6036:20;6033:33;6030:53;;;6079:1;6076;6069:12;6030:53;6135:2;6130;6126;6122:11;6117:2;6109:6;6105:15;6092:46;6180:1;6175:2;6170;6162:6;6158:15;6154:24;6147:35;6201:6;6191:16;;;;;;;5075:1138;;;;;;;:::o;6403:260::-;6471:6;6479;6532:2;6520:9;6511:7;6507:23;6503:32;6500:52;;;6548:1;6545;6538:12;6500:52;6571:29;6590:9;6571:29;:::i;:::-;6561:39;;6619:38;6653:2;6642:9;6638:18;6619:38;:::i;:::-;6609:48;;6403:260;;;;;:::o;6850:380::-;6929:1;6925:12;;;;6972;;;6993:61;;7047:4;7039:6;7035:17;7025:27;;6993:61;7100:2;7092:6;7089:14;7069:18;7066:38;7063:161;;7146:10;7141:3;7137:20;7134:1;7127:31;7181:4;7178:1;7171:15;7209:4;7206:1;7199:15;7063:161;;6850:380;;;:::o;8478:356::-;8680:2;8662:21;;;8699:18;;;8692:30;8758:34;8753:2;8738:18;;8731:62;8825:2;8810:18;;8478:356::o;8839:350::-;9041:2;9023:21;;;9080:2;9060:18;;;9053:30;9119:28;9114:2;9099:18;;9092:56;9180:2;9165:18;;8839:350::o;9194:127::-;9255:10;9250:3;9246:20;9243:1;9236:31;9286:4;9283:1;9276:15;9310:4;9307:1;9300:15;9326:128;9366:3;9397:1;9393:6;9390:1;9387:13;9384:39;;;9403:18;;:::i;:::-;-1:-1:-1;9439:9:1;;9326:128::o;9459:125::-;9499:4;9527:1;9524;9521:8;9518:34;;;9532:18;;:::i;:::-;-1:-1:-1;9569:9:1;;9459:125::o;9589:344::-;9791:2;9773:21;;;9830:2;9810:18;;;9803:30;-1:-1:-1;;;9864:2:1;9849:18;;9842:50;9924:2;9909:18;;9589:344::o;9938:168::-;9978:7;10044:1;10040;10036:6;10032:14;10029:1;10026:21;10021:1;10014:9;10007:17;10003:45;10000:71;;;10051:18;;:::i;:::-;-1:-1:-1;10091:9:1;;9938:168::o;10793:135::-;10832:3;10853:17;;;10850:43;;10873:18;;:::i;:::-;-1:-1:-1;10920:1:1;10909:13;;10793:135::o;12443:545::-;12545:2;12540:3;12537:11;12534:448;;;12581:1;12606:5;12602:2;12595:17;12651:4;12647:2;12637:19;12721:2;12709:10;12705:19;12702:1;12698:27;12692:4;12688:38;12757:4;12745:10;12742:20;12739:47;;;-1:-1:-1;12780:4:1;12739:47;12835:2;12830:3;12826:12;12823:1;12819:20;12813:4;12809:31;12799:41;;12890:82;12908:2;12901:5;12898:13;12890:82;;;12953:17;;;12934:1;12923:13;12890:82;;13164:1206;13288:18;13283:3;13280:27;13277:53;;;13310:18;;:::i;:::-;13339:94;13429:3;13389:38;13421:4;13415:11;13389:38;:::i;:::-;13383:4;13339:94;:::i;:::-;13459:1;13484:2;13479:3;13476:11;13501:1;13496:616;;;;14156:1;14173:3;14170:93;;;-1:-1:-1;14229:19:1;;;14216:33;14170:93;-1:-1:-1;;13121:1:1;13117:11;;;13113:24;13109:29;13099:40;13145:1;13141:11;;;13096:57;14276:78;;13469:895;;13496:616;12390:1;12383:14;;;12427:4;12414:18;;-1:-1:-1;;13532:17:1;;;13633:9;13655:229;13669:7;13666:1;13663:14;13655:229;;;13758:19;;;13745:33;13730:49;;13865:4;13850:20;;;;13818:1;13806:14;;;;13685:12;13655:229;;;13659:3;13912;13903:7;13900:16;13897:159;;;14036:1;14032:6;14026:3;14020;14017:1;14013:11;14009:21;14005:34;14001:39;13988:9;13983:3;13979:19;13966:33;13962:79;13954:6;13947:95;13897:159;;;14099:1;14093:3;14090:1;14086:11;14082:19;14076:4;14069:33;13469:895;;;13164:1206;;;:::o;14375:390::-;14534:2;14523:9;14516:21;14573:6;14568:2;14557:9;14553:18;14546:34;14630:6;14622;14617:2;14606:9;14602:18;14589:48;14686:1;14657:22;;;14681:2;14653:31;;;14646:42;;;;14749:2;14728:15;;;-1:-1:-1;;14724:29:1;14709:45;14705:54;;14375:390;-1:-1:-1;14375:390:1:o;15537:415::-;15739:2;15721:21;;;15778:2;15758:18;;;15751:30;15817:34;15812:2;15797:18;;15790:62;-1:-1:-1;;;15883:2:1;15868:18;;15861:49;15942:3;15927:19;;15537:415::o;15957:443::-;16189:3;16227:6;16221:13;16243:53;16289:6;16284:3;16277:4;16269:6;16265:17;16243:53;:::i;:::-;-1:-1:-1;;;16318:16:1;;16343:22;;;-1:-1:-1;16392:1:1;16381:13;;15957:443;-1:-1:-1;15957:443:1:o;17793:127::-;17854:10;17849:3;17845:20;17842:1;17835:31;17885:4;17882:1;17875:15;17909:4;17906:1;17899:15;17925:120;17965:1;17991;17981:35;;17996:18;;:::i;:::-;-1:-1:-1;18030:9:1;;17925:120::o;18050:112::-;18082:1;18108;18098:35;;18113:18;;:::i;:::-;-1:-1:-1;18147:9:1;;18050:112::o;21294:246::-;21334:4;-1:-1:-1;;;;;21447:10:1;;;;21417;;21469:12;;;21466:38;;;21484:18;;:::i;:::-;21521:13;;21294:246;-1:-1:-1;;;21294:246:1:o;21545:253::-;21585:3;-1:-1:-1;;;;;21674:2:1;21671:1;21667:10;21704:2;21701:1;21697:10;21735:3;21731:2;21727:12;21722:3;21719:21;21716:47;;;21743:18;;:::i;:::-;21779:13;;21545:253;-1:-1:-1;;;;21545:253:1:o;23335:136::-;23374:3;23402:5;23392:39;;23411:18;;:::i;:::-;-1:-1:-1;;;23447:18:1;;23335:136::o;23892:489::-;-1:-1:-1;;;;;24161:15:1;;;24143:34;;24213:15;;24208:2;24193:18;;24186:43;24260:2;24245:18;;24238:34;;;24308:3;24303:2;24288:18;;24281:31;;;24086:4;;24329:46;;24355:19;;24347:6;24329:46;:::i;:::-;24321:54;23892:489;-1:-1:-1;;;;;;23892:489:1:o;24386:249::-;24455:6;24508:2;24496:9;24487:7;24483:23;24479:32;24476:52;;;24524:1;24521;24514:12;24476:52;24556:9;24550:16;24575:30;24599:5;24575:30;:::i;25056:470::-;25235:3;25273:6;25267:13;25289:53;25335:6;25330:3;25323:4;25315:6;25311:17;25289:53;:::i;:::-;25405:13;;25364:16;;;;25427:57;25405:13;25364:16;25461:4;25449:17;;25427:57;:::i;27112:127::-;27173:10;27168:3;27164:20;27161:1;27154:31;27204:4;27201:1;27194:15;27228:4;27225:1;27218:15

Swarm Source

ipfs://2a7703300c9e42c03a70ad5a34c1bf8370be581fc2eb40351911f5fb9a3f2283
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.