ETH Price: $3,401.70 (-1.66%)
Gas: 5 Gwei

Token

CubesNFT (CUBES)
 

Overview

Max Total Supply

1,003 CUBES

Holders

38

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
50 CUBES
0xd868225fda222b2716cd07cee1ecee318247a826
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CubesNFT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-07
*/

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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) 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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/4_CubesNFT.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;



contract CubesNFT is ERC721A, Ownable {
    uint256 public PUBLIC_SALE_TIME;
    uint256 public PUBLIC_SALE_PRICE;
    string BASE_URI;
    mapping(address => uint8) presaleClaimed;

    constructor(string memory baseURI) ERC721A("CubesNFT", "CUBES") {
        PUBLIC_SALE_TIME = block.timestamp + 2592000;
        PUBLIC_SALE_PRICE = 6e15;
        BASE_URI = baseURI;
    }

    function setPublicSaleTime(uint256 newTime) external onlyOwner {
        PUBLIC_SALE_TIME = newTime;
    }

    function setPublicSalePrice(uint256 newPrice) external onlyOwner {
        PUBLIC_SALE_PRICE = newPrice;
    }

    function setBaseURI(string memory newURI) external onlyOwner {
        BASE_URI = newURI;
    }

    function mint(uint256 quantity) external payable {
        uint256 unitPrice = PUBLIC_SALE_PRICE;
        if (PUBLIC_SALE_TIME > block.timestamp) {
            require(
                presaleClaimed[_msgSender()] < 2,
                "Presale already claimed!"
            );
            require(totalSupply() < 1000, "Free mint limit reached");
            presaleClaimed[_msgSender()] += 1;
            unitPrice = 0;
        }
        require(
            msg.value >= quantity * unitPrice,
            "Insufficient price to purchase"
        );
        _safeMint(_msgSender(), quantity);
        payable(owner()).transfer(msg.value);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_TIME","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"payable","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":"payable","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTime","type":"uint256"}],"name":"setPublicSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003042380380620030428339818101604052810190620000379190620003a3565b6040518060400160405280600881526020017f43756265734e46540000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f43554245530000000000000000000000000000000000000000000000000000008152508160029081620000b491906200063f565b508060039081620000c691906200063f565b50620000d76200013d60201b60201c565b6000819055505050620000ff620000f36200014260201b60201c565b6200014a60201b60201c565b62278d004262000110919062000755565b600981905550661550f7dca70000600a8190555080600b90816200013591906200063f565b505062000790565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000279826200022e565b810181811067ffffffffffffffff821117156200029b576200029a6200023f565b5b80604052505050565b6000620002b062000210565b9050620002be82826200026e565b919050565b600067ffffffffffffffff821115620002e157620002e06200023f565b5b620002ec826200022e565b9050602081019050919050565b60005b8381101562000319578082015181840152602081019050620002fc565b60008484015250505050565b60006200033c6200033684620002c3565b620002a4565b9050828152602081018484840111156200035b576200035a62000229565b5b62000368848285620002f9565b509392505050565b600082601f83011262000388576200038762000224565b5b81516200039a84826020860162000325565b91505092915050565b600060208284031215620003bc57620003bb6200021a565b5b600082015167ffffffffffffffff811115620003dd57620003dc6200021f565b5b620003eb8482850162000370565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044757607f821691505b6020821081036200045d576200045c620003ff565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000488565b620004d3868362000488565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005206200051a6200051484620004eb565b620004f5565b620004eb565b9050919050565b6000819050919050565b6200053c83620004ff565b620005546200054b8262000527565b84845462000495565b825550505050565b600090565b6200056b6200055c565b6200057881848462000531565b505050565b5b81811015620005a0576200059460008262000561565b6001810190506200057e565b5050565b601f821115620005ef57620005b98162000463565b620005c48462000478565b81016020851015620005d4578190505b620005ec620005e38562000478565b8301826200057d565b50505b505050565b600082821c905092915050565b60006200061460001984600802620005f4565b1980831691505092915050565b60006200062f838362000601565b9150826002028217905092915050565b6200064a82620003f4565b67ffffffffffffffff8111156200066657620006656200023f565b5b6200067282546200042e565b6200067f828285620005a4565b600060209050601f831160018114620006b75760008415620006a2578287015190505b620006ae858262000621565b8655506200071e565b601f198416620006c78662000463565b60005b82811015620006f157848901518255600182019150602085019450602081019050620006ca565b868310156200071157848901516200070d601f89168262000601565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200076282620004eb565b91506200076f83620004eb565b92508282019050808211156200078a576200078962000726565b5b92915050565b6128a280620007a06000396000f3fe6080604052600436106101405760003560e01c80636352211e116100b6578063a0712d681161006f578063a0712d6814610421578063a22cb4651461043d578063b88d4fde14610466578063c87b56dd14610482578063e985e9c5146104bf578063f2fde38b146104fc57610140565b80636352211e1461031157806370a082311461034e578063715018a61461038b578063791a2519146103a25780638da5cb5b146103cb57806395d89b41146103f657610140565b806311b7e5e71161010857806311b7e5e71461023157806318160ddd1461025a57806323b872dd14610285578063314da534146102a157806342842e0e146102cc57806355f804b3146102e857610140565b806301ffc9a71461014557806306fdde031461018257806307e89ec0146101ad578063081812fc146101d8578063095ea7b314610215575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611b1e565b610525565b6040516101799190611b66565b60405180910390f35b34801561018e57600080fd5b506101976105b7565b6040516101a49190611c11565b60405180910390f35b3480156101b957600080fd5b506101c2610649565b6040516101cf9190611c4c565b60405180910390f35b3480156101e457600080fd5b506101ff60048036038101906101fa9190611c93565b61064f565b60405161020c9190611d01565b60405180910390f35b61022f600480360381019061022a9190611d48565b6106ce565b005b34801561023d57600080fd5b5061025860048036038101906102539190611c93565b610812565b005b34801561026657600080fd5b5061026f610824565b60405161027c9190611c4c565b60405180910390f35b61029f600480360381019061029a9190611d88565b61083b565b005b3480156102ad57600080fd5b506102b6610b5d565b6040516102c39190611c4c565b60405180910390f35b6102e660048036038101906102e19190611d88565b610b63565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190611f10565b610b83565b005b34801561031d57600080fd5b5061033860048036038101906103339190611c93565b610b9e565b6040516103459190611d01565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190611f59565b610bb0565b6040516103829190611c4c565b60405180910390f35b34801561039757600080fd5b506103a0610c68565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190611c93565b610c7c565b005b3480156103d757600080fd5b506103e0610c8e565b6040516103ed9190611d01565b60405180910390f35b34801561040257600080fd5b5061040b610cb8565b6040516104189190611c11565b60405180910390f35b61043b60048036038101906104369190611c93565b610d4a565b005b34801561044957600080fd5b50610464600480360381019061045f9190611fb2565b610f70565b005b610480600480360381019061047b9190612093565b61107b565b005b34801561048e57600080fd5b506104a960048036038101906104a49190611c93565b6110ee565b6040516104b69190611c11565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612116565b61118c565b6040516104f39190611b66565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190611f59565b611220565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105c690612185565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290612185565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600a5481565b600061065a826112a3565b610690576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d982610b9e565b90508073ffffffffffffffffffffffffffffffffffffffff166106fa611302565b73ffffffffffffffffffffffffffffffffffffffff161461075d5761072681610721611302565b61118c565b61075c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61081a61130a565b8060098190555050565b600061082e611388565b6001546000540303905090565b60006108468261138d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108b984611459565b915091506108cf81876108ca611302565b611480565b61091b576108e4866108df611302565b61118c565b61091a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610981576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098e86868660016114c4565b801561099957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a6785610a438888876114ca565b7c0200000000000000000000000000000000000000000000000000000000176114f2565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610aed5760006001850190506000600460008381526020019081526020016000205403610aeb576000548114610aea578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b55868686600161151d565b505050505050565b60095481565b610b7e8383836040518060200160405280600081525061107b565b505050565b610b8b61130a565b80600b9081610b9a9190612362565b5050565b6000610ba98261138d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c7061130a565b610c7a6000611523565b565b610c8461130a565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cc790612185565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf390612185565b8015610d405780601f10610d1557610100808354040283529160200191610d40565b820191906000526020600020905b815481529060010190602001808311610d2357829003601f168201915b5050505050905090565b6000600a549050426009541115610ebf576002600c6000610d696115e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90612480565b60405180910390fd5b6103e8610dff610824565b10610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906124ec565b60405180910390fd5b6001600c6000610e4d6115e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610ea29190612548565b92506101000a81548160ff021916908360ff160217905550600090505b8082610ecb919061257d565b341015610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f049061260b565b60405180910390fd5b610f1e610f186115e9565b836115f1565b610f26610c8e565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610f6b573d6000803e3d6000fd5b505050565b8060076000610f7d611302565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661102a611302565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106f9190611b66565b60405180910390a35050565b61108684848461083b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110e8576110b18484848461160f565b6110e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110f9826112a3565b61112f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061113961175f565b905060008151036111595760405180602001604052806000815250611184565b80611163846117f1565b604051602001611174929190612667565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61122861130a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e906126fd565b60405180910390fd5b6112a081611523565b50565b6000816112ae611388565b111580156112bd575060005482105b80156112fb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6113126115e9565b73ffffffffffffffffffffffffffffffffffffffff16611330610c8e565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90612769565b60405180910390fd5b565b600090565b6000808290508061139c611388565b11611422576000548110156114215760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361141f575b600081036114155760046000836001900393508381526020019081526020016000205490506113eb565b8092505050611454565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86114e1868684611841565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b61160b82826040518060200160405280600081525061184a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611635611302565b8786866040518563ffffffff1660e01b815260040161165794939291906127de565b6020604051808303816000875af192505050801561169357506040513d601f19601f82011682018060405250810190611690919061283f565b60015b61170c573d80600081146116c3576040519150601f19603f3d011682016040523d82523d6000602084013e6116c8565b606091505b506000815103611704576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461176e90612185565b80601f016020809104026020016040519081016040528092919081815260200182805461179a90612185565b80156117e75780601f106117bc576101008083540402835291602001916117e7565b820191906000526020600020905b8154815290600101906020018083116117ca57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561182c57600184039350600a81066030018453600a810490508061180a575b50828103602084039350808452505050919050565b60009392505050565b61185483836118e7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118e257600080549050600083820390505b611894600086838060010194508661160f565b6118ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106118815781600054146118df57600080fd5b50505b505050565b60008054905060008203611927576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61193460008483856114c4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119ab8361199c60008660006114ca565b6119a585611aa2565b176114f2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a4c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a11565b5060008203611a87576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a9d600084838561151d565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611afb81611ac6565b8114611b0657600080fd5b50565b600081359050611b1881611af2565b92915050565b600060208284031215611b3457611b33611abc565b5b6000611b4284828501611b09565b91505092915050565b60008115159050919050565b611b6081611b4b565b82525050565b6000602082019050611b7b6000830184611b57565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bbb578082015181840152602081019050611ba0565b60008484015250505050565b6000601f19601f8301169050919050565b6000611be382611b81565b611bed8185611b8c565b9350611bfd818560208601611b9d565b611c0681611bc7565b840191505092915050565b60006020820190508181036000830152611c2b8184611bd8565b905092915050565b6000819050919050565b611c4681611c33565b82525050565b6000602082019050611c616000830184611c3d565b92915050565b611c7081611c33565b8114611c7b57600080fd5b50565b600081359050611c8d81611c67565b92915050565b600060208284031215611ca957611ca8611abc565b5b6000611cb784828501611c7e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ceb82611cc0565b9050919050565b611cfb81611ce0565b82525050565b6000602082019050611d166000830184611cf2565b92915050565b611d2581611ce0565b8114611d3057600080fd5b50565b600081359050611d4281611d1c565b92915050565b60008060408385031215611d5f57611d5e611abc565b5b6000611d6d85828601611d33565b9250506020611d7e85828601611c7e565b9150509250929050565b600080600060608486031215611da157611da0611abc565b5b6000611daf86828701611d33565b9350506020611dc086828701611d33565b9250506040611dd186828701611c7e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e1d82611bc7565b810181811067ffffffffffffffff82111715611e3c57611e3b611de5565b5b80604052505050565b6000611e4f611ab2565b9050611e5b8282611e14565b919050565b600067ffffffffffffffff821115611e7b57611e7a611de5565b5b611e8482611bc7565b9050602081019050919050565b82818337600083830152505050565b6000611eb3611eae84611e60565b611e45565b905082815260208101848484011115611ecf57611ece611de0565b5b611eda848285611e91565b509392505050565b600082601f830112611ef757611ef6611ddb565b5b8135611f07848260208601611ea0565b91505092915050565b600060208284031215611f2657611f25611abc565b5b600082013567ffffffffffffffff811115611f4457611f43611ac1565b5b611f5084828501611ee2565b91505092915050565b600060208284031215611f6f57611f6e611abc565b5b6000611f7d84828501611d33565b91505092915050565b611f8f81611b4b565b8114611f9a57600080fd5b50565b600081359050611fac81611f86565b92915050565b60008060408385031215611fc957611fc8611abc565b5b6000611fd785828601611d33565b9250506020611fe885828601611f9d565b9150509250929050565b600067ffffffffffffffff82111561200d5761200c611de5565b5b61201682611bc7565b9050602081019050919050565b600061203661203184611ff2565b611e45565b90508281526020810184848401111561205257612051611de0565b5b61205d848285611e91565b509392505050565b600082601f83011261207a57612079611ddb565b5b813561208a848260208601612023565b91505092915050565b600080600080608085870312156120ad576120ac611abc565b5b60006120bb87828801611d33565b94505060206120cc87828801611d33565b93505060406120dd87828801611c7e565b925050606085013567ffffffffffffffff8111156120fe576120fd611ac1565b5b61210a87828801612065565b91505092959194509250565b6000806040838503121561212d5761212c611abc565b5b600061213b85828601611d33565b925050602061214c85828601611d33565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061219d57607f821691505b6020821081036121b0576121af612156565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026122187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826121db565b61222286836121db565b95508019841693508086168417925050509392505050565b6000819050919050565b600061225f61225a61225584611c33565b61223a565b611c33565b9050919050565b6000819050919050565b61227983612244565b61228d61228582612266565b8484546121e8565b825550505050565b600090565b6122a2612295565b6122ad818484612270565b505050565b5b818110156122d1576122c660008261229a565b6001810190506122b3565b5050565b601f821115612316576122e7816121b6565b6122f0846121cb565b810160208510156122ff578190505b61231361230b856121cb565b8301826122b2565b50505b505050565b600082821c905092915050565b60006123396000198460080261231b565b1980831691505092915050565b60006123528383612328565b9150826002028217905092915050565b61236b82611b81565b67ffffffffffffffff81111561238457612383611de5565b5b61238e8254612185565b6123998282856122d5565b600060209050601f8311600181146123cc57600084156123ba578287015190505b6123c48582612346565b86555061242c565b601f1984166123da866121b6565b60005b82811015612402578489015182556001820191506020850194506020810190506123dd565b8683101561241f578489015161241b601f891682612328565b8355505b6001600288020188555050505b505050505050565b7f50726573616c6520616c726561647920636c61696d6564210000000000000000600082015250565b600061246a601883611b8c565b915061247582612434565b602082019050919050565b600060208201905081810360008301526124998161245d565b9050919050565b7f46726565206d696e74206c696d69742072656163686564000000000000000000600082015250565b60006124d6601783611b8c565b91506124e1826124a0565b602082019050919050565b60006020820190508181036000830152612505816124c9565b9050919050565b600060ff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125538261250c565b915061255e8361250c565b9250828201905060ff81111561257757612576612519565b5b92915050565b600061258882611c33565b915061259383611c33565b92508282026125a181611c33565b915082820484148315176125b8576125b7612519565b5b5092915050565b7f496e73756666696369656e7420707269636520746f2070757263686173650000600082015250565b60006125f5601e83611b8c565b9150612600826125bf565b602082019050919050565b60006020820190508181036000830152612624816125e8565b9050919050565b600081905092915050565b600061264182611b81565b61264b818561262b565b935061265b818560208601611b9d565b80840191505092915050565b60006126738285612636565b915061267f8284612636565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126e7602683611b8c565b91506126f28261268b565b604082019050919050565b60006020820190508181036000830152612716816126da565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612753602083611b8c565b915061275e8261271d565b602082019050919050565b6000602082019050818103600083015261278281612746565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006127b082612789565b6127ba8185612794565b93506127ca818560208601611b9d565b6127d381611bc7565b840191505092915050565b60006080820190506127f36000830187611cf2565b6128006020830186611cf2565b61280d6040830185611c3d565b818103606083015261281f81846127a5565b905095945050505050565b60008151905061283981611af2565b92915050565b60006020828403121561285557612854611abc565b5b60006128638482850161282a565b9150509291505056fea26469706673582212205d8b47a712fc080a554ca070dfd26076a9d509298b771cd18aab4cab6368679d64736f6c634300081200330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f736361726c65742d686f6c792d73706f6f6e62696c6c2d3739322e6d7970696e6174612e636c6f75642f697066732f516d64695956357047424b3743384a434b697848314d48643159396737774856345a756956484334576d6b4775782f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101405760003560e01c80636352211e116100b6578063a0712d681161006f578063a0712d6814610421578063a22cb4651461043d578063b88d4fde14610466578063c87b56dd14610482578063e985e9c5146104bf578063f2fde38b146104fc57610140565b80636352211e1461031157806370a082311461034e578063715018a61461038b578063791a2519146103a25780638da5cb5b146103cb57806395d89b41146103f657610140565b806311b7e5e71161010857806311b7e5e71461023157806318160ddd1461025a57806323b872dd14610285578063314da534146102a157806342842e0e146102cc57806355f804b3146102e857610140565b806301ffc9a71461014557806306fdde031461018257806307e89ec0146101ad578063081812fc146101d8578063095ea7b314610215575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611b1e565b610525565b6040516101799190611b66565b60405180910390f35b34801561018e57600080fd5b506101976105b7565b6040516101a49190611c11565b60405180910390f35b3480156101b957600080fd5b506101c2610649565b6040516101cf9190611c4c565b60405180910390f35b3480156101e457600080fd5b506101ff60048036038101906101fa9190611c93565b61064f565b60405161020c9190611d01565b60405180910390f35b61022f600480360381019061022a9190611d48565b6106ce565b005b34801561023d57600080fd5b5061025860048036038101906102539190611c93565b610812565b005b34801561026657600080fd5b5061026f610824565b60405161027c9190611c4c565b60405180910390f35b61029f600480360381019061029a9190611d88565b61083b565b005b3480156102ad57600080fd5b506102b6610b5d565b6040516102c39190611c4c565b60405180910390f35b6102e660048036038101906102e19190611d88565b610b63565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190611f10565b610b83565b005b34801561031d57600080fd5b5061033860048036038101906103339190611c93565b610b9e565b6040516103459190611d01565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190611f59565b610bb0565b6040516103829190611c4c565b60405180910390f35b34801561039757600080fd5b506103a0610c68565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190611c93565b610c7c565b005b3480156103d757600080fd5b506103e0610c8e565b6040516103ed9190611d01565b60405180910390f35b34801561040257600080fd5b5061040b610cb8565b6040516104189190611c11565b60405180910390f35b61043b60048036038101906104369190611c93565b610d4a565b005b34801561044957600080fd5b50610464600480360381019061045f9190611fb2565b610f70565b005b610480600480360381019061047b9190612093565b61107b565b005b34801561048e57600080fd5b506104a960048036038101906104a49190611c93565b6110ee565b6040516104b69190611c11565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612116565b61118c565b6040516104f39190611b66565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190611f59565b611220565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105c690612185565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290612185565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600a5481565b600061065a826112a3565b610690576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d982610b9e565b90508073ffffffffffffffffffffffffffffffffffffffff166106fa611302565b73ffffffffffffffffffffffffffffffffffffffff161461075d5761072681610721611302565b61118c565b61075c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61081a61130a565b8060098190555050565b600061082e611388565b6001546000540303905090565b60006108468261138d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108b984611459565b915091506108cf81876108ca611302565b611480565b61091b576108e4866108df611302565b61118c565b61091a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610981576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098e86868660016114c4565b801561099957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a6785610a438888876114ca565b7c0200000000000000000000000000000000000000000000000000000000176114f2565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610aed5760006001850190506000600460008381526020019081526020016000205403610aeb576000548114610aea578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b55868686600161151d565b505050505050565b60095481565b610b7e8383836040518060200160405280600081525061107b565b505050565b610b8b61130a565b80600b9081610b9a9190612362565b5050565b6000610ba98261138d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c7061130a565b610c7a6000611523565b565b610c8461130a565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cc790612185565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf390612185565b8015610d405780601f10610d1557610100808354040283529160200191610d40565b820191906000526020600020905b815481529060010190602001808311610d2357829003601f168201915b5050505050905090565b6000600a549050426009541115610ebf576002600c6000610d696115e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90612480565b60405180910390fd5b6103e8610dff610824565b10610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906124ec565b60405180910390fd5b6001600c6000610e4d6115e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610ea29190612548565b92506101000a81548160ff021916908360ff160217905550600090505b8082610ecb919061257d565b341015610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f049061260b565b60405180910390fd5b610f1e610f186115e9565b836115f1565b610f26610c8e565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610f6b573d6000803e3d6000fd5b505050565b8060076000610f7d611302565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661102a611302565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106f9190611b66565b60405180910390a35050565b61108684848461083b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110e8576110b18484848461160f565b6110e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110f9826112a3565b61112f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061113961175f565b905060008151036111595760405180602001604052806000815250611184565b80611163846117f1565b604051602001611174929190612667565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61122861130a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e906126fd565b60405180910390fd5b6112a081611523565b50565b6000816112ae611388565b111580156112bd575060005482105b80156112fb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6113126115e9565b73ffffffffffffffffffffffffffffffffffffffff16611330610c8e565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90612769565b60405180910390fd5b565b600090565b6000808290508061139c611388565b11611422576000548110156114215760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361141f575b600081036114155760046000836001900393508381526020019081526020016000205490506113eb565b8092505050611454565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86114e1868684611841565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b61160b82826040518060200160405280600081525061184a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611635611302565b8786866040518563ffffffff1660e01b815260040161165794939291906127de565b6020604051808303816000875af192505050801561169357506040513d601f19601f82011682018060405250810190611690919061283f565b60015b61170c573d80600081146116c3576040519150601f19603f3d011682016040523d82523d6000602084013e6116c8565b606091505b506000815103611704576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461176e90612185565b80601f016020809104026020016040519081016040528092919081815260200182805461179a90612185565b80156117e75780601f106117bc576101008083540402835291602001916117e7565b820191906000526020600020905b8154815290600101906020018083116117ca57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561182c57600184039350600a81066030018453600a810490508061180a575b50828103602084039350808452505050919050565b60009392505050565b61185483836118e7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118e257600080549050600083820390505b611894600086838060010194508661160f565b6118ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106118815781600054146118df57600080fd5b50505b505050565b60008054905060008203611927576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61193460008483856114c4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119ab8361199c60008660006114ca565b6119a585611aa2565b176114f2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a4c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a11565b5060008203611a87576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a9d600084838561151d565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611afb81611ac6565b8114611b0657600080fd5b50565b600081359050611b1881611af2565b92915050565b600060208284031215611b3457611b33611abc565b5b6000611b4284828501611b09565b91505092915050565b60008115159050919050565b611b6081611b4b565b82525050565b6000602082019050611b7b6000830184611b57565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bbb578082015181840152602081019050611ba0565b60008484015250505050565b6000601f19601f8301169050919050565b6000611be382611b81565b611bed8185611b8c565b9350611bfd818560208601611b9d565b611c0681611bc7565b840191505092915050565b60006020820190508181036000830152611c2b8184611bd8565b905092915050565b6000819050919050565b611c4681611c33565b82525050565b6000602082019050611c616000830184611c3d565b92915050565b611c7081611c33565b8114611c7b57600080fd5b50565b600081359050611c8d81611c67565b92915050565b600060208284031215611ca957611ca8611abc565b5b6000611cb784828501611c7e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ceb82611cc0565b9050919050565b611cfb81611ce0565b82525050565b6000602082019050611d166000830184611cf2565b92915050565b611d2581611ce0565b8114611d3057600080fd5b50565b600081359050611d4281611d1c565b92915050565b60008060408385031215611d5f57611d5e611abc565b5b6000611d6d85828601611d33565b9250506020611d7e85828601611c7e565b9150509250929050565b600080600060608486031215611da157611da0611abc565b5b6000611daf86828701611d33565b9350506020611dc086828701611d33565b9250506040611dd186828701611c7e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e1d82611bc7565b810181811067ffffffffffffffff82111715611e3c57611e3b611de5565b5b80604052505050565b6000611e4f611ab2565b9050611e5b8282611e14565b919050565b600067ffffffffffffffff821115611e7b57611e7a611de5565b5b611e8482611bc7565b9050602081019050919050565b82818337600083830152505050565b6000611eb3611eae84611e60565b611e45565b905082815260208101848484011115611ecf57611ece611de0565b5b611eda848285611e91565b509392505050565b600082601f830112611ef757611ef6611ddb565b5b8135611f07848260208601611ea0565b91505092915050565b600060208284031215611f2657611f25611abc565b5b600082013567ffffffffffffffff811115611f4457611f43611ac1565b5b611f5084828501611ee2565b91505092915050565b600060208284031215611f6f57611f6e611abc565b5b6000611f7d84828501611d33565b91505092915050565b611f8f81611b4b565b8114611f9a57600080fd5b50565b600081359050611fac81611f86565b92915050565b60008060408385031215611fc957611fc8611abc565b5b6000611fd785828601611d33565b9250506020611fe885828601611f9d565b9150509250929050565b600067ffffffffffffffff82111561200d5761200c611de5565b5b61201682611bc7565b9050602081019050919050565b600061203661203184611ff2565b611e45565b90508281526020810184848401111561205257612051611de0565b5b61205d848285611e91565b509392505050565b600082601f83011261207a57612079611ddb565b5b813561208a848260208601612023565b91505092915050565b600080600080608085870312156120ad576120ac611abc565b5b60006120bb87828801611d33565b94505060206120cc87828801611d33565b93505060406120dd87828801611c7e565b925050606085013567ffffffffffffffff8111156120fe576120fd611ac1565b5b61210a87828801612065565b91505092959194509250565b6000806040838503121561212d5761212c611abc565b5b600061213b85828601611d33565b925050602061214c85828601611d33565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061219d57607f821691505b6020821081036121b0576121af612156565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026122187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826121db565b61222286836121db565b95508019841693508086168417925050509392505050565b6000819050919050565b600061225f61225a61225584611c33565b61223a565b611c33565b9050919050565b6000819050919050565b61227983612244565b61228d61228582612266565b8484546121e8565b825550505050565b600090565b6122a2612295565b6122ad818484612270565b505050565b5b818110156122d1576122c660008261229a565b6001810190506122b3565b5050565b601f821115612316576122e7816121b6565b6122f0846121cb565b810160208510156122ff578190505b61231361230b856121cb565b8301826122b2565b50505b505050565b600082821c905092915050565b60006123396000198460080261231b565b1980831691505092915050565b60006123528383612328565b9150826002028217905092915050565b61236b82611b81565b67ffffffffffffffff81111561238457612383611de5565b5b61238e8254612185565b6123998282856122d5565b600060209050601f8311600181146123cc57600084156123ba578287015190505b6123c48582612346565b86555061242c565b601f1984166123da866121b6565b60005b82811015612402578489015182556001820191506020850194506020810190506123dd565b8683101561241f578489015161241b601f891682612328565b8355505b6001600288020188555050505b505050505050565b7f50726573616c6520616c726561647920636c61696d6564210000000000000000600082015250565b600061246a601883611b8c565b915061247582612434565b602082019050919050565b600060208201905081810360008301526124998161245d565b9050919050565b7f46726565206d696e74206c696d69742072656163686564000000000000000000600082015250565b60006124d6601783611b8c565b91506124e1826124a0565b602082019050919050565b60006020820190508181036000830152612505816124c9565b9050919050565b600060ff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125538261250c565b915061255e8361250c565b9250828201905060ff81111561257757612576612519565b5b92915050565b600061258882611c33565b915061259383611c33565b92508282026125a181611c33565b915082820484148315176125b8576125b7612519565b5b5092915050565b7f496e73756666696369656e7420707269636520746f2070757263686173650000600082015250565b60006125f5601e83611b8c565b9150612600826125bf565b602082019050919050565b60006020820190508181036000830152612624816125e8565b9050919050565b600081905092915050565b600061264182611b81565b61264b818561262b565b935061265b818560208601611b9d565b80840191505092915050565b60006126738285612636565b915061267f8284612636565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126e7602683611b8c565b91506126f28261268b565b604082019050919050565b60006020820190508181036000830152612716816126da565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612753602083611b8c565b915061275e8261271d565b602082019050919050565b6000602082019050818103600083015261278281612746565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006127b082612789565b6127ba8185612794565b93506127ca818560208601611b9d565b6127d381611bc7565b840191505092915050565b60006080820190506127f36000830187611cf2565b6128006020830186611cf2565b61280d6040830185611c3d565b818103606083015261281f81846127a5565b905095945050505050565b60008151905061283981611af2565b92915050565b60006020828403121561285557612854611abc565b5b60006128638482850161282a565b9150509291505056fea26469706673582212205d8b47a712fc080a554ca070dfd26076a9d509298b771cd18aab4cab6368679d64736f6c63430008120033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f736361726c65742d686f6c792d73706f6f6e62696c6c2d3739322e6d7970696e6174612e636c6f75642f697066732f516d64695956357047424b3743384a434b697848314d48643159396737774856345a756956484334576d6b4775782f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://scarlet-holy-spoonbill-792.mypinata.cloud/ipfs/QmdiYV5pGBK7C8JCKixH1MHd1Y9g7wHV4ZuiVHC4WmkGux/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000066
