ETH Price: $3,032.15 (+2.46%)
Gas: 1 Gwei

Token

PokerVerseClub (Pokerverse)
 

Overview

Max Total Supply

2,283 Pokerverse

Holders

820

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Pokerverse
0xdc5f2e5c6541e471196b88495cae938a0f809c4c
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:
PokerverseClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-06
*/

// SPDX-License-Identifier: MIT

// File: erc721a/contracts/IERC721A.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (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: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/ok.sol



pragma solidity >=0.7.0 <0.9.0;







contract PokerverseClub is ERC721A, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;

  bytes32 public root = 0x89f5a3a3ddf60a38b22fa46edbf708857c966c66146825735da391e9d283a378;
  
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 11111;
  uint256 public maxMintAmountPerTx = 50;

  bool public paused = false;
  bool public revealed = false;

  //mapping variables checking if already claimed
    mapping(address => bool) public whitelistClaimed ;
  //bool checking openTo  public
  bool public OpenToPublic = false; 

  uint256 public maxPresaleMintAmount = 50;

  constructor() ERC721A("PokerVerseClub", "Pokerverse") {
    setHiddenMetadataUri("ipfs://QmaT9TeBmhUafA9jM6ko277boUkgXMp8GJUxCqCXFDJVKX/1.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }


 function changeMerkleROOT(bytes32 _merkleRoot) public onlyOwner {
     root = _merkleRoot;
 }

 /*if OpenToPublic = true, merkleproof=[] and amount = _mintAmount
 *else merkleproof= proof sent to client
 *client can claim one time
 */
  function mint(bytes32[] calldata _merkleProof, uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");

     //Don't allow minting if presale is set and buyer is not in whitelisted map
    if (OpenToPublic) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _safeMint(msg.sender, _mintAmount);
    }else{ 
        require(_mintAmount <= maxPresaleMintAmount, "Amount exceeded");
        whitelistMint(_merkleProof,msg.sender);
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _safeMint(msg.sender, _mintAmount);
    }
  }

    function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }
  
    function crossmint(address _to) public payable {
    require(cost == msg.value, "Incorrect ETH value sent");
    require(supply.current() + 1 <= maxSupply, "No more left");
    require(msg.sender == 0xdAb1a1854214684acE522439684a145E62505233,
      "This function is for Crossmint only."
    );

    supply.increment();
    uint256 newTokenId = supply.current();
   

    _safeMint(_to, newTokenId);
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

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

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

    function setOpenToPublic(bool _open) public onlyOwner {
      OpenToPublic = _open;
  }

  function setMaxPresaleMintAmount(uint256 _max) public onlyOwner {
      maxPresaleMintAmount = _max;
  }


    function whitelistMint(bytes32[] calldata _merkleProof, address _from) internal   {

    require(!whitelistClaimed[_from], "address has already claimed");
    //check if account is in whitelist
    bytes32 leaf=  keccak256(abi.encodePacked(_from));
    require(MerkleProof.verify(_merkleProof ,root ,leaf ),"Now Whitelisted");
    //mark address as having claimed their token 
        whitelistClaimed[_from]= true ;    
    }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function withdraw() public onlyOwner {

      (bool hs, ) = payable(0x29093bA7215dc0d313707E821dAfe5C1AB683c83).call{value: address(this).balance * 50 / 100}('');
    require(hs);
    
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);


  }


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OpenToPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"changeMerkleROOT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"crossmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPresaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setOpenToPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a916200022e565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b916200022e565b507f89f5a3a3ddf60a38b22fa46edbf708857c966c66146825735da391e9d283a378600d5566b1a2bc2ec50000600e55612b67600f55603260108190556011805461ffff191690556013805460ff19169055601455348015620000ac57600080fd5b50604080518082018252600e81526d2837b5b2b92b32b939b2a1b63ab160911b60208083019182528351808501909452600a845269506f6b6572766572736560b01b90840152815191929162000105916002916200022e565b5080516200011b9060039060208401906200022e565b50506001600055506200012e3362000158565b620001526040518060600160405280603c8152602001620026d9603c9139620001aa565b62000311565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001b4620001cd565b8051620001c990600c9060208401906200022e565b5050565b6008546001600160a01b031633146200022c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200023c90620002d4565b90600052602060002090601f016020900481019282620002605760008555620002ab565b82601f106200027b57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002ab5782518255916020019190600101906200028e565b50620002b9929150620002bd565b5090565b5b80821115620002b95760008155600101620002be565b600181811c90821680620002e957607f821691505b602082108114156200030b57634e487b7160e01b600052602260045260246000fd5b50919050565b6123b880620003216000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b071401b116100b6578063db4bec441161007a578063db4bec44146106e2578063e0a8085314610712578063e985e9c514610732578063ebf0c7171461077b578063efbd73f414610791578063f2fde38b146107b157600080fd5b8063b071401b1461064c578063b88d4fde1461066c578063c87b56dd1461068c578063d5abeb01146106ac578063d76fd220146106c257600080fd5b806391afca551161010857806391afca55146105b957806394354fd0146105cc57806395d89b41146105e2578063a22cb465146105f7578063a43baa3d14610617578063a45ba8e71461063757600080fd5b8063715018a6146105365780637e24532c1461054b5780637ec4a6591461056557806385480756146105855780638da5cb5b1461059b57600080fd5b8063438b6300116101dd5780635503a0e8116101a15780635503a0e81461049257806356dca766146104a75780635c975abb146104c757806362b99ad4146104e15780636352211e146104f657806370a082311461051657600080fd5b8063438b6300146103f357806344a0d68a1461042057806345de0d9b146104405780634fdd43cb14610453578063518302271461047357600080fd5b806316ba10e01161022f57806316ba10e01461034157806316c38b3c1461036157806318160ddd1461038157806323b872dd1461039e5780633ccfd60b146103be57806342842e0e146103d357600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611ff2565b6107d1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610823565b6040516102989190612209565b3480156102cf57600080fd5b506102e36102de366004611fd9565b6108b5565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004611f19565b6108f9565b005b34801561032957600080fd5b50610333600e5481565b604051908152602001610298565b34801561034d57600080fd5b5061031b61035c36600461202c565b610999565b34801561036d57600080fd5b5061031b61037c366004611fbe565b6109b8565b34801561038d57600080fd5b506001546000540360001901610333565b3480156103aa57600080fd5b5061031b6103b9366004611e37565b6109d3565b3480156103ca57600080fd5b5061031b610b64565b3480156103df57600080fd5b5061031b6103ee366004611e37565b610c5a565b3480156103ff57600080fd5b5061041361040e366004611de9565b610c7a565b60405161029891906121c5565b34801561042c57600080fd5b5061031b61043b366004611fd9565b610d5b565b61031b61044e366004611f43565b610d68565b34801561045f57600080fd5b5061031b61046e36600461202c565b610f91565b34801561047f57600080fd5b5060115461028c90610100900460ff1681565b34801561049e57600080fd5b506102b6610fac565b3480156104b357600080fd5b5061031b6104c2366004611fd9565b61103a565b3480156104d357600080fd5b5060115461028c9060ff1681565b3480156104ed57600080fd5b506102b6611047565b34801561050257600080fd5b506102e3610511366004611fd9565b611054565b34801561052257600080fd5b50610333610531366004611de9565b61105f565b34801561054257600080fd5b5061031b6110ae565b34801561055757600080fd5b5060135461028c9060ff1681565b34801561057157600080fd5b5061031b61058036600461202c565b6110c2565b34801561059157600080fd5b5061033360145481565b3480156105a757600080fd5b506008546001600160a01b03166102e3565b61031b6105c7366004611de9565b6110dd565b3480156105d857600080fd5b5061033360105481565b3480156105ee57600080fd5b506102b6611210565b34801561060357600080fd5b5061031b610612366004611eef565b61121f565b34801561062357600080fd5b5061031b610632366004611fbe565b6112b5565b34801561064357600080fd5b506102b66112d0565b34801561065857600080fd5b5061031b610667366004611fd9565b6112dd565b34801561067857600080fd5b5061031b610687366004611e73565b6112ea565b34801561069857600080fd5b506102b66106a7366004611fd9565b61132e565b3480156106b857600080fd5b50610333600f5481565b3480156106ce57600080fd5b5061031b6106dd366004611fd9565b61149d565b3480156106ee57600080fd5b5061028c6106fd366004611de9565b60126020526000908152604090205460ff1681565b34801561071e57600080fd5b5061031b61072d366004611fbe565b6114aa565b34801561073e57600080fd5b5061028c61074d366004611e04565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078757600080fd5b50610333600d5481565b34801561079d57600080fd5b5061031b6107ac366004612075565b6114cc565b3480156107bd57600080fd5b5061031b6107cc366004611de9565b611590565b60006301ffc9a760e01b6001600160e01b03198316148061080257506380ac58cd60e01b6001600160e01b03198316145b8061081d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610832906122aa565b80601f016020809104026020016040519081016040528092919081815260200182805461085e906122aa565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b60006108c082611609565b6108dd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090482611054565b9050336001600160a01b0382161461093d57610920813361074d565b61093d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109a161163e565b80516109b490600b906020840190611cae565b5050565b6109c061163e565b6011805460ff1916911515919091179055565b60006109de82611698565b9050836001600160a01b0316816001600160a01b031614610a115760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a5e57610a41863361074d565b610a5e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a8557604051633a954ecd60e21b815260040160405180910390fd5b8015610a9057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b1b5760018401600081815260046020526040902054610b19576000548114610b195760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b6c61163e565b60007329093ba7215dc0d313707e821dafe5c1ab683c836064610b90476032612248565b610b9a9190612234565b604051600081818185875af1925050503d8060008114610bd6576040519150601f19603f3d011682016040523d82523d6000602084013e610bdb565b606091505b5050905080610be957600080fd5b6000610bfd6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c47576040519150601f19603f3d011682016040523d82523d6000602084013e610c4c565b606091505b50509050806109b457600080fd5b610c75838383604051806020016040528060008152506112ea565b505050565b60606000610c878361105f565b905060008167ffffffffffffffff811115610ca457610ca4612356565b604051908082528060200260200182016040528015610ccd578160200160208202803683370190505b509050600160005b8381108015610ce65750600f548211155b15610d51576000610cf683611054565b9050866001600160a01b0316816001600160a01b03161415610d3e5782848381518110610d2557610d25612340565b602090810291909101015281610d3a816122e5565b9250505b82610d48816122e5565b93505050610cd5565b5090949350505050565b610d6361163e565b600e55565b80600081118015610d7b57506010548111155b610dc35760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064015b60405180910390fd5b600f5481610dd060095490565b610dda919061221c565b1115610e1f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610dba565b60115460ff1615610e725760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610dba565b60135460ff1615610edf5781600e54610e8b9190612248565b341015610ed05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610dba565b610eda3383611701565b610f8b565b601454821115610f235760405162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b6044820152606401610dba565b610f2e84843361171b565b81600e54610f3c9190612248565b341015610f815760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610dba565b610f8b3383611701565b50505050565b610f9961163e565b80516109b490600c906020840190611cae565b600b8054610fb9906122aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe5906122aa565b80156110325780601f1061100757610100808354040283529160200191611032565b820191906000526020600020905b81548152906001019060200180831161101557829003601f168201915b505050505081565b61104261163e565b600d55565b600a8054610fb9906122aa565b600061081d82611698565b60006001600160a01b038216611088576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6110b661163e565b6110c06000611864565b565b6110ca61163e565b80516109b490600a906020840190611cae565b34600e541461112e5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610dba565b600f5460095461113f90600161221c565b111561117c5760405162461bcd60e51b815260206004820152600c60248201526b139bc81b5bdc99481b19599d60a21b6044820152606401610dba565b73dab1a1854214684ace522439684a145e6250523333146111eb5760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610dba565b6111f9600980546001019055565b600061120460095490565b90506109b48282611701565b606060038054610832906122aa565b6001600160a01b0382163314156112495760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112bd61163e565b6013805460ff1916911515919091179055565b600c8054610fb9906122aa565b6112e561163e565b601055565b6112f58484846109d3565b6001600160a01b0383163b15610f8b57611311848484846118b6565b610f8b576040516368d2bf6b60e11b815260040160405180910390fd5b606061133982611609565b61139d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610dba565b601154610100900460ff1661143e57600c80546113b9906122aa565b80601f01602080910402602001604051908101604052809291908181526020018280546113e5906122aa565b80156114325780601f1061140757610100808354040283529160200191611432565b820191906000526020600020905b81548152906001019060200180831161141557829003601f168201915b50505050509050919050565b60006114486119ae565b905060008151116114685760405180602001604052806000815250611496565b80611472846119bd565b600b604051602001611486939291906120c4565b6040516020818303038152906040525b9392505050565b6114a561163e565b601455565b6114b261163e565b601180549115156101000261ff0019909216919091179055565b816000811180156114df57506010548111155b6115225760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610dba565b600f548161152f60095490565b611539919061221c565b111561157e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610dba565b61158661163e565b610c758284611701565b61159861163e565b6001600160a01b0381166115fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dba565b61160681611864565b50565b60008160011115801561161d575060005482105b801561081d575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146110c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dba565b600081806001116116e8576000548110156116e857600081815260046020526040902054600160e01b81166116e6575b806114965750600019016000818152600460205260409020546116c8565b505b604051636f96cda160e11b815260040160405180910390fd5b6109b4828260405180602001604052806000815250611abb565b6001600160a01b03811660009081526012602052604090205460ff16156117845760405162461bcd60e51b815260206004820152601b60248201527f616464726573732068617320616c726561647920636c61696d656400000000006044820152606401610dba565b6040516bffffffffffffffffffffffff19606083901b1660208201526000906034016040516020818303038152906040528051906020012090506117ff84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611b28565b61183d5760405162461bcd60e51b815260206004820152600f60248201526e139bddc815da1a5d195b1a5cdd1959608a1b6044820152606401610dba565b506001600160a01b03166000908152601260205260409020805460ff191660011790555050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118eb903390899088908890600401612188565b602060405180830381600087803b15801561190557600080fd5b505af1925050508015611935575060408051601f3d908101601f191682019092526119329181019061200f565b60015b611990573d808015611963576040519150601f19603f3d011682016040523d82523d6000602084013e611968565b606091505b508051611988576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610832906122aa565b6060816119e15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0b57806119f5816122e5565b9150611a049050600a83612234565b91506119e5565b60008167ffffffffffffffff811115611a2657611a26612356565b6040519080825280601f01601f191660200182016040528015611a50576020820181803683370190505b5090505b84156119a657611a65600183612267565b9150611a72600a86612300565b611a7d90603061221c565b60f81b818381518110611a9257611a92612340565b60200101906001600160f81b031916908160001a905350611ab4600a86612234565b9450611a54565b611ac58383611b3e565b6001600160a01b0383163b15610c75576000548281035b611aef60008683806001019450866118b6565b611b0c576040516368d2bf6b60e11b815260040160405180910390fd5b818110611adc578160005414611b2157600080fd5b5050505050565b600082611b358584611c35565b14949350505050565b60005481611b5f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611c0e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611bd6565b5081611c2c57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081815b8451811015611c7a57611c6682868381518110611c5957611c59612340565b6020026020010151611c82565b915080611c72816122e5565b915050611c3a565b509392505050565b6000818310611c9e576000828152602084905260409020611496565b5060009182526020526040902090565b828054611cba906122aa565b90600052602060002090601f016020900481019282611cdc5760008555611d22565b82601f10611cf557805160ff1916838001178555611d22565b82800160010185558215611d22579182015b82811115611d22578251825591602001919060010190611d07565b50611d2e929150611d32565b5090565b5b80821115611d2e5760008155600101611d33565b600067ffffffffffffffff80841115611d6257611d62612356565b604051601f8501601f19908116603f01168101908282118183101715611d8a57611d8a612356565b81604052809350858152868686011115611da357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dd457600080fd5b919050565b80358015158114611dd457600080fd5b600060208284031215611dfb57600080fd5b61149682611dbd565b60008060408385031215611e1757600080fd5b611e2083611dbd565b9150611e2e60208401611dbd565b90509250929050565b600080600060608486031215611e4c57600080fd5b611e5584611dbd565b9250611e6360208501611dbd565b9150604084013590509250925092565b60008060008060808587031215611e8957600080fd5b611e9285611dbd565b9350611ea060208601611dbd565b925060408501359150606085013567ffffffffffffffff811115611ec357600080fd5b8501601f81018713611ed457600080fd5b611ee387823560208401611d47565b91505092959194509250565b60008060408385031215611f0257600080fd5b611f0b83611dbd565b9150611e2e60208401611dd9565b60008060408385031215611f2c57600080fd5b611f3583611dbd565b946020939093013593505050565b600080600060408486031215611f5857600080fd5b833567ffffffffffffffff80821115611f7057600080fd5b818601915086601f830112611f8457600080fd5b813581811115611f9357600080fd5b8760208260051b8501011115611fa857600080fd5b6020928301989097509590910135949350505050565b600060208284031215611fd057600080fd5b61149682611dd9565b600060208284031215611feb57600080fd5b5035919050565b60006020828403121561200457600080fd5b81356114968161236c565b60006020828403121561202157600080fd5b81516114968161236c565b60006020828403121561203e57600080fd5b813567ffffffffffffffff81111561205557600080fd5b8201601f8101841361206657600080fd5b6119a684823560208401611d47565b6000806040838503121561208857600080fd5b82359150611e2e60208401611dbd565b600081518084526120b081602086016020860161227e565b601f01601f19169290920160200192915050565b6000845160206120d78285838a0161227e565b8551918401916120ea8184848a0161227e565b8554920191600090600181811c908083168061210757607f831692505b85831081141561212557634e487b7160e01b85526022600452602485fd5b808015612139576001811461214a57612177565b60ff19851688528388019550612177565b60008b81526020902060005b8581101561216f5781548a820152908401908801612156565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121bb90830184612098565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121fd578351835292840192918401916001016121e1565b50909695505050505050565b6020815260006114966020830184612098565b6000821982111561222f5761222f612314565b500190565b6000826122435761224361232a565b500490565b600081600019048311821515161561226257612262612314565b500290565b60008282101561227957612279612314565b500390565b60005b83811015612299578181015183820152602001612281565b83811115610f8b5750506000910152565b600181811c908216806122be57607f821691505b602082108114156122df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122f9576122f9612314565b5060010190565b60008261230f5761230f61232a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461160657600080fdfea26469706673582212200667e05c5ffe08793bddb3d9b45a3f0f842b10275392d0136420a06b0e93df4c64736f6c63430008070033697066733a2f2f516d6154395465426d6855616641396a4d366b6f323737626f556b67584d7038474a55784371435846444a564b582f312e6a736f6e

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063b071401b116100b6578063db4bec441161007a578063db4bec44146106e2578063e0a8085314610712578063e985e9c514610732578063ebf0c7171461077b578063efbd73f414610791578063f2fde38b146107b157600080fd5b8063b071401b1461064c578063b88d4fde1461066c578063c87b56dd1461068c578063d5abeb01146106ac578063d76fd220146106c257600080fd5b806391afca551161010857806391afca55146105b957806394354fd0146105cc57806395d89b41146105e2578063a22cb465146105f7578063a43baa3d14610617578063a45ba8e71461063757600080fd5b8063715018a6146105365780637e24532c1461054b5780637ec4a6591461056557806385480756146105855780638da5cb5b1461059b57600080fd5b8063438b6300116101dd5780635503a0e8116101a15780635503a0e81461049257806356dca766146104a75780635c975abb146104c757806362b99ad4146104e15780636352211e146104f657806370a082311461051657600080fd5b8063438b6300146103f357806344a0d68a1461042057806345de0d9b146104405780634fdd43cb14610453578063518302271461047357600080fd5b806316ba10e01161022f57806316ba10e01461034157806316c38b3c1461036157806318160ddd1461038157806323b872dd1461039e5780633ccfd60b146103be57806342842e0e146103d357600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611ff2565b6107d1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610823565b6040516102989190612209565b3480156102cf57600080fd5b506102e36102de366004611fd9565b6108b5565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004611f19565b6108f9565b005b34801561032957600080fd5b50610333600e5481565b604051908152602001610298565b34801561034d57600080fd5b5061031b61035c36600461202c565b610999565b34801561036d57600080fd5b5061031b61037c366004611fbe565b6109b8565b34801561038d57600080fd5b506001546000540360001901610333565b3480156103aa57600080fd5b5061031b6103b9366004611e37565b6109d3565b3480156103ca57600080fd5b5061031b610b64565b3480156103df57600080fd5b5061031b6103ee366004611e37565b610c5a565b3480156103ff57600080fd5b5061041361040e366004611de9565b610c7a565b60405161029891906121c5565b34801561042c57600080fd5b5061031b61043b366004611fd9565b610d5b565b61031b61044e366004611f43565b610d68565b34801561045f57600080fd5b5061031b61046e36600461202c565b610f91565b34801561047f57600080fd5b5060115461028c90610100900460ff1681565b34801561049e57600080fd5b506102b6610fac565b3480156104b357600080fd5b5061031b6104c2366004611fd9565b61103a565b3480156104d357600080fd5b5060115461028c9060ff1681565b3480156104ed57600080fd5b506102b6611047565b34801561050257600080fd5b506102e3610511366004611fd9565b611054565b34801561052257600080fd5b50610333610531366004611de9565b61105f565b34801561054257600080fd5b5061031b6110ae565b34801561055757600080fd5b5060135461028c9060ff1681565b34801561057157600080fd5b5061031b61058036600461202c565b6110c2565b34801561059157600080fd5b5061033360145481565b3480156105a757600080fd5b506008546001600160a01b03166102e3565b61031b6105c7366004611de9565b6110dd565b3480156105d857600080fd5b5061033360105481565b3480156105ee57600080fd5b506102b6611210565b34801561060357600080fd5b5061031b610612366004611eef565b61121f565b34801561062357600080fd5b5061031b610632366004611fbe565b6112b5565b34801561064357600080fd5b506102b66112d0565b34801561065857600080fd5b5061031b610667366004611fd9565b6112dd565b34801561067857600080fd5b5061031b610687366004611e73565b6112ea565b34801561069857600080fd5b506102b66106a7366004611fd9565b61132e565b3480156106b857600080fd5b50610333600f5481565b3480156106ce57600080fd5b5061031b6106dd366004611fd9565b61149d565b3480156106ee57600080fd5b5061028c6106fd366004611de9565b60126020526000908152604090205460ff1681565b34801561071e57600080fd5b5061031b61072d366004611fbe565b6114aa565b34801561073e57600080fd5b5061028c61074d366004611e04565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078757600080fd5b50610333600d5481565b34801561079d57600080fd5b5061031b6107ac366004612075565b6114cc565b3480156107bd57600080fd5b5061031b6107cc366004611de9565b611590565b60006301ffc9a760e01b6001600160e01b03198316148061080257506380ac58cd60e01b6001600160e01b03198316145b8061081d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610832906122aa565b80601f016020809104026020016040519081016040528092919081815260200182805461085e906122aa565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b60006108c082611609565b6108dd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090482611054565b9050336001600160a01b0382161461093d57610920813361074d565b61093d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109a161163e565b80516109b490600b906020840190611cae565b5050565b6109c061163e565b6011805460ff1916911515919091179055565b60006109de82611698565b9050836001600160a01b0316816001600160a01b031614610a115760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a5e57610a41863361074d565b610a5e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a8557604051633a954ecd60e21b815260040160405180910390fd5b8015610a9057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b1b5760018401600081815260046020526040902054610b19576000548114610b195760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b6c61163e565b60007329093ba7215dc0d313707e821dafe5c1ab683c836064610b90476032612248565b610b9a9190612234565b604051600081818185875af1925050503d8060008114610bd6576040519150601f19603f3d011682016040523d82523d6000602084013e610bdb565b606091505b5050905080610be957600080fd5b6000610bfd6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c47576040519150601f19603f3d011682016040523d82523d6000602084013e610c4c565b606091505b50509050806109b457600080fd5b610c75838383604051806020016040528060008152506112ea565b505050565b60606000610c878361105f565b905060008167ffffffffffffffff811115610ca457610ca4612356565b604051908082528060200260200182016040528015610ccd578160200160208202803683370190505b509050600160005b8381108015610ce65750600f548211155b15610d51576000610cf683611054565b9050866001600160a01b0316816001600160a01b03161415610d3e5782848381518110610d2557610d25612340565b602090810291909101015281610d3a816122e5565b9250505b82610d48816122e5565b93505050610cd5565b5090949350505050565b610d6361163e565b600e55565b80600081118015610d7b57506010548111155b610dc35760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064015b60405180910390fd5b600f5481610dd060095490565b610dda919061221c565b1115610e1f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610dba565b60115460ff1615610e725760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610dba565b60135460ff1615610edf5781600e54610e8b9190612248565b341015610ed05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610dba565b610eda3383611701565b610f8b565b601454821115610f235760405162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b6044820152606401610dba565b610f2e84843361171b565b81600e54610f3c9190612248565b341015610f815760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610dba565b610f8b3383611701565b50505050565b610f9961163e565b80516109b490600c906020840190611cae565b600b8054610fb9906122aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe5906122aa565b80156110325780601f1061100757610100808354040283529160200191611032565b820191906000526020600020905b81548152906001019060200180831161101557829003601f168201915b505050505081565b61104261163e565b600d55565b600a8054610fb9906122aa565b600061081d82611698565b60006001600160a01b038216611088576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6110b661163e565b6110c06000611864565b565b6110ca61163e565b80516109b490600a906020840190611cae565b34600e541461112e5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610dba565b600f5460095461113f90600161221c565b111561117c5760405162461bcd60e51b815260206004820152600c60248201526b139bc81b5bdc99481b19599d60a21b6044820152606401610dba565b73dab1a1854214684ace522439684a145e6250523333146111eb5760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610dba565b6111f9600980546001019055565b600061120460095490565b90506109b48282611701565b606060038054610832906122aa565b6001600160a01b0382163314156112495760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112bd61163e565b6013805460ff1916911515919091179055565b600c8054610fb9906122aa565b6112e561163e565b601055565b6112f58484846109d3565b6001600160a01b0383163b15610f8b57611311848484846118b6565b610f8b576040516368d2bf6b60e11b815260040160405180910390fd5b606061133982611609565b61139d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610dba565b601154610100900460ff1661143e57600c80546113b9906122aa565b80601f01602080910402602001604051908101604052809291908181526020018280546113e5906122aa565b80156114325780601f1061140757610100808354040283529160200191611432565b820191906000526020600020905b81548152906001019060200180831161141557829003601f168201915b50505050509050919050565b60006114486119ae565b905060008151116114685760405180602001604052806000815250611496565b80611472846119bd565b600b604051602001611486939291906120c4565b6040516020818303038152906040525b9392505050565b6114a561163e565b601455565b6114b261163e565b601180549115156101000261ff0019909216919091179055565b816000811180156114df57506010548111155b6115225760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610dba565b600f548161152f60095490565b611539919061221c565b111561157e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610dba565b61158661163e565b610c758284611701565b61159861163e565b6001600160a01b0381166115fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dba565b61160681611864565b50565b60008160011115801561161d575060005482105b801561081d575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146110c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dba565b600081806001116116e8576000548110156116e857600081815260046020526040902054600160e01b81166116e6575b806114965750600019016000818152600460205260409020546116c8565b505b604051636f96cda160e11b815260040160405180910390fd5b6109b4828260405180602001604052806000815250611abb565b6001600160a01b03811660009081526012602052604090205460ff16156117845760405162461bcd60e51b815260206004820152601b60248201527f616464726573732068617320616c726561647920636c61696d656400000000006044820152606401610dba565b6040516bffffffffffffffffffffffff19606083901b1660208201526000906034016040516020818303038152906040528051906020012090506117ff84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611b28565b61183d5760405162461bcd60e51b815260206004820152600f60248201526e139bddc815da1a5d195b1a5cdd1959608a1b6044820152606401610dba565b506001600160a01b03166000908152601260205260409020805460ff191660011790555050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118eb903390899088908890600401612188565b602060405180830381600087803b15801561190557600080fd5b505af1925050508015611935575060408051601f3d908101601f191682019092526119329181019061200f565b60015b611990573d808015611963576040519150601f19603f3d011682016040523d82523d6000602084013e611968565b606091505b508051611988576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610832906122aa565b6060816119e15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0b57806119f5816122e5565b9150611a049050600a83612234565b91506119e5565b60008167ffffffffffffffff811115611a2657611a26612356565b6040519080825280601f01601f191660200182016040528015611a50576020820181803683370190505b5090505b84156119a657611a65600183612267565b9150611a72600a86612300565b611a7d90603061221c565b60f81b818381518110611a9257611a92612340565b60200101906001600160f81b031916908160001a905350611ab4600a86612234565b9450611a54565b611ac58383611b3e565b6001600160a01b0383163b15610c75576000548281035b611aef60008683806001019450866118b6565b611b0c576040516368d2bf6b60e11b815260040160405180910390fd5b818110611adc578160005414611b2157600080fd5b5050505050565b600082611b358584611c35565b14949350505050565b60005481611b5f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611c0e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611bd6565b5081611c2c57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081815b8451811015611c7a57611c6682868381518110611c5957611c59612340565b6020026020010151611c82565b915080611c72816122e5565b915050611c3a565b509392505050565b6000818310611c9e576000828152602084905260409020611496565b5060009182526020526040902090565b828054611cba906122aa565b90600052602060002090601f016020900481019282611cdc5760008555611d22565b82601f10611cf557805160ff1916838001178555611d22565b82800160010185558215611d22579182015b82811115611d22578251825591602001919060010190611d07565b50611d2e929150611d32565b5090565b5b80821115611d2e5760008155600101611d33565b600067ffffffffffffffff80841115611d6257611d62612356565b604051601f8501601f19908116603f01168101908282118183101715611d8a57611d8a612356565b81604052809350858152868686011115611da357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dd457600080fd5b919050565b80358015158114611dd457600080fd5b600060208284031215611dfb57600080fd5b61149682611dbd565b60008060408385031215611e1757600080fd5b611e2083611dbd565b9150611e2e60208401611dbd565b90509250929050565b600080600060608486031215611e4c57600080fd5b611e5584611dbd565b9250611e6360208501611dbd565b9150604084013590509250925092565b60008060008060808587031215611e8957600080fd5b611e9285611dbd565b9350611ea060208601611dbd565b925060408501359150606085013567ffffffffffffffff811115611ec357600080fd5b8501601f81018713611ed457600080fd5b611ee387823560208401611d47565b91505092959194509250565b60008060408385031215611f0257600080fd5b611f0b83611dbd565b9150611e2e60208401611dd9565b60008060408385031215611f2c57600080fd5b611f3583611dbd565b946020939093013593505050565b600080600060408486031215611f5857600080fd5b833567ffffffffffffffff80821115611f7057600080fd5b818601915086601f830112611f8457600080fd5b813581811115611f9357600080fd5b8760208260051b8501011115611fa857600080fd5b6020928301989097509590910135949350505050565b600060208284031215611fd057600080fd5b61149682611dd9565b600060208284031215611feb57600080fd5b5035919050565b60006020828403121561200457600080fd5b81356114968161236c565b60006020828403121561202157600080fd5b81516114968161236c565b60006020828403121561203e57600080fd5b813567ffffffffffffffff81111561205557600080fd5b8201601f8101841361206657600080fd5b6119a684823560208401611d47565b6000806040838503121561208857600080fd5b82359150611e2e60208401611dbd565b600081518084526120b081602086016020860161227e565b601f01601f19169290920160200192915050565b6000845160206120d78285838a0161227e565b8551918401916120ea8184848a0161227e565b8554920191600090600181811c908083168061210757607f831692505b85831081141561212557634e487b7160e01b85526022600452602485fd5b808015612139576001811461214a57612177565b60ff19851688528388019550612177565b60008b81526020902060005b8581101561216f5781548a820152908401908801612156565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121bb90830184612098565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121fd578351835292840192918401916001016121e1565b50909695505050505050565b6020815260006114966020830184612098565b6000821982111561222f5761222f612314565b500190565b6000826122435761224361232a565b500490565b600081600019048311821515161561226257612262612314565b500290565b60008282101561227957612279612314565b500390565b60005b83811015612299578181015183820152602001612281565b83811115610f8b5750506000910152565b600181811c908216806122be57607f821691505b602082108114156122df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122f9576122f9612314565b5060010190565b60008261230f5761230f61232a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461160657600080fdfea26469706673582212200667e05c5ffe08793bddb3d9b45a3f0f842b10275392d0136420a06b0e93df4c64736f6c63430008070033

