ETH Price: $3,112.19 (+0.46%)
Gas: 3 Gwei

Token

Cloudy Me (CM)
 

Overview

Max Total Supply

5,555 CM

Holders

2,126

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
rooshy.eth
Balance
10 CM
0x29a0127e6090c1aa753d33bf5730591abb5ba83a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cloudy Me is a collection of 5555 characters inspired by being a free cloud in the metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CloudyMe

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-06-16
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // 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`
    // - [232..255] `extraData`
    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 auxiliary 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 auxiliary 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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * 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 Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

        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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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: @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: development/CloudyMe.sol


pragma solidity ^0.8.7;




contract CloudyMe is ERC721A, Ownable{
    uint256 public MAX_SUPPLY = 5555;
    uint256 public FREE_MINT = 2;
    uint256 public MINT_LIMIT = 10;
    uint256 public MINT_PRICE = 0.0055 ether;
    string public baseTokenURI;
    bool public isOpenMint = false;
    address public signAddress;
    mapping(address=>uint256) public mintedAmount;

    constructor(string memory _baseTokenUri,address _signAddress) ERC721A("Cloudy Me", "CM"){
        baseTokenURI = _baseTokenUri;
        signAddress=_signAddress;
    }

    function mint(address to,uint256 amount) external payable{
        require(isOpenMint,"Not during open hours");
        require(totalSupply() + amount <= MAX_SUPPLY,"Minted completed");
        require(mintedAmount[to] + amount <= MINT_LIMIT,"Limit exceeded");
        if(mintedAmount[to] >= FREE_MINT){
            require(msg.value >= amount * MINT_PRICE,"Not paying enough fees");
        }else if(mintedAmount[to] + amount > FREE_MINT){
            require(msg.value >= (mintedAmount[to] + amount - FREE_MINT) * MINT_PRICE,"Not paying enough fees");
        }
        mintedAmount[to]+=amount;
        _mint(to,amount);
    }

    function wlMint(address to,uint256 amount,bytes memory _singature)external payable{
        require(ECDSA.recover(ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(to, amount))),_singature) == signAddress,"You're not on the whitelist");
        require(totalSupply() + amount <= MAX_SUPPLY,"Minted completed");
        require(mintedAmount[to] + amount <= MINT_LIMIT,"Limit exceeded");
        if(mintedAmount[to] >= FREE_MINT){
            require(msg.value >= amount * MINT_PRICE,"Not paying enough fees");
        }else if(mintedAmount[to] + amount > FREE_MINT){
            require(msg.value >= (mintedAmount[to] + amount - FREE_MINT) * MINT_PRICE,"Not paying enough fees");
        }
        mintedAmount[to]+=amount;
        _mint(to,amount);
    }

    function ownerMint(address to ,uint256 amount)external onlyOwner{
        require(amount + totalSupply() <= MAX_SUPPLY, "Minted completed");
        _mint(to,amount);
    }

    function setFreeMint(uint256 _freeMint)external onlyOwner{
        FREE_MINT=_freeMint;
    }

    function setOpenMint(bool _isOpenMint) external onlyOwner{
        isOpenMint = _isOpenMint;
    }

    function setMaxSupply(uint256 _MAX_SUPPLY)external onlyOwner{
        MAX_SUPPLY=_MAX_SUPPLY;
    }

    function setSignedAddress(address _signAddress)external onlyOwner{
         signAddress=_signAddress;
    }

    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function withdrawMoney() external onlyOwner{
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

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

    function tokenURI(uint256 tokenId) public view override returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : '';
	}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"},{"internalType":"address","name":"_signAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isOpenMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMint","type":"uint256"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenMint","type":"bool"}],"name":"setOpenMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signAddress","type":"address"}],"name":"setSignedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"_singature","type":"bytes"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526115b36009556002600a908155600b5566138a388a43c000600c55600e805460ff191690553480156200003657600080fd5b50604051620024b6380380620024b683398101604081905262000059916200022f565b60405180604001604052806009815260200168436c6f756479204d6560b81b81525060405180604001604052806002815260200161434d60f01b8152508160029080519060200190620000ae9291906200016c565b508051620000c49060039060208401906200016c565b5050600160005550620000d7336200011a565b8151620000ec90600d9060208501906200016c565b50600e80546001600160a01b0390921661010002610100600160a81b03199092169190911790555062000373565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017a9062000320565b90600052602060002090601f0160209004810192826200019e5760008555620001e9565b82601f10620001b957805160ff1916838001178555620001e9565b82800160010185558215620001e9579182015b82811115620001e9578251825591602001919060010190620001cc565b50620001f7929150620001fb565b5090565b5b80821115620001f75760008155600101620001fc565b80516001600160a01b03811681146200022a57600080fd5b919050565b600080604083850312156200024357600080fd5b82516001600160401b03808211156200025b57600080fd5b818501915085601f8301126200027057600080fd5b8151818111156200028557620002856200035d565b604051601f8201601f19908116603f01168101908382118183101715620002b057620002b06200035d565b81604052828152602093508884848701011115620002cd57600080fd5b600091505b82821015620002f15784820184015181830185015290830190620002d2565b82821115620003035760008484830101525b95506200031591505085820162000212565b925050509250929050565b600181811c908216806200033557607f821691505b602082108114156200035757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61213380620003836000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063c002d23d116100a0578063db065b1d1161006f578063db065b1d14610574578063e2af30f41461058a578063e985e9c5146105aa578063f2fde38b146105f3578063fbbf8cc31461061357600080fd5b8063c002d23d1461050f578063c87b56dd14610525578063d0677c5414610545578063d547cfb71461055f57600080fd5b8063aa580ae9116100dc578063aa580ae9146104a7578063ac446002146104ba578063b36e4e55146104cf578063b88d4fde146104ef57600080fd5b8063715018a61461043f5780638da5cb5b1461045457806395d89b4114610472578063a22cb4651461048757600080fd5b806330176e1311610190578063484b973c1161015f578063484b973c1461039f5780636352211e146103bf5780636f8b44b0146103df57806370a08231146103ff57806370e093691461041f57600080fd5b806330176e131461033657806332cb6b0c1461035657806340c10f191461036c57806342842e0e1461037f57600080fd5b8063081812fc116101cc578063081812fc146102b6578063095ea7b3146102d657806318160ddd146102f857806323b872dd1461031657600080fd5b806301ffc9a7146101fe57806302775240146102335780630682bdbc1461025757806306fdde0314610294575b600080fd5b34801561020a57600080fd5b5061021e610219366004611de1565b610640565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610249600b5481565b60405190815260200161022a565b34801561026357600080fd5b50600e5461027c9061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161022a565b3480156102a057600080fd5b506102a9610692565b60405161022a9190611f4e565b3480156102c257600080fd5b5061027c6102d1366004611e8d565b610724565b3480156102e257600080fd5b506102f66102f1366004611d45565b610768565b005b34801561030457600080fd5b50610249600154600054036000190190565b34801561032257600080fd5b506102f6610331366004611c77565b610808565b34801561034257600080fd5b506102f6610351366004611e1b565b610999565b34801561036257600080fd5b5061024960095481565b6102f661037a366004611d45565b6109dd565b34801561038b57600080fd5b506102f661039a366004611c77565b610be2565b3480156103ab57600080fd5b506102f66103ba366004611d45565b610bfd565b3480156103cb57600080fd5b5061027c6103da366004611e8d565b610c6d565b3480156103eb57600080fd5b506102f66103fa366004611e8d565b610c78565b34801561040b57600080fd5b5061024961041a366004611c29565b610ca7565b34801561042b57600080fd5b506102f661043a366004611e8d565b610cf6565b34801561044b57600080fd5b506102f6610d25565b34801561046057600080fd5b506008546001600160a01b031661027c565b34801561047e57600080fd5b506102a9610d5b565b34801561049357600080fd5b506102f66104a2366004611d1b565b610d6a565b6102f66104b5366004611d6f565b610e00565b3480156104c657600080fd5b506102f66110bd565b3480156104db57600080fd5b506102f66104ea366004611c29565b611175565b3480156104fb57600080fd5b506102f661050a366004611cb3565b6111c7565b34801561051b57600080fd5b50610249600c5481565b34801561053157600080fd5b506102a9610540366004611e8d565b611211565b34801561055157600080fd5b50600e5461021e9060ff1681565b34801561056b57600080fd5b506102a96112dd565b34801561058057600080fd5b50610249600a5481565b34801561059657600080fd5b506102f66105a5366004611dc6565b61136b565b3480156105b657600080fd5b5061021e6105c5366004611c44565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ff57600080fd5b506102f661060e366004611c29565b6113a8565b34801561061f57600080fd5b5061024961062e366004611c29565b600f6020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b03198316148061067157506380ac58cd60e01b6001600160e01b03198316145b8061068c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106a19061206a565b80601f01602080910402602001604051908101604052809291908181526020018280546106cd9061206a565b801561071a5780601f106106ef5761010080835404028352916020019161071a565b820191906000526020600020905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b600061072f82611440565b61074c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077382610c6d565b9050336001600160a01b038216146107ac5761078f81336105c5565b6107ac576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061081382611475565b9050836001600160a01b0316816001600160a01b0316146108465760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108935761087686336105c5565b61089357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108ba57604051633a954ecd60e21b815260040160405180910390fd5b80156108c557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610950576001840160008181526004602052604090205461094e57600054811461094e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146109cc5760405162461bcd60e51b81526004016109c390611f61565b60405180910390fd5b6109d8600d8383611ad7565b505050565b600e5460ff16610a275760405162461bcd60e51b81526020600482015260156024820152744e6f7420647572696e67206f70656e20686f75727360581b60448201526064016109c3565b60095481610a3c600154600054036000190190565b610a469190611ff0565b1115610a645760405162461bcd60e51b81526004016109c390611f96565b600b546001600160a01b0383166000908152600f6020526040902054610a8b908390611ff0565b1115610aca5760405162461bcd60e51b815260206004820152600e60248201526d131a5b5a5d08195e18d95959195960921b60448201526064016109c3565b600a546001600160a01b0383166000908152600f602052604090205410610b1c57600c54610af89082612008565b341015610b175760405162461bcd60e51b81526004016109c390611fc0565b610ba6565b600a546001600160a01b0383166000908152600f6020526040902054610b43908390611ff0565b1115610ba657600c54600a546001600160a01b0384166000908152600f6020526040902054610b73908490611ff0565b610b7d9190612027565b610b879190612008565b341015610ba65760405162461bcd60e51b81526004016109c390611fc0565b6001600160a01b0382166000908152600f602052604081208054839290610bce908490611ff0565b90915550610bde905082826114de565b5050565b6109d8838383604051806020016040528060008152506111c7565b6008546001600160a01b03163314610c275760405162461bcd60e51b81526004016109c390611f61565b600954610c3b600154600054036000190190565b610c459083611ff0565b1115610c635760405162461bcd60e51b81526004016109c390611f96565b610bde82826114de565b600061068c82611475565b6008546001600160a01b03163314610ca25760405162461bcd60e51b81526004016109c390611f61565b600955565b60006001600160a01b038216610cd0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d205760405162461bcd60e51b81526004016109c390611f61565b600a55565b6008546001600160a01b03163314610d4f5760405162461bcd60e51b81526004016109c390611f61565b610d5960006115bb565b565b6060600380546106a19061206a565b6001600160a01b038216331415610d945760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e54604051606085901b6bffffffffffffffffffffffff19166020820152603481018490526101009091046001600160a01b031690610eb090610eaa90605401604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b8361160d565b6001600160a01b031614610f065760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c697374000000000060448201526064016109c3565b60095482610f1b600154600054036000190190565b610f259190611ff0565b1115610f435760405162461bcd60e51b81526004016109c390611f96565b600b546001600160a01b0384166000908152600f6020526040902054610f6a908490611ff0565b1115610fa95760405162461bcd60e51b815260206004820152600e60248201526d131a5b5a5d08195e18d95959195960921b60448201526064016109c3565b600a546001600160a01b0384166000908152600f602052604090205410610ffb57600c54610fd79083612008565b341015610ff65760405162461bcd60e51b81526004016109c390611fc0565b611085565b600a546001600160a01b0384166000908152600f6020526040902054611022908490611ff0565b111561108557600c54600a546001600160a01b0385166000908152600f6020526040902054611052908590611ff0565b61105c9190612027565b6110669190612008565b3410156110855760405162461bcd60e51b81526004016109c390611fc0565b6001600160a01b0383166000908152600f6020526040812080548492906110ad908490611ff0565b909155506109d8905083836114de565b6008546001600160a01b031633146110e75760405162461bcd60e51b81526004016109c390611f61565b604051600090339047908381818185875af1925050503d8060008114611129576040519150601f19603f3d011682016040523d82523d6000602084013e61112e565b606091505b50509050806111725760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109c3565b50565b6008546001600160a01b0316331461119f5760405162461bcd60e51b81526004016109c390611f61565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6111d2848484610808565b6001600160a01b0383163b1561120b576111ee84848484611631565b61120b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061121c82611440565b6112805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c3565b600061128a611728565b90508051600014156112ab57604051806020016040528060008152506112d6565b806112b584611737565b6040516020016112c6929190611ed2565b6040516020818303038152906040525b9392505050565b600d80546112ea9061206a565b80601f01602080910402602001604051908101604052809291908181526020018280546113169061206a565b80156113635780601f1061133857610100808354040283529160200191611363565b820191906000526020600020905b81548152906001019060200180831161134657829003601f168201915b505050505081565b6008546001600160a01b031633146113955760405162461bcd60e51b81526004016109c390611f61565b600e805460ff1916911515919091179055565b6008546001600160a01b031633146113d25760405162461bcd60e51b81526004016109c390611f61565b6001600160a01b0381166114375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c3565b611172816115bb565b600081600111158015611454575060005482105b801561068c575050600090815260046020526040902054600160e01b161590565b600081806001116114c5576000548110156114c557600081815260046020526040902054600160e01b81166114c3575b806112d65750600019016000818152600460205260409020546114a5565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03831661150757604051622e076360e81b815260040160405180910390fd5b816115255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061156f5760005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080600061161c8585611786565b91509150611629816117f6565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611666903390899088908890600401611f11565b602060405180830381600087803b15801561168057600080fd5b505af19250505080156116b0575060408051601f3d908101601f191682019092526116ad91810190611dfe565b60015b61170b573d8080156116de576040519150601f19603f3d011682016040523d82523d6000602084013e6116e3565b606091505b508051611703576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600d80546106a19061206a565b604080516080810191829052607f0190826030600a8206018353600a90045b801561177457600183039250600a81066030018353600a9004611756565b50819003601f19909101908152919050565b6000808251604114156117bd5760208301516040840151606085015160001a6117b1878285856119b1565b945094505050506117ef565b8251604014156117e757602083015160408401516117dc868383611a9e565b9350935050506117ef565b506000905060025b9250929050565b600081600481111561180a5761180a6120bb565b14156118135750565b6001816004811115611827576118276120bb565b14156118755760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109c3565b6002816004811115611889576118896120bb565b14156118d75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109c3565b60038160048111156118eb576118eb6120bb565b14156119445760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109c3565b6004816004811115611958576119586120bb565b14156111725760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109c3565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156119e85750600090506003611a95565b8460ff16601b14158015611a0057508460ff16601c14155b15611a115750600090506004611a95565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611a65573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a8e57600060019250925050611a95565b9150600090505b94509492505050565b6000806001600160ff1b03831681611abb60ff86901c601b611ff0565b9050611ac9878288856119b1565b935093505050935093915050565b828054611ae39061206a565b90600052602060002090601f016020900481019282611b055760008555611b4b565b82601f10611b1e5782800160ff19823516178555611b4b565b82800160010185558215611b4b579182015b82811115611b4b578235825591602001919060010190611b30565b50611b57929150611b5b565b5090565b5b80821115611b575760008155600101611b5c565b80356001600160a01b0381168114611b8757600080fd5b919050565b80358015158114611b8757600080fd5b600082601f830112611bad57600080fd5b813567ffffffffffffffff80821115611bc857611bc86120d1565b604051601f8301601f19908116603f01168101908282118183101715611bf057611bf06120d1565b81604052838152866020858801011115611c0957600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611c3b57600080fd5b6112d682611b70565b60008060408385031215611c5757600080fd5b611c6083611b70565b9150611c6e60208401611b70565b90509250929050565b600080600060608486031215611c8c57600080fd5b611c9584611b70565b9250611ca360208501611b70565b9150604084013590509250925092565b60008060008060808587031215611cc957600080fd5b611cd285611b70565b9350611ce060208601611b70565b925060408501359150606085013567ffffffffffffffff811115611d0357600080fd5b611d0f87828801611b9c565b91505092959194509250565b60008060408385031215611d2e57600080fd5b611d3783611b70565b9150611c6e60208401611b8c565b60008060408385031215611d5857600080fd5b611d6183611b70565b946020939093013593505050565b600080600060608486031215611d8457600080fd5b611d8d84611b70565b925060208401359150604084013567ffffffffffffffff811115611db057600080fd5b611dbc86828701611b9c565b9150509250925092565b600060208284031215611dd857600080fd5b6112d682611b8c565b600060208284031215611df357600080fd5b81356112d6816120e7565b600060208284031215611e1057600080fd5b81516112d6816120e7565b60008060208385031215611e2e57600080fd5b823567ffffffffffffffff80821115611e4657600080fd5b818501915085601f830112611e5a57600080fd5b813581811115611e6957600080fd5b866020828501011115611e7b57600080fd5b60209290920196919550909350505050565b600060208284031215611e9f57600080fd5b5035919050565b60008151808452611ebe81602086016020860161203e565b601f01601f19169290920160200192915050565b60008351611ee481846020880161203e565b835190830190611ef881836020880161203e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f4490830184611ea6565b9695505050505050565b6020815260006112d66020830184611ea6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f135a5b9d19590818dbdb5c1b195d195960821b604082015260600190565b6020808252601690820152754e6f7420706179696e6720656e6f756768206665657360501b604082015260600190565b60008219821115612003576120036120a5565b500190565b6000816000190483118215151615612022576120226120a5565b500290565b600082821015612039576120396120a5565b500390565b60005b83811015612059578181015183820152602001612041565b8381111561120b5750506000910152565b600181811c9082168061207e57607f821691505b6020821081141561209f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461117257600080fdfea26469706673582212205236c8805729714a677a20ca728484faa517d6199b9e03f21625f19402f1fba064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ad570bc60adc14772542503d4d68b04486d18606000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7777772e636c6f7564796d652e78797a2f6170692f000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063c002d23d116100a0578063db065b1d1161006f578063db065b1d14610574578063e2af30f41461058a578063e985e9c5146105aa578063f2fde38b146105f3578063fbbf8cc31461061357600080fd5b8063c002d23d1461050f578063c87b56dd14610525578063d0677c5414610545578063d547cfb71461055f57600080fd5b8063aa580ae9116100dc578063aa580ae9146104a7578063ac446002146104ba578063b36e4e55146104cf578063b88d4fde146104ef57600080fd5b8063715018a61461043f5780638da5cb5b1461045457806395d89b4114610472578063a22cb4651461048757600080fd5b806330176e1311610190578063484b973c1161015f578063484b973c1461039f5780636352211e146103bf5780636f8b44b0146103df57806370a08231146103ff57806370e093691461041f57600080fd5b806330176e131461033657806332cb6b0c1461035657806340c10f191461036c57806342842e0e1461037f57600080fd5b8063081812fc116101cc578063081812fc146102b6578063095ea7b3146102d657806318160ddd146102f857806323b872dd1461031657600080fd5b806301ffc9a7146101fe57806302775240146102335780630682bdbc1461025757806306fdde0314610294575b600080fd5b34801561020a57600080fd5b5061021e610219366004611de1565b610640565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610249600b5481565b60405190815260200161022a565b34801561026357600080fd5b50600e5461027c9061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161022a565b3480156102a057600080fd5b506102a9610692565b60405161022a9190611f4e565b3480156102c257600080fd5b5061027c6102d1366004611e8d565b610724565b3480156102e257600080fd5b506102f66102f1366004611d45565b610768565b005b34801561030457600080fd5b50610249600154600054036000190190565b34801561032257600080fd5b506102f6610331366004611c77565b610808565b34801561034257600080fd5b506102f6610351366004611e1b565b610999565b34801561036257600080fd5b5061024960095481565b6102f661037a366004611d45565b6109dd565b34801561038b57600080fd5b506102f661039a366004611c77565b610be2565b3480156103ab57600080fd5b506102f66103ba366004611d45565b610bfd565b3480156103cb57600080fd5b5061027c6103da366004611e8d565b610c6d565b3480156103eb57600080fd5b506102f66103fa366004611e8d565b610c78565b34801561040b57600080fd5b5061024961041a366004611c29565b610ca7565b34801561042b57600080fd5b506102f661043a366004611e8d565b610cf6565b34801561044b57600080fd5b506102f6610d25565b34801561046057600080fd5b506008546001600160a01b031661027c565b34801561047e57600080fd5b506102a9610d5b565b34801561049357600080fd5b506102f66104a2366004611d1b565b610d6a565b6102f66104b5366004611d6f565b610e00565b3480156104c657600080fd5b506102f66110bd565b3480156104db57600080fd5b506102f66104ea366004611c29565b611175565b3480156104fb57600080fd5b506102f661050a366004611cb3565b6111c7565b34801561051b57600080fd5b50610249600c5481565b34801561053157600080fd5b506102a9610540366004611e8d565b611211565b34801561055157600080fd5b50600e5461021e9060ff1681565b34801561056b57600080fd5b506102a96112dd565b34801561058057600080fd5b50610249600a5481565b34801561059657600080fd5b506102f66105a5366004611dc6565b61136b565b3480156105b657600080fd5b5061021e6105c5366004611c44565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ff57600080fd5b506102f661060e366004611c29565b6113a8565b34801561061f57600080fd5b5061024961062e366004611c29565b600f6020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b03198316148061067157506380ac58cd60e01b6001600160e01b03198316145b8061068c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106a19061206a565b80601f01602080910402602001604051908101604052809291908181526020018280546106cd9061206a565b801561071a5780601f106106ef5761010080835404028352916020019161071a565b820191906000526020600020905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b600061072f82611440565b61074c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077382610c6d565b9050336001600160a01b038216146107ac5761078f81336105c5565b6107ac576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061081382611475565b9050836001600160a01b0316816001600160a01b0316146108465760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108935761087686336105c5565b61089357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108ba57604051633a954ecd60e21b815260040160405180910390fd5b80156108c557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610950576001840160008181526004602052604090205461094e57600054811461094e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146109cc5760405162461bcd60e51b81526004016109c390611f61565b60405180910390fd5b6109d8600d8383611ad7565b505050565b600e5460ff16610a275760405162461bcd60e51b81526020600482015260156024820152744e6f7420647572696e67206f70656e20686f75727360581b60448201526064016109c3565b60095481610a3c600154600054036000190190565b610a469190611ff0565b1115610a645760405162461bcd60e51b81526004016109c390611f96565b600b546001600160a01b0383166000908152600f6020526040902054610a8b908390611ff0565b1115610aca5760405162461bcd60e51b815260206004820152600e60248201526d131a5b5a5d08195e18d95959195960921b60448201526064016109c3565b600a546001600160a01b0383166000908152600f602052604090205410610b1c57600c54610af89082612008565b341015610b175760405162461bcd60e51b81526004016109c390611fc0565b610ba6565b600a546001600160a01b0383166000908152600f6020526040902054610b43908390611ff0565b1115610ba657600c54600a546001600160a01b0384166000908152600f6020526040902054610b73908490611ff0565b610b7d9190612027565b610b879190612008565b341015610ba65760405162461bcd60e51b81526004016109c390611fc0565b6001600160a01b0382166000908152600f602052604081208054839290610bce908490611ff0565b90915550610bde905082826114de565b5050565b6109d8838383604051806020016040528060008152506111c7565b6008546001600160a01b03163314610c275760405162461bcd60e51b81526004016109c390611f61565b600954610c3b600154600054036000190190565b610c459083611ff0565b1115610c635760405162461bcd60e51b81526004016109c390611f96565b610bde82826114de565b600061068c82611475565b6008546001600160a01b03163314610ca25760405162461bcd60e51b81526004016109c390611f61565b600955565b60006001600160a01b038216610cd0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d205760405162461bcd60e51b81526004016109c390611f61565b600a55565b6008546001600160a01b03163314610d4f5760405162461bcd60e51b81526004016109c390611f61565b610d5960006115bb565b565b6060600380546106a19061206a565b6001600160a01b038216331415610d945760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e54604051606085901b6bffffffffffffffffffffffff19166020820152603481018490526101009091046001600160a01b031690610eb090610eaa90605401604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b8361160d565b6001600160a01b031614610f065760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c697374000000000060448201526064016109c3565b60095482610f1b600154600054036000190190565b610f259190611ff0565b1115610f435760405162461bcd60e51b81526004016109c390611f96565b600b546001600160a01b0384166000908152600f6020526040902054610f6a908490611ff0565b1115610fa95760405162461bcd60e51b815260206004820152600e60248201526d131a5b5a5d08195e18d95959195960921b60448201526064016109c3565b600a546001600160a01b0384166000908152600f602052604090205410610ffb57600c54610fd79083612008565b341015610ff65760405162461bcd60e51b81526004016109c390611fc0565b611085565b600a546001600160a01b0384166000908152600f6020526040902054611022908490611ff0565b111561108557600c54600a546001600160a01b0385166000908152600f6020526040902054611052908590611ff0565b61105c9190612027565b6110669190612008565b3410156110855760405162461bcd60e51b81526004016109c390611fc0565b6001600160a01b0383166000908152600f6020526040812080548492906110ad908490611ff0565b909155506109d8905083836114de565b6008546001600160a01b031633146110e75760405162461bcd60e51b81526004016109c390611f61565b604051600090339047908381818185875af1925050503d8060008114611129576040519150601f19603f3d011682016040523d82523d6000602084013e61112e565b606091505b50509050806111725760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109c3565b50565b6008546001600160a01b0316331461119f5760405162461bcd60e51b81526004016109c390611f61565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6111d2848484610808565b6001600160a01b0383163b1561120b576111ee84848484611631565b61120b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061121c82611440565b6112805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c3565b600061128a611728565b90508051600014156112ab57604051806020016040528060008152506112d6565b806112b584611737565b6040516020016112c6929190611ed2565b6040516020818303038152906040525b9392505050565b600d80546112ea9061206a565b80601f01602080910402602001604051908101604052809291908181526020018280546113169061206a565b80156113635780601f1061133857610100808354040283529160200191611363565b820191906000526020600020905b81548152906001019060200180831161134657829003601f168201915b505050505081565b6008546001600160a01b031633146113955760405162461bcd60e51b81526004016109c390611f61565b600e805460ff1916911515919091179055565b6008546001600160a01b031633146113d25760405162461bcd60e51b81526004016109c390611f61565b6001600160a01b0381166114375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c3565b611172816115bb565b600081600111158015611454575060005482105b801561068c575050600090815260046020526040902054600160e01b161590565b600081806001116114c5576000548110156114c557600081815260046020526040902054600160e01b81166114c3575b806112d65750600019016000818152600460205260409020546114a5565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03831661150757604051622e076360e81b815260040160405180910390fd5b816115255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061156f5760005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080600061161c8585611786565b91509150611629816117f6565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611666903390899088908890600401611f11565b602060405180830381600087803b15801561168057600080fd5b505af19250505080156116b0575060408051601f3d908101601f191682019092526116ad91810190611dfe565b60015b61170b573d8080156116de576040519150601f19603f3d011682016040523d82523d6000602084013e6116e3565b606091505b508051611703576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600d80546106a19061206a565b604080516080810191829052607f0190826030600a8206018353600a90045b801561177457600183039250600a81066030018353600a9004611756565b50819003601f19909101908152919050565b6000808251604114156117bd5760208301516040840151606085015160001a6117b1878285856119b1565b945094505050506117ef565b8251604014156117e757602083015160408401516117dc868383611a9e565b9350935050506117ef565b506000905060025b9250929050565b600081600481111561180a5761180a6120bb565b14156118135750565b6001816004811115611827576118276120bb565b14156118755760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109c3565b6002816004811115611889576118896120bb565b14156118d75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109c3565b60038160048111156118eb576118eb6120bb565b14156119445760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109c3565b6004816004811115611958576119586120bb565b14156111725760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109c3565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156119e85750600090506003611a95565b8460ff16601b14158015611a0057508460ff16601c14155b15611a115750600090506004611a95565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611a65573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a8e57600060019250925050611a95565b9150600090505b94509492505050565b6000806001600160ff1b03831681611abb60ff86901c601b611ff0565b9050611ac9878288856119b1565b935093505050935093915050565b828054611ae39061206a565b90600052602060002090601f016020900481019282611b055760008555611b4b565b82601f10611b1e5782800160ff19823516178555611b4b565b82800160010185558215611b4b579182015b82811115611b4b578235825591602001919060010190611b30565b50611b57929150611b5b565b5090565b5b80821115611b575760008155600101611b5c565b80356001600160a01b0381168114611b8757600080fd5b919050565b80358015158114611b8757600080fd5b600082601f830112611bad57600080fd5b813567ffffffffffffffff80821115611bc857611bc86120d1565b604051601f8301601f19908116603f01168101908282118183101715611bf057611bf06120d1565b81604052838152866020858801011115611c0957600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611c3b57600080fd5b6112d682611b70565b60008060408385031215611c5757600080fd5b611c6083611b70565b9150611c6e60208401611b70565b90509250929050565b600080600060608486031215611c8c57600080fd5b611c9584611b70565b9250611ca360208501611b70565b9150604084013590509250925092565b60008060008060808587031215611cc957600080fd5b611cd285611b70565b9350611ce060208601611b70565b925060408501359150606085013567ffffffffffffffff811115611d0357600080fd5b611d0f87828801611b9c565b91505092959194509250565b60008060408385031215611d2e57600080fd5b611d3783611b70565b9150611c6e60208401611b8c565b60008060408385031215611d5857600080fd5b611d6183611b70565b946020939093013593505050565b600080600060608486031215611d8457600080fd5b611d8d84611b70565b925060208401359150604084013567ffffffffffffffff811115611db057600080fd5b611dbc86828701611b9c565b9150509250925092565b600060208284031215611dd857600080fd5b6112d682611b8c565b600060208284031215611df357600080fd5b81356112d6816120e7565b600060208284031215611e1057600080fd5b81516112d6816120e7565b60008060208385031215611e2e57600080fd5b823567ffffffffffffffff80821115611e4657600080fd5b818501915085601f830112611e5a57600080fd5b813581811115611e6957600080fd5b866020828501011115611e7b57600080fd5b60209290920196919550909350505050565b600060208284031215611e9f57600080fd5b5035919050565b60008151808452611ebe81602086016020860161203e565b601f01601f19169290920160200192915050565b60008351611ee481846020880161203e565b835190830190611ef881836020880161203e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f4490830184611ea6565b9695505050505050565b6020815260006112d66020830184611ea6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f135a5b9d19590818dbdb5c1b195d195960821b604082015260600190565b6020808252601690820152754e6f7420706179696e6720656e6f756768206665657360501b604082015260600190565b60008219821115612003576120036120a5565b500190565b6000816000190483118215151615612022576120226120a5565b500290565b600082821015612039576120396120a5565b500390565b60005b83811015612059578181015183820152602001612041565b8381111561120b5750506000910152565b600181811c9082168061207e57607f821691505b6020821081141561209f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461117257600080fdfea26469706673582212205236c8805729714a677a20ca728484faa517d6199b9e03f21625f19402f1fba064736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ad570bc60adc14772542503d4d68b04486d18606000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7777772e636c6f7564796d652e78797a2f6170692f000000

