ETH Price: $2,672.72 (+1.34%)

Token

Candy Corn WTF (CCWTF)
 

Overview

Max Total Supply

1,313 CCWTF

Holders

157

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
13 CCWTF
0xdafe9399ad9f641bcd386959052d649df3dbba4f
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:
Candycornwtf

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-28
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * 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();

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

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

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

    // ==============================
    //            IERC721
    // ==============================

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    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();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/Candycornwtf.sol



//////////////////////////////////////////// Trick-Or-Treat... Smell My Feet... Give Me Something Good to Eat... ///////////////////////////////////////
//.......................................................................,;;::::;,......................................................................
//...................................................................;ldxkOOOOOOOkxoc;..................................................................
//.................................................................:dOOOOOOOOO00O00OOko;................................................................
//...............................................................,oOOOOOOOOOOO00O0OOOOOko;..............................................................
//..............................................................:xOOOOOOOOOOOO00O0OOOOOOOx:.............................................................
//.............................................................ckOOOOOOOOOOOOO00O0OOOOOOOOx:............................................................
//............................................................:k0OOOOOOOOOOOOO00O0OOOOOOOOOx;...........................................................
//...........................................................,dO0OOOOOOOOOOOOO00O0OOOOOOOOOOo'..........................................................
//..........................................................'oO00OOOOOOOOOOOOO00O0OOOOOOOOOOkc..........................................................
//..........................................................ck00OOOOOOOOOOOOOO00O0OOOOOOOOOOOx;.........................................................
//.........................................................,x0OOOOOOOOOOOOOOOO00O0OOOOOOOOOOOOd'........................................................
//.........................................................lO0OOOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOl........................................................
//........................................................;xO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOx;.......................................................
//........................................................lOOO000OOOOOOOOOOOOO00O0OOOOOOOOOOOOOOl.......................................................
//.......................................................;xOO00OOOOOOOOOOOOOO000O0OOOOOOOOOOOOO0x;......................................................
//......................................................'oOOOOOO0OOOOOOOOOOOOO0000OOOOOOOOOOOOOOOl......................................................
//......................................................;dxkOO000OO000OOOOOOO000000OOOOOOOOOOO00Ok:.....................................................
//......................................................;c:::cccloodoodxkOOOOOOOOOOOOOOOOOOOOkOOOx:.....................................................
//.....................................................:xOkxdddolcccccccccccccc::;;:xeatx:;;::ccc:;'....................................................
//....................................................,dOOOOO00OOOOOO0Okkkkkkkkkxooooooooolodkkkkkko'...................................................
//....................................................:kOOOO0OkxkkkkxkOOOOOOO00OOO0OOkxxxkOOOOOOOO0x;...................................................
//...................................................'oOOOOxocclxxxxlccokOOOOO0OOOxddooclolodxOOOOOOl...................................................
//...................................................;xOOkocoxk......kxlcoxOOOOOxoook.....kxdoodkOOOx;..................................................
//...................................................lkOxllx............xllxO0kxxk............kxdkOOOl..................................................
//..................................................'dOxld................dlxxoo...............OdokOOd,.................................................
//..................................................ckOxox................dldxdx................xlxOOkc.................................................
//..................................................oOOxlx................dlxkxk................dlx0OOo'................................................
//.................................................:kOOkocx..............xlokxoo................ddkOOOk;................................................
//.................................................cOOOOkoclx..........kolokOOkold............lllk0OOOkc................................................
//................................................,xOOOOOOkoccc......dkcl000dxOOdlldx......dllldk0OOOOOd,...............................................
//................................................:kOOOOOOOOkxloollolodkOOOOOOO00OkdddxkkooddxO0O0OOOOOx;...............................................
//...............................................'oOOOOOOOOOO0OOOkkOOOOOOOOOOOO00OOOOOOOOkkOOOO000OOOOOOl...............................................
//...............................................,dOOOOOOOOOO0OOOOOOOOOOOOOOOO00OOOOOOOOOOOOOOO000OOOOOOd,..............................................
//...............................................ckOOOOOOOOO0OOO0OOOOOOOOOOOOO0OOOOOOOOOOOOOOOOOOO0OOOOOkc..............................................
//...............................................oOOOOOkddO00O00000OOOOOOOkO0000OO0OO00OOOOOOOOOkddOOOOOOl..............................................
//..............................................,xOOOOOOo,;lk0Oo:cxxl:okkc,:dOOkl:okOdxyourx:kOd:;dOOOOOOx;.............................................
//..............................................cOOOOOOOx;..,:,...''..';;....,;'...;;...,'...;;..:kOOOOOOkc.............................................
//.............................................,dOOOOOOOOo'.....................................'dOOOOOOOOd,............................................
//.............................................:kOOOOOOOOkc.....'...............................:kOOOOOOOOx;............................................
//............................................'oO0OOOOOOOOx;..,oo,..:l,.'co;..'cc'':;.,c;..,'..;xOOOOOOOOOOo'...........................................
//............................................,x0OOOOOOOOOOcxfriendsxdlcdOOkddxOOxdkxoxOd;:xo''oOOOOOOOOOOOd,...........................................
//............................................:k0OOOOOOOOOOkdxOOOOkOOOOOOO0OOOOOO0OOOOOOOkkOkllk0OOOOOOOOOOk:...........................................
//...........................................'oO0OO00OOOO000OOOOOkxxxxxxxxkkOOOOO000OOO0OO000OOO00OOOOOOOOOOo...........................................
//...........................................cO0OOOOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOO...........................................
//...........................................oO00OOOOOOOOOOOO000OOOOOOOOOOOOO000O0OOOOOOOOOOOOOO00OOOOOkxddoc;..........................................
//...........................................xO00OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOx;.........................................
//...........................................xO00OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOx;.........................................
//..........................................:xO00OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOx;.........................................
//..........................................cO0OOOOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOk:.........................................
//..........................................lO0O0OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOOo'........................................
//.........................................;x00O0OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOOx,........................................
//.........................................;k00O0OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOOx,........................................
//.........................................:k0OO0OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOOx,........................................
//.........................................:k0000OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOOx,........................................
//.........................................;k0000OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOOx,........................................
//.........................................;xOOO0OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOOx,........................................
//.........................................'lOOO0OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOOl'........................................
//..........................................,dOO0OOOOOOOOOOOO00OOOOOOOOOOOOOOO00O0OOOOOOOOOOOOOOO0OOOOOOOOOOOo'.........................................
//...........................................,oO0OOOOOOOOOOOO0O0OOOOOOOOOOOOOO00O0OOOOOOOOOOOOO000OOOOOOOO0Oo'..........................................
//............................................'cxOO0OOOOOOOOO0O0OOOOOOOOOOOOOO00O0OOOOOOOOOOOOO0O00OOOOOOOx:............................................
//..............................................':dkOOOOOOOOOOOOOOOOOOOOOOOOOO00O0OOOOOOOOOOOO00O00OO0Oko:..............................................
//.................................................':ldxkO00OO00OOOOOOOOOOOOOO0000OOOOOOOOO00O000OOxoc;'................................................
//.....................................................'xxccoddxkOOOOOOOOOOOO00OO0OOOOOOOOkxddoccxxx;,..................................................
//...........................................................OOOOOOOOOO:CandyCornWTF:OO0OOOOOO..........................................................
//......................................................................................................................................................
/////////////////////////////////////////////// If You Don't Mint... I Don't Care... I Will Eat Your Candy Corn!//////////////////////////////////// 

 //\/\/\/\ CANDY CORN WTF /\/\/\/\//
pragma solidity >=0.8.4 <0.9.1;






contract Candycornwtf is ERC721AQueryable, ReentrancyGuard, Ownable  {

  bytes32 public merkleRoot;  
  using Strings for uint256;
  mapping(address => bool) public whitelistClaimed;

  uint256 public maxSupply = 1313;
  uint256 public maxMintAmountPerTx = 3;

  string public uriBase = "ipfs://cid/";
  string public uriExtension = ".json";

  uint256 public cost;

  bool public paused = true;
  bool public whitelistMintEnabled = false;

  constructor() ERC721A("Candy Corn WTF", "CCWTF") {_mint(msg.sender, 66);}

//\/\/\/\ FUNCTIONS FOR EATING /\/\/\/\//
 function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'You Cannot Eat That Many!');
    require(totalSupply() + _mintAmount <= maxSupply, 'We Do Not Have Enough Candy!');  
    require(whitelistMintEnabled, 'The Spookylist Sale Is Not Alive!');
    require(!whitelistClaimed[_msgSender()], 'You Already Ate Some');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Wrong merkle poop!');
    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

 function mint(uint256 _mintAmount) public  {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'You Cannot Eat That Many!');
    require(totalSupply() + _mintAmount <= maxSupply, 'We Do Not Have Enough Candy!');
    require(!paused, 'It Is Not Time To Eat Yet!');
    _safeMint(_msgSender(), _mintAmount);
  }
 

  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
     require(totalSupply() + _mintAmount <= maxSupply, 'We Do Not Have Enough Candy!');
    _safeMint(_receiver, _mintAmount);
  }