Arg [2] : 68747470733a2f2f736361726c65742d686f6c792d73706f6f6e62696c6c2d37
Arg [3] : 39322e6d7970696e6174612e636c6f75642f697066732f516d64695956357047
Arg [4] : 424b3743384a434b697848314d48643159396737774856345a75695648433457
Arg [5] : 6d6b4775782f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55017:1507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21885:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22787:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55100:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29278:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28711:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55409:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18538:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32917:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55062:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35838:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55645:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24180:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19722:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2664:103;;;;;;;;;;;;;:::i;:::-;;55525:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2016:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22963:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55750:662;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29836:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36629:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23173:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30227:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2922:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21885:639;21970:4;22309:10;22294:25;;:11;:25;;;;:102;;;;22386:10;22371:25;;:11;:25;;;;22294:102;:179;;;;22463:10;22448:25;;:11;:25;;;;22294:179;22274:199;;21885:639;;;:::o;22787:100::-;22841:13;22874:5;22867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22787:100;:::o;55100:32::-;;;;:::o;29278:218::-;29354:7;29379:16;29387:7;29379;:16::i;:::-;29374:64;;29404:34;;;;;;;;;;;;;;29374:64;29458:15;:24;29474:7;29458:24;;;;;;;;;;;:30;;;;;;;;;;;;29451:37;;29278:218;;;:::o;28711:408::-;28800:13;28816:16;28824:7;28816;:16::i;:::-;28800:32;;28872:5;28849:28;;:19;:17;:19::i;:::-;:28;;;28845:175;;28897:44;28914:5;28921:19;:17;:19::i;:::-;28897:16;:44::i;:::-;28892:128;;28969:35;;;;;;;;;;;;;;28892:128;28845:175;29065:2;29032:15;:24;29048:7;29032:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29103:7;29099:2;29083:28;;29092:5;29083:28;;;;;;;;;;;;28789:330;28711:408;;:::o;55409:108::-;1902:13;:11;:13::i;:::-;55502:7:::1;55483:16;:26;;;;55409:108:::0;:::o;18538:323::-;18599:7;18827:15;:13;:15::i;:::-;18812:12;;18796:13;;:28;:46;18789:53;;18538:323;:::o;32917:2825::-;33059:27;33089;33108:7;33089:18;:27::i;:::-;33059:57;;33174:4;33133:45;;33149:19;33133:45;;;33129:86;;33187:28;;;;;;;;;;;;;;33129:86;33229:27;33258:23;33285:35;33312:7;33285:26;:35::i;:::-;33228:92;;;;33420:68;33445:15;33462:4;33468:19;:17;:19::i;:::-;33420:24;:68::i;:::-;33415:180;;33508:43;33525:4;33531:19;:17;:19::i;:::-;33508:16;:43::i;:::-;33503:92;;33560:35;;;;;;;;;;;;;;33503:92;33415:180;33626:1;33612:16;;:2;:16;;;33608:52;;33637:23;;;;;;;;;;;;;;33608:52;33673:43;33695:4;33701:2;33705:7;33714:1;33673:21;:43::i;:::-;33809:15;33806:160;;;33949:1;33928:19;33921:30;33806:160;34346:18;:24;34365:4;34346:24;;;;;;;;;;;;;;;;34344:26;;;;;;;;;;;;34415:18;:22;34434:2;34415:22;;;;;;;;;;;;;;;;34413:24;;;;;;;;;;;34737:146;34774:2;34823:45;34838:4;34844:2;34848:19;34823:14;:45::i;:::-;14937:8;34795:73;34737:18;:146::i;:::-;34708:17;:26;34726:7;34708:26;;;;;;;;;;;:175;;;;35054:1;14937:8;35003:19;:47;:52;34999:627;;35076:19;35108:1;35098:7;:11;35076:33;;35265:1;35231:17;:30;35249:11;35231:30;;;;;;;;;;;;:35;35227:384;;35369:13;;35354:11;:28;35350:242;;35549:19;35516:17;:30;35534:11;35516:30;;;;;;;;;;;:52;;;;35350:242;35227:384;35057:569;34999:627;35673:7;35669:2;35654:27;;35663:4;35654:27;;;;;;;;;;;;35692:42;35713:4;35719:2;35723:7;35732:1;35692:20;:42::i;:::-;33048:2694;;;32917:2825;;;:::o;55062:31::-;;;;:::o;35838:193::-;35984:39;36001:4;36007:2;36011:7;35984:39;;;;;;;;;;;;:16;:39::i;:::-;35838:193;;;:::o;55645:97::-;1902:13;:11;:13::i;:::-;55728:6:::1;55717:8;:17;;;;;;:::i;:::-;;55645:97:::0;:::o;24180:152::-;24252:7;24295:27;24314:7;24295:18;:27::i;:::-;24272:52;;24180:152;;;:::o;19722:233::-;19794:7;19835:1;19818:19;;:5;:19;;;19814:60;;19846:28;;;;;;;;;;;;;;19814:60;13881:13;19892:18;:25;19911:5;19892:25;;;;;;;;;;;;;;;;:55;19885:62;;19722:233;;;:::o;2664:103::-;1902:13;:11;:13::i;:::-;2729:30:::1;2756:1;2729:18;:30::i;:::-;2664:103::o:0;55525:112::-;1902:13;:11;:13::i;:::-;55621:8:::1;55601:17;:28;;;;55525:112:::0;:::o;2016:87::-;2062:7;2089:6;;;;;;;;;;;2082:13;;2016:87;:::o;22963:104::-;23019:13;23052:7;23045:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22963:104;:::o;55750:662::-;55810:17;55830;;55810:37;;55881:15;55862:16;;:34;55858:332;;;55970:1;55939:14;:28;55954:12;:10;:12::i;:::-;55939:28;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;55913:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56070:4;56054:13;:11;:13::i;:::-;:20;56046:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;56149:1;56117:14;:28;56132:12;:10;:12::i;:::-;56117:28;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56177:1;56165:13;;55858:332;56246:9;56235:8;:20;;;;:::i;:::-;56222:9;:33;;56200:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;56324:33;56334:12;:10;:12::i;:::-;56348:8;56324:9;:33::i;:::-;56376:7;:5;:7::i;:::-;56368:25;;:36;56394:9;56368:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55799:613;55750:662;:::o;29836:234::-;29983:8;29931:18;:39;29950:19;:17;:19::i;:::-;29931:39;;;;;;;;;;;;;;;:49;29971:8;29931:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30043:8;30007:55;;30022:19;:17;:19::i;:::-;30007:55;;;30053:8;30007:55;;;;;;:::i;:::-;;;;;;;;29836:234;;:::o;36629:407::-;36804:31;36817:4;36823:2;36827:7;36804:12;:31::i;:::-;36868:1;36850:2;:14;;;:19;36846:183;;36889:56;36920:4;36926:2;36930:7;36939:5;36889:30;:56::i;:::-;36884:145;;36973:40;;;;;;;;;;;;;;36884:145;36846:183;36629:407;;;;:::o;23173:318::-;23246:13;23277:16;23285:7;23277;:16::i;:::-;23272:59;;23302:29;;;;;;;;;;;;;;23272:59;23344:21;23368:10;:8;:10::i;:::-;23344:34;;23421:1;23402:7;23396:21;:26;:87;;;;;;;;;;;;;;;;;23449:7;23458:18;23468:7;23458:9;:18::i;:::-;23432:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23396:87;23389:94;;;23173:318;;;:::o;30227:164::-;30324:4;30348:18;:25;30367:5;30348:25;;;;;;;;;;;;;;;:35;30374:8;30348:35;;;;;;;;;;;;;;;;;;;;;;;;;30341:42;;30227:164;;;;:::o;2922:201::-;1902:13;:11;:13::i;:::-;3031:1:::1;3011:22;;:8;:22;;::::0;3003:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3087:28;3106:8;3087:18;:28::i;:::-;2922:201:::0;:::o;30649:282::-;30714:4;30770:7;30751:15;:13;:15::i;:::-;:26;;:66;;;;;30804:13;;30794:7;:23;30751:66;:153;;;;;30903:1;14657:8;30855:17;:26;30873:7;30855:26;;;;;;;;;;;;:44;:49;30751:153;30731:173;;30649:282;;;:::o;52957:105::-;53017:7;53044:10;53037:17;;52957:105;:::o;2181:132::-;2256:12;:10;:12::i;:::-;2245:23;;:7;:5;:7::i;:::-;:23;;;2237:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2181:132::o;18054:92::-;18110:7;18054:92;:::o;25335:1275::-;25402:7;25422:12;25437:7;25422:22;;25505:4;25486:15;:13;:15::i;:::-;:23;25482:1061;;25539:13;;25532:4;:20;25528:1015;;;25577:14;25594:17;:23;25612:4;25594:23;;;;;;;;;;;;25577:40;;25711:1;14657:8;25683:6;:24;:29;25679:845;;26348:113;26365:1;26355:6;:11;26348:113;;26408:17;:25;26426:6;;;;;;;26408:25;;;;;;;;;;;;26399:34;;26348:113;;;26494:6;26487:13;;;;;;25679:845;25554:989;25528:1015;25482:1061;26571:31;;;;;;;;;;;;;;25335:1275;;;;:::o;31812:485::-;31914:27;31943:23;31984:38;32025:15;:24;32041:7;32025:24;;;;;;;;;;;31984:65;;32202:18;32179:41;;32259:19;32253:26;32234:45;;32164:126;31812:485;;;:::o;31040:659::-;31189:11;31354:16;31347:5;31343:28;31334:37;;31514:16;31503:9;31499:32;31486:45;;31664:15;31653:9;31650:30;31642:5;31631:9;31628:20;31625:56;31615:66;;31040:659;;;;;:::o;37698:159::-;;;;;:::o;52266:311::-;52401:7;52421:16;15061:3;52447:19;:41;;52421:68;;15061:3;52515:31;52526:4;52532:2;52536:9;52515:10;:31::i;:::-;52507:40;;:62;;52500:69;;;52266:311;;;;;:::o;27158:450::-;27238:14;27406:16;27399:5;27395:28;27386:37;;27583:5;27569:11;27544:23;27540:41;27537:52;27530:5;27527:63;27517:73;;27158:450;;;;:::o;38522:158::-;;;;;:::o;3283:191::-;3357:16;3376:6;;;;;;;;;;;3357:25;;3402:8;3393:6;;:17;;;;;;;;;;;;;;;;;;3457:8;3426:40;;3447:8;3426:40;;;;;;;;;;;;3346:128;3283:191;:::o;567:98::-;620:7;647:10;640:17;;567:98;:::o;46789:112::-;46866:27;46876:2;46880:8;46866:27;;;;;;;;;;;;:9;:27::i;:::-;46789:112;;:::o;39120:716::-;39283:4;39329:2;39304:45;;;39350:19;:17;:19::i;:::-;39371:4;39377:7;39386:5;39304:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39300:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39604:1;39587:6;:13;:18;39583:235;;39633:40;;;;;;;;;;;;;;39583:235;39776:6;39770:13;39761:6;39757:2;39753:15;39746:38;39300:529;39473:54;;;39463:64;;;:6;:64;;;;39456:71;;;39120:716;;;;;;:::o;56420:101::-;56472:13;56505:8;56498:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56420:101;:::o;53164:1745::-;53229:17;53663:4;53656;53650:11;53646:22;53755:1;53749:4;53742:15;53830:4;53827:1;53823:12;53816:19;;53912:1;53907:3;53900:14;54016:3;54255:5;54237:428;54263:1;54237:428;;;54303:1;54298:3;54294:11;54287:18;;54474:2;54468:4;54464:13;54460:2;54456:22;54451:3;54443:36;54568:2;54562:4;54558:13;54550:21;;54635:4;54237:428;54625:25;54237:428;54241:21;54704:3;54699;54695:13;54819:4;54814:3;54810:14;54803:21;;54884:6;54879:3;54872:19;53268:1634;;;53164:1745;;;:::o;51967:147::-;52104:6;51967:147;;;;;:::o;46016:689::-;46147:19;46153:2;46157:8;46147:5;:19::i;:::-;46226:1;46208:2;:14;;;:19;46204:483;;46248:11;46262:13;;46248:27;;46294:13;46316:8;46310:3;:14;46294:30;;46343:233;46374:62;46413:1;46417:2;46421:7;;;;;;46430:5;46374:30;:62::i;:::-;46369:167;;46472:40;;;;;;;;;;;;;;46369:167;46571:3;46563:5;:11;46343:233;;46658:3;46641:13;;:20;46637:34;;46663:8;;;46637:34;46229:458;;46204:483;46016:689;;;:::o;40298:2966::-;40371:20;40394:13;;40371:36;;40434:1;40422:8;:13;40418:44;;40444:18;;;;;;;;;;;;;;40418:44;40475:61;40505:1;40509:2;40513:12;40527:8;40475:21;:61::i;:::-;41019:1;14019:2;40989:1;:26;;40988:32;40976:8;:45;40950:18;:22;40969:2;40950:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41298:139;41335:2;41389:33;41412:1;41416:2;41420:1;41389:14;:33::i;:::-;41356:30;41377:8;41356:20;:30::i;:::-;:66;41298:18;:139::i;:::-;41264:17;:31;41282:12;41264:31;;;;;;;;;;;:173;;;;41454:16;41485:11;41514:8;41499:12;:23;41485:37;;42035:16;42031:2;42027:25;42015:37;;42407:12;42367:8;42326:1;42264:25;42205:1;42144;42117:335;42778:1;42764:12;42760:20;42718:346;42819:3;42810:7;42807:16;42718:346;;43037:7;43027:8;43024:1;42997:25;42994:1;42991;42986:59;42872:1;42863:7;42859:15;42848:26;;42718:346;;;42722:77;43109:1;43097:8;:13;43093:45;;43119:19;;;;;;;;;;;;;;43093:45;43171:3;43155:13;:19;;;;40724:2462;;43196:60;43225:1;43229:2;43233:12;43247:8;43196:20;:60::i;:::-;40360:2904;40298:2966;;:::o;27710:324::-;27780:14;28013:1;28003:8;28000:15;27974:24;27970:46;27960:56;;27710:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:118::-;3030:24;3048:5;3030:24;:::i;:::-;3025:3;3018:37;2943:118;;:::o;3067:222::-;3160:4;3198:2;3187:9;3183:18;3175:26;;3211:71;3279:1;3268:9;3264:17;3255:6;3211:71;:::i;:::-;3067:222;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:141::-;12652:4;12675:3;12667:11;;12698:3;12695:1;12688:14;12732:4;12729:1;12719:18;12711:26;;12603:141;;;:::o;12750:93::-;12787:6;12834:2;12829;12822:5;12818:14;12814:23;12804:33;;12750:93;;;:::o;12849:107::-;12893:8;12943:5;12937:4;12933:16;12912:37;;12849:107;;;;:::o;12962:393::-;13031:6;13081:1;13069:10;13065:18;13104:97;13134:66;13123:9;13104:97;:::i;:::-;13222:39;13252:8;13241:9;13222:39;:::i;:::-;13210:51;;13294:4;13290:9;13283:5;13279:21;13270:30;;13343:4;13333:8;13329:19;13322:5;13319:30;13309:40;;13038:317;;12962:393;;;;;:::o;13361:60::-;13389:3;13410:5;13403:12;;13361:60;;;:::o;13427:142::-;13477:9;13510:53;13528:34;13537:24;13555:5;13537:24;:::i;:::-;13528:34;:::i;:::-;13510:53;:::i;:::-;13497:66;;13427:142;;;:::o;13575:75::-;13618:3;13639:5;13632:12;;13575:75;;;:::o;13656:269::-;13766:39;13797:7;13766:39;:::i;:::-;13827:91;13876:41;13900:16;13876:41;:::i;:::-;13868:6;13861:4;13855:11;13827:91;:::i;:::-;13821:4;13814:105;13732:193;13656:269;;;:::o;13931:73::-;13976:3;13931:73;:::o;14010:189::-;14087:32;;:::i;:::-;14128:65;14186:6;14178;14172:4;14128:65;:::i;:::-;14063:136;14010:189;;:::o;14205:186::-;14265:120;14282:3;14275:5;14272:14;14265:120;;;14336:39;14373:1;14366:5;14336:39;:::i;:::-;14309:1;14302:5;14298:13;14289:22;;14265:120;;;14205:186;;:::o;14397:543::-;14498:2;14493:3;14490:11;14487:446;;;14532:38;14564:5;14532:38;:::i;:::-;14616:29;14634:10;14616:29;:::i;:::-;14606:8;14602:44;14799:2;14787:10;14784:18;14781:49;;;14820:8;14805:23;;14781:49;14843:80;14899:22;14917:3;14899:22;:::i;:::-;14889:8;14885:37;14872:11;14843:80;:::i;:::-;14502:431;;14487:446;14397:543;;;:::o;14946:117::-;15000:8;15050:5;15044:4;15040:16;15019:37;;14946:117;;;;:::o;15069:169::-;15113:6;15146:51;15194:1;15190:6;15182:5;15179:1;15175:13;15146:51;:::i;:::-;15142:56;15227:4;15221;15217:15;15207:25;;15120:118;15069:169;;;;:::o;15243:295::-;15319:4;15465:29;15490:3;15484:4;15465:29;:::i;:::-;15457:37;;15527:3;15524:1;15520:11;15514:4;15511:21;15503:29;;15243:295;;;;:::o;15543:1395::-;15660:37;15693:3;15660:37;:::i;:::-;15762:18;15754:6;15751:30;15748:56;;;15784:18;;:::i;:::-;15748:56;15828:38;15860:4;15854:11;15828:38;:::i;:::-;15913:67;15973:6;15965;15959:4;15913:67;:::i;:::-;16007:1;16031:4;16018:17;;16063:2;16055:6;16052:14;16080:1;16075:618;;;;16737:1;16754:6;16751:77;;;16803:9;16798:3;16794:19;16788:26;16779:35;;16751:77;16854:67;16914:6;16907:5;16854:67;:::i;:::-;16848:4;16841:81;16710:222;16045:887;;16075:618;16127:4;16123:9;16115:6;16111:22;16161:37;16193:4;16161:37;:::i;:::-;16220:1;16234:208;16248:7;16245:1;16242:14;16234:208;;;16327:9;16322:3;16318:19;16312:26;16304:6;16297:42;16378:1;16370:6;16366:14;16356:24;;16425:2;16414:9;16410:18;16397:31;;16271:4;16268:1;16264:12;16259:17;;16234:208;;;16470:6;16461:7;16458:19;16455:179;;;16528:9;16523:3;16519:19;16513:26;16571:48;16613:4;16605:6;16601:17;16590:9;16571:48;:::i;:::-;16563:6;16556:64;16478:156;16455:179;16680:1;16676;16668:6;16664:14;16660:22;16654:4;16647:36;16082:611;;;16045:887;;15635:1303;;;15543:1395;;:::o;16944:174::-;17084:26;17080:1;17072:6;17068:14;17061:50;16944:174;:::o;17124:366::-;17266:3;17287:67;17351:2;17346:3;17287:67;:::i;:::-;17280:74;;17363:93;17452:3;17363:93;:::i;:::-;17481:2;17476:3;17472:12;17465:19;;17124:366;;;:::o;17496:419::-;17662:4;17700:2;17689:9;17685:18;17677:26;;17749:9;17743:4;17739:20;17735:1;17724:9;17720:17;17713:47;17777:131;17903:4;17777:131;:::i;:::-;17769:139;;17496:419;;;:::o;17921:173::-;18061:25;18057:1;18049:6;18045:14;18038:49;17921:173;:::o;18100:366::-;18242:3;18263:67;18327:2;18322:3;18263:67;:::i;:::-;18256:74;;18339:93;18428:3;18339:93;:::i;:::-;18457:2;18452:3;18448:12;18441:19;;18100:366;;;:::o;18472:419::-;18638:4;18676:2;18665:9;18661:18;18653:26;;18725:9;18719:4;18715:20;18711:1;18700:9;18696:17;18689:47;18753:131;18879:4;18753:131;:::i;:::-;18745:139;;18472:419;;;:::o;18897:86::-;18932:7;18972:4;18965:5;18961:16;18950:27;;18897:86;;;:::o;18989:180::-;19037:77;19034:1;19027:88;19134:4;19131:1;19124:15;19158:4;19155:1;19148:15;19175:188;19213:3;19232:18;19248:1;19232:18;:::i;:::-;19227:23;;19264:18;19280:1;19264:18;:::i;:::-;19259:23;;19305:1;19302;19298:9;19291:16;;19328:4;19323:3;19320:13;19317:39;;;19336:18;;:::i;:::-;19317:39;19175:188;;;;:::o;19369:410::-;19409:7;19432:20;19450:1;19432:20;:::i;:::-;19427:25;;19466:20;19484:1;19466:20;:::i;:::-;19461:25;;19521:1;19518;19514:9;19543:30;19561:11;19543:30;:::i;:::-;19532:41;;19722:1;19713:7;19709:15;19706:1;19703:22;19683:1;19676:9;19656:83;19633:139;;19752:18;;:::i;:::-;19633:139;19417:362;19369:410;;;;:::o;19785:180::-;19925:32;19921:1;19913:6;19909:14;19902:56;19785:180;:::o;19971:366::-;20113:3;20134:67;20198:2;20193:3;20134:67;:::i;:::-;20127:74;;20210:93;20299:3;20210:93;:::i;:::-;20328:2;20323:3;20319:12;20312:19;;19971:366;;;:::o;20343:419::-;20509:4;20547:2;20536:9;20532:18;20524:26;;20596:9;20590:4;20586:20;20582:1;20571:9;20567:17;20560:47;20624:131;20750:4;20624:131;:::i;:::-;20616:139;;20343:419;;;:::o;20768:148::-;20870:11;20907:3;20892:18;;20768:148;;;;:::o;20922:390::-;21028:3;21056:39;21089:5;21056:39;:::i;:::-;21111:89;21193:6;21188:3;21111:89;:::i;:::-;21104:96;;21209:65;21267:6;21262:3;21255:4;21248:5;21244:16;21209:65;:::i;:::-;21299:6;21294:3;21290:16;21283:23;;21032:280;20922:390;;;;:::o;21318:435::-;21498:3;21520:95;21611:3;21602:6;21520:95;:::i;:::-;21513:102;;21632:95;21723:3;21714:6;21632:95;:::i;:::-;21625:102;;21744:3;21737:10;;21318:435;;;;;:::o;21759:225::-;21899:34;21895:1;21887:6;21883:14;21876:58;21968:8;21963:2;21955:6;21951:15;21944:33;21759:225;:::o;21990:366::-;22132:3;22153:67;22217:2;22212:3;22153:67;:::i;:::-;22146:74;;22229:93;22318:3;22229:93;:::i;:::-;22347:2;22342:3;22338:12;22331:19;;21990:366;;;:::o;22362:419::-;22528:4;22566:2;22555:9;22551:18;22543:26;;22615:9;22609:4;22605:20;22601:1;22590:9;22586:17;22579:47;22643:131;22769:4;22643:131;:::i;:::-;22635:139;;22362:419;;;:::o;22787:182::-;22927:34;22923:1;22915:6;22911:14;22904:58;22787:182;:::o;22975:366::-;23117:3;23138:67;23202:2;23197:3;23138:67;:::i;:::-;23131:74;;23214:93;23303:3;23214:93;:::i;:::-;23332:2;23327:3;23323:12;23316:19;;22975:366;;;:::o;23347:419::-;23513:4;23551:2;23540:9;23536:18;23528:26;;23600:9;23594:4;23590:20;23586:1;23575:9;23571:17;23564:47;23628:131;23754:4;23628:131;:::i;:::-;23620:139;;23347:419;;;:::o;23772:98::-;23823:6;23857:5;23851:12;23841:22;;23772:98;;;:::o;23876:168::-;23959:11;23993:6;23988:3;23981:19;24033:4;24028:3;24024:14;24009:29;;23876:168;;;;:::o;24050:373::-;24136:3;24164:38;24196:5;24164:38;:::i;:::-;24218:70;24281:6;24276:3;24218:70;:::i;:::-;24211:77;;24297:65;24355:6;24350:3;24343:4;24336:5;24332:16;24297:65;:::i;:::-;24387:29;24409:6;24387:29;:::i;:::-;24382:3;24378:39;24371:46;;24140:283;24050:373;;;;:::o;24429:640::-;24624:4;24662:3;24651:9;24647:19;24639:27;;24676:71;24744:1;24733:9;24729:17;24720:6;24676:71;:::i;:::-;24757:72;24825:2;24814:9;24810:18;24801:6;24757:72;:::i;:::-;24839;24907:2;24896:9;24892:18;24883:6;24839:72;:::i;:::-;24958:9;24952:4;24948:20;24943:2;24932:9;24928:18;24921:48;24986:76;25057:4;25048:6;24986:76;:::i;:::-;24978:84;;24429:640;;;;;;;:::o;25075:141::-;25131:5;25162:6;25156:13;25147:22;;25178:32;25204:5;25178:32;:::i;:::-;25075:141;;;;:::o;25222:349::-;25291:6;25340:2;25328:9;25319:7;25315:23;25311:32;25308:119;;;25346:79;;:::i;:::-;25308:119;25466:1;25491:63;25546:7;25537:6;25526:9;25522:22;25491:63;:::i;:::-;25481:73;;25437:127;25222:349;;;;:::o

Swarm Source

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