Deployed Bytecode Sourcemap

99050:5701:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18470:639;;;;;;;;;;-1:-1:-1;18470:639:0;;;;;:::i;:::-;;:::i;:::-;;;9179:14:1;;9172:22;9154:41;;9142:2;9127:18;18470:639:0;;;;;;;;19372:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25855:218::-;;;;;;;;;;-1:-1:-1;25855:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7840:32:1;;;7822:51;;7810:2;7795:18;25855:218:0;7676:203:1;25296:400:0;;;;;;;;;;-1:-1:-1;25296:400:0;;;;;:::i;:::-;;:::i;:::-;;99415:32;;;;;;;;;;;;;;;;;;;9352:25:1;;;9340:2;9325:18;99415:32:0;9206:177:1;104156:100:0;;;;;;;;;;-1:-1:-1;104156:100:0;;;;;:::i;:::-;;:::i;104262:77::-;;;;;;;;;;-1:-1:-1;104262:77:0;;;;;:::i;:::-;;:::i;15123:323::-;;;;;;;;;;-1:-1:-1;101216:1:0;15397:12;15184:7;15381:13;:28;-1:-1:-1;;15381:46:0;15123:323;;29562:2817;;;;;;;;;;-1:-1:-1;29562:2817:0;;;;;:::i;:::-;;:::i;104345:291::-;;;;;;;;;;;;;:::i;32475:185::-;;;;;;;;;;-1:-1:-1;32475:185:0;;;;;:::i;:::-;;:::i;101815:635::-;;;;;;;;;;-1:-1:-1;101815:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;103043:74::-;;;;;;;;;;-1:-1:-1;103043:74:0;;;;;:::i;:::-;;:::i;100471:649::-;;;;;;:::i;:::-;;:::i;103259:132::-;;;;;;;;;;-1:-1:-1;103259:132:0;;;;;:::i;:::-;;:::i;99565:28::-;;;;;;;;;;-1:-1:-1;99565:28:0;;;;;;;;;;;99242:33;;;;;;;;;;;;;:::i;100226:95::-;;;;;;;;;;-1:-1:-1;100226:95:0;;;;;:::i;:::-;;:::i;99534:26::-;;;;;;;;;;-1:-1:-1;99534:26:0;;;;;;;;99209:28;;;;;;;;;;;;;:::i;20765:152::-;;;;;;;;;;-1:-1:-1;20765:152:0;;;;;:::i;:::-;;:::i;16307:233::-;;;;;;;;;;-1:-1:-1;16307:233:0;;;;;:::i;:::-;;:::i;66324:103::-;;;;;;;;;;;;;:::i;99741:32::-;;;;;;;;;;-1:-1:-1;99741:32:0;;;;;;;;103397:100;;;;;;;;;;-1:-1:-1;103397:100:0;;;;;:::i;:::-;;:::i;99781:40::-;;;;;;;;;;;;;;;;65676:87;;;;;;;;;;-1:-1:-1;65749:6:0;;-1:-1:-1;;;;;65749:6:0;65676:87;;101233:415;;;;;;:::i;:::-;;:::i;99489:38::-;;;;;;;;;;;;;;;;19548:104;;;;;;;;;;;;;:::i;26413:308::-;;;;;;;;;;-1:-1:-1;26413:308:0;;;;;:::i;:::-;;:::i;103505:89::-;;;;;;;;;;-1:-1:-1;103505:89:0;;;;;:::i;:::-;;:::i;99280:31::-;;;;;;;;;;;;;:::i;103123:130::-;;;;;;;;;;-1:-1:-1;103123:130:0;;;;;:::i;:::-;;:::i;33258:399::-;;;;;;;;;;-1:-1:-1;33258:399:0;;;;;:::i;:::-;;:::i;102456:494::-;;;;;;;;;;-1:-1:-1;102456:494:0;;;;;:::i;:::-;;:::i;99452:32::-;;;;;;;;;;;;;;;;103600:106;;;;;;;;;;-1:-1:-1;103600:106:0;;;;;:::i;:::-;;:::i;99653:48::-;;;;;;;;;;-1:-1:-1;99653:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;102956:81;;;;;;;;;;-1:-1:-1;102956:81:0;;;;;:::i;:::-;;:::i;26878:164::-;;;;;;;;;;-1:-1:-1;26878:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26999:25:0;;;26975:4;26999:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26878:164;99318:88;;;;;;;;;;;;;;;;101654:155;;;;;;;;;;-1:-1:-1;101654:155:0;;;;;:::i;:::-;;:::i;66582:201::-;;;;;;;;;;-1:-1:-1;66582:201:0;;;;;:::i;:::-;;:::i;18470:639::-;18555:4;-1:-1:-1;;;;;;;;;18879:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18956:25:0;;;18879:102;:179;;;-1:-1:-1;;;;;;;;;;19033:25:0;;;18879:179;18859:199;18470:639;-1:-1:-1;;18470:639:0:o;19372:100::-;19426:13;19459:5;19452:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19372:100;:::o;25855:218::-;25931:7;25956:16;25964:7;25956;:16::i;:::-;25951:64;;25981:34;;-1:-1:-1;;;25981:34:0;;;;;;;;;;;25951:64;-1:-1:-1;26035:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26035:30:0;;25855:218::o;25296:400::-;25377:13;25393:16;25401:7;25393;:16::i;:::-;25377:32;-1:-1:-1;49153:10:0;-1:-1:-1;;;;;25426:28:0;;;25422:175;;25474:44;25491:5;49153:10;26878:164;:::i;25474:44::-;25469:128;;25546:35;;-1:-1:-1;;;25546:35:0;;;;;;;;;;;25469:128;25609:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25609:35:0;-1:-1:-1;;;;;25609:35:0;;;;;;;;;25660:28;;25609:24;;25660:28;;;;;;;25366:330;25296:400;;:::o;104156:100::-;65562:13;:11;:13::i;:::-;104228:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;104156:100:::0;:::o;104262:77::-;65562:13;:11;:13::i;:::-;104318:6:::1;:15:::0;;-1:-1:-1;;104318:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;104262:77::o;29562:2817::-;29696:27;29726;29745:7;29726:18;:27::i;:::-;29696:57;;29811:4;-1:-1:-1;;;;;29770:45:0;29786:19;-1:-1:-1;;;;;29770:45:0;;29766:86;;29824:28;;-1:-1:-1;;;29824:28:0;;;;;;;;;;;29766:86;29866:27;28676:24;;;:15;:24;;;;;28898:26;;49153:10;28301:30;;;-1:-1:-1;;;;;27994:28:0;;28279:20;;;28276:56;30052:180;;30145:43;30162:4;49153:10;26878:164;:::i;30145:43::-;30140:92;;30197:35;;-1:-1:-1;;;30197:35:0;;;;;;;;;;;30140:92;-1:-1:-1;;;;;30249:16:0;;30245:52;;30274:23;;-1:-1:-1;;;30274:23:0;;;;;;;;;;;30245:52;30446:15;30443:160;;;30586:1;30565:19;30558:30;30443:160;-1:-1:-1;;;;;30983:24:0;;;;;;;:18;:24;;;;;;30981:26;;-1:-1:-1;;30981:26:0;;;31052:22;;;;;;;;;31050:24;;-1:-1:-1;31050:24:0;;;24154:11;24129:23;24125:41;24112:63;-1:-1:-1;;;24112:63:0;31345:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;31640:47:0;;31636:627;;31745:1;31735:11;;31713:19;31868:30;;;:17;:30;;;;;;31864:384;;32006:13;;31991:11;:28;31987:242;;32153:30;;;;:17;:30;;;;;:52;;;31987:242;31694:569;31636:627;32310:7;32306:2;-1:-1:-1;;;;;32291:27:0;32300:4;-1:-1:-1;;;;;32291:27:0;;;;;;;;;;;29685:2694;;;29562:2817;;;:::o;104345:291::-;65562:13;:11;:13::i;:::-;104394:7:::1;104415:42;104500:3;104471:26;:21;104495:2;104471:26;:::i;:::-;:32;;;;:::i;:::-;104407:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104393:115;;;104523:2;104515:11;;;::::0;::::1;;104540:7;104561;65749:6:::0;;-1:-1:-1;;;;;65749:6:0;;65676:87;104561:7:::1;-1:-1:-1::0;;;;;104553:21:0::1;104582;104553:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104539:69;;;104623:2;104615:11;;;::::0;::::1;32475:185:::0;32613:39;32630:4;32636:2;32640:7;32613:39;;;;;;;;;;;;:16;:39::i;:::-;32475:185;;;:::o;101815:635::-;101890:16;101918:23;101944:17;101954:6;101944:9;:17::i;:::-;101918:43;;101968:30;102015:15;102001:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;102001:30:0;-1:-1:-1;101968:63:0;-1:-1:-1;102063:1:0;102038:22;102107:309;102132:15;102114;:33;:64;;;;;102169:9;;102151:14;:27;;102114:64;102107:309;;;102189:25;102217:23;102225:14;102217:7;:23::i;:::-;102189:51;;102276:6;-1:-1:-1;;;;;102255:27:0;:17;-1:-1:-1;;;;;102255:27:0;;102251:131;;;102328:14;102295:13;102309:15;102295:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;102355:17;;;;:::i;:::-;;;;102251:131;102392:16;;;;:::i;:::-;;;;102180:236;102107:309;;;-1:-1:-1;102431:13:0;;101815:635;-1:-1:-1;;;;101815:635:0:o;103043:74::-;65562:13;:11;:13::i;:::-;103099:4:::1;:12:::0;103043:74::o;100471:649::-;100569:11;100059:1;100045:11;:15;:52;;;;;100079:18;;100064:11;:33;;100045:52;100037:85;;;;-1:-1:-1;;;100037:85:0;;10626:2:1;100037:85:0;;;10608:21:1;10665:2;10645:18;;;10638:30;-1:-1:-1;;;10684:18:1;;;10677:50;10744:18;;100037:85:0;;;;;;;;;100171:9;;100156:11;100137:16;:6;60550:14;;60458:114;100137:16;:30;;;;:::i;:::-;:43;;100129:76;;;;-1:-1:-1;;;100129:76:0;;13489:2:1;100129:76:0;;;13471:21:1;13528:2;13508:18;;;13501:30;-1:-1:-1;;;13547:18:1;;;13540:50;13607:18;;100129:76:0;13287:344:1;100129:76:0;100598:6:::1;::::0;::::1;;100597:7;100589:43;;;::::0;-1:-1:-1;;;100589:43:0;;12021:2:1;100589:43:0::1;::::0;::::1;12003:21:1::0;12060:2;12040:18;;;12033:30;12099:25;12079:18;;;12072:53;12142:18;;100589:43:0::1;11819:347:1::0;100589:43:0::1;100727:12;::::0;::::1;;100723:392;;;100776:11;100769:4;;:18;;;;:::i;:::-;100756:9;:31;;100748:63;;;::::0;-1:-1:-1;;;100748:63:0;;14191:2:1;100748:63:0::1;::::0;::::1;14173:21:1::0;14230:2;14210:18;;;14203:30;-1:-1:-1;;;14249:18:1;;;14242:49;14308:18;;100748:63:0::1;13989:343:1::0;100748:63:0::1;100818:34;100828:10;100840:11;100818:9;:34::i;:::-;100723:392;;;100899:20;;100884:11;:35;;100876:63;;;::::0;-1:-1:-1;;;100876:63:0;;13145:2:1;100876:63:0::1;::::0;::::1;13127:21:1::0;13184:2;13164:18;;;13157:30;-1:-1:-1;;;13203:18:1;;;13196:45;13258:18;;100876:63:0::1;12943:339:1::0;100876:63:0::1;100950:38;100964:12;;100977:10;100950:13;:38::i;:::-;101027:11;101020:4;;:18;;;;:::i;:::-;101007:9;:31;;100999:63;;;::::0;-1:-1:-1;;;100999:63:0;;14191:2:1;100999:63:0::1;::::0;::::1;14173:21:1::0;14230:2;14210:18;;;14203:30;-1:-1:-1;;;14249:18:1;;;14242:49;14308:18;;100999:63:0::1;13989:343:1::0;100999:63:0::1;101073:34;101083:10;101095:11;101073:9;:34::i;:::-;100471:649:::0;;;;:::o;103259:132::-;65562:13;:11;:13::i;:::-;103347:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;99242:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;100226:95::-;65562:13;:11;:13::i;:::-;100298:4:::1;:18:::0;100226:95::o;99209:28::-;;;;;;;:::i;20765:152::-;20837:7;20880:27;20899:7;20880:18;:27::i;16307:233::-;16379:7;-1:-1:-1;;;;;16403:19:0;;16399:60;;16431:28;;-1:-1:-1;;;16431:28:0;;;;;;;;;;;16399:60;-1:-1:-1;;;;;;16477:25:0;;;;;:18;:25;;;;;;10466:13;16477:55;;16307:233::o;66324:103::-;65562:13;:11;:13::i;:::-;66389:30:::1;66416:1;66389:18;:30::i;:::-;66324:103::o:0;103397:100::-;65562:13;:11;:13::i;:::-;103469:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;101233:415::-:0;101303:9;101295:4;;:17;101287:54;;;;-1:-1:-1;;;101287:54:0;;13838:2:1;101287:54:0;;;13820:21:1;13877:2;13857:18;;;13850:30;13916:26;13896:18;;;13889:54;13960:18;;101287:54:0;13636:348:1;101287:54:0;101380:9;;101356:6;60550:14;101356:20;;101375:1;101356:20;:::i;:::-;:33;;101348:58;;;;-1:-1:-1;;;101348:58:0;;11319:2:1;101348:58:0;;;11301:21:1;11358:2;11338:18;;;11331:30;-1:-1:-1;;;11377:18:1;;;11370:42;11429:18;;101348:58:0;11117:336:1;101348:58:0;101435:42;101421:10;:56;101413:118;;;;-1:-1:-1;;;101413:118:0;;9814:2:1;101413:118:0;;;9796:21:1;9853:2;9833:18;;;9826:30;9892:34;9872:18;;;9865:62;-1:-1:-1;;;9943:18:1;;;9936:34;9987:19;;101413:118:0;9612:400:1;101413:118:0;101540:18;:6;60669:19;;60687:1;60669:19;;;60580:127;101540:18;101565;101586:16;:6;60550:14;;60458:114;101586:16;101565:37;;101616:26;101626:3;101631:10;101616:9;:26::i;19548:104::-;19604:13;19637:7;19630:14;;;;;:::i;26413:308::-;-1:-1:-1;;;;;26512:31:0;;49153:10;26512:31;26508:61;;;26552:17;;-1:-1:-1;;;26552:17:0;;;;;;;;;;;26508:61;49153:10;26582:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26582:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26582:60:0;;;;;;;;;;26658:55;;9154:41:1;;;26582:49:0;;49153:10;26658:55;;9127:18:1;26658:55:0;;;;;;;26413:308;;:::o;103505:89::-;65562:13;:11;:13::i;:::-;103568:12:::1;:20:::0;;-1:-1:-1;;103568:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;103505:89::o;99280:31::-;;;;;;;:::i;103123:130::-;65562:13;:11;:13::i;:::-;103207:18:::1;:40:::0;103123:130::o;33258:399::-;33425:31;33438:4;33444:2;33448:7;33425:12;:31::i;:::-;-1:-1:-1;;;;;33471:14:0;;;:19;33467:183;;33510:56;33541:4;33547:2;33551:7;33560:5;33510:30;:56::i;:::-;33505:145;;33594:40;;-1:-1:-1;;;33594:40:0;;;;;;;;;;;102456:494;102555:13;102596:17;102604:8;102596:7;:17::i;:::-;102580:98;;;;-1:-1:-1;;;102580:98:0;;12373:2:1;102580:98:0;;;12355:21:1;12412:2;12392:18;;;12385:30;12451:34;12431:18;;;12424:62;-1:-1:-1;;;12502:18:1;;;12495:45;12557:19;;102580:98:0;12171:411:1;102580:98:0;102691:8;;;;;;;102687:64;;102726:17;102719:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102456:494;;;:::o;102687:64::-;102759:28;102790:10;:8;:10::i;:::-;102759:41;;102845:1;102820:14;102814:28;:32;:130;;;;;;;;;;;;;;;;;102882:14;102898:19;:8;:17;:19::i;:::-;102919:9;102865:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;102814:130;102807:137;102456:494;-1:-1:-1;;;102456:494:0:o;103600:106::-;65562:13;:11;:13::i;:::-;103673:20:::1;:27:::0;103600:106::o;102956:81::-;65562:13;:11;:13::i;:::-;103014:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;103014:17:0;;::::1;::::0;;;::::1;::::0;;102956:81::o;101654:155::-;101740:11;100059:1;100045:11;:15;:52;;;;;100079:18;;100064:11;:33;;100045:52;100037:85;;;;-1:-1:-1;;;100037:85:0;;10626:2:1;100037:85:0;;;10608:21:1;10665:2;10645:18;;;10638:30;-1:-1:-1;;;10684:18:1;;;10677:50;10744:18;;100037:85:0;10424:344:1;100037:85:0;100171:9;;100156:11;100137:16;:6;60550:14;;60458:114;100137:16;:30;;;;:::i;:::-;:43;;100129:76;;;;-1:-1:-1;;;100129:76:0;;13489:2:1;100129:76:0;;;13471:21:1;13528:2;13508:18;;;13501:30;-1:-1:-1;;;13547:18:1;;;13540:50;13607:18;;100129:76:0;13287:344:1;100129:76:0;65562:13:::1;:11;:13::i;:::-;101770:33:::2;101780:9;101791:11;101770:9;:33::i;66582:201::-:0;65562:13;:11;:13::i;:::-;-1:-1:-1;;;;;66671:22:0;::::1;66663:73;;;::::0;-1:-1:-1;;;66663:73:0;;10219:2:1;66663:73:0::1;::::0;::::1;10201:21:1::0;10258:2;10238:18;;;10231:30;10297:34;10277:18;;;10270:62;-1:-1:-1;;;10348:18:1;;;10341:36;10394:19;;66663:73:0::1;10017:402:1::0;66663:73:0::1;66747:28;66766:8;66747:18;:28::i;:::-;66582:201:::0;:::o;27300:282::-;27365:4;27421:7;101216:1;27402:26;;:66;;;;;27455:13;;27445:7;:23;27402:66;:153;;;;-1:-1:-1;;27506:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27506:44:0;:49;;27300:282::o;65841:132::-;65749:6;;-1:-1:-1;;;;;65749:6:0;49153:10;65905:23;65897:68;;;;-1:-1:-1;;;65897:68:0;;11660:2:1;65897:68:0;;;11642:21:1;;;11679:18;;;11672:30;11738:34;11718:18;;;11711:62;11790:18;;65897:68:0;11458:356:1;21920:1275:0;21987:7;22022;;101216:1;22071:23;22067:1061;;22124:13;;22117:4;:20;22113:1015;;;22162:14;22179:23;;;:17;:23;;;;;;-1:-1:-1;;;22268:24:0;;22264:845;;22933:113;22940:11;22933:113;;-1:-1:-1;;;23011:6:0;22993:25;;;;:17;:25;;;;;;22933:113;;22264:845;22139:989;22113:1015;23156:31;;-1:-1:-1;;;23156:31:0;;;;;;;;;;;42898:112;42975:27;42985:2;42989:8;42975:27;;;;;;;;;;;;:9;:27::i;103716:434::-;-1:-1:-1;;;;;103816:23:0;;;;;;:16;:23;;;;;;;;103815:24;103807:64;;;;-1:-1:-1;;;103807:64:0;;12789:2:1;103807:64:0;;;12771:21:1;12828:2;12808:18;;;12801:30;12867:29;12847:18;;;12840:57;12914:18;;103807:64:0;12587:351:1;103807:64:0;103943:23;;-1:-1:-1;;5849:2:1;5845:15;;;5841:53;103943:23:0;;;5829:66:1;103918:12:0;;5911::1;;103943:23:0;;;;;;;;;;;;103933:34;;;;;;103918:49;;103982:45;104001:12;;103982:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;104015:4:0;;;-1:-1:-1;104021:4:0;;-1:-1:-1;103982:18:0;:45::i;:::-;103974:72;;;;-1:-1:-1;;;103974:72:0;;10975:2:1;103974:72:0;;;10957:21:1;11014:2;10994:18;;;10987:30;-1:-1:-1;;;11033:18:1;;;11026:45;11088:18;;103974:72:0;10773:339:1;103974:72:0;-1:-1:-1;;;;;;104108:23:0;;;;;:16;:23;;;;;:29;;-1:-1:-1;;104108:29:0;104133:4;104108:29;;;-1:-1:-1;;103716:434:0:o;66943:191::-;67036:6;;;-1:-1:-1;;;;;67053:17:0;;;-1:-1:-1;;;;;;67053:17:0;;;;;;;67086:40;;67036:6;;;67053:17;67036:6;;67086:40;;67017:16;;67086:40;67006:128;66943:191;:::o;35741:716::-;35925:88;;-1:-1:-1;;;35925:88:0;;35904:4;;-1:-1:-1;;;;;35925:45:0;;;;;:88;;49153:10;;35992:4;;35998:7;;36007:5;;35925:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35925:88:0;;;;;;;;-1:-1:-1;;35925:88:0;;;;;;;;;;;;:::i;:::-;;;35921:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36208:13:0;;36204:235;;36254:40;;-1:-1:-1;;;36254:40:0;;;;;;;;;;;36204:235;36397:6;36391:13;36382:6;36378:2;36374:15;36367:38;35921:529;-1:-1:-1;;;;;;36084:64:0;-1:-1:-1;;;36084:64:0;;-1:-1:-1;35921:529:0;35741:716;;;;;;:::o;104644:104::-;104704:13;104733:9;104726:16;;;;;:::i;61481:723::-;61537:13;61758:10;61754:53;;-1:-1:-1;;61785:10:0;;;;;;;;;;;;-1:-1:-1;;;61785:10:0;;;;;61481:723::o;61754:53::-;61832:5;61817:12;61873:78;61880:9;;61873:78;;61906:8;;;;:::i;:::-;;-1:-1:-1;61929:10:0;;-1:-1:-1;61937:2:0;61929:10;;:::i;:::-;;;61873:78;;;61961:19;61993:6;61983:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61983:17:0;;61961:39;;62011:154;62018:10;;62011:154;;62045:11;62055:1;62045:11;;:::i;:::-;;-1:-1:-1;62114:10:0;62122:2;62114:5;:10;:::i;:::-;62101:24;;:2;:24;:::i;:::-;62088:39;;62071:6;62078;62071:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;62071:56:0;;;;;;;;-1:-1:-1;62142:11:0;62151:2;62142:11;;:::i;:::-;;;62011:154;;42125:689;42256:19;42262:2;42266:8;42256:5;:19::i;:::-;-1:-1:-1;;;;;42317:14:0;;;:19;42313:483;;42357:11;42371:13;42419:14;;;42452:233;42483:62;42522:1;42526:2;42530:7;;;;;;42539:5;42483:30;:62::i;:::-;42478:167;;42581:40;;-1:-1:-1;;;42581:40:0;;;;;;;;;;;42478:167;42680:3;42672:5;:11;42452:233;;42767:3;42750:13;;:20;42746:34;;42772:8;;;42746:34;42338:458;;42125:689;;;:::o;52080:190::-;52205:4;52258;52229:25;52242:5;52249:4;52229:12;:25::i;:::-;:33;;52080:190;-1:-1:-1;;;;52080:190:0:o;36919:2454::-;36992:20;37015:13;37043;37039:44;;37065:18;;-1:-1:-1;;;37065:18:0;;;;;;;;;;;37039:44;-1:-1:-1;;;;;37571:22:0;;;;;;:18;:22;;;;10604:2;37571:22;;;:71;;37609:32;37597:45;;37571:71;;;37885:31;;;:17;:31;;;;;-1:-1:-1;24585:15:0;;24559:24;24555:46;24154:11;24129:23;24125:41;24122:52;24112:63;;37885:173;;38120:23;;;;37885:31;;37571:22;;38619:25;37571:22;;38472:335;38887:1;38873:12;38869:20;38827:346;38928:3;38919:7;38916:16;38827:346;;39146:7;39136:8;39133:1;39106:25;39103:1;39100;39095:59;38981:1;38968:15;38827:346;;;-1:-1:-1;39206:13:0;39202:45;;39228:19;;-1:-1:-1;;;39228:19:0;;;;;;;;;;;39202:45;39264:13;:19;-1:-1:-1;32475:185:0;;;:::o;52947:296::-;53030:7;53073:4;53030:7;53088:118;53112:5;:12;53108:1;:16;53088:118;;;53161:33;53171:12;53185:5;53191:1;53185:8;;;;;;;;:::i;:::-;;;;;;;53161:9;:33::i;:::-;53146:48;-1:-1:-1;53126:3:0;;;;:::i;:::-;;;;53088:118;;;-1:-1:-1;53223:12:0;52947:296;-1:-1:-1;;;52947:296:0:o;59154:149::-;59217:7;59248:1;59244;:5;:51;;59379:13;59473:15;;;59509:4;59502:15;;;59556:4;59540:21;;59244:51;;;-1:-1:-1;59379:13:0;59473:15;;;59509:4;59502:15;59556:4;59540:21;;;59154:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;5179:254::-;5247:6;5255;5308:2;5296:9;5287:7;5283:23;5279:32;5276:52;;;5324:1;5321;5314:12;5276:52;5360:9;5347:23;5337:33;;5389:38;5423:2;5412:9;5408:18;5389:38;:::i;5438:257::-;5479:3;5517:5;5511:12;5544:6;5539:3;5532:19;5560:63;5616:6;5609:4;5604:3;5600:14;5593:4;5586:5;5582:16;5560:63;:::i;:::-;5677:2;5656:15;-1:-1:-1;;5652:29:1;5643:39;;;;5684:4;5639:50;;5438:257;-1:-1:-1;;5438:257:1:o;5934:1527::-;6158:3;6196:6;6190:13;6222:4;6235:51;6279:6;6274:3;6269:2;6261:6;6257:15;6235:51;:::i;:::-;6349:13;;6308:16;;;;6371:55;6349:13;6308:16;6393:15;;;6371:55;:::i;:::-;6515:13;;6448:20;;;6488:1;;6575;6597:18;;;;6650;;;;6677:93;;6755:4;6745:8;6741:19;6729:31;;6677:93;6818:2;6808:8;6805:16;6785:18;6782:40;6779:167;;;-1:-1:-1;;;6845:33:1;;6901:4;6898:1;6891:15;6931:4;6852:3;6919:17;6779:167;6962:18;6989:110;;;;7113:1;7108:328;;;;6955:481;;6989:110;-1:-1:-1;;7024:24:1;;7010:39;;7069:20;;;;-1:-1:-1;6989:110:1;;7108:328;14592:1;14585:14;;;14629:4;14616:18;;7203:1;7217:169;7231:8;7228:1;7225:15;7217:169;;;7313:14;;7298:13;;;7291:37;7356:16;;;;7248:10;;7217:169;;;7221:3;;7417:8;7410:5;7406:20;7399:27;;6955:481;-1:-1:-1;7452:3:1;;5934:1527;-1:-1:-1;;;;;;;;;;;5934:1527:1:o;7884:488::-;-1:-1:-1;;;;;8153:15:1;;;8135:34;;8205:15;;8200:2;8185:18;;8178:43;8252:2;8237:18;;8230:34;;;8300:3;8295:2;8280:18;;8273:31;;;8078:4;;8321:45;;8346:19;;8338:6;8321:45;:::i;:::-;8313:53;7884:488;-1:-1:-1;;;;;;7884:488:1:o;8377:632::-;8548:2;8600:21;;;8670:13;;8573:18;;;8692:22;;;8519:4;;8548:2;8771:15;;;;8745:2;8730:18;;;8519:4;8814:169;8828:6;8825:1;8822:13;8814:169;;;8889:13;;8877:26;;8958:15;;;;8923:12;;;;8850:1;8843:9;8814:169;;;-1:-1:-1;9000:3:1;;8377:632;-1:-1:-1;;;;;;8377:632:1:o;9388:219::-;9537:2;9526:9;9519:21;9500:4;9557:44;9597:2;9586:9;9582:18;9574:6;9557:44;:::i;14645:128::-;14685:3;14716:1;14712:6;14709:1;14706:13;14703:39;;;14722:18;;:::i;:::-;-1:-1:-1;14758:9:1;;14645:128::o;14778:120::-;14818:1;14844;14834:35;;14849:18;;:::i;:::-;-1:-1:-1;14883:9:1;;14778:120::o;14903:168::-;14943:7;15009:1;15005;15001:6;14997:14;14994:1;14991:21;14986:1;14979:9;14972:17;14968:45;14965:71;;;15016:18;;:::i;:::-;-1:-1:-1;15056:9:1;;14903:168::o;15076:125::-;15116:4;15144:1;15141;15138:8;15135:34;;;15149:18;;:::i;:::-;-1:-1:-1;15186:9:1;;15076:125::o;15206:258::-;15278:1;15288:113;15302:6;15299:1;15296:13;15288:113;;;15378:11;;;15372:18;15359:11;;;15352:39;15324:2;15317:10;15288:113;;;15419:6;15416:1;15413:13;15410:48;;;-1:-1:-1;;15454:1:1;15436:16;;15429:27;15206:258::o;15469:380::-;15548:1;15544:12;;;;15591;;;15612:61;;15666:4;15658:6;15654:17;15644:27;;15612:61;15719:2;15711:6;15708:14;15688:18;15685:38;15682:161;;;15765:10;15760:3;15756:20;15753:1;15746:31;15800:4;15797:1;15790:15;15828:4;15825:1;15818:15;15682:161;;15469:380;;;:::o;15854:135::-;15893:3;-1:-1:-1;;15914:17:1;;15911:43;;;15934:18;;:::i;:::-;-1:-1:-1;15981:1:1;15970:13;;15854:135::o;15994:112::-;16026:1;16052;16042:35;;16057:18;;:::i;:::-;-1:-1:-1;16091:9:1;;15994:112::o;16111:127::-;16172:10;16167:3;16163:20;16160:1;16153:31;16203:4;16200:1;16193:15;16227:4;16224:1;16217:15;16243:127;16304:10;16299:3;16295:20;16292:1;16285:31;16335:4;16332:1;16325:15;16359:4;16356:1;16349:15;16375:127;16436:10;16431:3;16427:20;16424:1;16417:31;16467:4;16464:1;16457:15;16491:4;16488:1;16481:15;16507:127;16568:10;16563:3;16559:20;16556:1;16549:31;16599:4;16596:1;16589:15;16623:4;16620:1;16613:15;16639:131;-1:-1:-1;;;;;;16713:32:1;;16703:43;;16693:71;;16760:1;16757;16750:12

Swarm Source

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