//\/\/\/\ FUNCTIONS FOR NOT EATING /\/\/\/\//
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'We Do Not Got That One');

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriExtension))
        : '';
  }


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

  function setUriBase(string memory _uriBase) public onlyOwner {
    uriBase = _uriBase;
  }

  function setUriExtension(string memory _uriExtension) public onlyOwner {
    uriExtension = _uriExtension;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }




}

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":"InvalidQueryRange","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":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriBase","type":"string"}],"name":"setUriBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriExtension","type":"string"}],"name":"setUriExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriBase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610521600c556003600d5560c0604052600b60808190526a697066733a2f2f6369642f60a81b60a09081526200003991600e91906200024c565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006891600f916200024c565b506011805461ffff191660011790553480156200008457600080fd5b50604080518082018252600e81526d21b0b7323c9021b7b937102baa2360911b60208083019182528351808501909452600584526421a1abaa2360d91b908401528151919291620000d8916002916200024c565b508051620000ee9060039060208401906200024c565b50600160005550506001600855620001063362000119565b620001133360426200016b565b6200032f565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0383166200019557604051622e076360e81b815260040160405180910390fd5b81620001b45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620001ff5750600055505050565b8280546200025a90620002f2565b90600052602060002090601f0160209004810192826200027e5760008555620002c9565b82601f106200029957805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c9578251825591602001919060010190620002ac565b50620002d7929150620002db565b5090565b5b80821115620002d75760008155600101620002dc565b600181811c908216806200030757607f821691505b602082108114156200032957634e487b7160e01b600052602260045260246000fd5b50919050565b612486806200033f6000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80637cb647591161013b578063b88d4fde116100b8578063db4bec441161007c578063db4bec44146104ed578063e985e9c514610510578063efbd73f41461054c578063f2fde38b1461055f578063fbca0ce11461057257600080fd5b8063b88d4fde1461048b578063c23dc68f1461049e578063c87b56dd146104be578063d2cab056146104d1578063d5abeb01146104e457600080fd5b806399a2557a116100ff57806399a2557a1461042c578063a0712d681461043f578063a22cb46514610452578063b071401b14610465578063b767a0981461047857600080fd5b80637cb64759146103d75780638462151c146103ea5780638da5cb5b1461040a57806394354fd01461041b57806395d89b411461042457600080fd5b80632eb4a7ab116101c95780635c975abb1161018d5780635c975abb1461038a5780636352211e146103975780636caede3d146103aa57806370a08231146103bc578063715018a6146103cf57600080fd5b80632eb4a7ab1461033e5780633ccfd60b1461034757806342842e0e1461034f57806352ee4696146103625780635bbb21771461036a57600080fd5b806316c38b3c1161021057806316c38b3c146102e157806318160ddd146102f457806323b872dd1461030557806327fc0cff146103185780632ce9af501461032b57600080fd5b806301ffc9a71461024d57806306fdde0314610275578063081812fc1461028a578063095ea7b3146102b557806313faede6146102ca575b600080fd5b61026061025b366004611f96565b61057a565b60405190151581526020015b60405180910390f35b61027d6105cc565b60405161026c9190612255565b61029d610298366004611f7d565b61065e565b6040516001600160a01b03909116815260200161026c565b6102c86102c3366004611ec4565b6106a2565b005b6102d360105481565b60405190815260200161026c565b6102c86102ef366004611f62565b610775565b6102d3600154600054036000190190565b6102c8610313366004611de3565b6107bb565b6102c8610326366004611fd0565b6107cb565b6102c8610339366004611fd0565b61080c565b6102d3600a5481565b6102c8610849565b6102c861035d366004611de3565b610944565b61027d61095f565b61037d610378366004611f21565b6109ed565b60405161026c91906121b3565b6011546102609060ff1681565b61029d6103a5366004611f7d565b610ab1565b60115461026090610100900460ff1681565b6102d36103ca366004611d95565b610abc565b6102c8610b0a565b6102c86103e5366004611f7d565b610b40565b6103fd6103f8366004611d95565b610b6f565b60405161026c919061221d565b6009546001600160a01b031661029d565b6102d3600d5481565b61027d610c77565b6103fd61043a366004611eee565b610c86565b6102c861044d366004611f7d565b610e11565b6102c8610460366004611e9a565b610f08565b6102c8610473366004611f7d565b610f9e565b6102c8610486366004611f62565b610fcd565b6102c8610499366004611e1f565b611011565b6104b16104ac366004611f7d565b61105b565b60405161026c91906122d4565b61027d6104cc366004611f7d565b6110d0565b6102c86104df36600461203b565b61117e565b6102d3600c5481565b6102606104fb366004611d95565b600b6020526000908152604090205460ff1681565b61026061051e366004611db0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102c861055a366004612018565b6113ac565b6102c861056d366004611d95565b61141d565b61027d6114b5565b60006301ffc9a760e01b6001600160e01b0319831614806105ab57506380ac58cd60e01b6001600160e01b03198316145b806105c65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105db90612378565b80601f016020809104026020016040519081016040528092919081815260200182805461060790612378565b80156106545780601f1061062957610100808354040283529160200191610654565b820191906000526020600020905b81548152906001019060200180831161063757829003601f168201915b5050505050905090565b6000610669826114c2565b610686576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ad826114f7565b9050806001600160a01b0316836001600160a01b031614156106e25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610719576106fc813361051e565b610719576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b031633146107a85760405162461bcd60e51b815260040161079f9061229f565b60405180910390fd5b6011805460ff1916911515919091179055565b6107c6838383611560565b505050565b6009546001600160a01b031633146107f55760405162461bcd60e51b815260040161079f9061229f565b805161080890600e906020840190611c10565b5050565b6009546001600160a01b031633146108365760405162461bcd60e51b815260040161079f9061229f565b805161080890600f906020840190611c10565b6009546001600160a01b031633146108735760405162461bcd60e51b815260040161079f9061229f565b600260085414156108c65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079f565b600260085560006108df6009546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610929576040519150601f19603f3d011682016040523d82523d6000602084013e61092e565b606091505b505090508061093c57600080fd5b506001600855565b6107c683838360405180602001604052806000815250611011565b600f805461096c90612378565b80601f016020809104026020016040519081016040528092919081815260200182805461099890612378565b80156109e55780601f106109ba576101008083540402835291602001916109e5565b820191906000526020600020905b8154815290600101906020018083116109c857829003601f168201915b505050505081565b6060816000816001600160401b03811115610a0a57610a0a612424565b604051908082528060200260200182016040528015610a5557816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610a285790505b50905060005b828114610aa857610a83868683818110610a7757610a7761240e565b9050602002013561105b565b828281518110610a9557610a9561240e565b6020908102919091010152600101610a5b565b50949350505050565b60006105c6826114f7565b60006001600160a01b038216610ae5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314610b345760405162461bcd60e51b815260040161079f9061229f565b610b3e6000611703565b565b6009546001600160a01b03163314610b6a5760405162461bcd60e51b815260040161079f9061229f565b600a55565b60606000806000610b7f85610abc565b90506000816001600160401b03811115610b9b57610b9b612424565b604051908082528060200260200182016040528015610bc4578160200160208202803683370190505b509050610bea604080516060810182526000808252602082018190529181019190915290565b60015b838614610c6b57610bfd81611755565b9150816040015115610c0e57610c63565b81516001600160a01b031615610c2357815194505b876001600160a01b0316856001600160a01b03161415610c635780838780600101985081518110610c5657610c5661240e565b6020026020010181815250505b600101610bed565b50909695505050505050565b6060600380546105db90612378565b6060818310610ca857604051631960ccad60e11b815260040160405180910390fd5b600080610cb460005490565b90506001851015610cc457600194505b80841115610cd0578093505b6000610cdb87610abc565b905084861015610cfa5785850381811015610cf4578091505b50610cfe565b5060005b6000816001600160401b03811115610d1857610d18612424565b604051908082528060200260200182016040528015610d41578160200160208202803683370190505b50905081610d54579350610e0a92505050565b6000610d5f8861105b565b905060008160400151610d70575080515b885b888114158015610d825750848714155b15610dfe57610d9081611755565b9250826040015115610da157610df6565b82516001600160a01b031615610db657825191505b8a6001600160a01b0316826001600160a01b03161415610df65780848880600101995081518110610de957610de961240e565b6020026020010181815250505b600101610d72565b50505092835250909150505b9392505050565b600081118015610e235750600d548111155b610e6b5760405162461bcd60e51b8152602060048201526019602482015278596f752043616e6e6f74204561742054686174204d616e792160381b604482015260640161079f565b600c5481610e80600154600054036000190190565b610e8a9190612309565b1115610ea85760405162461bcd60e51b815260040161079f90612268565b60115460ff1615610efb5760405162461bcd60e51b815260206004820152601a60248201527f4974204973204e6f742054696d6520546f204561742059657421000000000000604482015260640161079f565b610f05338261178a565b50565b6001600160a01b038216331415610f325760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610fc85760405162461bcd60e51b815260040161079f9061229f565b600d55565b6009546001600160a01b03163314610ff75760405162461bcd60e51b815260040161079f9061229f565b601180549115156101000261ff0019909216919091179055565b61101c848484611560565b6001600160a01b0383163b1561105557611038848484846117a4565b611055576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101929092529060018310806110a157506000548310155b156110ac5792915050565b6110b583611755565b90508060400151156110c75792915050565b610e0a8361189c565b60606110db826114c2565b6111205760405162461bcd60e51b8152602060048201526016602482015275576520446f204e6f7420476f742054686174204f6e6560501b604482015260640161079f565b600061112a6118ca565b9050600081511161114a5760405180602001604052806000815250610e0a565b80611154846118d9565b600f604051602001611168939291906120b2565b6040516020818303038152906040529392505050565b6000831180156111905750600d548311155b6111d85760405162461bcd60e51b8152602060048201526019602482015278596f752043616e6e6f74204561742054686174204d616e792160381b604482015260640161079f565b600c54836111ed600154600054036000190190565b6111f79190612309565b11156112155760405162461bcd60e51b815260040161079f90612268565b601154610100900460ff166112765760405162461bcd60e51b815260206004820152602160248201527f5468652053706f6f6b796c6973742053616c65204973204e6f7420416c6976656044820152602160f81b606482015260840161079f565b336000908152600b602052604090205460ff16156112cd5760405162461bcd60e51b8152602060048201526014602482015273596f7520416c72656164792041746520536f6d6560601b604482015260640161079f565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061134783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506119d6565b6113885760405162461bcd60e51b815260206004820152601260248201527157726f6e67206d65726b6c6520706f6f702160701b604482015260640161079f565b336000818152600b60205260409020805460ff19166001179055611055908561178a565b6009546001600160a01b031633146113d65760405162461bcd60e51b815260040161079f9061229f565b600c54826113eb600154600054036000190190565b6113f59190612309565b11156114135760405162461bcd60e51b815260040161079f90612268565b610808818361178a565b6009546001600160a01b031633146114475760405162461bcd60e51b815260040161079f9061229f565b6001600160a01b0381166114ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079f565b610f0581611703565b600e805461096c90612378565b6000816001111580156114d6575060005482105b80156105c6575050600090815260046020526040902054600160e01b161590565b600081806001116115475760005481101561154757600081815260046020526040902054600160e01b8116611545575b80610e0a575060001901600081815260046020526040902054611527565b505b604051636f96cda160e11b815260040160405180910390fd5b600061156b826114f7565b9050836001600160a01b0316816001600160a01b03161461159e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115bc57506115bc853361051e565b806115d75750336115cc8461065e565b6001600160a01b0316145b9050806115f757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661161e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166116bb57600183016000818152600460205260409020546116b95760005481146116b95760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546105c6906119ec565b610808828260405180602001604052806000815250611a26565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117d9903390899088908890600401612176565b602060405180830381600087803b1580156117f357600080fd5b505af1925050508015611823575060408051601f3d908101601f1916820190925261182091810190611fb3565b60015b61187e573d808015611851576040519150601f19603f3d011682016040523d82523d6000602084013e611856565b606091505b508051611876576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051606081018252600080825260208201819052918101919091526105c66118c5836114f7565b6119ec565b6060600e80546105db90612378565b6060816118fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119275780611911816123b3565b91506119209050600a83612321565b9150611901565b6000816001600160401b0381111561194157611941612424565b6040519080825280601f01601f19166020018201604052801561196b576020820181803683370190505b5090505b841561189457611980600183612335565b915061198d600a866123ce565b611998906030612309565b60f81b8183815181106119ad576119ad61240e565b60200101906001600160f81b031916908160001a9053506119cf600a86612321565b945061196f565b6000826119e38584611b97565b14949350505050565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b6000546001600160a01b038416611a4f57604051622e076360e81b815260040160405180910390fd5b82611a6d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611b42575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b0b60008784806001019550876117a4565b611b28576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ac0578260005414611b3d57600080fd5b611b87565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b43575b5060009081556110559085838684565b600081815b8451811015611bdc57611bc882868381518110611bbb57611bbb61240e565b6020026020010151611be4565b915080611bd4816123b3565b915050611b9c565b509392505050565b6000818310611c00576000828152602084905260409020610e0a565b5060009182526020526040902090565b828054611c1c90612378565b90600052602060002090601f016020900481019282611c3e5760008555611c84565b82601f10611c5757805160ff1916838001178555611c84565b82800160010185558215611c84579182015b82811115611c84578251825591602001919060010190611c69565b50611c90929150611c94565b5090565b5b80821115611c905760008155600101611c95565b60006001600160401b0380841115611cc357611cc3612424565b604051601f8501601f19908116603f01168101908282118183101715611ceb57611ceb612424565b81604052809350858152868686011115611d0457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d3557600080fd5b919050565b60008083601f840112611d4c57600080fd5b5081356001600160401b03811115611d6357600080fd5b6020830191508360208260051b8501011115611d7e57600080fd5b9250929050565b80358015158114611d3557600080fd5b600060208284031215611da757600080fd5b610e0a82611d1e565b60008060408385031215611dc357600080fd5b611dcc83611d1e565b9150611dda60208401611d1e565b90509250929050565b600080600060608486031215611df857600080fd5b611e0184611d1e565b9250611e0f60208501611d1e565b9150604084013590509250925092565b60008060008060808587031215611e3557600080fd5b611e3e85611d1e565b9350611e4c60208601611d1e565b92506040850135915060608501356001600160401b03811115611e6e57600080fd5b8501601f81018713611e7f57600080fd5b611e8e87823560208401611ca9565b91505092959194509250565b60008060408385031215611ead57600080fd5b611eb683611d1e565b9150611dda60208401611d85565b60008060408385031215611ed757600080fd5b611ee083611d1e565b946020939093013593505050565b600080600060608486031215611f0357600080fd5b611f0c84611d1e565b95602085013595506040909401359392505050565b60008060208385031215611f3457600080fd5b82356001600160401b03811115611f4a57600080fd5b611f5685828601611d3a565b90969095509350505050565b600060208284031215611f7457600080fd5b610e0a82611d85565b600060208284031215611f8f57600080fd5b5035919050565b600060208284031215611fa857600080fd5b8135610e0a8161243a565b600060208284031215611fc557600080fd5b8151610e0a8161243a565b600060208284031215611fe257600080fd5b81356001600160401b03811115611ff857600080fd5b8201601f8101841361200957600080fd5b61189484823560208401611ca9565b6000806040838503121561202b57600080fd5b82359150611dda60208401611d1e565b60008060006040848603121561205057600080fd5b8335925060208401356001600160401b0381111561206d57600080fd5b61207986828701611d3a565b9497909650939450505050565b6000815180845261209e81602086016020860161234c565b601f01601f19169290920160200192915050565b6000845160206120c58285838a0161234c565b8551918401916120d88184848a0161234c565b8554920191600090600181811c90808316806120f557607f831692505b85831081141561211357634e487b7160e01b85526022600452602485fd5b808015612127576001811461213857612165565b60ff19851688528388019550612165565b60008b81526020902060005b8581101561215d5781548a820152908401908801612144565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a990830184612086565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610c6b5761220a83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016121cf565b6020808252825182820181905260009190848201906040850190845b81811015610c6b57835183529284019291840191600101612239565b602081526000610e0a6020830184612086565b6020808252601c908201527f576520446f204e6f74204861766520456e6f7567682043616e64792100000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016105c6565b6000821982111561231c5761231c6123e2565b500190565b600082612330576123306123f8565b500490565b600082821015612347576123476123e2565b500390565b60005b8381101561236757818101518382015260200161234f565b838111156110555750506000910152565b600181811c9082168061238c57607f821691505b602082108114156123ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123c7576123c76123e2565b5060010190565b6000826123dd576123dd6123f8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0557600080fdfea2646970667358221220eb495bec802ae4998d5ea55b55f3f16611adab0c402880cbea303ab72228803e64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c80637cb647591161013b578063b88d4fde116100b8578063db4bec441161007c578063db4bec44146104ed578063e985e9c514610510578063efbd73f41461054c578063f2fde38b1461055f578063fbca0ce11461057257600080fd5b8063b88d4fde1461048b578063c23dc68f1461049e578063c87b56dd146104be578063d2cab056146104d1578063d5abeb01146104e457600080fd5b806399a2557a116100ff57806399a2557a1461042c578063a0712d681461043f578063a22cb46514610452578063b071401b14610465578063b767a0981461047857600080fd5b80637cb64759146103d75780638462151c146103ea5780638da5cb5b1461040a57806394354fd01461041b57806395d89b411461042457600080fd5b80632eb4a7ab116101c95780635c975abb1161018d5780635c975abb1461038a5780636352211e146103975780636caede3d146103aa57806370a08231146103bc578063715018a6146103cf57600080fd5b80632eb4a7ab1461033e5780633ccfd60b1461034757806342842e0e1461034f57806352ee4696146103625780635bbb21771461036a57600080fd5b806316c38b3c1161021057806316c38b3c146102e157806318160ddd146102f457806323b872dd1461030557806327fc0cff146103185780632ce9af501461032b57600080fd5b806301ffc9a71461024d57806306fdde0314610275578063081812fc1461028a578063095ea7b3146102b557806313faede6146102ca575b600080fd5b61026061025b366004611f96565b61057a565b60405190151581526020015b60405180910390f35b61027d6105cc565b60405161026c9190612255565b61029d610298366004611f7d565b61065e565b6040516001600160a01b03909116815260200161026c565b6102c86102c3366004611ec4565b6106a2565b005b6102d360105481565b60405190815260200161026c565b6102c86102ef366004611f62565b610775565b6102d3600154600054036000190190565b6102c8610313366004611de3565b6107bb565b6102c8610326366004611fd0565b6107cb565b6102c8610339366004611fd0565b61080c565b6102d3600a5481565b6102c8610849565b6102c861035d366004611de3565b610944565b61027d61095f565b61037d610378366004611f21565b6109ed565b60405161026c91906121b3565b6011546102609060ff1681565b61029d6103a5366004611f7d565b610ab1565b60115461026090610100900460ff1681565b6102d36103ca366004611d95565b610abc565b6102c8610b0a565b6102c86103e5366004611f7d565b610b40565b6103fd6103f8366004611d95565b610b6f565b60405161026c919061221d565b6009546001600160a01b031661029d565b6102d3600d5481565b61027d610c77565b6103fd61043a366004611eee565b610c86565b6102c861044d366004611f7d565b610e11565b6102c8610460366004611e9a565b610f08565b6102c8610473366004611f7d565b610f9e565b6102c8610486366004611f62565b610fcd565b6102c8610499366004611e1f565b611011565b6104b16104ac366004611f7d565b61105b565b60405161026c91906122d4565b61027d6104cc366004611f7d565b6110d0565b6102c86104df36600461203b565b61117e565b6102d3600c5481565b6102606104fb366004611d95565b600b6020526000908152604090205460ff1681565b61026061051e366004611db0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102c861055a366004612018565b6113ac565b6102c861056d366004611d95565b61141d565b61027d6114b5565b60006301ffc9a760e01b6001600160e01b0319831614806105ab57506380ac58cd60e01b6001600160e01b03198316145b806105c65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105db90612378565b80601f016020809104026020016040519081016040528092919081815260200182805461060790612378565b80156106545780601f1061062957610100808354040283529160200191610654565b820191906000526020600020905b81548152906001019060200180831161063757829003601f168201915b5050505050905090565b6000610669826114c2565b610686576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ad826114f7565b9050806001600160a01b0316836001600160a01b031614156106e25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610719576106fc813361051e565b610719576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b031633146107a85760405162461bcd60e51b815260040161079f9061229f565b60405180910390fd5b6011805460ff1916911515919091179055565b6107c6838383611560565b505050565b6009546001600160a01b031633146107f55760405162461bcd60e51b815260040161079f9061229f565b805161080890600e906020840190611c10565b5050565b6009546001600160a01b031633146108365760405162461bcd60e51b815260040161079f9061229f565b805161080890600f906020840190611c10565b6009546001600160a01b031633146108735760405162461bcd60e51b815260040161079f9061229f565b600260085414156108c65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079f565b600260085560006108df6009546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610929576040519150601f19603f3d011682016040523d82523d6000602084013e61092e565b606091505b505090508061093c57600080fd5b506001600855565b6107c683838360405180602001604052806000815250611011565b600f805461096c90612378565b80601f016020809104026020016040519081016040528092919081815260200182805461099890612378565b80156109e55780601f106109ba576101008083540402835291602001916109e5565b820191906000526020600020905b8154815290600101906020018083116109c857829003601f168201915b505050505081565b6060816000816001600160401b03811115610a0a57610a0a612424565b604051908082528060200260200182016040528015610a5557816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610a285790505b50905060005b828114610aa857610a83868683818110610a7757610a7761240e565b9050602002013561105b565b828281518110610a9557610a9561240e565b6020908102919091010152600101610a5b565b50949350505050565b60006105c6826114f7565b60006001600160a01b038216610ae5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314610b345760405162461bcd60e51b815260040161079f9061229f565b610b3e6000611703565b565b6009546001600160a01b03163314610b6a5760405162461bcd60e51b815260040161079f9061229f565b600a55565b60606000806000610b7f85610abc565b90506000816001600160401b03811115610b9b57610b9b612424565b604051908082528060200260200182016040528015610bc4578160200160208202803683370190505b509050610bea604080516060810182526000808252602082018190529181019190915290565b60015b838614610c6b57610bfd81611755565b9150816040015115610c0e57610c63565b81516001600160a01b031615610c2357815194505b876001600160a01b0316856001600160a01b03161415610c635780838780600101985081518110610c5657610c5661240e565b6020026020010181815250505b600101610bed565b50909695505050505050565b6060600380546105db90612378565b6060818310610ca857604051631960ccad60e11b815260040160405180910390fd5b600080610cb460005490565b90506001851015610cc457600194505b80841115610cd0578093505b6000610cdb87610abc565b905084861015610cfa5785850381811015610cf4578091505b50610cfe565b5060005b6000816001600160401b03811115610d1857610d18612424565b604051908082528060200260200182016040528015610d41578160200160208202803683370190505b50905081610d54579350610e0a92505050565b6000610d5f8861105b565b905060008160400151610d70575080515b885b888114158015610d825750848714155b15610dfe57610d9081611755565b9250826040015115610da157610df6565b82516001600160a01b031615610db657825191505b8a6001600160a01b0316826001600160a01b03161415610df65780848880600101995081518110610de957610de961240e565b6020026020010181815250505b600101610d72565b50505092835250909150505b9392505050565b600081118015610e235750600d548111155b610e6b5760405162461bcd60e51b8152602060048201526019602482015278596f752043616e6e6f74204561742054686174204d616e792160381b604482015260640161079f565b600c5481610e80600154600054036000190190565b610e8a9190612309565b1115610ea85760405162461bcd60e51b815260040161079f90612268565b60115460ff1615610efb5760405162461bcd60e51b815260206004820152601a60248201527f4974204973204e6f742054696d6520546f204561742059657421000000000000604482015260640161079f565b610f05338261178a565b50565b6001600160a01b038216331415610f325760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610fc85760405162461bcd60e51b815260040161079f9061229f565b600d55565b6009546001600160a01b03163314610ff75760405162461bcd60e51b815260040161079f9061229f565b601180549115156101000261ff0019909216919091179055565b61101c848484611560565b6001600160a01b0383163b1561105557611038848484846117a4565b611055576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101929092529060018310806110a157506000548310155b156110ac5792915050565b6110b583611755565b90508060400151156110c75792915050565b610e0a8361189c565b60606110db826114c2565b6111205760405162461bcd60e51b8152602060048201526016602482015275576520446f204e6f7420476f742054686174204f6e6560501b604482015260640161079f565b600061112a6118ca565b9050600081511161114a5760405180602001604052806000815250610e0a565b80611154846118d9565b600f604051602001611168939291906120b2565b6040516020818303038152906040529392505050565b6000831180156111905750600d548311155b6111d85760405162461bcd60e51b8152602060048201526019602482015278596f752043616e6e6f74204561742054686174204d616e792160381b604482015260640161079f565b600c54836111ed600154600054036000190190565b6111f79190612309565b11156112155760405162461bcd60e51b815260040161079f90612268565b601154610100900460ff166112765760405162461bcd60e51b815260206004820152602160248201527f5468652053706f6f6b796c6973742053616c65204973204e6f7420416c6976656044820152602160f81b606482015260840161079f565b336000908152600b602052604090205460ff16156112cd5760405162461bcd60e51b8152602060048201526014602482015273596f7520416c72656164792041746520536f6d6560601b604482015260640161079f565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061134783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506119d6565b6113885760405162461bcd60e51b815260206004820152601260248201527157726f6e67206d65726b6c6520706f6f702160701b604482015260640161079f565b336000818152600b60205260409020805460ff19166001179055611055908561178a565b6009546001600160a01b031633146113d65760405162461bcd60e51b815260040161079f9061229f565b600c54826113eb600154600054036000190190565b6113f59190612309565b11156114135760405162461bcd60e51b815260040161079f90612268565b610808818361178a565b6009546001600160a01b031633146114475760405162461bcd60e51b815260040161079f9061229f565b6001600160a01b0381166114ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079f565b610f0581611703565b600e805461096c90612378565b6000816001111580156114d6575060005482105b80156105c6575050600090815260046020526040902054600160e01b161590565b600081806001116115475760005481101561154757600081815260046020526040902054600160e01b8116611545575b80610e0a575060001901600081815260046020526040902054611527565b505b604051636f96cda160e11b815260040160405180910390fd5b600061156b826114f7565b9050836001600160a01b0316816001600160a01b03161461159e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115bc57506115bc853361051e565b806115d75750336115cc8461065e565b6001600160a01b0316145b9050806115f757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661161e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166116bb57600183016000818152600460205260409020546116b95760005481146116b95760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546105c6906119ec565b610808828260405180602001604052806000815250611a26565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117d9903390899088908890600401612176565b602060405180830381600087803b1580156117f357600080fd5b505af1925050508015611823575060408051601f3d908101601f1916820190925261182091810190611fb3565b60015b61187e573d808015611851576040519150601f19603f3d011682016040523d82523d6000602084013e611856565b606091505b508051611876576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051606081018252600080825260208201819052918101919091526105c66118c5836114f7565b6119ec565b6060600e80546105db90612378565b6060816118fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119275780611911816123b3565b91506119209050600a83612321565b9150611901565b6000816001600160401b0381111561194157611941612424565b6040519080825280601f01601f19166020018201604052801561196b576020820181803683370190505b5090505b841561189457611980600183612335565b915061198d600a866123ce565b611998906030612309565b60f81b8183815181106119ad576119ad61240e565b60200101906001600160f81b031916908160001a9053506119cf600a86612321565b945061196f565b6000826119e38584611b97565b14949350505050565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b6000546001600160a01b038416611a4f57604051622e076360e81b815260040160405180910390fd5b82611a6d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611b42575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b0b60008784806001019550876117a4565b611b28576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ac0578260005414611b3d57600080fd5b611b87565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b43575b5060009081556110559085838684565b600081815b8451811015611bdc57611bc882868381518110611bbb57611bbb61240e565b6020026020010151611be4565b915080611bd4816123b3565b915050611b9c565b509392505050565b6000818310611c00576000828152602084905260409020610e0a565b5060009182526020526040902090565b828054611c1c90612378565b90600052602060002090601f016020900481019282611c3e5760008555611c84565b82601f10611c5757805160ff1916838001178555611c84565b82800160010185558215611c84579182015b82811115611c84578251825591602001919060010190611c69565b50611c90929150611c94565b5090565b5b80821115611c905760008155600101611c95565b60006001600160401b0380841115611cc357611cc3612424565b604051601f8501601f19908116603f01168101908282118183101715611ceb57611ceb612424565b81604052809350858152868686011115611d0457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d3557600080fd5b919050565b60008083601f840112611d4c57600080fd5b5081356001600160401b03811115611d6357600080fd5b6020830191508360208260051b8501011115611d7e57600080fd5b9250929050565b80358015158114611d3557600080fd5b600060208284031215611da757600080fd5b610e0a82611d1e565b60008060408385031215611dc357600080fd5b611dcc83611d1e565b9150611dda60208401611d1e565b90509250929050565b600080600060608486031215611df857600080fd5b611e0184611d1e565b9250611e0f60208501611d1e565b9150604084013590509250925092565b60008060008060808587031215611e3557600080fd5b611e3e85611d1e565b9350611e4c60208601611d1e565b92506040850135915060608501356001600160401b03811115611e6e57600080fd5b8501601f81018713611e7f57600080fd5b611e8e87823560208401611ca9565b91505092959194509250565b60008060408385031215611ead57600080fd5b611eb683611d1e565b9150611dda60208401611d85565b60008060408385031215611ed757600080fd5b611ee083611d1e565b946020939093013593505050565b600080600060608486031215611f0357600080fd5b611f0c84611d1e565b95602085013595506040909401359392505050565b60008060208385031215611f3457600080fd5b82356001600160401b03811115611f4a57600080fd5b611f5685828601611d3a565b90969095509350505050565b600060208284031215611f7457600080fd5b610e0a82611d85565b600060208284031215611f8f57600080fd5b5035919050565b600060208284031215611fa857600080fd5b8135610e0a8161243a565b600060208284031215611fc557600080fd5b8151610e0a8161243a565b600060208284031215611fe257600080fd5b81356001600160401b03811115611ff857600080fd5b8201601f8101841361200957600080fd5b61189484823560208401611ca9565b6000806040838503121561202b57600080fd5b82359150611dda60208401611d1e565b60008060006040848603121561205057600080fd5b8335925060208401356001600160401b0381111561206d57600080fd5b61207986828701611d3a565b9497909650939450505050565b6000815180845261209e81602086016020860161234c565b601f01601f19169290920160200192915050565b6000845160206120c58285838a0161234c565b8551918401916120d88184848a0161234c565b8554920191600090600181811c90808316806120f557607f831692505b85831081141561211357634e487b7160e01b85526022600452602485fd5b808015612127576001811461213857612165565b60ff19851688528388019550612165565b60008b81526020902060005b8581101561215d5781548a820152908401908801612144565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a990830184612086565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610c6b5761220a83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016121cf565b6020808252825182820181905260009190848201906040850190845b81811015610c6b57835183529284019291840191600101612239565b602081526000610e0a6020830184612086565b6020808252601c908201527f576520446f204e6f74204861766520456e6f7567682043616e64792100000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016105c6565b6000821982111561231c5761231c6123e2565b500190565b600082612330576123306123f8565b500490565b600082821015612347576123476123e2565b500390565b60005b8381101561236757818101518382015260200161234f565b838111156110555750506000910152565b600181811c9082168061238c57607f821691505b602082108114156123ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123c7576123c76123e2565b5060010190565b6000826123dd576123dd6123f8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0557600080fdfea2646970667358221220eb495bec802ae4998d5ea55b55f3f16611adab0c402880cbea303ab72228803e64736f6c63430008070033

