ETH Price: $3,393.09 (+6.31%)
Gas: 26 Gwei

Token

The #STONE (STONE)
 

Overview

Max Total Supply

446 STONE

Holders

100

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 STONE
0xea8e50d517c6a4b7d1c1c68bfe6f7d241a8cd12f
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:
STONE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-25
*/

/*
 _____ _              _  _   _____ _____ _____ _   _  _____ 
|_   _| |           _| || |_/  ___|_   _|  _  | \ | ||  ___|
  | | | |__   ___  |_  __  _\ `--.  | | | | | |  \| || |__  
  | | | '_ \ / _ \  _| || |_ `--. \ | | | | | | . ` ||  __| 
  | | | | | |  __/ |_  __  _/\__/ / | | \ \_/ / |\  || |___ 
  \_/ |_| |_|\___|   |_||_| \____/  \_/  \___/\_| \_/\____/   
                                                                                                                     
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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/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: lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}


pragma solidity ^0.8.18;


contract STONE is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard {
    uint256 MAX_SUPPLY = 1111;
    //Declaring contants for public sale
    uint256 public PUBLIC_MAX_MINTS = 10;
    //Prices for sales
    uint256 public publicSalePrice = 0.01 ether;
    //bool for sale states
    bool public isPublicActive;
    string public saleState = "Not Active";

    //base URI
    string public baseURI = "ipfs://QmS96DVfCNhnkqPoPb3efutyvvvytimbT3nBaDTvHyXxYY/";
    string public baseExtension = ".json";
    uint256 public currentId = 1;

    //Keeping track of amount caller has minted.
    mapping(address => uint) public amountMinted;

    address private devAddress;

    constructor() ERC721A("The #STONE", "STONE") 
    {
        devAddress = msg.sender;
    }

    function mint(uint256 quantity) external payable nonReentrant{
        require(isPublicActive, "Public sale is not active");//checking sale state
        //Not exceeding supply
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        //MAX MINTS
        require(amountMinted[msg.sender] + quantity <= PUBLIC_MAX_MINTS, "Exceeded max amount of mints per wallet");
        require(msg.value >= publicSalePrice * quantity, "Not enough ether sent");
        amountMinted[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);    
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseURI = _baseUri;
    }

    function togglePublic() external onlyOwnerOrDev{
        isPublicActive = !isPublicActive;
        saleState = "Public";
    }

    function getSaleState() external view returns (string memory){
        if(isPublicActive){
            return("Public");
        }else{
            return("Not Active");
        }
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }


    function withdraw() external onlyDev nonReentrant{
        (bool os, ) = payable(devAddress).call{value: address(this).balance}('');
        require(os);
    }

    function amountMintedTotal() public view returns (uint256) {
        uint256 curTotalSupply = totalSupply();
        return curTotalSupply;
    } 

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

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

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

    //in case eth does weird things with price
    function setPrice(uint256 _publicPrice) external onlyOwnerOrDev {
        publicSalePrice = _publicPrice;
    }

    function setMaxMintPerPublic(uint amount) external onlyOwnerOrDev{
        PUBLIC_MAX_MINTS = amount;
    }

    function setBaseURI(string memory _base) public onlyOwnerOrDev {
        baseURI = _base;
    }

    modifier onlyOwnerOrDev() {
        require(msg.sender == owner() || msg.sender == devAddress, "Only owner or dev can call this function");
    _;
    }

    modifier onlyDev() {
        require(msg.sender == devAddress, "Only dev can call this function");
    _;
    }
    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountMintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","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":"isPublicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxMintPerPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610457600a908155600b819055662386f26fc10000600c5560c06040526080908152694e6f742041637469766560b01b60a052600e9062000041908262000380565b50604051806060016040528060368152602001620020ad60369139600f906200006b908262000380565b50604080518082019091526005815264173539b7b760d91b602082015260109062000097908262000380565b506001601155348015620000a9575f80fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a815260200169546865202353544f4e4560b01b8152506040518060400160405280600581526020016453544f4e4560d81b815250816002908162000113919062000380565b50600362000122828262000380565b5060015f5550506daaeb6d7670e522a718067333cd4e3b1562000264578015620001b757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b5f604051808303815f87803b1580156200019a575f80fd5b505af1158015620001ad573d5f803e3d5ffd5b5050505062000264565b6001600160a01b03821615620002085760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000182565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e486906024015f604051808303815f87803b1580156200024c575f80fd5b505af11580156200025f573d5f803e3d5ffd5b505050505b50620002729050336200028f565b6001600955601380546001600160a01b0319163317905562000448565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200030957607f821691505b6020821081036200032857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200037b575f81815260208120601f850160051c81016020861015620003565750805b601f850160051c820191505b81811015620003775782815560010162000362565b5050505b505050565b81516001600160401b038111156200039c576200039c620002e0565b620003b481620003ad8454620002f4565b846200032e565b602080601f831160018114620003ea575f8415620003d25750858301515b5f19600386901b1c1916600185901b17855562000377565b5f85815260208120601f198616915b828110156200041a57888601518255948401946001909101908401620003f9565b50858210156200043857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b611c5780620004565f395ff3fe6080604052600436106101fc575f3560e01c806370a0823111610113578063a22cb4651161009d578063c66828621161006d578063c668286214610547578063c87b56dd1461055b578063e00dd1611461057a578063e985e9c51461058f578063f2fde38b146105ae575f80fd5b8063a22cb465146104e7578063a3330d2514610506578063b88d4fde1461051f578063c51c2d2614610532575f80fd5b806395d89b41116100e357806395d89b4114610478578063981d87711461048c5780639b6860c8146104a0578063a0712d68146104b5578063a0bcfc7f146104c8575f80fd5b806370a0823114610409578063715018a6146104285780638da5cb5b1461043c57806391b7f5ed14610459575f80fd5b80633ccfd60b1161019457806349e949e71161016457806349e949e71461038457806355f804b3146103a3578063603f4d52146103c25780636352211e146103d65780636c0360eb146103f5575f80fd5b80633ccfd60b1461031157806341f434341461032557806342842e0e14610346578063438a67e714610359575f80fd5b80630c393dd4116101cf5780630c393dd4146102a157806318160ddd146102d057806323b872dd146102ea57806325bdb2a8146102fd575f80fd5b806301ffc9a71461020057806306fdde0314610234578063081812fc14610255578063095ea7b31461028c575b5f80fd5b34801561020b575f80fd5b5061021f61021a366004611679565b6105cd565b60405190151581526020015b60405180910390f35b34801561023f575f80fd5b5061024861061e565b60405161022b91906116e1565b348015610260575f80fd5b5061027461026f3660046116f3565b6106ae565b6040516001600160a01b03909116815260200161022b565b61029f61029a366004611725565b6106f0565b005b3480156102ac575f80fd5b506001545f80546102c2928291035f1901610618565b60405190815260200161022b565b3480156102db575f80fd5b506001545f54035f19016102c2565b61029f6102f836600461174d565b610709565b348015610308575f80fd5b50610248610734565b34801561031c575f80fd5b5061029f610788565b348015610330575f80fd5b506102746daaeb6d7670e522a718067333cd4e81565b61029f61035436600461174d565b610858565b348015610364575f80fd5b506102c2610373366004611786565b60126020525f908152604090205481565b34801561038f575f80fd5b5061029f61039e3660046116f3565b61087d565b3480156103ae575f80fd5b5061029f6103bd366004611826565b6108c1565b3480156103cd575f80fd5b50610248610910565b3480156103e1575f80fd5b506102746103f03660046116f3565b61099c565b348015610400575f80fd5b506102486109a6565b348015610414575f80fd5b506102c2610423366004611786565b6109b3565b348015610433575f80fd5b5061029f610a00565b348015610447575f80fd5b506008546001600160a01b0316610274565b348015610464575f80fd5b5061029f6104733660046116f3565b610a11565b348015610483575f80fd5b50610248610a55565b348015610497575f80fd5b5061029f610a64565b3480156104ab575f80fd5b506102c2600c5481565b61029f6104c33660046116f3565b610ae2565b3480156104d3575f80fd5b5061029f6104e2366004611826565b610ca4565b3480156104f2575f80fd5b5061029f610501366004611878565b610cac565b348015610511575f80fd5b50600d5461021f9060ff1681565b61029f61052d3660046118ad565b610cc0565b34801561053d575f80fd5b506102c2600b5481565b348015610552575f80fd5b50610248610ced565b348015610566575f80fd5b506102486105753660046116f3565b610cfa565b348015610585575f80fd5b506102c260115481565b34801561059a575f80fd5b5061021f6105a9366004611924565b610dc7565b3480156105b9575f80fd5b5061029f6105c8366004611786565b610df4565b5f6301ffc9a760e01b6001600160e01b0319831614806105fd57506380ac58cd60e01b6001600160e01b03198316145b806106185750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461062d90611955565b80601f016020809104026020016040519081016040528092919081815260200182805461065990611955565b80156106a45780601f1061067b576101008083540402835291602001916106a4565b820191905f5260205f20905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b5f6106b882610e6a565b6106d5576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b816106fa81610e9c565b6107048383610f53565b505050565b826001600160a01b03811633146107235761072333610e9c565b61072e848484610ff1565b50505050565b600d5460609060ff161561076357506040805180820190915260068152655075626c696360d01b602082015290565b5060408051808201909152600a8152694e6f742041637469766560b01b602082015290565b6013546001600160a01b031633146107e75760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c79206465762063616e2063616c6c20746869732066756e6374696f6e0060448201526064015b60405180910390fd5b6107ef611181565b6013546040515f916001600160a01b03169047908381818185875af1925050503d805f8114610839576040519150601f19603f3d011682016040523d82523d5f602084013e61083e565b606091505b505090508061084b575f80fd5b506108566001600955565b565b826001600160a01b03811633146108725761087233610e9c565b61072e8484846111da565b6008546001600160a01b03163314806108a057506013546001600160a01b031633145b6108bc5760405162461bcd60e51b81526004016107de9061198d565b600b55565b6008546001600160a01b03163314806108e457506013546001600160a01b031633145b6109005760405162461bcd60e51b81526004016107de9061198d565b600f61090c8282611a1a565b5050565b600e805461091d90611955565b80601f016020809104026020016040519081016040528092919081815260200182805461094990611955565b80156109945780601f1061096b57610100808354040283529160200191610994565b820191905f5260205f20905b81548152906001019060200180831161097757829003601f168201915b505050505081565b5f610618826111f4565b600f805461091d90611955565b5f6001600160a01b0382166109db576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b610a0861125d565b6108565f6112b7565b6008546001600160a01b0316331480610a3457506013546001600160a01b031633145b610a505760405162461bcd60e51b81526004016107de9061198d565b600c55565b60606003805461062d90611955565b6008546001600160a01b0316331480610a8757506013546001600160a01b031633145b610aa35760405162461bcd60e51b81526004016107de9061198d565b600d805460ff19811660ff909116151790556040805180820190915260068152655075626c696360d01b6020820152600e90610adf9082611a1a565b50565b610aea611181565b600d5460ff16610b3c5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016107de565b600a546001545f54839190035f1901610b559190611aea565b1115610b9c5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107de565b600b54335f90815260126020526040902054610bb9908390611aea565b1115610c175760405162461bcd60e51b815260206004820152602760248201527f4578636565646564206d617820616d6f756e74206f66206d696e747320706572604482015266081dd85b1b195d60ca1b60648201526084016107de565b80600c54610c259190611afd565b341015610c6c5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016107de565b335f9081526012602052604081208054839290610c8a908490611aea565b90915550610c9a90503382611308565b610adf6001600955565b61090061125d565b81610cb681610e9c565b6107048383611321565b836001600160a01b0381163314610cda57610cda33610e9c565b610ce68585858561138c565b5050505050565b6010805461091d90611955565b6060610d0582610e6a565b610d695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107de565b5f610d726113d0565b90505f815111610d905760405180602001604052805f815250610dc0565b80610d9c6011546113df565b6010604051602001610db093929190611b14565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b610dfc61125d565b6001600160a01b038116610e615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107de565b610adf816112b7565b5f81600111158015610e7c57505f5482105b80156106185750505f90815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610adf57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f2b9190611baf565b610adf57604051633b79c77360e21b81526001600160a01b03821660048201526024016107de565b5f610f5d8261099c565b9050336001600160a01b03821614610f9657610f798133610dc7565b610f96576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f610ffb826111f4565b9050836001600160a01b0316816001600160a01b03161461102e5760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b0388169091141761107a5761105d8633610dc7565b61107a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166110a157604051633a954ecd60e21b815260040160405180910390fd5b80156110ab575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b8416900361113757600184015f818152600460205260408120549003611135575f548114611135575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6002600954036111d35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107de565b6002600955565b61070483838360405180602001604052805f815250610cc0565b5f8180600111611244575f54811015611244575f8181526004602052604081205490600160e01b82169003611242575b805f03610dc057505f19015f81815260046020526040902054611224565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107de565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61090c828260405180602001604052805f815250611422565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611397848484610709565b6001600160a01b0383163b1561072e576113b384848484611484565b61072e576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f805461062d90611955565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a9004806113f85750819003601f19909101908152919050565b61142c838361156c565b6001600160a01b0383163b15610704575f548281035b6114545f868380600101945086611484565b611471576040516368d2bf6b60e11b815260040160405180910390fd5b81811061144257815f5414610ce6575f80fd5b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906114b8903390899088908890600401611bca565b6020604051808303815f875af19250505080156114f2575060408051601f3d908101601f191682019092526114ef91810190611c06565b60015b61154e573d80801561151f576040519150601f19603f3d011682016040523d82523d5f602084013e611524565b606091505b5080515f03611546576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b5f8054908290036115905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461163c5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101611606565b50815f0361165c57604051622e076360e81b815260040160405180910390fd5b5f5550505050565b6001600160e01b031981168114610adf575f80fd5b5f60208284031215611689575f80fd5b8135610dc081611664565b5f5b838110156116ae578181015183820152602001611696565b50505f910152565b5f81518084526116cd816020860160208601611694565b601f01601f19169290920160200192915050565b602081525f610dc060208301846116b6565b5f60208284031215611703575f80fd5b5035919050565b80356001600160a01b0381168114611720575f80fd5b919050565b5f8060408385031215611736575f80fd5b61173f8361170a565b946020939093013593505050565b5f805f6060848603121561175f575f80fd5b6117688461170a565b92506117766020850161170a565b9150604084013590509250925092565b5f60208284031215611796575f80fd5b610dc08261170a565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff808411156117cd576117cd61179f565b604051601f8501601f19908116603f011681019082821181831017156117f5576117f561179f565b8160405280935085815286868601111561180d575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611836575f80fd5b813567ffffffffffffffff81111561184c575f80fd5b8201601f8101841361185c575f80fd5b611564848235602084016117b3565b8015158114610adf575f80fd5b5f8060408385031215611889575f80fd5b6118928361170a565b915060208301356118a28161186b565b809150509250929050565b5f805f80608085870312156118c0575f80fd5b6118c98561170a565b93506118d76020860161170a565b925060408501359150606085013567ffffffffffffffff8111156118f9575f80fd5b8501601f81018713611909575f80fd5b611918878235602084016117b3565b91505092959194509250565b5f8060408385031215611935575f80fd5b61193e8361170a565b915061194c6020840161170a565b90509250929050565b600181811c9082168061196957607f821691505b60208210810361198757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526028908201527f4f6e6c79206f776e6572206f72206465762063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b601f821115610704575f81815260208120601f850160051c810160208610156119fb5750805b601f850160051c820191505b8181101561117957828155600101611a07565b815167ffffffffffffffff811115611a3457611a3461179f565b611a4881611a428454611955565b846119d5565b602080601f831160018114611a7b575f8415611a645750858301515b5f19600386901b1c1916600185901b178555611179565b5f85815260208120601f198616915b82811015611aa957888601518255948401946001909101908401611a8a565b5085821015611ac657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561061857610618611ad6565b808202811582820484141761061857610618611ad6565b5f84516020611b268285838a01611694565b855191840191611b398184848a01611694565b85549201915f90611b4981611955565b60018281168015611b615760018114611b7657611b9f565b60ff1984168752821515830287019450611b9f565b895f52855f205f5b84811015611b9757815489820152908301908701611b7e565b505082870194505b50929a9950505050505050505050565b5f60208284031215611bbf575f80fd5b8151610dc08161186b565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611bfc908301846116b6565b9695505050505050565b5f60208284031215611c16575f80fd5b8151610dc08161166456fea2646970667358221220f5818138e9a6a51a7dbc51afad09e7df72d669c318f79a8f5ed8acbd3237efeb64736f6c63430008140033697066733a2f2f516d533936445666434e686e6b71506f50623365667574797676767974696d6254336e42614454764879587859592f

Deployed Bytecode

0x6080604052600436106101fc575f3560e01c806370a0823111610113578063a22cb4651161009d578063c66828621161006d578063c668286214610547578063c87b56dd1461055b578063e00dd1611461057a578063e985e9c51461058f578063f2fde38b146105ae575f80fd5b8063a22cb465146104e7578063a3330d2514610506578063b88d4fde1461051f578063c51c2d2614610532575f80fd5b806395d89b41116100e357806395d89b4114610478578063981d87711461048c5780639b6860c8146104a0578063a0712d68146104b5578063a0bcfc7f146104c8575f80fd5b806370a0823114610409578063715018a6146104285780638da5cb5b1461043c57806391b7f5ed14610459575f80fd5b80633ccfd60b1161019457806349e949e71161016457806349e949e71461038457806355f804b3146103a3578063603f4d52146103c25780636352211e146103d65780636c0360eb146103f5575f80fd5b80633ccfd60b1461031157806341f434341461032557806342842e0e14610346578063438a67e714610359575f80fd5b80630c393dd4116101cf5780630c393dd4146102a157806318160ddd146102d057806323b872dd146102ea57806325bdb2a8146102fd575f80fd5b806301ffc9a71461020057806306fdde0314610234578063081812fc14610255578063095ea7b31461028c575b5f80fd5b34801561020b575f80fd5b5061021f61021a366004611679565b6105cd565b60405190151581526020015b60405180910390f35b34801561023f575f80fd5b5061024861061e565b60405161022b91906116e1565b348015610260575f80fd5b5061027461026f3660046116f3565b6106ae565b6040516001600160a01b03909116815260200161022b565b61029f61029a366004611725565b6106f0565b005b3480156102ac575f80fd5b506001545f80546102c2928291035f1901610618565b60405190815260200161022b565b3480156102db575f80fd5b506001545f54035f19016102c2565b61029f6102f836600461174d565b610709565b348015610308575f80fd5b50610248610734565b34801561031c575f80fd5b5061029f610788565b348015610330575f80fd5b506102746daaeb6d7670e522a718067333cd4e81565b61029f61035436600461174d565b610858565b348015610364575f80fd5b506102c2610373366004611786565b60126020525f908152604090205481565b34801561038f575f80fd5b5061029f61039e3660046116f3565b61087d565b3480156103ae575f80fd5b5061029f6103bd366004611826565b6108c1565b3480156103cd575f80fd5b50610248610910565b3480156103e1575f80fd5b506102746103f03660046116f3565b61099c565b348015610400575f80fd5b506102486109a6565b348015610414575f80fd5b506102c2610423366004611786565b6109b3565b348015610433575f80fd5b5061029f610a00565b348015610447575f80fd5b506008546001600160a01b0316610274565b348015610464575f80fd5b5061029f6104733660046116f3565b610a11565b348015610483575f80fd5b50610248610a55565b348015610497575f80fd5b5061029f610a64565b3480156104ab575f80fd5b506102c2600c5481565b61029f6104c33660046116f3565b610ae2565b3480156104d3575f80fd5b5061029f6104e2366004611826565b610ca4565b3480156104f2575f80fd5b5061029f610501366004611878565b610cac565b348015610511575f80fd5b50600d5461021f9060ff1681565b61029f61052d3660046118ad565b610cc0565b34801561053d575f80fd5b506102c2600b5481565b348015610552575f80fd5b50610248610ced565b348015610566575f80fd5b506102486105753660046116f3565b610cfa565b348015610585575f80fd5b506102c260115481565b34801561059a575f80fd5b5061021f6105a9366004611924565b610dc7565b3480156105b9575f80fd5b5061029f6105c8366004611786565b610df4565b5f6301ffc9a760e01b6001600160e01b0319831614806105fd57506380ac58cd60e01b6001600160e01b03198316145b806106185750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461062d90611955565b80601f016020809104026020016040519081016040528092919081815260200182805461065990611955565b80156106a45780601f1061067b576101008083540402835291602001916106a4565b820191905f5260205f20905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b5f6106b882610e6a565b6106d5576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b816106fa81610e9c565b6107048383610f53565b505050565b826001600160a01b03811633146107235761072333610e9c565b61072e848484610ff1565b50505050565b600d5460609060ff161561076357506040805180820190915260068152655075626c696360d01b602082015290565b5060408051808201909152600a8152694e6f742041637469766560b01b602082015290565b6013546001600160a01b031633146107e75760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c79206465762063616e2063616c6c20746869732066756e6374696f6e0060448201526064015b60405180910390fd5b6107ef611181565b6013546040515f916001600160a01b03169047908381818185875af1925050503d805f8114610839576040519150601f19603f3d011682016040523d82523d5f602084013e61083e565b606091505b505090508061084b575f80fd5b506108566001600955565b565b826001600160a01b03811633146108725761087233610e9c565b61072e8484846111da565b6008546001600160a01b03163314806108a057506013546001600160a01b031633145b6108bc5760405162461bcd60e51b81526004016107de9061198d565b600b55565b6008546001600160a01b03163314806108e457506013546001600160a01b031633145b6109005760405162461bcd60e51b81526004016107de9061198d565b600f61090c8282611a1a565b5050565b600e805461091d90611955565b80601f016020809104026020016040519081016040528092919081815260200182805461094990611955565b80156109945780601f1061096b57610100808354040283529160200191610994565b820191905f5260205f20905b81548152906001019060200180831161097757829003601f168201915b505050505081565b5f610618826111f4565b600f805461091d90611955565b5f6001600160a01b0382166109db576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b610a0861125d565b6108565f6112b7565b6008546001600160a01b0316331480610a3457506013546001600160a01b031633145b610a505760405162461bcd60e51b81526004016107de9061198d565b600c55565b60606003805461062d90611955565b6008546001600160a01b0316331480610a8757506013546001600160a01b031633145b610aa35760405162461bcd60e51b81526004016107de9061198d565b600d805460ff19811660ff909116151790556040805180820190915260068152655075626c696360d01b6020820152600e90610adf9082611a1a565b50565b610aea611181565b600d5460ff16610b3c5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016107de565b600a546001545f54839190035f1901610b559190611aea565b1115610b9c5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107de565b600b54335f90815260126020526040902054610bb9908390611aea565b1115610c175760405162461bcd60e51b815260206004820152602760248201527f4578636565646564206d617820616d6f756e74206f66206d696e747320706572604482015266081dd85b1b195d60ca1b60648201526084016107de565b80600c54610c259190611afd565b341015610c6c5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016107de565b335f9081526012602052604081208054839290610c8a908490611aea565b90915550610c9a90503382611308565b610adf6001600955565b61090061125d565b81610cb681610e9c565b6107048383611321565b836001600160a01b0381163314610cda57610cda33610e9c565b610ce68585858561138c565b5050505050565b6010805461091d90611955565b6060610d0582610e6a565b610d695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107de565b5f610d726113d0565b90505f815111610d905760405180602001604052805f815250610dc0565b80610d9c6011546113df565b6010604051602001610db093929190611b14565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b610dfc61125d565b6001600160a01b038116610e615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107de565b610adf816112b7565b5f81600111158015610e7c57505f5482105b80156106185750505f90815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610adf57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f2b9190611baf565b610adf57604051633b79c77360e21b81526001600160a01b03821660048201526024016107de565b5f610f5d8261099c565b9050336001600160a01b03821614610f9657610f798133610dc7565b610f96576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f610ffb826111f4565b9050836001600160a01b0316816001600160a01b03161461102e5760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b0388169091141761107a5761105d8633610dc7565b61107a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166110a157604051633a954ecd60e21b815260040160405180910390fd5b80156110ab575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b8416900361113757600184015f818152600460205260408120549003611135575f548114611135575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6002600954036111d35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107de565b6002600955565b61070483838360405180602001604052805f815250610cc0565b5f8180600111611244575f54811015611244575f8181526004602052604081205490600160e01b82169003611242575b805f03610dc057505f19015f81815260046020526040902054611224565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107de565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61090c828260405180602001604052805f815250611422565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611397848484610709565b6001600160a01b0383163b1561072e576113b384848484611484565b61072e576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f805461062d90611955565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a9004806113f85750819003601f19909101908152919050565b61142c838361156c565b6001600160a01b0383163b15610704575f548281035b6114545f868380600101945086611484565b611471576040516368d2bf6b60e11b815260040160405180910390fd5b81811061144257815f5414610ce6575f80fd5b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906114b8903390899088908890600401611bca565b6020604051808303815f875af19250505080156114f2575060408051601f3d908101601f191682019092526114ef91810190611c06565b60015b61154e573d80801561151f576040519150601f19603f3d011682016040523d82523d5f602084013e611524565b606091505b5080515f03611546576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b5f8054908290036115905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461163c5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101611606565b50815f0361165c57604051622e076360e81b815260040160405180910390fd5b5f5550505050565b6001600160e01b031981168114610adf575f80fd5b5f60208284031215611689575f80fd5b8135610dc081611664565b5f5b838110156116ae578181015183820152602001611696565b50505f910152565b5f81518084526116cd816020860160208601611694565b601f01601f19169290920160200192915050565b602081525f610dc060208301846116b6565b5f60208284031215611703575f80fd5b5035919050565b80356001600160a01b0381168114611720575f80fd5b919050565b5f8060408385031215611736575f80fd5b61173f8361170a565b946020939093013593505050565b5f805f6060848603121561175f575f80fd5b6117688461170a565b92506117766020850161170a565b9150604084013590509250925092565b5f60208284031215611796575f80fd5b610dc08261170a565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff808411156117cd576117cd61179f565b604051601f8501601f19908116603f011681019082821181831017156117f5576117f561179f565b8160405280935085815286868601111561180d575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611836575f80fd5b813567ffffffffffffffff81111561184c575f80fd5b8201601f8101841361185c575f80fd5b611564848235602084016117b3565b8015158114610adf575f80fd5b5f8060408385031215611889575f80fd5b6118928361170a565b915060208301356118a28161186b565b809150509250929050565b5f805f80608085870312156118c0575f80fd5b6118c98561170a565b93506118d76020860161170a565b925060408501359150606085013567ffffffffffffffff8111156118f9575f80fd5b8501601f81018713611909575f80fd5b611918878235602084016117b3565b91505092959194509250565b5f8060408385031215611935575f80fd5b61193e8361170a565b915061194c6020840161170a565b90509250929050565b600181811c9082168061196957607f821691505b60208210810361198757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526028908201527f4f6e6c79206f776e6572206f72206465762063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b601f821115610704575f81815260208120601f850160051c810160208610156119fb5750805b601f850160051c820191505b8181101561117957828155600101611a07565b815167ffffffffffffffff811115611a3457611a3461179f565b611a4881611a428454611955565b846119d5565b602080601f831160018114611a7b575f8415611a645750858301515b5f19600386901b1c1916600185901b178555611179565b5f85815260208120601f198616915b82811015611aa957888601518255948401946001909101908401611a8a565b5085821015611ac657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561061857610618611ad6565b808202811582820484141761061857610618611ad6565b5f84516020611b268285838a01611694565b855191840191611b398184848a01611694565b85549201915f90611b4981611955565b60018281168015611b615760018114611b7657611b9f565b60ff1984168752821515830287019450611b9f565b895f52855f205f5b84811015611b9757815489820152908301908701611b7e565b505082870194505b50929a9950505050505050505050565b5f60208284031215611bbf575f80fd5b8151610dc08161186b565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611bfc908301846116b6565b9695505050505050565b5f60208284031215611c16575f80fd5b8151610dc08161166456fea2646970667358221220f5818138e9a6a51a7dbc51afad09e7df72d669c318f79a8f5ed8acbd3237efeb64736f6c63430008140033

Deployed Bytecode Sourcemap

79367:4818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22178:639;;;;;;;;;;-1:-1:-1;22178:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;22178:639:0;;;;;;;;23080:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29571:218::-;;;;;;;;;;-1:-1:-1;29571:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;29571:218:0;1533:203:1;83398:165:0;;;;;;:::i;:::-;;:::i;:::-;;81639:148;;;;;;;;;;-1:-1:-1;82418:1:0;19105:12;81689:7;19089:13;;81639:148;;81689:7;;19089:28;-1:-1:-1;;19089:46:0;81734:13;18831:323;81639:148;;;2324:25:1;;;2312:2;2297:18;81639:148:0;2178:177:1;18831:323:0;;;;;;;;;;-1:-1:-1;82418:1:0;19105:12;18892:7;19089:13;:28;-1:-1:-1;;19089:46:0;18831:323;;83571:171;;;;;;:::i;:::-;;:::i;81011:191::-;;;;;;;;;;;;;:::i;81469:162::-;;;;;;;;;;;;;:::i;76011:143::-;;;;;;;;;;;;68485:42;76011:143;;83750:179;;;;;;:::i;:::-;;:::i;79984:44::-;;;;;;;;;;-1:-1:-1;79984:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;82604:109;;;;;;;;;;-1:-1:-1;82604:109:0;;;;;:::i;:::-;;:::i;82721:97::-;;;;;;;;;;-1:-1:-1;82721:97:0;;;;;:::i;:::-;;:::i;79703:38::-;;;;;;;;;;;;;:::i;24473:152::-;;;;;;;;;;-1:-1:-1;24473:152:0;;;;;:::i;:::-;;:::i;79766:80::-;;;;;;;;;;;;;:::i;20015:233::-;;;;;;;;;;-1:-1:-1;20015:233:0;;;;;:::i;:::-;;:::i;67546:103::-;;;;;;;;;;;;;:::i;66898:87::-;;;;;;;;;;-1:-1:-1;66971:6:0;;-1:-1:-1;;;;;66971:6:0;66898:87;;82483:113;;;;;;;;;;-1:-1:-1;82483:113:0;;;;;:::i;:::-;;:::i;23256:104::-;;;;;;;;;;;;;:::i;80874:129::-;;;;;;;;;;;;;:::i;79592:43::-;;;;;;;;;;;;;;;;80173:585;;;;;;:::i;:::-;;:::i;80766:100::-;;;;;;;;;;-1:-1:-1;80766:100:0;;;;;:::i;:::-;;:::i;83214:176::-;;;;;;;;;;-1:-1:-1;83214:176:0;;;;;:::i;:::-;;:::i;79670:26::-;;;;;;;;;;-1:-1:-1;79670:26:0;;;;;;;;83937:245;;;;;;:::i;:::-;;:::i;79525:36::-;;;;;;;;;;;;;;;;79853:37;;;;;;;;;;;;;:::i;81912:406::-;;;;;;;;;;-1:-1:-1;81912:406:0;;;;;:::i;:::-;;:::i;79897:28::-;;;;;;;;;;;;;;;;30520:164;;;;;;;;;;-1:-1:-1;30520:164:0;;;;;:::i;:::-;;:::i;67804:201::-;;;;;;;;;;-1:-1:-1;67804:201:0;;;;;:::i;:::-;;:::i;22178:639::-;22263:4;-1:-1:-1;;;;;;;;;22587:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22664:25:0;;;22587:102;:179;;;-1:-1:-1;;;;;;;;;;22741:25:0;;;22587:179;22567:199;22178:639;-1:-1:-1;;22178:639:0:o;23080:100::-;23134:13;23167:5;23160:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23080:100;:::o;29571:218::-;29647:7;29672:16;29680:7;29672;:16::i;:::-;29667:64;;29697:34;;-1:-1:-1;;;29697:34:0;;;;;;;;;;;29667:64;-1:-1:-1;29751:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29751:30:0;;29571:218::o;83398:165::-;83502:8;77793:30;77814:8;77793:20;:30::i;:::-;83523:32:::1;83537:8;83547:7;83523:13;:32::i;:::-;83398:165:::0;;;:::o;83571:171::-;83680:4;-1:-1:-1;;;;;77519:18:0;;77527:10;77519:18;77515:83;;77554:32;77575:10;77554:20;:32::i;:::-;83697:37:::1;83716:4;83722:2;83726:7;83697:18;:37::i;:::-;83571:171:::0;;;;:::o;81011:191::-;81086:14;;81058:13;;81086:14;;81083:112;;;-1:-1:-1;81116:16:0;;;;;;;;;;;;-1:-1:-1;;;81116:16:0;;;;;81011:191::o;81083:112::-;-1:-1:-1;81163:20:0;;;;;;;;;;;;-1:-1:-1;;;81163:20:0;;;;;81011:191::o;81469:162::-;83041:10;;-1:-1:-1;;;;;83041:10:0;83027;:24;83019:68;;;;-1:-1:-1;;;83019:68:0;;6316:2:1;83019:68:0;;;6298:21:1;6355:2;6335:18;;;6328:30;6394:33;6374:18;;;6367:61;6445:18;;83019:68:0;;;;;;;;;2879:21:::1;:19;:21::i;:::-;81551:10:::2;::::0;81543:58:::2;::::0;81530:7:::2;::::0;-1:-1:-1;;;;;81551:10:0::2;::::0;81575:21:::2;::::0;81530:7;81543:58;81530:7;81543:58;81575:21;81551:10;81543:58:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81529:72;;;81620:2;81612:11;;;::::0;::::2;;81518:113;2923:20:::1;2317:1:::0;3443:7;:22;3260:213;2923:20:::1;81469:162::o:0;83750:179::-;83863:4;-1:-1:-1;;;;;77519:18:0;;77527:10;77519:18;77515:83;;77554:32;77575:10;77554:20;:32::i;:::-;83880:41:::1;83903:4;83909:2;83913:7;83880:22;:41::i;82604:109::-:0;66971:6;;-1:-1:-1;;;;;66971:6:0;82871:10;:21;;:49;;-1:-1:-1;82910:10:0;;-1:-1:-1;;;;;82910:10:0;82896;:24;82871:49;82863:102;;;;-1:-1:-1;;;82863:102:0;;;;;;;:::i;:::-;82680:16:::1;:25:::0;82604:109::o;82721:97::-;66971:6;;-1:-1:-1;;;;;66971:6:0;82871:10;:21;;:49;;-1:-1:-1;82910:10:0;;-1:-1:-1;;;;;82910:10:0;82896;:24;82871:49;82863:102;;;;-1:-1:-1;;;82863:102:0;;;;;;;:::i;:::-;82795:7:::1;:15;82805:5:::0;82795:7;:15:::1;:::i;:::-;;82721:97:::0;:::o;79703:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24473:152::-;24545:7;24588:27;24607:7;24588:18;:27::i;79766:80::-;;;;;;;:::i;20015:233::-;20087:7;-1:-1:-1;;;;;20111:19:0;;20107:60;;20139:28;;-1:-1:-1;;;20139:28:0;;;;;;;;;;;20107:60;-1:-1:-1;;;;;;20185:25:0;;;;;:18;:25;;;;;;14174:13;20185:55;;20015:233::o;67546:103::-;66784:13;:11;:13::i;:::-;67611:30:::1;67638:1;67611:18;:30::i;82483:113::-:0;66971:6;;-1:-1:-1;;;;;66971:6:0;82871:10;:21;;:49;;-1:-1:-1;82910:10:0;;-1:-1:-1;;;;;82910:10:0;82896;:24;82871:49;82863:102;;;;-1:-1:-1;;;82863:102:0;;;;;;;:::i;:::-;82558:15:::1;:30:::0;82483:113::o;23256:104::-;23312:13;23345:7;23338:14;;;;;:::i;80874:129::-;66971:6;;-1:-1:-1;;;;;66971:6:0;82871:10;:21;;:49;;-1:-1:-1;82910:10:0;;-1:-1:-1;;;;;82910:10:0;82896;:24;82871:49;82863:102;;;;-1:-1:-1;;;82863:102:0;;;;;;;:::i;:::-;80950:14:::1;::::0;;-1:-1:-1;;80932:32:0;::::1;80950:14;::::0;;::::1;80949:15;80932:32;::::0;;80975:20:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;80975:20:0::1;::::0;::::1;::::0;:9:::1;::::0;:20:::1;::::0;:9;:20:::1;:::i;:::-;;80874:129::o:0;80173:585::-;2879:21;:19;:21::i;:::-;80253:14:::1;::::0;::::1;;80245:52;;;::::0;-1:-1:-1;;;80245:52:0;;9499:2:1;80245:52:0::1;::::0;::::1;9481:21:1::0;9538:2;9518:18;;;9511:30;9577:27;9557:18;;;9550:55;9622:18;;80245:52:0::1;9297:349:1::0;80245:52:0::1;80397:10;::::0;82418:1;19105:12;18892:7;19089:13;80385:8;;19089:28;;-1:-1:-1;;19089:46:0;80369:24:::1;;;;:::i;:::-;:38;;80361:73;;;::::0;-1:-1:-1;;;80361:73:0;;10115:2:1;80361:73:0::1;::::0;::::1;10097:21:1::0;10154:2;10134:18;;;10127:30;-1:-1:-1;;;10173:18:1;;;10166:52;10235:18;;80361:73:0::1;9913:346:1::0;80361:73:0::1;80513:16;::::0;80487:10:::1;80474:24;::::0;;;:12:::1;:24;::::0;;;;;:35:::1;::::0;80501:8;;80474:35:::1;:::i;:::-;:55;;80466:107;;;::::0;-1:-1:-1;;;80466:107:0;;10466:2:1;80466:107:0::1;::::0;::::1;10448:21:1::0;10505:2;10485:18;;;10478:30;10544:34;10524:18;;;10517:62;-1:-1:-1;;;10595:18:1;;;10588:37;10642:19;;80466:107:0::1;10264:403:1::0;80466:107:0::1;80623:8;80605:15;;:26;;;;:::i;:::-;80592:9;:39;;80584:73;;;::::0;-1:-1:-1;;;80584:73:0;;11047:2:1;80584:73:0::1;::::0;::::1;11029:21:1::0;11086:2;11066:18;;;11059:30;-1:-1:-1;;;11105:18:1;;;11098:51;11166:18;;80584:73:0::1;10845:345:1::0;80584:73:0::1;80681:10;80668:24;::::0;;;:12:::1;:24;::::0;;;;:36;;80696:8;;80668:24;:36:::1;::::0;80696:8;;80668:36:::1;:::i;:::-;::::0;;;-1:-1:-1;80715:31:0::1;::::0;-1:-1:-1;80725:10:0::1;80737:8:::0;80715:9:::1;:31::i;:::-;2923:20:::0;2317:1;3443:7;:22;3260:213;80766:100;66784:13;:11;:13::i;83214:176::-;83318:8;77793:30;77814:8;77793:20;:30::i;:::-;83339:43:::1;83363:8;83373;83339:23;:43::i;83937:245::-:0;84105:4;-1:-1:-1;;;;;77519:18:0;;77527:10;77519:18;77515:83;;77554:32;77575:10;77554:20;:32::i;:::-;84127:47:::1;84150:4;84156:2;84160:7;84169:4;84127:22;:47::i;:::-;83937:245:::0;;;;;:::o;79853:37::-;;;;;;;:::i;81912:406::-;81985:13;82020:16;82028:7;82020;:16::i;:::-;82011:78;;;;-1:-1:-1;;;82011:78:0;;11397:2:1;82011:78:0;;;11379:21:1;11436:2;11416:18;;;11409:30;11475:34;11455:18;;;11448:62;-1:-1:-1;;;11526:18:1;;;11519:45;11581:19;;82011:78:0;11195:411:1;82011:78:0;82100:28;82131:10;:8;:10::i;:::-;82100:41;;82203:1;82178:14;82172:28;:32;:138;;;;;;;;;;;;;;;;;82250:14;82266:20;82276:9;;82266;:20::i;:::-;82288:13;82232:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82172:138;82152:158;81912:406;-1:-1:-1;;;81912:406:0:o;30520:164::-;-1:-1:-1;;;;;30641:25:0;;;30617:4;30641:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30520:164::o;67804:201::-;66784:13;:11;:13::i;:::-;-1:-1:-1;;;;;67893:22:0;::::1;67885:73;;;::::0;-1:-1:-1;;;67885:73:0;;13074:2:1;67885:73:0::1;::::0;::::1;13056:21:1::0;13113:2;13093:18;;;13086:30;13152:34;13132:18;;;13125:62;-1:-1:-1;;;13203:18:1;;;13196:36;13249:19;;67885:73:0::1;12872:402:1::0;67885:73:0::1;67969:28;67988:8;67969:18;:28::i;30942:282::-:0;31007:4;31063:7;82418:1;31044:26;;:66;;;;;31097:13;;31087:7;:23;31044:66;:153;;;;-1:-1:-1;;31148:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31148:44:0;:49;;30942:282::o;77936:647::-;68485:42;78127:45;:49;78123:453;;78426:67;;-1:-1:-1;;;78426:67:0;;78477:4;78426:67;;;13491:34:1;-1:-1:-1;;;;;13561:15:1;;13541:18;;;13534:43;68485:42:0;;78426;;13426:18:1;;78426:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;78421:144;;78521:28;;-1:-1:-1;;;78521:28:0;;-1:-1:-1;;;;;1697:32:1;;78521:28:0;;;1679:51:1;1652:18;;78521:28:0;1533:203:1;29004:408:0;29093:13;29109:16;29117:7;29109;:16::i;:::-;29093:32;-1:-1:-1;53337:10:0;-1:-1:-1;;;;;29142:28:0;;;29138:175;;29190:44;29207:5;53337:10;30520:164;:::i;29190:44::-;29185:128;;29262:35;;-1:-1:-1;;;29262:35:0;;;;;;;;;;;29185:128;29325:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29325:35:0;-1:-1:-1;;;;;29325:35:0;;;;;;;;;29376:28;;29325:24;;29376:28;;;;;;;29082:330;29004:408;;:::o;33210:2825::-;33352:27;33382;33401:7;33382:18;:27::i;:::-;33352:57;;33467:4;-1:-1:-1;;;;;33426:45:0;33442:19;-1:-1:-1;;;;;33426:45:0;;33422:86;;33480:28;;-1:-1:-1;;;33480:28:0;;;;;;;;;;;33422:86;33522:27;32318:24;;;:15;:24;;;;;32546:26;;53337:10;31943:30;;;-1:-1:-1;;;;;31636:28:0;;31921:20;;;31918:56;33708:180;;33801:43;33818:4;53337:10;30520:164;:::i;33801:43::-;33796:92;;33853:35;;-1:-1:-1;;;33853:35:0;;;;;;;;;;;33796:92;-1:-1:-1;;;;;33905:16:0;;33901:52;;33930:23;;-1:-1:-1;;;33930:23:0;;;;;;;;;;;33901:52;34102:15;34099:160;;;34242:1;34221:19;34214:30;34099:160;-1:-1:-1;;;;;34639:24:0;;;;;;;:18;:24;;;;;;34637:26;;-1:-1:-1;;34637:26:0;;;34708:22;;;;;;;;;34706:24;;-1:-1:-1;34706:24:0;;;27862:11;27837:23;27833:41;27820:63;-1:-1:-1;;;27820:63:0;35001:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;35296:47:0;;:52;;35292:627;;35401:1;35391:11;;35369:19;35524:30;;;:17;:30;;;;;;:35;;35520:384;;35662:13;;35647:11;:28;35643:242;;35809:30;;;;:17;:30;;;;;:52;;;35643:242;35350:569;35292:627;35966:7;35962:2;-1:-1:-1;;;;;35947:27:0;35956:4;-1:-1:-1;;;;;35947:27:0;;;;;;;;;;;35985:42;33341:2694;;;33210:2825;;;:::o;2959:293::-;2361:1;3093:7;;:19;3085:63;;;;-1:-1:-1;;;3085:63:0;;14040:2:1;3085:63:0;;;14022:21:1;14079:2;14059:18;;;14052:30;14118:33;14098:18;;;14091:61;14169:18;;3085:63:0;13838:355:1;3085:63:0;2361:1;3226:7;:18;2959:293::o;36131:193::-;36277:39;36294:4;36300:2;36304:7;36277:39;;;;;;;;;;;;:16;:39::i;25628:1275::-;25695:7;25730;;82418:1;25779:23;25775:1061;;25832:13;;25825:4;:20;25821:1015;;;25870:14;25887:23;;;:17;:23;;;;;;;-1:-1:-1;;;25976:24:0;;:29;;25972:845;;26641:113;26648:6;26658:1;26648:11;26641:113;;-1:-1:-1;;;26719:6:0;26701:25;;;;:17;:25;;;;;;26641:113;;25972:845;25847:989;25821:1015;26864:31;;-1:-1:-1;;;26864:31:0;;;;;;;;;;;67063:132;66971:6;;-1:-1:-1;;;;;66971:6:0;53337:10;67127:23;67119:68;;;;-1:-1:-1;;;67119:68:0;;14400:2:1;67119:68:0;;;14382:21:1;;;14419:18;;;14412:30;14478:34;14458:18;;;14451:62;14530:18;;67119:68:0;14198:356:1;68165:191:0;68258:6;;;-1:-1:-1;;;;;68275:17:0;;;-1:-1:-1;;;;;;68275:17:0;;;;;;;68308:40;;68258:6;;;68275:17;68258:6;;68308:40;;68239:16;;68308:40;68228:128;68165:191;:::o;47082:112::-;47159:27;47169:2;47173:8;47159:27;;;;;;;;;;;;:9;:27::i;30129:234::-;53337:10;30224:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30224:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30224:60:0;;;;;;;;;;30300:55;;540:41:1;;;30224:49:0;;53337:10;30300:55;;513:18:1;30300:55:0;;;;;;;30129:234;;:::o;36922:407::-;37097:31;37110:4;37116:2;37120:7;37097:12;:31::i;:::-;-1:-1:-1;;;;;37143:14:0;;;:19;37139:183;;37182:56;37213:4;37219:2;37223:7;37232:5;37182:30;:56::i;:::-;37177:145;;37266:40;;-1:-1:-1;;;37266:40:0;;;;;;;;;;;81796:108;81856:13;81889:7;81882:14;;;;;:::i;53457:1745::-;53522:17;53956:4;53949;53943:11;53939:22;54048:1;54042:4;54035:15;54123:4;54120:1;54116:12;54109:19;;;54205:1;54200:3;54193:14;54309:3;54548:5;54530:428;54596:1;54591:3;54587:11;54580:18;;54767:2;54761:4;54757:13;54753:2;54749:22;54744:3;54736:36;54861:2;54851:13;;54918:25;54530:428;54918:25;-1:-1:-1;54988:13:0;;;-1:-1:-1;;55103:14:0;;;55165:19;;;55103:14;53457:1745;-1:-1:-1;53457:1745:0:o;46309:689::-;46440:19;46446:2;46450:8;46440:5;:19::i;:::-;-1:-1:-1;;;;;46501:14:0;;;:19;46497:483;;46541:11;46555:13;46603:14;;;46636:233;46667:62;46706:1;46710:2;46714:7;;;;;;46723:5;46667:30;:62::i;:::-;46662:167;;46765:40;;-1:-1:-1;;;46765:40:0;;;;;;;;;;;46662:167;46864:3;46856:5;:11;46636:233;;46951:3;46934:13;;:20;46930:34;;46956:8;;;39413:716;39597:88;;-1:-1:-1;;;39597:88:0;;39576:4;;-1:-1:-1;;;;;39597:45:0;;;;;:88;;53337:10;;39664:4;;39670:7;;39679:5;;39597:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39597:88:0;;;;;;;;-1:-1:-1;;39597:88:0;;;;;;;;;;;;:::i;:::-;;;39593:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39880:6;:13;39897:1;39880:18;39876:235;;39926:40;;-1:-1:-1;;;39926:40:0;;;;;;;;;;;39876:235;40069:6;40063:13;40054:6;40050:2;40046:15;40039:38;39593:529;-1:-1:-1;;;;;;39756:64:0;-1:-1:-1;;;39756:64:0;;-1:-1:-1;39593:529:0;39413:716;;;;;;:::o;40591:2966::-;40664:20;40687:13;;;40715;;;40711:44;;40737:18;;-1:-1:-1;;;40737:18:0;;;;;;;;;;;40711:44;-1:-1:-1;;;;;41243:22:0;;;;;;:18;:22;;;;14312:2;41243:22;;;:71;;41281:32;41269:45;;41243:71;;;41557:31;;;:17;:31;;;;;-1:-1:-1;28293:15:0;;28267:24;28263:46;27862:11;27837:23;27833:41;27830:52;27820:63;;41557:173;;41792:23;;;;41557:31;;41243:22;;42557:25;41243:22;;42410:335;43071:1;43057:12;43053:20;43011:346;43112:3;43103:7;43100:16;43011:346;;43330:7;43320:8;43317:1;43290:25;43287:1;43284;43279:59;43165:1;43152:15;43011:346;;;43015:77;43390:8;43402:1;43390:13;43386:45;;43412:19;;-1:-1:-1;;;43412:19:0;;;;;;;;;;;43386:45;43448:13;:19;-1:-1:-1;83398:165:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2933:186::-;2992:6;3045:2;3033:9;3024:7;3020:23;3016:32;3013:52;;;3061:1;3058;3051:12;3013:52;3084:29;3103:9;3084:29;:::i;3124:127::-;3185:10;3180:3;3176:20;3173:1;3166:31;3216:4;3213:1;3206:15;3240:4;3237:1;3230:15;3256:632;3321:5;3351:18;3392:2;3384:6;3381:14;3378:40;;;3398:18;;:::i;:::-;3473:2;3467:9;3441:2;3527:15;;-1:-1:-1;;3523:24:1;;;3549:2;3519:33;3515:42;3503:55;;;3573:18;;;3593:22;;;3570:46;3567:72;;;3619:18;;:::i;:::-;3659:10;3655:2;3648:22;3688:6;3679:15;;3718:6;3710;3703:22;3758:3;3749:6;3744:3;3740:16;3737:25;3734:45;;;3775:1;3772;3765:12;3734:45;3825:6;3820:3;3813:4;3805:6;3801:17;3788:44;3880:1;3873:4;3864:6;3856;3852:19;3848:30;3841:41;;;;3256:632;;;;;:::o;3893:451::-;3962:6;4015:2;4003:9;3994:7;3990:23;3986:32;3983:52;;;4031:1;4028;4021:12;3983:52;4071:9;4058:23;4104:18;4096:6;4093:30;4090:50;;;4136:1;4133;4126:12;4090:50;4159:22;;4212:4;4204:13;;4200:27;-1:-1:-1;4190:55:1;;4241:1;4238;4231:12;4190:55;4264:74;4330:7;4325:2;4312:16;4307:2;4303;4299:11;4264:74;:::i;4349:118::-;4435:5;4428:13;4421:21;4414:5;4411:32;4401:60;;4457:1;4454;4447:12;4472:315;4537:6;4545;4598:2;4586:9;4577:7;4573:23;4569:32;4566:52;;;4614:1;4611;4604:12;4566:52;4637:29;4656:9;4637:29;:::i;:::-;4627:39;;4716:2;4705:9;4701:18;4688:32;4729:28;4751:5;4729:28;:::i;:::-;4776:5;4766:15;;;4472:315;;;;;:::o;4792:667::-;4887:6;4895;4903;4911;4964:3;4952:9;4943:7;4939:23;4935:33;4932:53;;;4981:1;4978;4971:12;4932:53;5004:29;5023:9;5004:29;:::i;:::-;4994:39;;5052:38;5086:2;5075:9;5071:18;5052:38;:::i;:::-;5042:48;;5137:2;5126:9;5122:18;5109:32;5099:42;;5192:2;5181:9;5177:18;5164:32;5219:18;5211:6;5208:30;5205:50;;;5251:1;5248;5241:12;5205:50;5274:22;;5327:4;5319:13;;5315:27;-1:-1:-1;5305:55:1;;5356:1;5353;5346:12;5305:55;5379:74;5445:7;5440:2;5427:16;5422:2;5418;5414:11;5379:74;:::i;:::-;5369:84;;;4792:667;;;;;;;:::o;5464:260::-;5532:6;5540;5593:2;5581:9;5572:7;5568:23;5564:32;5561:52;;;5609:1;5606;5599:12;5561:52;5632:29;5651:9;5632:29;:::i;:::-;5622:39;;5680:38;5714:2;5703:9;5699:18;5680:38;:::i;:::-;5670:48;;5464:260;;;;;:::o;5729:380::-;5808:1;5804:12;;;;5851;;;5872:61;;5926:4;5918:6;5914:17;5904:27;;5872:61;5979:2;5971:6;5968:14;5948:18;5945:38;5942:161;;6025:10;6020:3;6016:20;6013:1;6006:31;6060:4;6057:1;6050:15;6088:4;6085:1;6078:15;5942:161;;5729:380;;;:::o;6684:404::-;6886:2;6868:21;;;6925:2;6905:18;;;6898:30;6964:34;6959:2;6944:18;;6937:62;-1:-1:-1;;;7030:2:1;7015:18;;7008:38;7078:3;7063:19;;6684:404::o;7219:545::-;7321:2;7316:3;7313:11;7310:448;;;7357:1;7382:5;7378:2;7371:17;7427:4;7423:2;7413:19;7497:2;7485:10;7481:19;7478:1;7474:27;7468:4;7464:38;7533:4;7521:10;7518:20;7515:47;;;-1:-1:-1;7556:4:1;7515:47;7611:2;7606:3;7602:12;7599:1;7595:20;7589:4;7585:31;7575:41;;7666:82;7684:2;7677:5;7674:13;7666:82;;;7729:17;;;7710:1;7699:13;7666:82;;7940:1352;8066:3;8060:10;8093:18;8085:6;8082:30;8079:56;;;8115:18;;:::i;:::-;8144:97;8234:6;8194:38;8226:4;8220:11;8194:38;:::i;:::-;8188:4;8144:97;:::i;:::-;8296:4;;8360:2;8349:14;;8377:1;8372:663;;;;9079:1;9096:6;9093:89;;;-1:-1:-1;9148:19:1;;;9142:26;9093:89;-1:-1:-1;;7897:1:1;7893:11;;;7889:24;7885:29;7875:40;7921:1;7917:11;;;7872:57;9195:81;;8342:944;;8372:663;7166:1;7159:14;;;7203:4;7190:18;;-1:-1:-1;;8408:20:1;;;8526:236;8540:7;8537:1;8534:14;8526:236;;;8629:19;;;8623:26;8608:42;;8721:27;;;;8689:1;8677:14;;;;8556:19;;8526:236;;;8530:3;8790:6;8781:7;8778:19;8775:201;;;8851:19;;;8845:26;-1:-1:-1;;8934:1:1;8930:14;;;8946:3;8926:24;8922:37;8918:42;8903:58;8888:74;;8775:201;-1:-1:-1;;;;;9022:1:1;9006:14;;;9002:22;8989:36;;-1:-1:-1;7940:1352:1:o;9651:127::-;9712:10;9707:3;9703:20;9700:1;9693:31;9743:4;9740:1;9733:15;9767:4;9764:1;9757:15;9783:125;9848:9;;;9869:10;;;9866:36;;;9882:18;;:::i;10672:168::-;10745:9;;;10776;;10793:15;;;10787:22;;10773:37;10763:71;;10814:18;;:::i;11611:1256::-;11835:3;11873:6;11867:13;11899:4;11912:64;11969:6;11964:3;11959:2;11951:6;11947:15;11912:64;:::i;:::-;12039:13;;11998:16;;;;12061:68;12039:13;11998:16;12096:15;;;12061:68;:::i;:::-;12218:13;;12151:20;;;12191:1;;12256:36;12218:13;12256:36;:::i;:::-;12311:1;12328:18;;;12355:141;;;;12510:1;12505:337;;;;12321:521;;12355:141;-1:-1:-1;;12390:24:1;;12376:39;;12467:16;;12460:24;12446:39;;12435:51;;;-1:-1:-1;12355:141:1;;12505:337;12536:6;12533:1;12526:17;12584:2;12581:1;12571:16;12609:1;12623:169;12637:8;12634:1;12631:15;12623:169;;;12719:14;;12704:13;;;12697:37;12762:16;;;;12654:10;;12623:169;;;12627:3;;12823:8;12816:5;12812:20;12805:27;;12321:521;-1:-1:-1;12858:3:1;;11611:1256;-1:-1:-1;;;;;;;;;;11611:1256:1:o;13588:245::-;13655:6;13708:2;13696:9;13687:7;13683:23;13679:32;13676:52;;;13724:1;13721;13714:12;13676:52;13756:9;13750:16;13775:28;13797:5;13775:28;:::i;14559:489::-;-1:-1:-1;;;;;14828:15:1;;;14810:34;;14880:15;;14875:2;14860:18;;14853:43;14927:2;14912:18;;14905:34;;;14975:3;14970:2;14955:18;;14948:31;;;14753:4;;14996:46;;15022:19;;15014:6;14996:46;:::i;:::-;14988:54;14559:489;-1:-1:-1;;;;;;14559:489:1:o;15053:249::-;15122:6;15175:2;15163:9;15154:7;15150:23;15146:32;15143:52;;;15191:1;15188;15181:12;15143:52;15223:9;15217:16;15242:30;15266:5;15242:30;:::i

Swarm Source

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