-----Decoded View---------------
Arg [0] : _baseTokenUri (string): https://www.cloudyme.xyz/api/
Arg [1] : _signAddress (address): 0xad570BC60ADC14772542503d4d68B04486d18606

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000ad570bc60adc14772542503d4d68b04486d18606
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [3] : 68747470733a2f2f7777772e636c6f7564796d652e78797a2f6170692f000000


Deployed Bytecode Sourcemap

59910:3431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26283:615;;;;;;;;;;-1:-1:-1;26283:615:0;;;;;:::i;:::-;;:::i;:::-;;;7531:14:1;;7524:22;7506:41;;7494:2;7479:18;26283:615:0;;;;;;;;60028:30;;;;;;;;;;;;;;;;;;;13124:25:1;;;13112:2;13097:18;60028:30:0;12978:177:1;60182:26:0;;;;;;;;;;-1:-1:-1;60182:26:0;;;;;;;-1:-1:-1;;;;;60182:26:0;;;;;;-1:-1:-1;;;;;6829:32:1;;;6811:51;;6799:2;6784:18;60182:26:0;6665:203:1;31930:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33876:204::-;;;;;;;;;;-1:-1:-1;33876:204:0;;;;;:::i;:::-;;:::i;33424:386::-;;;;;;;;;;-1:-1:-1;33424:386:0;;;;;:::i;:::-;;:::i;:::-;;25337:315;;;;;;;;;;;;63329:1;25603:12;25390:7;25587:13;:28;-1:-1:-1;;25587:46:0;;25337:315;43141:2800;;;;;;;;;;-1:-1:-1;43141:2800:0;;;;;:::i;:::-;;:::i;62494:104::-;;;;;;;;;;-1:-1:-1;62494:104:0;;;;;:::i;:::-;;:::i;59954:32::-;;;;;;;;;;;;;;;;60447:640;;;;;;:::i;:::-;;:::i;34766:185::-;;;;;;;;;;-1:-1:-1;34766:185:0;;;;;:::i;:::-;;:::i;61874:175::-;;;;;;;;;;-1:-1:-1;61874:175:0;;;;;:::i;:::-;;:::i;31719:144::-;;;;;;;;;;-1:-1:-1;31719:144:0;;;;;:::i;:::-;;:::i;62268:101::-;;;;;;;;;;-1:-1:-1;62268:101:0;;;;;:::i;:::-;;:::i;26962:224::-;;;;;;;;;;-1:-1:-1;26962:224:0;;;;;:::i;:::-;;:::i;62057:95::-;;;;;;;;;;-1:-1:-1;62057:95:0;;;;;:::i;:::-;;:::i;59021:103::-;;;;;;;;;;;;;:::i;58370:87::-;;;;;;;;;;-1:-1:-1;58443:6:0;;-1:-1:-1;;;;;58443:6:0;58370:87;;32099:104;;;;;;;;;;;;;:::i;34152:308::-;;;;;;;;;;-1:-1:-1;34152:308:0;;;;;:::i;:::-;;:::i;61095:771::-;;;;;;:::i;:::-;;:::i;62606:177::-;;;;;;;;;;;;;:::i;62377:109::-;;;;;;;;;;-1:-1:-1;62377:109:0;;;;;:::i;:::-;;:::i;35022:399::-;;;;;;;;;;-1:-1:-1;35022:399:0;;;;;:::i;:::-;;:::i;60065:40::-;;;;;;;;;;;;;;;;62904:333;;;;;;;;;;-1:-1:-1;62904:333:0;;;;;:::i;:::-;;:::i;60145:30::-;;;;;;;;;;-1:-1:-1;60145:30:0;;;;;;;;60112:26;;;;;;;;;;;;;:::i;59993:28::-;;;;;;;;;;;;;;;;62160:100;;;;;;;;;;-1:-1:-1;62160:100:0;;;;;:::i;:::-;;:::i;34531:164::-;;;;;;;;;;-1:-1:-1;34531:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34652:25:0;;;34628:4;34652:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34531:164;59279:201;;;;;;;;;;-1:-1:-1;59279:201:0;;;;;:::i;:::-;;:::i;60215:45::-;;;;;;;;;;-1:-1:-1;60215:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;26283:615;26368:4;-1:-1:-1;;;;;;;;;26668:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;26745:25:0;;;26668:102;:179;;;-1:-1:-1;;;;;;;;;;26822:25:0;;;26668:179;26648:199;26283:615;-1:-1:-1;;26283:615:0:o;31930:100::-;31984:13;32017:5;32010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31930:100;:::o;33876:204::-;33944:7;33969:16;33977:7;33969;:16::i;:::-;33964:64;;33994:34;;-1:-1:-1;;;33994:34:0;;;;;;;;;;;33964:64;-1:-1:-1;34048:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34048:24:0;;33876:204::o;33424:386::-;33497:13;33513:16;33521:7;33513;:16::i;:::-;33497:32;-1:-1:-1;54324:10:0;-1:-1:-1;;;;;33546:28:0;;;33542:175;;33594:44;33611:5;54324:10;34531:164;:::i;33594:44::-;33589:128;;33666:35;;-1:-1:-1;;;33666:35:0;;;;;;;;;;;33589:128;33729:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33729:29:0;-1:-1:-1;;;;;33729:29:0;;;;;;;;;33774:28;;33729:24;;33774:28;;;;;;;33486:324;33424:386;;:::o;43141:2800::-;43275:27;43305;43324:7;43305:18;:27::i;:::-;43275:57;;43390:4;-1:-1:-1;;;;;43349:45:0;43365:19;-1:-1:-1;;;;;43349:45:0;;43345:86;;43403:28;;-1:-1:-1;;;43403:28:0;;;;;;;;;;;43345:86;43445:27;41871:21;;;41698:15;41913:4;41906:36;41995:4;41979:21;;42085:26;;54324:10;42838:30;;;-1:-1:-1;;;;;42536:26:0;;42817:19;;;42814:55;43624:174;;43711:43;43728:4;54324:10;34531:164;:::i;43711:43::-;43706:92;;43763:35;;-1:-1:-1;;;43763:35:0;;;;;;;;;;;43706:92;-1:-1:-1;;;;;43815:16:0;;43811:52;;43840:23;;-1:-1:-1;;;43840:23:0;;;;;;;;;;;43811:52;44012:15;44009:160;;;44152:1;44131:19;44124:30;44009:160;-1:-1:-1;;;;;44547:24:0;;;;;;;:18;:24;;;;;;44545:26;;-1:-1:-1;;44545:26:0;;;44616:22;;;;;;;;;44614:24;;-1:-1:-1;44614:24:0;;;31618:11;31594:22;31590:40;31577:62;-1:-1:-1;;;31577:62:0;44909:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;45203:46:0;;45199:626;;45307:1;45297:11;;45275:19;45430:30;;;:17;:30;;;;;;45426:384;;45568:13;;45553:11;:28;45549:242;;45715:30;;;;:17;:30;;;;;:52;;;45549:242;45256:569;45199:626;45872:7;45868:2;-1:-1:-1;;;;;45853:27:0;45862:4;-1:-1:-1;;;;;45853:27:0;;;;;;;;;;;43264:2677;;;43141:2800;;;:::o;62494:104::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;;;;;;;;;62571:19:::1;:12;62586:4:::0;;62571:19:::1;:::i;:::-;;62494:104:::0;;:::o;60447:640::-;60523:10;;;;60515:43;;;;-1:-1:-1;;;60515:43:0;;11789:2:1;60515:43:0;;;11771:21:1;11828:2;11808:18;;;11801:30;-1:-1:-1;;;11847:18:1;;;11840:51;11908:18;;60515:43:0;11587:345:1;60515:43:0;60603:10;;60593:6;60577:13;63329:1;25603:12;25390:7;25587:13;:28;-1:-1:-1;;25587:46:0;;25337:315;60577:13;:22;;;;:::i;:::-;:36;;60569:64;;;;-1:-1:-1;;;60569:64:0;;;;;;;:::i;:::-;60681:10;;-1:-1:-1;;;;;60652:16:0;;;;;;:12;:16;;;;;;:25;;60671:6;;60652:25;:::i;:::-;:39;;60644:65;;;;-1:-1:-1;;;60644:65:0;;9863:2:1;60644:65:0;;;9845:21:1;9902:2;9882:18;;;9875:30;-1:-1:-1;;;9921:18:1;;;9914:44;9975:18;;60644:65:0;9661:338:1;60644:65:0;60743:9;;-1:-1:-1;;;;;60723:16:0;;;;;;:12;:16;;;;;;:29;60720:298;;60798:10;;60789:19;;:6;:19;:::i;:::-;60776:9;:32;;60768:66;;;;-1:-1:-1;;;60768:66:0;;;;;;;:::i;:::-;60720:298;;;60882:9;;-1:-1:-1;;;;;60854:16:0;;;;;;:12;:16;;;;;;:25;;60873:6;;60854:25;:::i;:::-;:37;60851:167;;;60970:10;;60957:9;;-1:-1:-1;;;;;60929:16:0;;;;;;:12;:16;;;;;;:25;;60948:6;;60929:25;:::i;:::-;:37;;;;:::i;:::-;60928:52;;;;:::i;:::-;60915:9;:65;;60907:99;;;;-1:-1:-1;;;60907:99:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61028:16:0;;;;;;:12;:16;;;;;:24;;61046:6;;61028:16;:24;;61046:6;;61028:24;:::i;:::-;;;;-1:-1:-1;61063:16:0;;-1:-1:-1;61069:2:0;61072:6;61063:5;:16::i;:::-;60447:640;;:::o;34766:185::-;34904:39;34921:4;34927:2;34931:7;34904:39;;;;;;;;;;;;:16;:39::i;61874:175::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;61983:10:::1;;61966:13;63329:1:::0;25603:12;25390:7;25587:13;:28;-1:-1:-1;;25587:46:0;;25337:315;61966:13:::1;61957:22;::::0;:6;:22:::1;:::i;:::-;:36;;61949:65;;;;-1:-1:-1::0;;;61949:65:0::1;;;;;;;:::i;:::-;62025:16;62031:2;62034:6;62025:5;:16::i;31719:144::-:0;31783:7;31826:27;31845:7;31826:18;:27::i;62268:101::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;62339:10:::1;:22:::0;62268:101::o;26962:224::-;27026:7;-1:-1:-1;;;;;27050:19:0;;27046:60;;27078:28;;-1:-1:-1;;;27078:28:0;;;;;;;;;;;27046:60;-1:-1:-1;;;;;;27124:25:0;;;;;:18;:25;;;;;;21517:13;27124:54;;26962:224::o;62057:95::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;62125:9:::1;:19:::0;62057:95::o;59021:103::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;59086:30:::1;59113:1;59086:18;:30::i;:::-;59021:103::o:0;32099:104::-;32155:13;32188:7;32181:14;;;;;:::i;34152:308::-;-1:-1:-1;;;;;34251:31:0;;54324:10;34251:31;34247:61;;;34291:17;;-1:-1:-1;;;34291:17:0;;;;;;;;;;;34247:61;54324:10;34321:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;34321:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;34321:60:0;;;;;;;;;;34397:55;;7506:41:1;;;34321:49:0;;54324:10;34397:55;;7479:18:1;34397:55:0;;;;;;;34152:308;;:::o;61095:771::-;61295:11;;61249:28;;5306:2:1;5302:15;;;-1:-1:-1;;5298:53:1;61249:28:0;;;5286:66:1;5368:12;;;5361:28;;;61295:11:0;;;;-1:-1:-1;;;;;61295:11:0;;61196:95;;61210:69;;5405:12:1;;61249:28:0;;;;;;;;;;;;61239:39;;;;;;10578:58;;6312:66:1;10578:58:0;;;6300:79:1;6395:12;;;6388:28;;;10445:7:0;;6432:12:1;;10578:58:0;;;;;;;;;;;;10568:69;;;;;;10561:76;;10376:269;;;;61210:69;61280:10;61196:13;:95::i;:::-;-1:-1:-1;;;;;61196:110:0;;61188:149;;;;-1:-1:-1;;;61188:149:0;;9507:2:1;61188:149:0;;;9489:21:1;9546:2;9526:18;;;9519:30;9585:29;9565:18;;;9558:57;9632:18;;61188:149:0;9305:351:1;61188:149:0;61382:10;;61372:6;61356:13;63329:1;25603:12;25390:7;25587:13;:28;-1:-1:-1;;25587:46:0;;25337:315;61356:13;:22;;;;:::i;:::-;:36;;61348:64;;;;-1:-1:-1;;;61348:64:0;;;;;;;:::i;:::-;61460:10;;-1:-1:-1;;;;;61431:16:0;;;;;;:12;:16;;;;;;:25;;61450:6;;61431:25;:::i;:::-;:39;;61423:65;;;;-1:-1:-1;;;61423:65:0;;9863:2:1;61423:65:0;;;9845:21:1;9902:2;9882:18;;;9875:30;-1:-1:-1;;;9921:18:1;;;9914:44;9975:18;;61423:65:0;9661:338:1;61423:65:0;61522:9;;-1:-1:-1;;;;;61502:16:0;;;;;;:12;:16;;;;;;:29;61499:298;;61577:10;;61568:19;;:6;:19;:::i;:::-;61555:9;:32;;61547:66;;;;-1:-1:-1;;;61547:66:0;;;;;;;:::i;:::-;61499:298;;;61661:9;;-1:-1:-1;;;;;61633:16:0;;;;;;:12;:16;;;;;;:25;;61652:6;;61633:25;:::i;:::-;:37;61630:167;;;61749:10;;61736:9;;-1:-1:-1;;;;;61708:16:0;;;;;;:12;:16;;;;;;:25;;61727:6;;61708:25;:::i;:::-;:37;;;;:::i;:::-;61707:52;;;;:::i;:::-;61694:9;:65;;61686:99;;;;-1:-1:-1;;;61686:99:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61807:16:0;;;;;;:12;:16;;;;;:24;;61825:6;;61807:16;:24;;61825:6;;61807:24;:::i;:::-;;;;-1:-1:-1;61842:16:0;;-1:-1:-1;61848:2:0;61851:6;61842:5;:16::i;62606:177::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;62679:49:::1;::::0;62661:12:::1;::::0;62679:10:::1;::::0;62702:21:::1;::::0;62661:12;62679:49;62661:12;62679:49;62702:21;62679:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62660:68;;;62747:7;62739:36;;;::::0;-1:-1:-1;;;62739:36:0;;12484:2:1;62739:36:0::1;::::0;::::1;12466:21:1::0;12523:2;12503:18;;;12496:30;-1:-1:-1;;;12542:18:1;;;12535:46;12598:18;;62739:36:0::1;12282:340:1::0;62739:36:0::1;62649:134;62606:177::o:0;62377:109::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;62454:11:::1;:24:::0;;-1:-1:-1;;;;;62454:24:0;;::::1;;;-1:-1:-1::0;;;;;;62454:24:0;;::::1;::::0;;;::::1;::::0;;62377:109::o;35022:399::-;35189:31;35202:4;35208:2;35212:7;35189:12;:31::i;:::-;-1:-1:-1;;;;;35235:14:0;;;:19;35231:183;;35274:56;35305:4;35311:2;35315:7;35324:5;35274:30;:56::i;:::-;35269:145;;35358:40;;-1:-1:-1;;;35358:40:0;;;;;;;;;;;35269:145;35022:399;;;;:::o;62904:333::-;62969:13;63005:16;63013:7;63005;:16::i;:::-;62997:76;;;;-1:-1:-1;;;62997:76:0;;11373:2:1;62997:76:0;;;11355:21:1;11412:2;11392:18;;;11385:30;11451:34;11431:18;;;11424:62;-1:-1:-1;;;11502:18:1;;;11495:45;11557:19;;62997:76:0;11171:411:1;62997:76:0;63084:21;63108:10;:8;:10::i;:::-;63084:34;;63142:7;63136:21;63161:1;63136:26;;:96;;;;;;;;;;;;;;;;;63189:7;63198:18;63208:7;63198:9;:18::i;:::-;63172:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63136:96;63129:103;62904:333;-1:-1:-1;;;62904:333:0:o;60112:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62160:100::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;62228:10:::1;:24:::0;;-1:-1:-1;;62228:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62160:100::o;59279:201::-;58443:6;;-1:-1:-1;;;;;58443:6:0;54324:10;58590:23;58582:68;;;;-1:-1:-1;;;58582:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59368:22:0;::::1;59360:73;;;::::0;-1:-1:-1;;;59360:73:0;;9100:2:1;59360:73:0::1;::::0;::::1;9082:21:1::0;9139:2;9119:18;;;9112:30;9178:34;9158:18;;;9151:62;-1:-1:-1;;;9229:18:1;;;9222:36;9275:19;;59360:73:0::1;8898:402:1::0;59360:73:0::1;59444:28;59463:8;59444:18;:28::i;35676:273::-:0;35733:4;35789:7;63329:1;35770:26;;:66;;;;;35823:13;;35813:7;:23;35770:66;:152;;;;-1:-1:-1;;35874:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;35874:43:0;:48;;35676:273::o;28636:1129::-;28703:7;28738;;63329:1;28787:23;28783:915;;28840:13;;28833:4;:20;28829:869;;;28878:14;28895:23;;;:17;:23;;;;;;-1:-1:-1;;;28984:23:0;;28980:699;;29503:113;29510:11;29503:113;;-1:-1:-1;;;29581:6:0;29563:25;;;;:17;:25;;;;;;29503:113;;28980:699;28855:843;28829:869;29726:31;;-1:-1:-1;;;29726:31:0;;;;;;;;;;;37507:1529;37572:20;37595:13;-1:-1:-1;;;;;37623:16:0;;37619:48;;37648:19;;-1:-1:-1;;;37648:19:0;;;;;;;;;;;37619:48;37682:13;37678:44;;37704:18;;-1:-1:-1;;;37704:18:0;;;;;;;;;;;37678:44;-1:-1:-1;;;;;38210:22:0;;;;;;:18;:22;;21654:2;38210:22;;:70;;38248:31;38236:44;;38210:70;;;31618:11;31594:22;31590:40;-1:-1:-1;33328:15:0;;33303:23;33299:45;31587:51;31577:62;38523:31;;;;:17;:31;;;;;:173;38541:12;38772:23;;;38810:101;38837:35;;38862:9;;;;;-1:-1:-1;;;;;38837:35:0;;;38854:1;;38837:35;;38854:1;;38837:35;38906:3;38896:7;:13;38810:101;;38927:13;:19;-1:-1:-1;62571:19:0::1;62494:104:::0;;:::o;59640:191::-;59733:6;;;-1:-1:-1;;;;;59750:17:0;;;-1:-1:-1;;;;;;59750:17:0;;;;;;;59783:40;;59733:6;;;59750:17;59733:6;;59783:40;;59714:16;;59783:40;59703:128;59640:191;:::o;6574:231::-;6652:7;6673:17;6692:18;6714:27;6725:4;6731:9;6714:10;:27::i;:::-;6672:69;;;;6752:18;6764:5;6752:11;:18::i;:::-;-1:-1:-1;6788:9:0;6574:231;-1:-1:-1;;;6574:231:0:o;49892:716::-;50076:88;;-1:-1:-1;;;50076:88:0;;50055:4;;-1:-1:-1;;;;;50076:45:0;;;;;:88;;54324:10;;50143:4;;50149:7;;50158:5;;50076:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50076:88:0;;;;;;;;-1:-1:-1;;50076:88:0;;;;;;;;;;;;:::i;:::-;;;50072:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50359:13:0;;50355:235;;50405:40;;-1:-1:-1;;;50405:40:0;;;;;;;;;;;50355:235;50548:6;50542:13;50533:6;50529:2;50525:15;50518:38;50072:529;-1:-1:-1;;;;;;50235:64:0;-1:-1:-1;;;50235:64:0;;-1:-1:-1;49892:716:0;;;;;;:::o;62791:105::-;62843:13;62876:12;62869:19;;;;;:::i;54448:1960::-;54917:4;54911:11;;54924:3;54907:21;;55002:17;;;;55698:11;;;55577:5;55830:2;55844;55834:13;;55826:22;55698:11;55813:36;55885:2;55875:13;;55469:697;55904:4;55469:697;;;56095:1;56090:3;56086:11;56079:18;;56146:2;56140:4;56136:13;56132:2;56128:22;56123:3;56115:36;55999:2;55989:13;;55469:697;;;-1:-1:-1;56196:13:0;;;-1:-1:-1;;56311:12:0;;;56371:19;;;56311:12;54448:1960;-1:-1:-1;54448:1960:0:o;4464:1308::-;4545:7;4554:12;4779:9;:16;4799:2;4779:22;4775:990;;;5075:4;5060:20;;5054:27;5125:4;5110:20;;5104:27;5183:4;5168:20;;5162:27;4818:9;5154:36;5226:25;5237:4;5154:36;5054:27;5104;5226:10;:25::i;:::-;5219:32;;;;;;;;;4775:990;5273:9;:16;5293:2;5273:22;5269:496;;;5548:4;5533:20;;5527:27;5599:4;5584:20;;5578:27;5641:23;5652:4;5527:27;5578;5641:10;:23::i;:::-;5634:30;;;;;;;;5269:496;-1:-1:-1;5713:1:0;;-1:-1:-1;5717:35:0;5269:496;4464:1308;;;;;:::o;2735:643::-;2813:20;2804:5;:29;;;;;;;;:::i;:::-;;2800:571;;;2735:643;:::o;2800:571::-;2911:29;2902:5;:38;;;;;;;;:::i;:::-;;2898:473;;;2957:34;;-1:-1:-1;;;2957:34:0;;8387:2:1;2957:34:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:26;8445:18;;;8438:54;8509:18;;2957:34:0;8185:348:1;2898:473:0;3022:35;3013:5;:44;;;;;;;;:::i;:::-;;3009:362;;;3074:41;;-1:-1:-1;;;3074:41:0;;8740:2:1;3074:41:0;;;8722:21:1;8779:2;8759:18;;;8752:30;8818:33;8798:18;;;8791:61;8869:18;;3074:41:0;8538:355:1;3009:362:0;3146:30;3137:5;:39;;;;;;;;:::i;:::-;;3133:238;;;3193:44;;-1:-1:-1;;;3193:44:0;;10206:2:1;3193:44:0;;;10188:21:1;10245:2;10225:18;;;10218:30;10284:34;10264:18;;;10257:62;-1:-1:-1;;;10335:18:1;;;10328:32;10377:19;;3193:44:0;10004:398:1;3133:238:0;3268:30;3259:5;:39;;;;;;;;:::i;:::-;;3255:116;;;3315:44;;-1:-1:-1;;;3315:44:0;;10609:2:1;3315:44:0;;;10591:21:1;10648:2;10628:18;;;10621:30;10687:34;10667:18;;;10660:62;-1:-1:-1;;;10738:18:1;;;10731:32;10780:19;;3315:44:0;10407:398:1;8026:1632:0;8157:7;;9091:66;9078:79;;9074:163;;;-1:-1:-1;9190:1:0;;-1:-1:-1;9194:30:0;9174:51;;9074:163;9251:1;:7;;9256:2;9251:7;;:18;;;;;9262:1;:7;;9267:2;9262:7;;9251:18;9247:102;;;-1:-1:-1;9302:1:0;;-1:-1:-1;9306:30:0;9286:51;;9247:102;9463:24;;;9446:14;9463:24;;;;;;;;;7785:25:1;;;7858:4;7846:17;;7826:18;;;7819:45;;;;7880:18;;;7873:34;;;7923:18;;;7916:34;;;9463:24:0;;7757:19:1;;9463:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9463:24:0;;-1:-1:-1;;9463:24:0;;;-1:-1:-1;;;;;;;9502:20:0;;9498:103;;9555:1;9559:29;9539:50;;;;;;;9498:103;9621:6;-1:-1:-1;9629:20:0;;-1:-1:-1;8026:1632:0;;;;;;;;:::o;7068:344::-;7182:7;;-1:-1:-1;;;;;7228:80:0;;7182:7;7335:25;7351:3;7336:18;;;7358:2;7335:25;:::i;:::-;7319:42;;7379:25;7390:4;7396:1;7399;7402;7379:10;:25::i;:::-;7372:32;;;;;;7068:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:718;399:5;452:3;445:4;437:6;433:17;429:27;419:55;;470:1;467;460:12;419:55;506:6;493:20;532:18;569:2;565;562:10;559:36;;;575:18;;:::i;:::-;650:2;644:9;618:2;704:13;;-1:-1:-1;;700:22:1;;;724:2;696:31;692:40;680:53;;;748:18;;;768:22;;;745:46;742:72;;;794:18;;:::i;:::-;834:10;830:2;823:22;869:2;861:6;854:18;915:3;908:4;903:2;895:6;891:15;887:26;884:35;881:55;;;932:1;929;922:12;881:55;996:2;989:4;981:6;977:17;970:4;962:6;958:17;945:54;1043:1;1036:4;1031:2;1023:6;1019:15;1015:26;1008:37;1063:6;1054:15;;;;;;357:718;;;;:::o;1080:186::-;1139:6;1192:2;1180:9;1171:7;1167:23;1163:32;1160:52;;;1208:1;1205;1198:12;1160:52;1231:29;1250:9;1231:29;:::i;1271:260::-;1339:6;1347;1400:2;1388:9;1379:7;1375:23;1371:32;1368:52;;;1416:1;1413;1406:12;1368:52;1439:29;1458:9;1439:29;:::i;:::-;1429:39;;1487:38;1521:2;1510:9;1506:18;1487:38;:::i;:::-;1477:48;;1271:260;;;;;:::o;1536:328::-;1613:6;1621;1629;1682:2;1670:9;1661:7;1657:23;1653:32;1650:52;;;1698:1;1695;1688:12;1650:52;1721:29;1740:9;1721:29;:::i;:::-;1711:39;;1769:38;1803:2;1792:9;1788:18;1769:38;:::i;:::-;1759:48;;1854:2;1843:9;1839:18;1826:32;1816:42;;1536:328;;;;;:::o;1869:537::-;1964:6;1972;1980;1988;2041:3;2029:9;2020:7;2016:23;2012:33;2009:53;;;2058:1;2055;2048:12;2009:53;2081:29;2100:9;2081:29;:::i;:::-;2071:39;;2129:38;2163:2;2152:9;2148:18;2129:38;:::i;:::-;2119:48;;2214:2;2203:9;2199:18;2186:32;2176:42;;2269:2;2258:9;2254:18;2241:32;2296:18;2288:6;2285:30;2282:50;;;2328:1;2325;2318:12;2282:50;2351:49;2392:7;2383:6;2372:9;2368:22;2351:49;:::i;:::-;2341:59;;;1869:537;;;;;;;:::o;2411:254::-;2476:6;2484;2537:2;2525:9;2516:7;2512:23;2508:32;2505:52;;;2553:1;2550;2543:12;2505:52;2576:29;2595:9;2576:29;:::i;:::-;2566:39;;2624:35;2655:2;2644:9;2640:18;2624:35;:::i;2670:254::-;2738:6;2746;2799:2;2787:9;2778:7;2774:23;2770:32;2767:52;;;2815:1;2812;2805:12;2767:52;2838:29;2857:9;2838:29;:::i;:::-;2828:39;2914:2;2899:18;;;;2886:32;;-1:-1:-1;;;2670:254:1:o;2929:462::-;3015:6;3023;3031;3084:2;3072:9;3063:7;3059:23;3055:32;3052:52;;;3100:1;3097;3090:12;3052:52;3123:29;3142:9;3123:29;:::i;:::-;3113:39;;3199:2;3188:9;3184:18;3171:32;3161:42;;3254:2;3243:9;3239:18;3226:32;3281:18;3273:6;3270:30;3267:50;;;3313:1;3310;3303:12;3267:50;3336:49;3377:7;3368:6;3357:9;3353:22;3336:49;:::i;:::-;3326:59;;;2929:462;;;;;:::o;3396:180::-;3452:6;3505:2;3493:9;3484:7;3480:23;3476:32;3473:52;;;3521:1;3518;3511:12;3473:52;3544:26;3560:9;3544:26;:::i;3581:245::-;3639:6;3692:2;3680:9;3671:7;3667:23;3663:32;3660:52;;;3708:1;3705;3698:12;3660:52;3747:9;3734:23;3766:30;3790:5;3766:30;:::i;3831:249::-;3900:6;3953:2;3941:9;3932:7;3928:23;3924:32;3921:52;;;3969:1;3966;3959:12;3921:52;4001:9;3995:16;4020:30;4044:5;4020:30;:::i;4085:592::-;4156:6;4164;4217:2;4205:9;4196:7;4192:23;4188:32;4185:52;;;4233:1;4230;4223:12;4185:52;4273:9;4260:23;4302:18;4343:2;4335:6;4332:14;4329:34;;;4359:1;4356;4349:12;4329:34;4397:6;4386:9;4382:22;4372:32;;4442:7;4435:4;4431:2;4427:13;4423:27;4413:55;;4464:1;4461;4454:12;4413:55;4504:2;4491:16;4530:2;4522:6;4519:14;4516:34;;;4546:1;4543;4536:12;4516:34;4591:7;4586:2;4577:6;4573:2;4569:15;4565:24;4562:37;4559:57;;;4612:1;4609;4602:12;4559:57;4643:2;4635:11;;;;;4665:6;;-1:-1:-1;4085:592:1;;-1:-1:-1;;;;4085:592:1:o;4682:180::-;4741:6;4794:2;4782:9;4773:7;4769:23;4765:32;4762:52;;;4810:1;4807;4800:12;4762:52;-1:-1:-1;4833:23:1;;4682:180;-1:-1:-1;4682:180:1:o;4867:257::-;4908:3;4946:5;4940:12;4973:6;4968:3;4961:19;4989:63;5045:6;5038:4;5033:3;5029:14;5022:4;5015:5;5011:16;4989:63;:::i;:::-;5106:2;5085:15;-1:-1:-1;;5081:29:1;5072:39;;;;5113:4;5068:50;;4867:257;-1:-1:-1;;4867:257:1:o;5428:637::-;5708:3;5746:6;5740:13;5762:53;5808:6;5803:3;5796:4;5788:6;5784:17;5762:53;:::i;:::-;5878:13;;5837:16;;;;5900:57;5878:13;5837:16;5934:4;5922:17;;5900:57;:::i;:::-;-1:-1:-1;;;5979:20:1;;6008:22;;;6057:1;6046:13;;5428:637;-1:-1:-1;;;;5428:637:1:o;6873:488::-;-1:-1:-1;;;;;7142:15:1;;;7124:34;;7194:15;;7189:2;7174:18;;7167:43;7241:2;7226:18;;7219:34;;;7289:3;7284:2;7269:18;;7262:31;;;7067:4;;7310:45;;7335:19;;7327:6;7310:45;:::i;:::-;7302:53;6873:488;-1:-1:-1;;;;;;6873:488:1:o;7961:219::-;8110:2;8099:9;8092:21;8073:4;8130:44;8170:2;8159:9;8155:18;8147:6;8130:44;:::i;10810:356::-;11012:2;10994:21;;;11031:18;;;11024:30;11090:34;11085:2;11070:18;;11063:62;11157:2;11142:18;;10810:356::o;11937:340::-;12139:2;12121:21;;;12178:2;12158:18;;;12151:30;-1:-1:-1;;;12212:2:1;12197:18;;12190:46;12268:2;12253:18;;11937:340::o;12627:346::-;12829:2;12811:21;;;12868:2;12848:18;;;12841:30;-1:-1:-1;;;12902:2:1;12887:18;;12880:52;12964:2;12949:18;;12627:346::o;13160:128::-;13200:3;13231:1;13227:6;13224:1;13221:13;13218:39;;;13237:18;;:::i;:::-;-1:-1:-1;13273:9:1;;13160:128::o;13293:168::-;13333:7;13399:1;13395;13391:6;13387:14;13384:1;13381:21;13376:1;13369:9;13362:17;13358:45;13355:71;;;13406:18;;:::i;:::-;-1:-1:-1;13446:9:1;;13293:168::o;13466:125::-;13506:4;13534:1;13531;13528:8;13525:34;;;13539:18;;:::i;:::-;-1:-1:-1;13576:9:1;;13466:125::o;13596:258::-;13668:1;13678:113;13692:6;13689:1;13686:13;13678:113;;;13768:11;;;13762:18;13749:11;;;13742:39;13714:2;13707:10;13678:113;;;13809:6;13806:1;13803:13;13800:48;;;-1:-1:-1;;13844:1:1;13826:16;;13819:27;13596:258::o;13859:380::-;13938:1;13934:12;;;;13981;;;14002:61;;14056:4;14048:6;14044:17;14034:27;;14002:61;14109:2;14101:6;14098:14;14078:18;14075:38;14072:161;;;14155:10;14150:3;14146:20;14143:1;14136:31;14190:4;14187:1;14180:15;14218:4;14215:1;14208:15;14072:161;;13859:380;;;:::o;14244:127::-;14305:10;14300:3;14296:20;14293:1;14286:31;14336:4;14333:1;14326:15;14360:4;14357:1;14350:15;14376:127;14437:10;14432:3;14428:20;14425:1;14418:31;14468:4;14465:1;14458:15;14492:4;14489:1;14482:15;14508:127;14569:10;14564:3;14560:20;14557:1;14550:31;14600:4;14597:1;14590:15;14624:4;14621:1;14614:15;14640:131;-1:-1:-1;;;;;;14714:32:1;;14704:43;;14694:71;;14761:1;14758;14751:12

Swarm Source

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