Deployed Bytecode Sourcemap

75169:3237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30477:615;;;;;;:::i;:::-;;:::i;:::-;;;11146:14:1;;11139:22;11121:41;;11109:2;11094:18;30477:615:0;;;;;;;;35490:100;;;:::i;:::-;;;;;;;:::i;37558:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9080:32:1;;;9062:51;;9050:2;9035:18;37558:204:0;8916:203:1;37018:474:0;;;;;;:::i;:::-;;:::i;:::-;;75527:19;;;;;;;;;11319:25:1;;;11307:2;11292:18;75527:19:0;11173:177:1;77811:77:0;;;;;;:::i;:::-;;:::i;29531:315::-;;77115:1;29797:12;29584:7;29781:13;:28;-1:-1:-1;;29781:46:0;;29531:315;38444:170;;;;;;:::i;:::-;;:::i;77595:92::-;;;;;;:::i;:::-;;:::i;77693:112::-;;;;;;:::i;:::-;;:::i;75245:25::-;;;;;;78245:150;;;:::i;38685:185::-;;;;;;:::i;:::-;;:::i;75484:36::-;;;:::i;59943:528::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;75553:25::-;;;;;;;;;35279:144;;;;;;:::i;:::-;;:::i;75583:40::-;;;;;;;;;;;;31156:224;;;;;;:::i;:::-;;:::i;5103:103::-;;;:::i;77894:98::-;;;;;;:::i;:::-;;:::i;63819:900::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4452:87::-;4525:6;;-1:-1:-1;;;;;4525:6:0;4452:87;;75398:37;;;;;;35659:104;;;:::i;60859:2513::-;;;;;;:::i;:::-;;:::i;76415:330::-;;;;;;:::i;:::-;;:::i;37834:308::-;;;;;;:::i;:::-;;:::i;78109:130::-;;;;;;:::i;:::-;;:::i;77998:105::-;;;;;;:::i;:::-;;:::i;38941:396::-;;;;;;:::i;:::-;;:::i;59356:428::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77128:351::-;;;;;;:::i;:::-;;:::i;75751:659::-;;;;;;:::i;:::-;;:::i;75362:31::-;;;;;;75307:48;;;;;;:::i;:::-;;;;;;;;;;;;;;;;38213:164;;;;;;:::i;:::-;-1:-1:-1;;;;;38334:25:0;;;38310:4;38334:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38213:164;76754:216;;;;;;:::i;:::-;;:::i;5361:201::-;;;;;;:::i;:::-;;:::i;75442:37::-;;;:::i;30477:615::-;30562:4;-1:-1:-1;;;;;;;;;30862:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;30939:25:0;;;30862:102;:179;;;-1:-1:-1;;;;;;;;;;31016:25:0;;;30862:179;30842:199;30477:615;-1:-1:-1;;30477:615:0:o;35490:100::-;35544:13;35577:5;35570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35490:100;:::o;37558:204::-;37626:7;37651:16;37659:7;37651;:16::i;:::-;37646:64;;37676:34;;-1:-1:-1;;;37676:34:0;;;;;;;;;;;37646:64;-1:-1:-1;37730:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37730:24:0;;37558:204::o;37018:474::-;37091:13;37123:27;37142:7;37123:18;:27::i;:::-;37091:61;;37173:5;-1:-1:-1;;;;;37167:11:0;:2;-1:-1:-1;;;;;37167:11:0;;37163:48;;;37187:24;;-1:-1:-1;;;37187:24:0;;;;;;;;;;;37163:48;53661:10;-1:-1:-1;;;;;37228:28:0;;;37224:175;;37276:44;37293:5;53661:10;38213:164;:::i;37276:44::-;37271:128;;37348:35;;-1:-1:-1;;;37348:35:0;;;;;;;;;;;37271:128;37411:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37411:29:0;-1:-1:-1;;;;;37411:29:0;;;;;;;;;37456:28;;37411:24;;37456:28;;;;;;;37080:412;37018:474;;:::o;77811:77::-;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;;;;;;;;;77867:6:::1;:15:::0;;-1:-1:-1;;77867:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;77811:77::o;38444:170::-;38578:28;38588:4;38594:2;38598:7;38578:9;:28::i;:::-;38444:170;;;:::o;77595:92::-;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;77663:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;77595:92:::0;:::o;77693:112::-;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;77771:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;78245:150::-:0;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;7732:1:::1;8330:7;;:19;;8322:63;;;::::0;-1:-1:-1;;;8322:63:0;;15064:2:1;8322:63:0::1;::::0;::::1;15046:21:1::0;15103:2;15083:18;;;15076:30;15142:33;15122:18;;;15115:61;15193:18;;8322:63:0::1;14862:355:1::0;8322:63:0::1;7732:1;8463:7;:18:::0;78303:7:::2;78324;4525:6:::0;;-1:-1:-1;;;;;4525:6:0;;4452:87;78324:7:::2;-1:-1:-1::0;;;;;78316:21:0::2;78345;78316:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78302:69;;;78386:2;78378:11;;;::::0;::::2;;-1:-1:-1::0;7688:1:0::1;8642:7;:22:::0;78245:150::o;38685:185::-;38823:39;38840:4;38846:2;38850:7;38823:39;;;;;;;;;;;;:16;:39::i;75484:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59943:528::-;60087:23;60178:8;60153:22;60178:8;-1:-1:-1;;;;;60245:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;60245:36:0;;-1:-1:-1;;60245:36:0;;;;;;;;;;;;60208:73;;60301:9;60296:125;60317:14;60312:1;:19;60296:125;;60373:32;60393:8;;60402:1;60393:11;;;;;;;:::i;:::-;;;;;;;60373:19;:32::i;:::-;60357:10;60368:1;60357:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;60333:3;;60296:125;;;-1:-1:-1;60442:10:0;59943:528;-1:-1:-1;;;;59943:528:0:o;35279:144::-;35343:7;35386:27;35405:7;35386:18;:27::i;31156:224::-;31220:7;-1:-1:-1;;;;;31244:19:0;;31240:60;;31272:28;;-1:-1:-1;;;31272:28:0;;;;;;;;;;;31240:60;-1:-1:-1;;;;;;31318:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;31318:54:0;;31156:224::o;5103:103::-;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;5168:30:::1;5195:1;5168:18;:30::i;:::-;5103:103::o:0;77894:98::-;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;77962:10:::1;:24:::0;77894:98::o;63819:900::-;63897:16;63951:19;63985:25;64025:22;64050:16;64060:5;64050:9;:16::i;:::-;64025:41;;64081:25;64123:14;-1:-1:-1;;;;;64109:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64109:29:0;;64081:57;;64153:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;64153:31:0;77115:1;64199:472;64248:14;64233:11;:29;64199:472;;64300:15;64313:1;64300:12;:15::i;:::-;64288:27;;64338:9;:16;;;64334:73;;;64379:8;;64334:73;64429:14;;-1:-1:-1;;;;;64429:28:0;;64425:111;;64502:14;;;-1:-1:-1;64425:111:0;64579:5;-1:-1:-1;;;;;64558:26:0;:17;-1:-1:-1;;;;;64558:26:0;;64554:102;;;64635:1;64609:8;64618:13;;;;;;64609:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;64554:102;64264:3;;64199:472;;;-1:-1:-1;64692:8:0;;63819:900;-1:-1:-1;;;;;;63819:900:0:o;35659:104::-;35715:13;35748:7;35741:14;;;;;:::i;60859:2513::-;61002:16;61069:4;61060:5;:13;61056:45;;61082:19;;-1:-1:-1;;;61082:19:0;;;;;;;;;;;61056:45;61116:19;61150:17;61170:14;29272:7;29299:13;;29225:95;61170:14;61150:34;-1:-1:-1;77115:1:0;61262:5;:23;61258:87;;;77115:1;61306:23;;61258:87;61421:9;61414:4;:16;61410:73;;;61458:9;61451:16;;61410:73;61497:25;61525:16;61535:5;61525:9;:16::i;:::-;61497:44;;61719:4;61711:5;:12;61707:278;;;61766:12;;;61801:31;;;61797:111;;;61877:11;61857:31;;61797:111;61725:198;61707:278;;;-1:-1:-1;61968:1:0;61707:278;61999:25;62041:17;-1:-1:-1;;;;;62027:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62027:32:0;-1:-1:-1;61999:60:0;-1:-1:-1;62078:22:0;62074:78;;62128:8;-1:-1:-1;62121:15:0;;-1:-1:-1;;;62121:15:0;62074:78;62296:31;62330:26;62350:5;62330:19;:26::i;:::-;62296:60;;62371:25;62616:9;:16;;;62611:92;;-1:-1:-1;62673:14:0;;62611:92;62734:5;62717:478;62746:4;62741:1;:9;;:45;;;;;62769:17;62754:11;:32;;62741:45;62717:478;;;62824:15;62837:1;62824:12;:15::i;:::-;62812:27;;62862:9;:16;;;62858:73;;;62903:8;;62858:73;62953:14;;-1:-1:-1;;;;;62953:28:0;;62949:111;;63026:14;;;-1:-1:-1;62949:111:0;63103:5;-1:-1:-1;;;;;63082:26:0;:17;-1:-1:-1;;;;;63082:26:0;;63078:102;;;63159:1;63133:8;63142:13;;;;;;63133:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;63078:102;62788:3;;62717:478;;;-1:-1:-1;;;63280:29:0;;;-1:-1:-1;63287:8:0;;-1:-1:-1;;60859:2513:0;;;;;;:::o;76415:330::-;76487:1;76473:11;:15;:52;;;;;76507:18;;76492:11;:33;;76473:52;76465:90;;;;-1:-1:-1;;;76465:90:0;;14710:2:1;76465:90:0;;;14692:21:1;14749:2;14729:18;;;14722:30;-1:-1:-1;;;14768:18:1;;;14761:55;14833:18;;76465:90:0;14508:349:1;76465:90:0;76601:9;;76586:11;76570:13;77115:1;29797:12;29584:7;29781:13;:28;-1:-1:-1;;29781:46:0;;29531:315;76570:13;:27;;;;:::i;:::-;:40;;76562:81;;;;-1:-1:-1;;;76562:81:0;;;;;;;:::i;:::-;76659:6;;;;76658:7;76650:46;;;;-1:-1:-1;;;76650:46:0;;12545:2:1;76650:46:0;;;12527:21:1;12584:2;12564:18;;;12557:30;12623:28;12603:18;;;12596:56;12669:18;;76650:46:0;12343:350:1;76650:46:0;76703:36;53661:10;76727:11;76703:9;:36::i;:::-;76415:330;:::o;37834:308::-;-1:-1:-1;;;;;37933:31:0;;53661:10;37933:31;37929:61;;;37973:17;;-1:-1:-1;;;37973:17:0;;;;;;;;;;;37929:61;53661:10;38003:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;38003:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;38003:60:0;;;;;;;;;;38079:55;;11121:41:1;;;38003:49:0;;53661:10;38079:55;;11094:18:1;38079:55:0;;;;;;;37834:308;;:::o;78109:130::-;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;78193:18:::1;:40:::0;78109:130::o;77998:105::-;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;78068:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;78068:29:0;;::::1;::::0;;;::::1;::::0;;77998:105::o;38941:396::-;39108:28;39118:4;39124:2;39128:7;39108:9;:28::i;:::-;-1:-1:-1;;;;;39151:14:0;;;:19;39147:183;;39190:56;39221:4;39227:2;39231:7;39240:5;39190:30;:56::i;:::-;39185:145;;39274:40;;-1:-1:-1;;;39274:40:0;;;;;;;;;;;39185:145;38941:396;;;;:::o;59356:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77115:1:0;59520:25;;;:54;;-1:-1:-1;29272:7:0;29299:13;59549:7;:25;;59520:54;59516:103;;;59598:9;59356:428;-1:-1:-1;;59356:428:0:o;59516:103::-;59641:21;59654:7;59641:12;:21::i;:::-;59629:33;;59677:9;:16;;;59673:65;;;59717:9;59356:428;-1:-1:-1;;59356:428:0:o;59673:65::-;59755:21;59768:7;59755:12;:21::i;77128:351::-;77202:13;77232:17;77240:8;77232:7;:17::i;:::-;77224:52;;;;-1:-1:-1;;;77224:52:0;;14359:2:1;77224:52:0;;;14341:21:1;14398:2;14378:18;;;14371:30;-1:-1:-1;;;14417:18:1;;;14410:52;14479:18;;77224:52:0;14157:346:1;77224:52:0;77285:28;77316:10;:8;:10::i;:::-;77285:41;;77371:1;77346:14;77340:28;:32;:133;;;;;;;;;;;;;;;;;77408:14;77424:19;:8;:17;:19::i;:::-;77445:12;77391:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77333:140;77128:351;-1:-1:-1;;;77128:351:0:o;75751:659::-;75864:1;75850:11;:15;:52;;;;;75884:18;;75869:11;:33;;75850:52;75842:90;;;;-1:-1:-1;;;75842:90:0;;14710:2:1;75842:90:0;;;14692:21:1;14749:2;14729:18;;;14722:30;-1:-1:-1;;;14768:18:1;;;14761:55;14833:18;;75842:90:0;14508:349:1;75842:90:0;75978:9;;75963:11;75947:13;77115:1;29797:12;29584:7;29781:13;:28;-1:-1:-1;;29781:46:0;;29531:315;75947:13;:27;;;;:::i;:::-;:40;;75939:81;;;;-1:-1:-1;;;75939:81:0;;;;;;;:::i;:::-;76037:20;;;;;;;76029:66;;;;-1:-1:-1;;;76029:66:0;;13247:2:1;76029:66:0;;;13229:21:1;13286:2;13266:18;;;13259:30;13325:34;13305:18;;;13298:62;-1:-1:-1;;;13376:18:1;;;13369:31;13417:19;;76029:66:0;13045:397:1;76029:66:0;53661:10;76111:30;;;;:16;:30;;;;;;;;76110:31;76102:64;;;;-1:-1:-1;;;76102:64:0;;14010:2:1;76102:64:0;;;13992:21:1;14049:2;14029:18;;;14022:30;-1:-1:-1;;;14068:18:1;;;14061:50;14128:18;;76102:64:0;13808:344:1;76102:64:0;76198:30;;-1:-1:-1;;53661:10:0;7089:2:1;7085:15;7081:53;76198:30:0;;;7069:66:1;76173:12:0;;7151::1;;76198:30:0;;;;;;;;;;;;76188:41;;;;;;76173:56;;76244:50;76263:12;;76244:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;76277:10:0;;;-1:-1:-1;76289:4:0;;-1:-1:-1;76244:18:0;:50::i;:::-;76236:81;;;;-1:-1:-1;;;76236:81:0;;12900:2:1;76236:81:0;;;12882:21:1;12939:2;12919:18;;;12912:30;-1:-1:-1;;;12958:18:1;;;12951:48;13016:18;;76236:81:0;12698:342:1;76236:81:0;53661:10;76324:30;;;;:16;:30;;;;;:37;;-1:-1:-1;;76324:37:0;76357:4;76324:37;;;76368:36;;76392:11;76368:9;:36::i;76754:216::-;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;76882:9:::1;;76867:11;76851:13;77115:1:::0;29797:12;29584:7;29781:13;:28;-1:-1:-1;;29781:46:0;;29531:315;76851:13:::1;:27;;;;:::i;:::-;:40;;76843:81;;;;-1:-1:-1::0;;;76843:81:0::1;;;;;;;:::i;:::-;76931:33;76941:9;76952:11;76931:9;:33::i;5361:201::-:0;4525:6;;-1:-1:-1;;;;;4525:6:0;53661:10;4672:23;4664:68;;;;-1:-1:-1;;;4664:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5450:22:0;::::1;5442:73;;;::::0;-1:-1:-1;;;5442:73:0;;11781:2:1;5442:73:0::1;::::0;::::1;11763:21:1::0;11820:2;11800:18;;;11793:30;11859:34;11839:18;;;11832:62;-1:-1:-1;;;11910:18:1;;;11903:36;11956:19;;5442:73:0::1;11579:402:1::0;5442:73:0::1;5526:28;5545:8;5526:18;:28::i;75442:37::-:0;;;;;;;:::i;39592:273::-;39649:4;39705:7;77115:1;39686:26;;:66;;;;;39739:13;;39729:7;:23;39686:66;:152;;;;-1:-1:-1;;39790:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;39790:43:0;:48;;39592:273::o;32794:1129::-;32861:7;32896;;77115:1;32945:23;32941:915;;32998:13;;32991:4;:20;32987:869;;;33036:14;33053:23;;;:17;:23;;;;;;-1:-1:-1;;;33142:23:0;;33138:699;;33661:113;33668:11;33661:113;;-1:-1:-1;;;33739:6:0;33721:25;;;;:17;:25;;;;;;33661:113;;33138:699;33013:843;32987:869;33884:31;;-1:-1:-1;;;33884:31:0;;;;;;;;;;;44831:2515;44946:27;44976;44995:7;44976:18;:27::i;:::-;44946:57;;45061:4;-1:-1:-1;;;;;45020:45:0;45036:19;-1:-1:-1;;;;;45020:45:0;;45016:86;;45074:28;;-1:-1:-1;;;45074:28:0;;;;;;;;;;;45016:86;45115:22;53661:10;-1:-1:-1;;;;;45141:27:0;;;;:87;;-1:-1:-1;45185:43:0;45202:4;53661:10;38213:164;:::i;45185:43::-;45141:147;;;-1:-1:-1;53661:10:0;45245:20;45257:7;45245:11;:20::i;:::-;-1:-1:-1;;;;;45245:43:0;;45141:147;45115:174;;45307:17;45302:66;;45333:35;;-1:-1:-1;;;45333:35:0;;;;;;;;;;;45302:66;-1:-1:-1;;;;;45383:16:0;;45379:52;;45408:23;;-1:-1:-1;;;45408:23:0;;;;;;;;;;;45379:52;45560:24;;;;:15;:24;;;;;;;;45553:31;;-1:-1:-1;;;;;;45553:31:0;;;-1:-1:-1;;;;;45952:24:0;;;;;:18;:24;;;;;45950:26;;-1:-1:-1;;45950:26:0;;;46021:22;;;;;;;46019:24;;-1:-1:-1;46019:24:0;;;46314:26;;;:17;:26;;;;;-1:-1:-1;;;46402:15:0;27149:3;46402:41;46360:84;;:128;;46314:174;;;46608:46;;46604:626;;46712:1;46702:11;;46680:19;46835:30;;;:17;:30;;;;;;46831:384;;46973:13;;46958:11;:28;46954:242;;47120:30;;;;:17;:30;;;;;:52;;;46954:242;46661:569;46604:626;47277:7;47273:2;-1:-1:-1;;;;;47258:27:0;47267:4;-1:-1:-1;;;;;47258:27:0;;;;;;;;;;;44935:2411;;44831:2515;;;:::o;5722:191::-;5815:6;;;-1:-1:-1;;;;;5832:17:0;;;-1:-1:-1;;;;;;5832:17:0;;;;;;;5865:40;;5815:6;;;5832:17;5815:6;;5865:40;;5796:16;;5865:40;5785:128;5722:191;:::o;34403:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34523:24:0;;;;:17;:24;;;;;;34504:44;;:18;:44::i;39949:104::-;40018:27;40028:2;40032:8;40018:27;;;;;;;;;;;;:9;:27::i;51043:716::-;51227:88;;-1:-1:-1;;;51227:88:0;;51206:4;;-1:-1:-1;;;;;51227:45:0;;;;;:88;;53661:10;;51294:4;;51300:7;;51309:5;;51227:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51227:88:0;;;;;;;;-1:-1:-1;;51227:88:0;;;;;;;;;;;;:::i;:::-;;;51223:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51510:13:0;;51506:235;;51556:40;;-1:-1:-1;;;51556:40:0;;;;;;;;;;;51506:235;51699:6;51693:13;51684:6;51680:2;51676:15;51669:38;51223:529;-1:-1:-1;;;;;;51386:64:0;-1:-1:-1;;;51386:64:0;;-1:-1:-1;51223:529:0;51043:716;;;;;;:::o;35059:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;35162:47:0;35181:27;35200:7;35181:18;:27::i;:::-;35162:18;:47::i;77487:102::-;77547:13;77576:7;77569:14;;;;;:::i;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;-1:-1:-1;;;;;932:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;9898:190;10023:4;10076;10047:25;10060:5;10067:4;10047:12;:25::i;:::-;:33;;9898:190;-1:-1:-1;;;;9898:190:0:o;34017:295::-;-1:-1:-1;;;;;;;;;;;;;34127:41:0;;;;27149:3;34213:32;;;-1:-1:-1;;;;;34179:67:0;-1:-1:-1;;;34179:67:0;-1:-1:-1;;;34276:23:0;;;:28;;-1:-1:-1;;;34257:47:0;-1:-1:-1;34017:295:0:o;40426:2236::-;40549:20;40572:13;-1:-1:-1;;;;;40600:16:0;;40596:48;;40625:19;;-1:-1:-1;;;40625:19:0;;;;;;;;;;;40596:48;40659:13;40655:44;;40681:18;;-1:-1:-1;;;40681:18:0;;;;;;;;;;;40655:44;-1:-1:-1;;;;;41248:22:0;;;;;;:18;:22;;;;26632:2;41248:22;;;:70;;41286:31;41274:44;;41248:70;;;41561:31;;;:17;:31;;;;;41654:15;27149:3;41654:41;41612:84;;-1:-1:-1;41732:13:0;;27412:3;41717:56;41612:162;41561:213;;:31;;41855:23;;;;41899:14;:19;41895:635;;41939:313;41970:38;;41995:12;;-1:-1:-1;;;;;41970:38:0;;;41987:1;;41970:38;;41987:1;;41970:38;42036:69;42075:1;42079:2;42083:14;;;;;;42099:5;42036:30;:69::i;:::-;42031:174;;42141:40;;-1:-1:-1;;;42141:40:0;;;;;;;;;;;42031:174;42247:3;42232:12;:18;41939:313;;42333:12;42316:13;;:29;42312:43;;42347:8;;;42312:43;41895:635;;;42396:119;42427:40;;42452:14;;;;;-1:-1:-1;;;;;42427:40:0;;;42444:1;;42427:40;;42444:1;;42427:40;42510:3;42495:12;:18;42396:119;;41895:635;-1:-1:-1;42544:13:0;:28;;;42594:60;;42627:2;42631:12;42645:8;42594:60;:::i;10765:296::-;10848:7;10891:4;10848:7;10906:118;10930:5;:12;10926:1;:16;10906:118;;;10979:33;10989:12;11003:5;11009:1;11003:8;;;;;;;;:::i;:::-;;;;;;;10979:9;:33::i;:::-;10964:48;-1:-1:-1;10944:3:0;;;;:::i;:::-;;;;10906:118;;;-1:-1:-1;11041:12:0;10765:296;-1:-1:-1;;;10765:296:0:o;16972:149::-;17035:7;17066:1;17062;:5;:51;;17197:13;17291:15;;;17327:4;17320:15;;;17374:4;17358:21;;17062:51;;;-1:-1:-1;17197:13:0;17291:15;;;17327:4;17320:15;17374:4;17358:21;;;16972:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;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:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;-1:-1:-1;;;;;2573:6:1;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:322::-;3420:6;3428;3436;3489:2;3477:9;3468:7;3464:23;3460:32;3457:52;;;3505:1;3502;3495:12;3457:52;3528:29;3547:9;3528:29;:::i;:::-;3518:39;3604:2;3589:18;;3576:32;;-1:-1:-1;3655:2:1;3640:18;;;3627:32;;3343:322;-1:-1:-1;;;3343:322:1:o;3670:437::-;3756:6;3764;3817:2;3805:9;3796:7;3792:23;3788:32;3785:52;;;3833:1;3830;3823:12;3785:52;3873:9;3860:23;-1:-1:-1;;;;;3898:6:1;3895:30;3892:50;;;3938:1;3935;3928:12;3892:50;3977:70;4039:7;4030:6;4019:9;4015:22;3977:70;:::i;:::-;4066:8;;3951:96;;-1:-1:-1;3670:437:1;-1:-1:-1;;;;3670:437:1:o;4112:180::-;4168:6;4221:2;4209:9;4200:7;4196:23;4192:32;4189:52;;;4237:1;4234;4227:12;4189:52;4260:26;4276:9;4260:26;:::i;4297:180::-;4356:6;4409:2;4397:9;4388:7;4384:23;4380:32;4377:52;;;4425:1;4422;4415:12;4377:52;-1:-1:-1;4448:23:1;;4297:180;-1:-1:-1;4297:180:1:o;4482:245::-;4540:6;4593:2;4581:9;4572:7;4568:23;4564:32;4561:52;;;4609:1;4606;4599:12;4561:52;4648:9;4635:23;4667:30;4691:5;4667:30;:::i;4732:249::-;4801:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:52;;;4870:1;4867;4860:12;4822:52;4902:9;4896:16;4921:30;4945:5;4921:30;:::i;4986:450::-;5055:6;5108:2;5096:9;5087:7;5083:23;5079:32;5076:52;;;5124:1;5121;5114:12;5076:52;5164:9;5151:23;-1:-1:-1;;;;;5189:6:1;5186:30;5183:50;;;5229:1;5226;5219:12;5183:50;5252:22;;5305:4;5297:13;;5293:27;-1:-1:-1;5283:55:1;;5334:1;5331;5324:12;5283:55;5357:73;5422:7;5417:2;5404:16;5399:2;5395;5391:11;5357:73;:::i;5626:254::-;5694:6;5702;5755:2;5743:9;5734:7;5730:23;5726:32;5723:52;;;5771:1;5768;5761:12;5723:52;5807:9;5794:23;5784:33;;5836:38;5870:2;5859:9;5855:18;5836:38;:::i;5885:505::-;5980:6;5988;5996;6049:2;6037:9;6028:7;6024:23;6020:32;6017:52;;;6065:1;6062;6055:12;6017:52;6101:9;6088:23;6078:33;;6162:2;6151:9;6147:18;6134:32;-1:-1:-1;;;;;6181:6:1;6178:30;6175:50;;;6221:1;6218;6211:12;6175:50;6260:70;6322:7;6313:6;6302:9;6298:22;6260:70;:::i;:::-;5885:505;;6349:8;;-1:-1:-1;6234:96:1;;-1:-1:-1;;;;5885:505:1:o;6395:257::-;6436:3;6474:5;6468:12;6501:6;6496:3;6489:19;6517:63;6573:6;6566:4;6561:3;6557:14;6550:4;6543:5;6539:16;6517:63;:::i;:::-;6634:2;6613:15;-1:-1:-1;;6609:29:1;6600:39;;;;6641:4;6596:50;;6395:257;-1:-1:-1;;6395:257:1:o;7174:1527::-;7398:3;7436:6;7430:13;7462:4;7475:51;7519:6;7514:3;7509:2;7501:6;7497:15;7475:51;:::i;:::-;7589:13;;7548:16;;;;7611:55;7589:13;7548:16;7633:15;;;7611:55;:::i;:::-;7755:13;;7688:20;;;7728:1;;7815;7837:18;;;;7890;;;;7917:93;;7995:4;7985:8;7981:19;7969:31;;7917:93;8058:2;8048:8;8045:16;8025:18;8022:40;8019:167;;;-1:-1:-1;;;8085:33:1;;8141:4;8138:1;8131:15;8171:4;8092:3;8159:17;8019:167;8202:18;8229:110;;;;8353:1;8348:328;;;;8195:481;;8229:110;-1:-1:-1;;8264:24:1;;8250:39;;8309:20;;;;-1:-1:-1;8229:110:1;;8348:328;15747:1;15740:14;;;15784:4;15771:18;;8443:1;8457:169;8471:8;8468:1;8465:15;8457:169;;;8553:14;;8538:13;;;8531:37;8596:16;;;;8488:10;;8457:169;;;8461:3;;8657:8;8650:5;8646:20;8639:27;;8195:481;-1:-1:-1;8692:3:1;;7174:1527;-1:-1:-1;;;;;;;;;;;7174:1527:1:o;9124:488::-;-1:-1:-1;;;;;9393:15:1;;;9375:34;;9445:15;;9440:2;9425:18;;9418:43;9492:2;9477:18;;9470:34;;;9540:3;9535:2;9520:18;;9513:31;;;9318:4;;9561:45;;9586:19;;9578:6;9561:45;:::i;:::-;9553:53;9124:488;-1:-1:-1;;;;;;9124:488:1:o;9617:722::-;9850:2;9902:21;;;9972:13;;9875:18;;;9994:22;;;9821:4;;9850:2;10073:15;;;;10047:2;10032:18;;;9821:4;10116:197;10130:6;10127:1;10124:13;10116:197;;;10179:52;10227:3;10218:6;10212:13;6741:12;;-1:-1:-1;;;;;6737:38:1;6725:51;;6829:4;6818:16;;;6812:23;-1:-1:-1;;;;;6808:48:1;6792:14;;;6785:72;6920:4;6909:16;;;6903:23;6896:31;6889:39;6873:14;;6866:63;6657:278;10179:52;10288:15;;;;10260:4;10251:14;;;;;10152:1;10145:9;10116:197;;10344:632;10515:2;10567:21;;;10637:13;;10540:18;;;10659:22;;;10486:4;;10515:2;10738:15;;;;10712:2;10697:18;;;10486:4;10781:169;10795:6;10792:1;10789:13;10781:169;;;10856:13;;10844:26;;10925:15;;;;10890:12;;;;10817:1;10810:9;10781:169;;11355:219;11504:2;11493:9;11486:21;11467:4;11524:44;11564:2;11553:9;11549:18;11541:6;11524:44;:::i;11986:352::-;12188:2;12170:21;;;12227:2;12207:18;;;12200:30;12266;12261:2;12246:18;;12239:58;12329:2;12314:18;;11986:352::o;13447:356::-;13649:2;13631:21;;;13668:18;;;13661:30;13727:34;13722:2;13707:18;;13700:62;13794:2;13779:18;;13447:356::o;15222:265::-;6741:12;;-1:-1:-1;;;;;6737:38:1;6725:51;;6829:4;6818:16;;;6812:23;-1:-1:-1;;;;;6808:48:1;6792:14;;;6785:72;6920:4;6909:16;;;6903:23;6896:31;6889:39;6873:14;;;6866:63;15418:2;15403:18;;15430:51;6657:278;15800:128;15840:3;15871:1;15867:6;15864:1;15861:13;15858:39;;;15877:18;;:::i;:::-;-1:-1:-1;15913:9:1;;15800:128::o;15933:120::-;15973:1;15999;15989:35;;16004:18;;:::i;:::-;-1:-1:-1;16038:9:1;;15933:120::o;16058:125::-;16098:4;16126:1;16123;16120:8;16117:34;;;16131:18;;:::i;:::-;-1:-1:-1;16168:9:1;;16058:125::o;16188:258::-;16260:1;16270:113;16284:6;16281:1;16278:13;16270:113;;;16360:11;;;16354:18;16341:11;;;16334:39;16306:2;16299:10;16270:113;;;16401:6;16398:1;16395:13;16392:48;;;-1:-1:-1;;16436:1:1;16418:16;;16411:27;16188:258::o;16451:380::-;16530:1;16526:12;;;;16573;;;16594:61;;16648:4;16640:6;16636:17;16626:27;;16594:61;16701:2;16693:6;16690:14;16670:18;16667:38;16664:161;;;16747:10;16742:3;16738:20;16735:1;16728:31;16782:4;16779:1;16772:15;16810:4;16807:1;16800:15;16664:161;;16451:380;;;:::o;16836:135::-;16875:3;-1:-1:-1;;16896:17:1;;16893:43;;;16916:18;;:::i;:::-;-1:-1:-1;16963:1:1;16952:13;;16836:135::o;16976:112::-;17008:1;17034;17024:35;;17039:18;;:::i;:::-;-1:-1:-1;17073:9:1;;16976:112::o;17093:127::-;17154:10;17149:3;17145:20;17142:1;17135:31;17185:4;17182:1;17175:15;17209:4;17206:1;17199:15;17225:127;17286:10;17281:3;17277:20;17274:1;17267:31;17317:4;17314:1;17307:15;17341:4;17338:1;17331:15;17357:127;17418:10;17413:3;17409:20;17406:1;17399:31;17449:4;17446:1;17439:15;17473:4;17470:1;17463:15;17489:127;17550:10;17545:3;17541:20;17538:1;17531:31;17581:4;17578:1;17571:15;17605:4;17602:1;17595:15;17621:131;-1:-1:-1;;;;;;17695:32:1;;17685:43;;17675:71;;17742:1;17739;17732:12

Swarm Source

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