ETH Price: $3,501.99 (+2.49%)
Gas: 14 Gwei

Token

MysteriousCardboardBox (BOX)
 

Overview

Max Total Supply

444 BOX

Holders

255

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xezrai.eth
Balance
3 BOX
0x194cc57b57c8eca514fdf58bac8cfad5e20e133d
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:
MysteriousCardboardBox

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override 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) {
        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) {
        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) {
        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 {
        _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) if (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) if(!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 virtual 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()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;



contract MysteriousCardboardBox is ERC721A, Ownable {
	using Strings for uint;

	uint public maxSupply = 444;

    bool public isMetadataFinal;
    string private _baseURL = "ipfs://bafybeifzcuyz5ojgicybk7ack3zsb3vgjkg3zw5rmvgngdpdaspadaciwi/";
	string public prerevealURL = '';

    // Name
	constructor()
	ERC721A('MysteriousCardboardBox', 'BOX') {
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    /*
    // Splitter
    
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;

        address _wallet1 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable1 = balance * 50 / 100;
        payable(_wallet1).transfer(_payable1);

        address _wallet2 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable2 = balance * 25 / 100;
        payable(_wallet2).transfer(_payable2);

        address _wallet3 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable3 = balance * 25 / 100;
        payable(_wallet3).transfer(_payable3);
    }*/

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

	function airdrop(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

    function airdropMany(address[] calldata to, uint count) external onlyOwner {
		require(
			_totalMinted() + (count * to.length) <= maxSupply,
			'Exceeds max supply'
		);
        for (uint i = 0; i < to.length; i++) _safeMint(to[i], count);
	}

	function setSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

	function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdropMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","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":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101bc600955610100604052604360808181529062001ca560a03980516200003091600b9160209091019062000141565b506040805160208101918290526000908190526200005191600c9162000141565b503480156200005f57600080fd5b50604080518082018252601681527f4d7973746572696f757343617264626f617264426f78000000000000000000006020808301918252835180850190945260038452620849eb60eb1b908401528151919291620000c09160029162000141565b508051620000d690600390602084019062000141565b5050600160005550620000e933620000ef565b62000224565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014f90620001e7565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600181811c90821680620001fc57607f821691505b602082108114156200021e57634e487b7160e01b600052602260045260246000fd5b50919050565b611a7180620002346000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063c87b56dd11610097578063e8a3d48511610071578063e8a3d4851461035d578063e985e9c514610371578063f2fde38b146103ad578063f4a560a5146103c057600080fd5b8063c87b56dd14610339578063d5abeb011461034c578063d82104821461035557600080fd5b806395d89b41116100d357806395d89b41146102f8578063a22cb46514610300578063b41fb9ce14610313578063b88d4fde1461032657600080fd5b8063715018a6146102cc5780638ba4cc3c146102d45780638da5cb5b146102e757600080fd5b806323b872dd1161016657806342842e0e1161014057806342842e0e146102805780634c261247146102935780636352211e146102a657806370a08231146102b957600080fd5b806323b872dd146102525780633b4c4b25146102655780633ccfd60b1461027857600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b3146102165780630de76de41461022b57806318160ddd14610238575b600080fd5b6101c16101bc366004611749565b6103c8565b60405190151581526020015b60405180910390f35b6101de61041a565b6040516101cd919061188d565b6101fe6101f93660046117cc565b6104ac565b6040516001600160a01b0390911681526020016101cd565b6102296102243660046116a4565b6104f0565b005b600a546101c19060ff1681565b60015460005403600019015b6040519081526020016101cd565b6102296102603660046115b0565b610577565b6102296102733660046117cc565b610582565b6102296105ba565b61022961028e3660046115b0565b610617565b6102296102a1366004611783565b610632565b6101fe6102b43660046117cc565b6106ba565b6102446102c736600461155b565b6106cc565b61022961071b565b6102296102e23660046116a4565b610751565b6008546001600160a01b03166101fe565b6101de6107e3565b61022961030e366004611668565b6107f2565b6102296103213660046116ce565b610888565b6102296103343660046115ec565b610966565b6101de6103473660046117cc565b6109aa565b61024460095481565b6101de610af0565b6040805160208101909152600081526101de565b6101c161037f36600461157d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102296103bb36600461155b565b610b7e565b610229610c19565b60006001600160e01b031982166380ac58cd60e01b14806103f957506001600160e01b03198216635b5e139f60e01b145b8061041457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461042990611963565b80601f016020809104026020016040519081016040528092919081815260200182805461045590611963565b80156104a25780601f10610477576101008083540402835291602001916104a2565b820191906000526020600020905b81548152906001019060200180831161048557829003601f168201915b5050505050905090565b60006104b782610c52565b6104d4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104fb826106ba565b9050806001600160a01b0316836001600160a01b031614156105305760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146105675761054a813361037f565b610567576040516367d9dca160e11b815260040160405180910390fd5b610572838383610c8b565b505050565b610572838383610ce7565b6008546001600160a01b031633146105b55760405162461bcd60e51b81526004016105ac906118a0565b60405180910390fd5b600955565b6008546001600160a01b031633146105e45760405162461bcd60e51b81526004016105ac906118a0565b6040514790339082156108fc029083906000818181858888f19350505050158015610613573d6000803e3d6000fd5b5050565b61057283838360405180602001604052806000815250610966565b6008546001600160a01b0316331461065c5760405162461bcd60e51b81526004016105ac906118a0565b600a5460ff16156106a75760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016105ac565b805161061390600b906020840190611430565b60006106c582610ed6565b5192915050565b60006001600160a01b0382166106f5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107455760405162461bcd60e51b81526004016105ac906118a0565b61074f6000610ffa565b565b6008546001600160a01b0316331461077b5760405162461bcd60e51b81526004016105ac906118a0565b6009548161078c6000546000190190565b61079691906118d5565b11156107d95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016105ac565b610613828261104c565b60606003805461042990611963565b6001600160a01b03821633141561081c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146108b25760405162461bcd60e51b81526004016105ac906118a0565b6009546108bf8383611901565b600054600019016108d091906118d5565b11156109135760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016105ac565b60005b828110156109605761094e848483818110610933576109336119f9565b9050602002016020810190610948919061155b565b8361104c565b806109588161199e565b915050610916565b50505050565b610971848484610ce7565b6001600160a01b0383163b156109605761098d84848484611066565b610960576040516368d2bf6b60e11b815260040160405180910390fd5b60606109b582610c52565b610a195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ac565b6000610a2361115e565b5111610ab957600c8054610a3690611963565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290611963565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050610414565b610ac161115e565b610aca8361116d565b604051602001610adb929190611811565b60405160208183030381529060405292915050565b600c8054610afd90611963565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2990611963565b8015610b765780601f10610b4b57610100808354040283529160200191610b76565b820191906000526020600020905b815481529060010190602001808311610b5957829003601f168201915b505050505081565b6008546001600160a01b03163314610ba85760405162461bcd60e51b81526004016105ac906118a0565b6001600160a01b038116610c0d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b610c1681610ffa565b50565b6008546001600160a01b03163314610c435760405162461bcd60e51b81526004016105ac906118a0565b600a805460ff19166001179055565b600081600111158015610c66575060005482105b8015610414575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cf282610ed6565b9050836001600160a01b031681600001516001600160a01b031614610d295760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d475750610d47853361037f565b80610d62575033610d57846104ac565b6001600160a01b0316145b905080610d8257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610da957604051633a954ecd60e21b815260040160405180910390fd5b610db560008487610c8b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610e8b576000548214610e8b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111610fe157600054811015610fe157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610fdf5780516001600160a01b031615610f75579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610fda579392505050565b610f75565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61061382826040518060200160405280600081525061126b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061109b903390899088908890600401611850565b602060405180830381600087803b1580156110b557600080fd5b505af19250505080156110e5575060408051601f3d908101601f191682019092526110e291810190611766565b60015b611140573d808015611113576040519150601f19603f3d011682016040523d82523d6000602084013e611118565b606091505b508051611138576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461042990611963565b6060816111915750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111bb57806111a58161199e565b91506111b49050600a836118ed565b9150611195565b60008167ffffffffffffffff8111156111d6576111d6611a0f565b6040519080825280601f01601f191660200182016040528015611200576020820181803683370190505b5090505b841561115657611215600183611920565b9150611222600a866119b9565b61122d9060306118d5565b60f81b818381518110611242576112426119f9565b60200101906001600160f81b031916908160001a905350611264600a866118ed565b9450611204565b6000546001600160a01b03841661129457604051622e076360e81b815260040160405180910390fd5b826112b25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156113db575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113a46000878480600101955087611066565b6113c1576040516368d2bf6b60e11b815260040160405180910390fd5b8082106113595782600054146113d657600080fd5b611420565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113dc575b5060009081556109609085838684565b82805461143c90611963565b90600052602060002090601f01602090048101928261145e57600085556114a4565b82601f1061147757805160ff19168380011785556114a4565b828001600101855582156114a4579182015b828111156114a4578251825591602001919060010190611489565b506114b09291506114b4565b5090565b5b808211156114b057600081556001016114b5565b600067ffffffffffffffff808411156114e4576114e4611a0f565b604051601f8501601f19908116603f0116810190828211818310171561150c5761150c611a0f565b8160405280935085815286868601111561152557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461155657600080fd5b919050565b60006020828403121561156d57600080fd5b6115768261153f565b9392505050565b6000806040838503121561159057600080fd5b6115998361153f565b91506115a76020840161153f565b90509250929050565b6000806000606084860312156115c557600080fd5b6115ce8461153f565b92506115dc6020850161153f565b9150604084013590509250925092565b6000806000806080858703121561160257600080fd5b61160b8561153f565b93506116196020860161153f565b925060408501359150606085013567ffffffffffffffff81111561163c57600080fd5b8501601f8101871361164d57600080fd5b61165c878235602084016114c9565b91505092959194509250565b6000806040838503121561167b57600080fd5b6116848361153f565b91506020830135801515811461169957600080fd5b809150509250929050565b600080604083850312156116b757600080fd5b6116c08361153f565b946020939093013593505050565b6000806000604084860312156116e357600080fd5b833567ffffffffffffffff808211156116fb57600080fd5b818601915086601f83011261170f57600080fd5b81358181111561171e57600080fd5b8760208260051b850101111561173357600080fd5b6020928301989097509590910135949350505050565b60006020828403121561175b57600080fd5b813561157681611a25565b60006020828403121561177857600080fd5b815161157681611a25565b60006020828403121561179557600080fd5b813567ffffffffffffffff8111156117ac57600080fd5b8201601f810184136117bd57600080fd5b611156848235602084016114c9565b6000602082840312156117de57600080fd5b5035919050565b600081518084526117fd816020860160208601611937565b601f01601f19169290920160200192915050565b60008351611823818460208801611937565b835190830190611837818360208801611937565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611883908301846117e5565b9695505050505050565b60208152600061157660208301846117e5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118e8576118e86119cd565b500190565b6000826118fc576118fc6119e3565b500490565b600081600019048311821515161561191b5761191b6119cd565b500290565b600082821015611932576119326119cd565b500390565b60005b8381101561195257818101518382015260200161193a565b838111156109605750506000910152565b600181811c9082168061197757607f821691505b6020821081141561199857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119b2576119b26119cd565b5060010190565b6000826119c8576119c86119e3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c1657600080fdfea264697066735822122070f8f2da3930b91c56411e4b5144bf870392ca809c3f4b4c3d23b87fd776b37d64736f6c63430008070033697066733a2f2f62616679626569667a6375797a356f6a67696379626b3761636b337a73623376676a6b67337a7735726d76676e67647064617370616461636977692f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063c87b56dd11610097578063e8a3d48511610071578063e8a3d4851461035d578063e985e9c514610371578063f2fde38b146103ad578063f4a560a5146103c057600080fd5b8063c87b56dd14610339578063d5abeb011461034c578063d82104821461035557600080fd5b806395d89b41116100d357806395d89b41146102f8578063a22cb46514610300578063b41fb9ce14610313578063b88d4fde1461032657600080fd5b8063715018a6146102cc5780638ba4cc3c146102d45780638da5cb5b146102e757600080fd5b806323b872dd1161016657806342842e0e1161014057806342842e0e146102805780634c261247146102935780636352211e146102a657806370a08231146102b957600080fd5b806323b872dd146102525780633b4c4b25146102655780633ccfd60b1461027857600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b3146102165780630de76de41461022b57806318160ddd14610238575b600080fd5b6101c16101bc366004611749565b6103c8565b60405190151581526020015b60405180910390f35b6101de61041a565b6040516101cd919061188d565b6101fe6101f93660046117cc565b6104ac565b6040516001600160a01b0390911681526020016101cd565b6102296102243660046116a4565b6104f0565b005b600a546101c19060ff1681565b60015460005403600019015b6040519081526020016101cd565b6102296102603660046115b0565b610577565b6102296102733660046117cc565b610582565b6102296105ba565b61022961028e3660046115b0565b610617565b6102296102a1366004611783565b610632565b6101fe6102b43660046117cc565b6106ba565b6102446102c736600461155b565b6106cc565b61022961071b565b6102296102e23660046116a4565b610751565b6008546001600160a01b03166101fe565b6101de6107e3565b61022961030e366004611668565b6107f2565b6102296103213660046116ce565b610888565b6102296103343660046115ec565b610966565b6101de6103473660046117cc565b6109aa565b61024460095481565b6101de610af0565b6040805160208101909152600081526101de565b6101c161037f36600461157d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102296103bb36600461155b565b610b7e565b610229610c19565b60006001600160e01b031982166380ac58cd60e01b14806103f957506001600160e01b03198216635b5e139f60e01b145b8061041457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461042990611963565b80601f016020809104026020016040519081016040528092919081815260200182805461045590611963565b80156104a25780601f10610477576101008083540402835291602001916104a2565b820191906000526020600020905b81548152906001019060200180831161048557829003601f168201915b5050505050905090565b60006104b782610c52565b6104d4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104fb826106ba565b9050806001600160a01b0316836001600160a01b031614156105305760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146105675761054a813361037f565b610567576040516367d9dca160e11b815260040160405180910390fd5b610572838383610c8b565b505050565b610572838383610ce7565b6008546001600160a01b031633146105b55760405162461bcd60e51b81526004016105ac906118a0565b60405180910390fd5b600955565b6008546001600160a01b031633146105e45760405162461bcd60e51b81526004016105ac906118a0565b6040514790339082156108fc029083906000818181858888f19350505050158015610613573d6000803e3d6000fd5b5050565b61057283838360405180602001604052806000815250610966565b6008546001600160a01b0316331461065c5760405162461bcd60e51b81526004016105ac906118a0565b600a5460ff16156106a75760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016105ac565b805161061390600b906020840190611430565b60006106c582610ed6565b5192915050565b60006001600160a01b0382166106f5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107455760405162461bcd60e51b81526004016105ac906118a0565b61074f6000610ffa565b565b6008546001600160a01b0316331461077b5760405162461bcd60e51b81526004016105ac906118a0565b6009548161078c6000546000190190565b61079691906118d5565b11156107d95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016105ac565b610613828261104c565b60606003805461042990611963565b6001600160a01b03821633141561081c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146108b25760405162461bcd60e51b81526004016105ac906118a0565b6009546108bf8383611901565b600054600019016108d091906118d5565b11156109135760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016105ac565b60005b828110156109605761094e848483818110610933576109336119f9565b9050602002016020810190610948919061155b565b8361104c565b806109588161199e565b915050610916565b50505050565b610971848484610ce7565b6001600160a01b0383163b156109605761098d84848484611066565b610960576040516368d2bf6b60e11b815260040160405180910390fd5b60606109b582610c52565b610a195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ac565b6000610a2361115e565b5111610ab957600c8054610a3690611963565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290611963565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050610414565b610ac161115e565b610aca8361116d565b604051602001610adb929190611811565b60405160208183030381529060405292915050565b600c8054610afd90611963565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2990611963565b8015610b765780601f10610b4b57610100808354040283529160200191610b76565b820191906000526020600020905b815481529060010190602001808311610b5957829003601f168201915b505050505081565b6008546001600160a01b03163314610ba85760405162461bcd60e51b81526004016105ac906118a0565b6001600160a01b038116610c0d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b610c1681610ffa565b50565b6008546001600160a01b03163314610c435760405162461bcd60e51b81526004016105ac906118a0565b600a805460ff19166001179055565b600081600111158015610c66575060005482105b8015610414575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cf282610ed6565b9050836001600160a01b031681600001516001600160a01b031614610d295760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d475750610d47853361037f565b80610d62575033610d57846104ac565b6001600160a01b0316145b905080610d8257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610da957604051633a954ecd60e21b815260040160405180910390fd5b610db560008487610c8b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610e8b576000548214610e8b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111610fe157600054811015610fe157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610fdf5780516001600160a01b031615610f75579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610fda579392505050565b610f75565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61061382826040518060200160405280600081525061126b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061109b903390899088908890600401611850565b602060405180830381600087803b1580156110b557600080fd5b505af19250505080156110e5575060408051601f3d908101601f191682019092526110e291810190611766565b60015b611140573d808015611113576040519150601f19603f3d011682016040523d82523d6000602084013e611118565b606091505b508051611138576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461042990611963565b6060816111915750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111bb57806111a58161199e565b91506111b49050600a836118ed565b9150611195565b60008167ffffffffffffffff8111156111d6576111d6611a0f565b6040519080825280601f01601f191660200182016040528015611200576020820181803683370190505b5090505b841561115657611215600183611920565b9150611222600a866119b9565b61122d9060306118d5565b60f81b818381518110611242576112426119f9565b60200101906001600160f81b031916908160001a905350611264600a866118ed565b9450611204565b6000546001600160a01b03841661129457604051622e076360e81b815260040160405180910390fd5b826112b25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156113db575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113a46000878480600101955087611066565b6113c1576040516368d2bf6b60e11b815260040160405180910390fd5b8082106113595782600054146113d657600080fd5b611420565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113dc575b5060009081556109609085838684565b82805461143c90611963565b90600052602060002090601f01602090048101928261145e57600085556114a4565b82601f1061147757805160ff19168380011785556114a4565b828001600101855582156114a4579182015b828111156114a4578251825591602001919060010190611489565b506114b09291506114b4565b5090565b5b808211156114b057600081556001016114b5565b600067ffffffffffffffff808411156114e4576114e4611a0f565b604051601f8501601f19908116603f0116810190828211818310171561150c5761150c611a0f565b8160405280935085815286868601111561152557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461155657600080fd5b919050565b60006020828403121561156d57600080fd5b6115768261153f565b9392505050565b6000806040838503121561159057600080fd5b6115998361153f565b91506115a76020840161153f565b90509250929050565b6000806000606084860312156115c557600080fd5b6115ce8461153f565b92506115dc6020850161153f565b9150604084013590509250925092565b6000806000806080858703121561160257600080fd5b61160b8561153f565b93506116196020860161153f565b925060408501359150606085013567ffffffffffffffff81111561163c57600080fd5b8501601f8101871361164d57600080fd5b61165c878235602084016114c9565b91505092959194509250565b6000806040838503121561167b57600080fd5b6116848361153f565b91506020830135801515811461169957600080fd5b809150509250929050565b600080604083850312156116b757600080fd5b6116c08361153f565b946020939093013593505050565b6000806000604084860312156116e357600080fd5b833567ffffffffffffffff808211156116fb57600080fd5b818601915086601f83011261170f57600080fd5b81358181111561171e57600080fd5b8760208260051b850101111561173357600080fd5b6020928301989097509590910135949350505050565b60006020828403121561175b57600080fd5b813561157681611a25565b60006020828403121561177857600080fd5b815161157681611a25565b60006020828403121561179557600080fd5b813567ffffffffffffffff8111156117ac57600080fd5b8201601f810184136117bd57600080fd5b611156848235602084016114c9565b6000602082840312156117de57600080fd5b5035919050565b600081518084526117fd816020860160208601611937565b601f01601f19169290920160200192915050565b60008351611823818460208801611937565b835190830190611837818360208801611937565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611883908301846117e5565b9695505050505050565b60208152600061157660208301846117e5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118e8576118e86119cd565b500190565b6000826118fc576118fc6119e3565b500490565b600081600019048311821515161561191b5761191b6119cd565b500290565b600082821015611932576119326119cd565b500390565b60005b8381101561195257818101518382015260200161193a565b838111156109605750506000910152565b600181811c9082168061197757607f821691505b6020821081141561199857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119b2576119b26119cd565b5060010190565b6000826119c8576119c86119e3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c1657600080fdfea264697066735822122070f8f2da3930b91c56411e4b5144bf870392ca809c3f4b4c3d23b87fd776b37d64736f6c63430008070033

Deployed Bytecode Sourcemap

49712:2546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28333:305;;;;;;:::i;:::-;;:::i;:::-;;;6507:14:1;;6500:22;6482:41;;6470:2;6455:18;28333:305:0;;;;;;;;31448:100;;;:::i;:::-;;;;;;;:::i;32952:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5805:32:1;;;5787:51;;5775:2;5760:18;32952:204:0;5641:203:1;32514:372:0;;;;;;:::i;:::-;;:::i;:::-;;49832:27;;;;;;;;;27573:312;50257:1;27836:12;27626:7;27820:13;:28;-1:-1:-1;;27820:46:0;27573:312;;;8785:25:1;;;8773:2;8758:18;27573:312:0;8639:177:1;33817:170:0;;;;;;:::i;:::-;;:::i;51818:91::-;;;;;;:::i;:::-;;:::i;51234:143::-;;;:::i;34058:185::-;;;;;;:::i;:::-;;:::i;50447:139::-;;;;;;:::i;:::-;;:::i;31256:125::-;;;;;;:::i;:::-;;:::i;28702:206::-;;;;;;:::i;:::-;;:::i;48860:103::-;;;:::i;51382:174::-;;;;;;:::i;:::-;;:::i;48209:87::-;48282:6;;-1:-1:-1;;;;;48282:6:0;48209:87;;31617:104;;;:::i;33228:287::-;;;;;;:::i;:::-;;:::i;51564:249::-;;;;;;:::i;:::-;;:::i;34314:370::-;;;;;;:::i;:::-;;:::i;51914:341::-;;;;;;:::i;:::-;;:::i;49796:27::-;;;;;;49965:31;;;:::i;50268:78::-;50332:9;;;;;;;;;-1:-1:-1;50332:9:0;;50268:78;;33586:164;;;;;;:::i;:::-;-1:-1:-1;;;;;33707:25:0;;;33683:4;33707:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33586:164;49118:201;;;;;;:::i;:::-;;:::i;50354:88::-;;;:::i;28333:305::-;28435:4;-1:-1:-1;;;;;;28472:40:0;;-1:-1:-1;;;28472:40:0;;:105;;-1:-1:-1;;;;;;;28529:48:0;;-1:-1:-1;;;28529:48:0;28472:105;:158;;;-1:-1:-1;;;;;;;;;;15890:40:0;;;28594:36;28452:178;28333:305;-1:-1:-1;;28333:305:0:o;31448:100::-;31502:13;31535:5;31528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31448:100;:::o;32952:204::-;33020:7;33045:16;33053:7;33045;:16::i;:::-;33040:64;;33070:34;;-1:-1:-1;;;33070:34:0;;;;;;;;;;;33040:64;-1:-1:-1;33124:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33124:24:0;;32952:204::o;32514:372::-;32587:13;32603:24;32619:7;32603:15;:24::i;:::-;32587:40;;32648:5;-1:-1:-1;;;;;32642:11:0;:2;-1:-1:-1;;;;;32642:11:0;;32638:48;;;32662:24;;-1:-1:-1;;;32662:24:0;;;;;;;;;;;32638:48;25350:10;-1:-1:-1;;;;;32703:21:0;;;32699:139;;32730:37;32747:5;25350:10;33586:164;:::i;32730:37::-;32726:112;;32791:35;;-1:-1:-1;;;32791:35:0;;;;;;;;;;;32726:112;32850:28;32859:2;32863:7;32872:5;32850:8;:28::i;:::-;32576:310;32514:372;;:::o;33817:170::-;33951:28;33961:4;33967:2;33971:7;33951:9;:28::i;51818:91::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;;;;;;;;;51880:9:::1;:24:::0;51818:91::o;51234:143::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;51332:37:::1;::::0;51300:21:::1;::::0;51340:10:::1;::::0;51332:37;::::1;;;::::0;51300:21;;51282:15:::1;51332:37:::0;51282:15;51332:37;51300:21;51340:10;51332:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51271:106;51234:143::o:0;34058:185::-;34196:39;34213:4;34219:2;34223:7;34196:39;;;;;;;;;;;;:16;:39::i;50447:139::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;50521:15:::1;::::0;::::1;;50520:16;50512:50;;;::::0;-1:-1:-1;;;50512:50:0;;6960:2:1;50512:50:0::1;::::0;::::1;6942:21:1::0;6999:2;6979:18;;;6972:30;-1:-1:-1;;;7018:18:1;;;7011:51;7079:18;;50512:50:0::1;6758:345:1::0;50512:50:0::1;50567:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;31256:125::-:0;31320:7;31347:21;31360:7;31347:12;:21::i;:::-;:26;;31256:125;-1:-1:-1;;31256:125:0:o;28702:206::-;28766:7;-1:-1:-1;;;;;28790:19:0;;28786:60;;28818:28;;-1:-1:-1;;;28818:28:0;;;;;;;;;;;28786:60;-1:-1:-1;;;;;;28872:19:0;;;;;:12;:19;;;;;:27;;;;28702:206::o;48860:103::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;48925:30:::1;48952:1;48925:18;:30::i;:::-;48860:103::o:0;51382:174::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;51486:9:::1;;51477:5;51460:14;28025:7:::0;28211:13;-1:-1:-1;;28211:31:0;;27978:283;51460:14:::1;:22;;;;:::i;:::-;:35;;51447:79;;;::::0;-1:-1:-1;;;51447:79:0;;7717:2:1;51447:79:0::1;::::0;::::1;7699:21:1::0;7756:2;7736:18;;;7729:30;-1:-1:-1;;;7775:18:1;;;7768:48;7833:18;;51447:79:0::1;7515:342:1::0;51447:79:0::1;51531:20;51541:2;51545:5;51531:9;:20::i;31617:104::-:0;31673:13;31706:7;31699:14;;;;;:::i;33228:287::-;-1:-1:-1;;;;;33327:24:0;;25350:10;33327:24;33323:54;;;33360:17;;-1:-1:-1;;;33360:17:0;;;;;;;;;;;33323:54;25350:10;33390:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33390:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33390:53:0;;;;;;;;;;33459:48;;6482:41:1;;;33390:42:0;;25350:10;33459:48;;6455:18:1;33459:48:0;;;;;;;33228:287;;:::o;51564:249::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;51697:9:::1;::::0;51675:17:::1;51683:2:::0;51675:5;:17:::1;:::i;:::-;28025:7:::0;28211:13;-1:-1:-1;;28211:31:0;51657:36:::1;;;;:::i;:::-;:49;;51644:93;;;::::0;-1:-1:-1;;;51644:93:0;;7717:2:1;51644:93:0::1;::::0;::::1;7699:21:1::0;7756:2;7736:18;;;7729:30;-1:-1:-1;;;7775:18:1;;;7768:48;7833:18;;51644:93:0::1;7515:342:1::0;51644:93:0::1;51753:6;51748:60;51765:13:::0;;::::1;51748:60;;;51785:23;51795:2;;51798:1;51795:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;51802;51785:9;:23::i;:::-;51780:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51748:60;;;;51564:249:::0;;;:::o;34314:370::-;34481:28;34491:4;34497:2;34501:7;34481:9;:28::i;:::-;-1:-1:-1;;;;;34524:13:0;;5970:19;:23;34520:157;;34545:56;34576:4;34582:2;34586:7;34595:5;34545:30;:56::i;:::-;34541:136;;34625:40;;-1:-1:-1;;;34625:40:0;;;;;;;;;;;51914:341;51988:13;52024:16;52032:7;52024;:16::i;:::-;52016:76;;;;-1:-1:-1;;;52016:76:0;;8425:2:1;52016:76:0;;;8407:21:1;8464:2;8444:18;;;8437:30;8503:34;8483:18;;;8476:62;-1:-1:-1;;;8554:18:1;;;8547:45;8609:19;;52016:76:0;8223:411:1;52016:76:0;52139:1;52118:10;:8;:10::i;:::-;52112:24;:28;:138;;52238:12;52112:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52181:10;:8;:10::i;:::-;52193:18;:7;:16;:18::i;:::-;52164:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52105:145;51914:341;-1:-1:-1;;51914:341:0:o;49965:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49118:201::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49207:22:0;::::1;49199:73;;;::::0;-1:-1:-1;;;49199:73:0;;7310:2:1;49199:73:0::1;::::0;::::1;7292:21:1::0;7349:2;7329:18;;;7322:30;7388:34;7368:18;;;7361:62;-1:-1:-1;;;7439:18:1;;;7432:36;7485:19;;49199:73:0::1;7108:402:1::0;49199:73:0::1;49283:28;49302:8;49283:18;:28::i;:::-;49118:201:::0;:::o;50354:88::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;50412:15:::1;:22:::0;;-1:-1:-1;;50412:22:0::1;50430:4;50412:22;::::0;;50354:88::o;34939:174::-;34996:4;35039:7;50257:1;35020:26;;:53;;;;;35060:13;;35050:7;:23;35020:53;:85;;;;-1:-1:-1;;35078:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35078:27:0;;;;35077:28;;34939:174::o;44161:196::-;44276:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44276:29:0;-1:-1:-1;;;;;44276:29:0;;;;;;;;;44321:28;;44276:24;;44321:28;;;;;;;44161:196;;;:::o;39109:2130::-;39224:35;39262:21;39275:7;39262:12;:21::i;:::-;39224:59;;39322:4;-1:-1:-1;;;;;39300:26:0;:13;:18;;;-1:-1:-1;;;;;39300:26:0;;39296:67;;39335:28;;-1:-1:-1;;;39335:28:0;;;;;;;;;;;39296:67;39376:22;25350:10;-1:-1:-1;;;;;39402:20:0;;;;:73;;-1:-1:-1;39439:36:0;39456:4;25350:10;33586:164;:::i;39439:36::-;39402:126;;;-1:-1:-1;25350:10:0;39492:20;39504:7;39492:11;:20::i;:::-;-1:-1:-1;;;;;39492:36:0;;39402:126;39376:153;;39547:17;39542:66;;39573:35;;-1:-1:-1;;;39573:35:0;;;;;;;;;;;39542:66;-1:-1:-1;;;;;39623:16:0;;39619:52;;39648:23;;-1:-1:-1;;;39648:23:0;;;;;;;;;;;39619:52;39792:35;39809:1;39813:7;39822:4;39792:8;:35::i;:::-;-1:-1:-1;;;;;40123:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40123:31:0;;;;;;;-1:-1:-1;;40123:31:0;;;;;;;40169:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40169:29:0;;;;;;;;;;;40249:20;;;:11;:20;;;;;;40284:18;;-1:-1:-1;;;;;;40317:49:0;;;;-1:-1:-1;;;40350:15:0;40317:49;;;;;;;;;;40640:11;;40700:24;;;;;40743:13;;40249:20;;40700:24;;40743:13;40739:384;;40953:13;;40938:11;:28;40934:174;;40991:20;;41060:28;;;;41034:54;;-1:-1:-1;;;41034:54:0;-1:-1:-1;;;;;;41034:54:0;;;-1:-1:-1;;;;;40991:20:0;;41034:54;;;;40934:174;40098:1036;;;41170:7;41166:2;-1:-1:-1;;;;;41151:27:0;41160:4;-1:-1:-1;;;;;41151:27:0;;;;;;;;;;;39213:2026;;39109:2130;;;:::o;30083:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30194:7:0;;50257:1;30243:23;30239:888;;30279:13;;30272:4;:20;30268:859;;;30313:31;30347:17;;;:11;:17;;;;;;;;;30313:51;;;;;;;;;-1:-1:-1;;;;;30313:51:0;;;;-1:-1:-1;;;30313:51:0;;;;;;;;;;;-1:-1:-1;;;30313:51:0;;;;;;;;;;;;;;30383:729;;30433:14;;-1:-1:-1;;;;;30433:28:0;;30429:101;;30497:9;30083:1111;-1:-1:-1;;;30083:1111:0:o;30429:101::-;-1:-1:-1;;;30872:6:0;30917:17;;;;:11;:17;;;;;;;;;30905:29;;;;;;;;;-1:-1:-1;;;;;30905:29:0;;;;;-1:-1:-1;;;30905:29:0;;;;;;;;;;;-1:-1:-1;;;30905:29:0;;;;;;;;;;;;;30965:28;30961:109;;31033:9;30083:1111;-1:-1:-1;;;30083:1111:0:o;30961:109::-;30832:261;;;30294:833;30268:859;31155:31;;-1:-1:-1;;;31155:31:0;;;;;;;;;;;49479:191;49572:6;;;-1:-1:-1;;;;;49589:17:0;;;-1:-1:-1;;;;;;49589:17:0;;;;;;;49622:40;;49572:6;;;49589:17;49572:6;;49622:40;;49553:16;;49622:40;49542:128;49479:191;:::o;35197:104::-;35266:27;35276:2;35280:8;35266:27;;;;;;;;;;;;:9;:27::i;44849:667::-;45033:72;;-1:-1:-1;;;45033:72:0;;45012:4;;-1:-1:-1;;;;;45033:36:0;;;;;:72;;25350:10;;45084:4;;45090:7;;45099:5;;45033:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45033:72:0;;;;;;;;-1:-1:-1;;45033:72:0;;;;;;;;;;;;:::i;:::-;;;45029:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45267:13:0;;45263:235;;45313:40;;-1:-1:-1;;;45313:40:0;;;;;;;;;;;45263:235;45456:6;45450:13;45441:6;45437:2;45433:15;45426:38;45029:480;-1:-1:-1;;;;;;45152:55:0;-1:-1:-1;;;45152:55:0;;-1:-1:-1;45029:480:0;44849:667;;;;;;:::o;50085:92::-;50137:13;50164:8;50157:15;;;;;:::i;2683:723::-;2739:13;2960:10;2956:53;;-1:-1:-1;;2987:10:0;;;;;;;;;;;;-1:-1:-1;;;2987:10:0;;;;;2683:723::o;2956:53::-;3034:5;3019:12;3075:78;3082:9;;3075:78;;3108:8;;;;:::i;:::-;;-1:-1:-1;3131:10:0;;-1:-1:-1;3139:2:0;3131:10;;:::i;:::-;;;3075:78;;;3163:19;3195:6;3185:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3185:17:0;;3163:39;;3213:154;3220:10;;3213:154;;3247:11;3257:1;3247:11;;:::i;:::-;;-1:-1:-1;3316:10:0;3324:2;3316:5;:10;:::i;:::-;3303:24;;:2;:24;:::i;:::-;3290:39;;3273:6;3280;3273:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3273:56:0;;;;;;;;-1:-1:-1;3344:11:0;3353:2;3344:11;;:::i;:::-;;;3213:154;;35674:1749;35797:20;35820:13;-1:-1:-1;;;;;35848:16:0;;35844:48;;35873:19;;-1:-1:-1;;;35873:19:0;;;;;;;;;;;35844:48;35907:13;35903:44;;35929:18;;-1:-1:-1;;;35929:18:0;;;;;;;;;;;35903:44;-1:-1:-1;;;;;36298:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36357:49:0;;36298:44;;;;;;;;36357:49;;;;-1:-1:-1;;36298:44:0;;;;;;36357:49;;;;;;;;;;;;;;;;36423:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36473:66:0;;;-1:-1:-1;;;36523:15:0;36473:66;;;;;;;;;;;;;36423:25;;36620:23;;;;5970:19;:23;36660:631;;36700:313;36731:38;;36756:12;;-1:-1:-1;;;;;36731:38:0;;;36748:1;;36731:38;;36748:1;;36731:38;36797:69;36836:1;36840:2;36844:14;;;;;;36860:5;36797:30;:69::i;:::-;36792:174;;36902:40;;-1:-1:-1;;;36902:40:0;;;;;;;;;;;36792:174;37008:3;36993:12;:18;36700:313;;37094:12;37077:13;;:29;37073:43;;37108:8;;;37073:43;36660:631;;;37157:119;37188:40;;37213:14;;;;;-1:-1:-1;;;;;37188:40:0;;;37205:1;;37188:40;;37205:1;;37188:40;37271:3;37256:12;:18;37157:119;;36660:631;-1:-1:-1;37305:13:0;:28;;;37355:60;;37388:2;37392:12;37406:8;37355:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:689::-;2994:6;3002;3010;3063:2;3051:9;3042:7;3038:23;3034:32;3031:52;;;3079:1;3076;3069:12;3031:52;3119:9;3106:23;3148:18;3189:2;3181:6;3178:14;3175:34;;;3205:1;3202;3195:12;3175:34;3243:6;3232:9;3228:22;3218:32;;3288:7;3281:4;3277:2;3273:13;3269:27;3259:55;;3310:1;3307;3300:12;3259:55;3350:2;3337:16;3376:2;3368:6;3365:14;3362:34;;;3392:1;3389;3382:12;3362:34;3447:7;3440:4;3430:6;3427:1;3423:14;3419:2;3415:23;3411:34;3408:47;3405:67;;;3468:1;3465;3458:12;3405:67;3499:4;3491:13;;;;3523:6;;-1:-1:-1;3561:20:1;;;;3548:34;;2899:689;-1:-1:-1;;;;2899:689:1:o;3593:245::-;3651:6;3704:2;3692:9;3683:7;3679:23;3675:32;3672:52;;;3720:1;3717;3710:12;3672:52;3759:9;3746:23;3778:30;3802:5;3778:30;:::i;3843:249::-;3912:6;3965:2;3953:9;3944:7;3940:23;3936:32;3933:52;;;3981:1;3978;3971:12;3933:52;4013:9;4007:16;4032:30;4056:5;4032:30;:::i;4097:450::-;4166:6;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4275:9;4262:23;4308:18;4300:6;4297:30;4294:50;;;4340:1;4337;4330:12;4294:50;4363:22;;4416:4;4408:13;;4404:27;-1:-1:-1;4394:55:1;;4445:1;4442;4435:12;4394:55;4468:73;4533:7;4528:2;4515:16;4510:2;4506;4502:11;4468:73;:::i;4552:180::-;4611:6;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;-1:-1:-1;4703:23:1;;4552:180;-1:-1:-1;4552:180:1:o;4737:257::-;4778:3;4816:5;4810:12;4843:6;4838:3;4831:19;4859:63;4915:6;4908:4;4903:3;4899:14;4892:4;4885:5;4881:16;4859:63;:::i;:::-;4976:2;4955:15;-1:-1:-1;;4951:29:1;4942:39;;;;4983:4;4938:50;;4737:257;-1:-1:-1;;4737:257:1:o;4999:637::-;5279:3;5317:6;5311:13;5333:53;5379:6;5374:3;5367:4;5359:6;5355:17;5333:53;:::i;:::-;5449:13;;5408:16;;;;5471:57;5449:13;5408:16;5505:4;5493:17;;5471:57;:::i;:::-;-1:-1:-1;;;5550:20:1;;5579:22;;;5628:1;5617:13;;4999:637;-1:-1:-1;;;;4999:637:1:o;5849:488::-;-1:-1:-1;;;;;6118:15:1;;;6100:34;;6170:15;;6165:2;6150:18;;6143:43;6217:2;6202:18;;6195:34;;;6265:3;6260:2;6245:18;;6238:31;;;6043:4;;6286:45;;6311:19;;6303:6;6286:45;:::i;:::-;6278:53;5849:488;-1:-1:-1;;;;;;5849:488:1:o;6534:219::-;6683:2;6672:9;6665:21;6646:4;6703:44;6743:2;6732:9;6728:18;6720:6;6703:44;:::i;7862:356::-;8064:2;8046:21;;;8083:18;;;8076:30;8142:34;8137:2;8122:18;;8115:62;8209:2;8194:18;;7862:356::o;8821:128::-;8861:3;8892:1;8888:6;8885:1;8882:13;8879:39;;;8898:18;;:::i;:::-;-1:-1:-1;8934:9:1;;8821:128::o;8954:120::-;8994:1;9020;9010:35;;9025:18;;:::i;:::-;-1:-1:-1;9059:9:1;;8954:120::o;9079:168::-;9119:7;9185:1;9181;9177:6;9173:14;9170:1;9167:21;9162:1;9155:9;9148:17;9144:45;9141:71;;;9192:18;;:::i;:::-;-1:-1:-1;9232:9:1;;9079:168::o;9252:125::-;9292:4;9320:1;9317;9314:8;9311:34;;;9325:18;;:::i;:::-;-1:-1:-1;9362:9:1;;9252:125::o;9382:258::-;9454:1;9464:113;9478:6;9475:1;9472:13;9464:113;;;9554:11;;;9548:18;9535:11;;;9528:39;9500:2;9493:10;9464:113;;;9595:6;9592:1;9589:13;9586:48;;;-1:-1:-1;;9630:1:1;9612:16;;9605:27;9382:258::o;9645:380::-;9724:1;9720:12;;;;9767;;;9788:61;;9842:4;9834:6;9830:17;9820:27;;9788:61;9895:2;9887:6;9884:14;9864:18;9861:38;9858:161;;;9941:10;9936:3;9932:20;9929:1;9922:31;9976:4;9973:1;9966:15;10004:4;10001:1;9994:15;9858:161;;9645:380;;;:::o;10030:135::-;10069:3;-1:-1:-1;;10090:17:1;;10087:43;;;10110:18;;:::i;:::-;-1:-1:-1;10157:1:1;10146:13;;10030:135::o;10170:112::-;10202:1;10228;10218:35;;10233:18;;:::i;:::-;-1:-1:-1;10267:9:1;;10170:112::o;10287:127::-;10348:10;10343:3;10339:20;10336:1;10329:31;10379:4;10376:1;10369:15;10403:4;10400:1;10393:15;10419:127;10480:10;10475:3;10471:20;10468:1;10461:31;10511:4;10508:1;10501:15;10535:4;10532:1;10525:15;10551:127;10612:10;10607:3;10603:20;10600:1;10593:31;10643:4;10640:1;10633:15;10667:4;10664:1;10657:15;10683:127;10744:10;10739:3;10735:20;10732:1;10725:31;10775:4;10772:1;10765:15;10799:4;10796:1;10789:15;10815:131;-1:-1:-1;;;;;;10889:32:1;;10879:43;;10869:71;;10936:1;10933;10926:12

Swarm Source

ipfs://70f8f2da3930b91c56411e4b5144bf870392ca809c3f4b4c3d23b87fd776b37d
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.