ETH Price: $3,300.21 (-3.49%)
Gas: 13 Gwei

Token

TarotLandCards (TLC)
 

Overview

Max Total Supply

330 TLC

Holders

330

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TLC
0xefc75499021007690828fa16967339c3ef4cf3f4
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:
Mystery

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-26
*/

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/TarotLandCards.sol



pragma solidity >=0.8.7 <0.9.0;






interface IToken {
    function balanceOf(address) external view returns (uint256);
}

interface ITarot {
    function enableTrading() external ;
}

contract setUpMystery  {
    string public mystery = "Welcome... Please get the first quest.";
    Quest[] private quest;
    address private addr;// only the person who deploys the contract is allowed to add a Quest;
    address public user ;
    bool public _mysterySolved = false;
    // Only the person who deploys the contract can add Quests
    constructor() {
        addr = msg.sender;
    }



    struct Quest {
        string mystery;             // Gives Mistery
        bytes32 sealedMessage;      // Seal answer into a hash
    }
  

    function createHashFromAnswer(string memory secret) private pure returns (bytes32 _sealedMessage){
        _sealedMessage = keccak256(abi.encodePacked(secret));
    }
    
    function getSolved () external view returns(bool){
       return _mysterySolved;

    }

    

    function addQuest(string memory _mystery, string memory _answer) external {   // Note: all answers have to be unique

        // Require an entry for the mystery and an answer
        require(addr==msg.sender, "You do not have permission to add a Quest");
        require(bytes(_answer).length > 0, "Mystery is empty");
        require(bytes(_answer).length > 0, "Answer is empty");

        bytes32 sealedMessage = createHashFromAnswer(_answer);
        for(uint i=0; i<quest.length; i++){
                require(sealedMessage != quest[i].sealedMessage,"Answer already exists.");
            }


        // Add mystery and hash of answer to Quest
        quest.push(Quest(_mystery,sealedMessage));
    }


    function removeLastQuest() external {   // Note: all answers have to be unique

        require(addr==msg.sender, "You do not have permission to add a Quest");
        require(quest.length>0, "There is no Quest available");

        // Add mystery and hash of answer to Quest
        quest.pop();
    }
  
    function getQuest(string memory _answer) external returns (string memory) {
        
        require(quest.length>0,"No Quests available");
        bytes32 sealedMessage = createHashFromAnswer(_answer);
        uint correctAnswerPosition = quest.length;
        // Empty answer or 0 gives first quest
        if (bytes(_answer).length==0 || createHashFromAnswer("0")==sealedMessage){
            mystery = quest[0].mystery;
            _mysterySolved = false;
        } else {
            // checke if answer is valid for one of the mistery
             
            for(uint i=0; i<quest.length; i++){
                if (quest[i].sealedMessage == sealedMessage) {
                    correctAnswerPosition = i;
                    _mysterySolved = false;
                }
            }
            if (correctAnswerPosition == quest.length){ // No answer was found
                mystery = "You failed.... Try again. Rebsubmit the previous answer to read the question again";
                _mysterySolved = false;
            } else if (correctAnswerPosition == quest.length-1){ 
                mystery = "Congratulation, you finished all the Quests!. You will receive your NFT card shortly";
                _mysterySolved = true;
            } else {
                mystery = quest[correctAnswerPosition+1].mystery;
            }


        }
        
        return mystery;
       

    }



}



contract Mystery is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    uint256 public cards = 330;
    uint256 public _totalSeekers = 0;
    uint256 public cardsTillOpen = 222;
    bool public openERC20 = false;
    address tarotERC20;
    string public _tokenURI;
    string public baseExtension = ".json";
    mapping(address => bool) public claimStatuses;
    mapping(address => bool) public hasSolved;
    setUpMystery  _mystery;
    mapping(address => string) public mystery;
    
    event Attest(address indexed to, uint256 indexed tokenId);
    event Revoke(address indexed to, uint256 indexed tokenId);


    constructor(address _contractAddress, string memory _baseuri)ERC721A('TarotLandCards', 'TLC') { 
        _mystery = setUpMystery(_contractAddress);
        _tokenURI=_baseuri;
    }
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return _tokenURI;
    }
    function setTarotERC20(address _tarotERC20) public onlyOwner {
        tarotERC20 = _tarotERC20;
    }
    function getSolved () private returns(bool) {
       hasSolved[msg.sender] = _mystery.getSolved();
       return hasSolved[msg.sender];
    }

    function getQuest(string memory _answer) external nonReentrant returns (string memory) {
        mystery[msg.sender] = _mystery.getQuest(_answer);
             if (getSolved()){ 
              uint256 cardId = totalSupply();// Found the answer to the last question
              require(cardId < cards, 'No cards left...');
              require(!claimStatuses[msg.sender], 'Card already claimed');
              _safeMint(msg.sender, 1);
              _totalSeekers++;
              claimStatuses[msg.sender] = true;
               if (_totalSeekers >= cardsTillOpen && !openERC20) {
                  ITarot(tarotERC20).enableTrading();
                  openERC20 = true;
               }
            return mystery[msg.sender];
      } else {
           return mystery[msg.sender];
      }       
  }
  
  function burn(uint256 tokenId) external{
      require(ownerOf(tokenId) == msg.sender, "Only token owner can burn it");
      _burn(tokenId);
  }
  function revoke(uint256 tokenId) onlyOwner external {
      _burn(tokenId);
  }
  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, tokenId.toString(), baseExtension))
        : "";
  }
  function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override virtual {
        require(from == address(0) || to == address(0), "You can't transfer this token");
    }
    function _afterTokenTransfers(
        address from, address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override virtual {
        if(from == address(0)) {
            emit Attest(to, startTokenId);
        } else if (to == address(0)){
            emit Revoke(to, startTokenId);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"string","name":"_baseuri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Attest","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":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Revoke","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":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSeekers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cardsTillOpen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimStatuses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_answer","type":"string"}],"name":"getQuest","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasSolved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mystery","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tarotERC20","type":"address"}],"name":"setTarotERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61014a600a556000600b5560de600c55600d805460ff1916905560c06040526005608090815264173539b7b760d91b60a052600f9062000040908262000215565b503480156200004e57600080fd5b5060405162002352380380620023528339810160408190526200007191620002e1565b6040518060400160405280600e81526020016d5461726f744c616e64436172647360901b81525060405180604001604052806003815260200162544c4360e81b8152508160029081620000c5919062000215565b506003620000d4828262000215565b5050600160005550620000e7336200011e565b6001600955601280546001600160a01b0319166001600160a01b038416179055600e62000115828262000215565b505050620003d7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019b57607f821691505b602082108103620001bc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021057600081815260208120601f850160051c81016020861015620001eb5750805b601f850160051c820191505b818110156200020c57828155600101620001f7565b5050505b505050565b81516001600160401b0381111562000231576200023162000170565b620002498162000242845462000186565b84620001c2565b602080601f831160018114620002815760008415620002685750858301515b600019600386901b1c1916600185901b1785556200020c565b600085815260208120601f198616915b82811015620002b25788860151825594840194600190910190840162000291565b5085821015620002d15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008060408385031215620002f557600080fd5b82516001600160a01b03811681146200030d57600080fd5b602084810151919350906001600160401b03808211156200032d57600080fd5b818601915086601f8301126200034257600080fd5b81518181111562000357576200035762000170565b604051601f8201601f19908116603f0116810190838211818310171562000382576200038262000170565b8160405282815289868487010111156200039b57600080fd5b600093505b82841015620003bf5784840186015181850187015292850192620003a0565b60008684830101528096505050505050509250929050565b611f6b80620003e76000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f7578063b88d4fde11610095578063ccb4ba9f11610064578063ccb4ba9f146104ee578063dcd6c86114610504578063e985e9c514610524578063f2fde38b1461054457600080fd5b8063b88d4fde14610476578063c0bf3e2d14610489578063c6682862146104b9578063c87b56dd146104ce57600080fd5b80638da5cb5b116100d15780638da5cb5b1461040e57806395d89b411461042c578063a22cb46514610441578063b4ce37d21461046157600080fd5b80636352211e146103b957806370a08231146103d9578063715018a6146103f957600080fd5b806320c5429b1161016f57806342966c681161013e57806342966c681461035357806358a4903f1461037357806361a213f61461038957806362ed0261146103a357600080fd5b806320c5429b146102ed57806323b872dd1461030d57806339e817db1461032057806342842e0e1461034057600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd146102765780631bd8ef781461029d5780631f1469c3146102bd57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461187e565b610564565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105b6565b6040516101fe91906118eb565b34801561023557600080fd5b506102496102443660046118fe565b610648565b6040516001600160a01b0390911681526020016101fe565b61027461026f366004611933565b61068c565b005b34801561028257600080fd5b5060015460005403600019015b6040519081526020016101fe565b3480156102a957600080fd5b5061021c6102b836600461195d565b61072c565b3480156102c957600080fd5b506101f26102d836600461195d565b60116020526000908152604090205460ff1681565b3480156102f957600080fd5b506102746103083660046118fe565b6107c6565b61027461031b366004611978565b6107da565b34801561032c57600080fd5b5061027461033b36600461195d565b610984565b61027461034e366004611978565b6109b4565b34801561035f57600080fd5b5061027461036e3660046118fe565b6109d4565b34801561037f57600080fd5b5061028f600a5481565b34801561039557600080fd5b50600d546101f29060ff1681565b3480156103af57600080fd5b5061028f600c5481565b3480156103c557600080fd5b506102496103d43660046118fe565b610a39565b3480156103e557600080fd5b5061028f6103f436600461195d565b610a44565b34801561040557600080fd5b50610274610a93565b34801561041a57600080fd5b506008546001600160a01b0316610249565b34801561043857600080fd5b5061021c610aa7565b34801561044d57600080fd5b5061027461045c3660046119c2565b610ab6565b34801561046d57600080fd5b5061021c610b22565b610274610484366004611aa6565b610b2f565b34801561049557600080fd5b506101f26104a436600461195d565b60106020526000908152604090205460ff1681565b3480156104c557600080fd5b5061021c610b79565b3480156104da57600080fd5b5061021c6104e93660046118fe565b610b86565b3480156104fa57600080fd5b5061028f600b5481565b34801561051057600080fd5b5061021c61051f366004611b22565b610c54565b34801561053057600080fd5b506101f261053f366004611b6b565b61100f565b34801561055057600080fd5b5061027461055f36600461195d565b61103d565b60006301ffc9a760e01b6001600160e01b03198316148061059557506380ac58cd60e01b6001600160e01b03198316145b806105b05750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105c590611b9e565b80601f01602080910402602001604051908101604052809291908181526020018280546105f190611b9e565b801561063e5780601f106106135761010080835404028352916020019161063e565b820191906000526020600020905b81548152906001019060200180831161062157829003601f168201915b5050505050905090565b6000610653826110b3565b610670576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069782610a39565b9050336001600160a01b038216146106d0576106b3813361100f565b6106d0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6013602052600090815260409020805461074590611b9e565b80601f016020809104026020016040519081016040528092919081815260200182805461077190611b9e565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b505050505081565b6107ce6110e8565b6107d781611142565b50565b60006107e58261114d565b9050836001600160a01b0316816001600160a01b0316146108185760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546108448187335b6001600160a01b039081169116811491141790565b61086f57610852863361100f565b61086f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661089657604051633a954ecd60e21b815260040160405180910390fd5b6108a386868660016111bc565b80156108ae57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109405760018401600081815260046020526040812054900361093e57600054811461093e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020611f1683398151915260405160405180910390a461097c8686866001611225565b505050505050565b61098c6110e8565b600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6109cf83838360405180602001604052806000815250610b2f565b505050565b336109de82610a39565b6001600160a01b0316146107ce5760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c7920746f6b656e206f776e65722063616e206275726e2069740000000060448201526064015b60405180910390fd5b60006105b08261114d565b60006001600160a01b038216610a6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a9b6110e8565b610aa560006112b8565b565b6060600380546105c590611b9e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e805461074590611b9e565b610b3a8484846107da565b6001600160a01b0383163b15610b7357610b568484848461130a565b610b73576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600f805461074590611b9e565b6060610b91826110b3565b610bf55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a30565b6000610bff6113f6565b90506000815111610c1f5760405180602001604052806000815250610c4d565b80610c2984611405565b600f604051602001610c3d93929190611bd8565b6040516020818303038152906040525b9392505050565b6060600260095403610ca85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a30565b600260095560125460405163dcd6c86160e01b81526001600160a01b039091169063dcd6c86190610cdd9085906004016118eb565b6000604051808303816000875af1158015610cfc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d249190810190611c78565b33600090815260136020526040902090610d3e9082611d35565b50610d47611506565b15610f6a576000610d616001546000546000199190030190565b9050600a548110610da75760405162461bcd60e51b815260206004820152601060248201526f27379031b0b93239903632b33a17171760811b6044820152606401610a30565b3360009081526010602052604090205460ff1615610dfe5760405162461bcd60e51b815260206004820152601460248201527310d85c9908185b1c9958591e4818db185a5b595960621b6044820152606401610a30565b610e09336001611599565b600b8054906000610e1983611e0b565b9091555050336000908152601060205260409020805460ff19166001179055600c54600b5410801590610e4f5750600d5460ff16155b15610eca57600d60019054906101000a90046001600160a01b03166001600160a01b0316638a8c523c6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ea457600080fd5b505af1158015610eb8573d6000803e3d6000fd5b5050600d805460ff1916600117905550505b3360009081526013602052604090208054610ee490611b9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1090611b9e565b8015610f5d5780601f10610f3257610100808354040283529160200191610f5d565b820191906000526020600020905b815481529060010190602001808311610f4057829003601f168201915b5050505050915050611005565b3360009081526013602052604090208054610f8490611b9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb090611b9e565b8015610ffd5780601f10610fd257610100808354040283529160200191610ffd565b820191906000526020600020905b815481529060010190602001808311610fe057829003601f168201915b505050505090505b6001600955919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6110456110e8565b6001600160a01b0381166110aa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a30565b6107d7816112b8565b6000816001111580156110c7575060005482105b80156105b0575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610aa55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a30565b6107d78160006115b7565b600081806001116111a3576000548110156111a35760008181526004602052604081205490600160e01b821690036111a1575b80600003610c4d575060001901600081815260046020526040902054611180565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03841615806111d957506001600160a01b038316155b610b735760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e2774207472616e73666572207468697320746f6b656e0000006044820152606401610a30565b6001600160a01b03841661126e5760405182906001600160a01b038516907fe9274a84b19e9428826de6bae8c48329354f8f0e73f771b97cae2d9dccd45a2790600090a3610b73565b6001600160a01b038316610b735760405182906001600160a01b038516907fec9ab91322523c899ede7830ec9bfc992b5981cdcc27b91162fb23de5791117b90600090a350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061133f903390899088908890600401611e24565b6020604051808303816000875af192505050801561137a575060408051601f3d908101601f1916820190925261137791810190611e61565b60015b6113d8573d8080156113a8576040519150601f19603f3d011682016040523d82523d6000602084013e6113ad565b606091505b5080516000036113d0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546105c590611b9e565b60608160000361142c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611456578061144081611e0b565b915061144f9050600a83611e94565b9150611430565b60008167ffffffffffffffff811115611471576114716119f9565b6040519080825280601f01601f19166020018201604052801561149b576020820181803683370190505b5090505b84156113ee576114b0600183611ea8565b91506114bd600a86611ebb565b6114c8906030611ecf565b60f81b8183815181106114dd576114dd611ee2565b60200101906001600160f81b031916908160001a9053506114ff600a86611e94565b945061149f565b601254604080516373cc5b4760e11b815290516000926001600160a01b03169163e798b68e9160048083019260209291908290030181865afa158015611550573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115749190611ef8565b336000908152601160205260409020805460ff1916911515918217905560ff16919050565b6115b382826040518060200160405280600081525061170b565b5050565b60006115c28361114d565b9050806000806115e086600090815260066020526040902080549091565b915091508415611620576115f581843361082f565b61162057611603833361100f565b61162057604051632ce44b5f60e11b815260040160405180910390fd5b61162e8360008860016111bc565b801561163957600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b851690036116c7576001860160008181526004602052604081205490036116c55760005481146116c55760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020611f16833981519152908390a46116fb836000886001611225565b5050600180548101905550505050565b6117158383611778565b6001600160a01b0383163b156109cf576000548281035b61173f600086838060010194508661130a565b61175c576040516368d2bf6b60e11b815260040160405180910390fd5b81811061172c57816000541461177157600080fd5b5050505050565b600080549082900361179d5760405163b562e8dd60e01b815260040160405180910390fd5b6117aa60008483856111bc565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020611f168339815191528180a4600183015b8181146118355780836000600080516020611f16833981519152600080a460010161180f565b508160000361185657604051622e076360e81b815260040160405180910390fd5b60009081556109cf9150848385611225565b6001600160e01b0319811681146107d757600080fd5b60006020828403121561189057600080fd5b8135610c4d81611868565b60005b838110156118b657818101518382015260200161189e565b50506000910152565b600081518084526118d781602086016020860161189b565b601f01601f19169290920160200192915050565b602081526000610c4d60208301846118bf565b60006020828403121561191057600080fd5b5035919050565b80356001600160a01b038116811461192e57600080fd5b919050565b6000806040838503121561194657600080fd5b61194f83611917565b946020939093013593505050565b60006020828403121561196f57600080fd5b610c4d82611917565b60008060006060848603121561198d57600080fd5b61199684611917565b92506119a460208501611917565b9150604084013590509250925092565b80151581146107d757600080fd5b600080604083850312156119d557600080fd5b6119de83611917565b915060208301356119ee816119b4565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611a3857611a386119f9565b604052919050565b600067ffffffffffffffff821115611a5a57611a5a6119f9565b50601f01601f191660200190565b6000611a7b611a7684611a40565b611a0f565b9050828152838383011115611a8f57600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215611abc57600080fd5b611ac585611917565b9350611ad360208601611917565b925060408501359150606085013567ffffffffffffffff811115611af657600080fd5b8501601f81018713611b0757600080fd5b611b1687823560208401611a68565b91505092959194509250565b600060208284031215611b3457600080fd5b813567ffffffffffffffff811115611b4b57600080fd5b8201601f81018413611b5c57600080fd5b6113ee84823560208401611a68565b60008060408385031215611b7e57600080fd5b611b8783611917565b9150611b9560208401611917565b90509250929050565b600181811c90821680611bb257607f821691505b602082108103611bd257634e487b7160e01b600052602260045260246000fd5b50919050565b600084516020611beb8285838a0161189b565b855191840191611bfe8184848a0161189b565b8554920191600090611c0f81611b9e565b60018281168015611c275760018114611c3c57611c68565b60ff1984168752821515830287019450611c68565b896000528560002060005b84811015611c6057815489820152908301908701611c47565b505082870194505b50929a9950505050505050505050565b600060208284031215611c8a57600080fd5b815167ffffffffffffffff811115611ca157600080fd5b8201601f81018413611cb257600080fd5b8051611cc0611a7682611a40565b818152856020838501011115611cd557600080fd5b611ce682602083016020860161189b565b95945050505050565b601f8211156109cf57600081815260208120601f850160051c81016020861015611d165750805b601f850160051c820191505b8181101561097c57828155600101611d22565b815167ffffffffffffffff811115611d4f57611d4f6119f9565b611d6381611d5d8454611b9e565b84611cef565b602080601f831160018114611d985760008415611d805750858301515b600019600386901b1c1916600185901b17855561097c565b600085815260208120601f198616915b82811015611dc757888601518255948401946001909101908401611da8565b5085821015611de55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600060018201611e1d57611e1d611df5565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e57908301846118bf565b9695505050505050565b600060208284031215611e7357600080fd5b8151610c4d81611868565b634e487b7160e01b600052601260045260246000fd5b600082611ea357611ea3611e7e565b500490565b818103818111156105b0576105b0611df5565b600082611eca57611eca611e7e565b500690565b808201808211156105b0576105b0611df5565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f0a57600080fd5b8151610c4d816119b456feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212209479954b2b679079d0e86b15f31c8f9f94d2bb1750280ea6fe10bcb3f1a3d7d364736f6c634300081100330000000000000000000000005e0a83e8742ff49a4b6ca6fec73d3332a8f1d2d800000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569616734613765647474643534797667797561766e71676c7669716267756e74736c3267676e7879637762367a6c727062776d77752f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f7578063b88d4fde11610095578063ccb4ba9f11610064578063ccb4ba9f146104ee578063dcd6c86114610504578063e985e9c514610524578063f2fde38b1461054457600080fd5b8063b88d4fde14610476578063c0bf3e2d14610489578063c6682862146104b9578063c87b56dd146104ce57600080fd5b80638da5cb5b116100d15780638da5cb5b1461040e57806395d89b411461042c578063a22cb46514610441578063b4ce37d21461046157600080fd5b80636352211e146103b957806370a08231146103d9578063715018a6146103f957600080fd5b806320c5429b1161016f57806342966c681161013e57806342966c681461035357806358a4903f1461037357806361a213f61461038957806362ed0261146103a357600080fd5b806320c5429b146102ed57806323b872dd1461030d57806339e817db1461032057806342842e0e1461034057600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd146102765780631bd8ef781461029d5780631f1469c3146102bd57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461187e565b610564565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105b6565b6040516101fe91906118eb565b34801561023557600080fd5b506102496102443660046118fe565b610648565b6040516001600160a01b0390911681526020016101fe565b61027461026f366004611933565b61068c565b005b34801561028257600080fd5b5060015460005403600019015b6040519081526020016101fe565b3480156102a957600080fd5b5061021c6102b836600461195d565b61072c565b3480156102c957600080fd5b506101f26102d836600461195d565b60116020526000908152604090205460ff1681565b3480156102f957600080fd5b506102746103083660046118fe565b6107c6565b61027461031b366004611978565b6107da565b34801561032c57600080fd5b5061027461033b36600461195d565b610984565b61027461034e366004611978565b6109b4565b34801561035f57600080fd5b5061027461036e3660046118fe565b6109d4565b34801561037f57600080fd5b5061028f600a5481565b34801561039557600080fd5b50600d546101f29060ff1681565b3480156103af57600080fd5b5061028f600c5481565b3480156103c557600080fd5b506102496103d43660046118fe565b610a39565b3480156103e557600080fd5b5061028f6103f436600461195d565b610a44565b34801561040557600080fd5b50610274610a93565b34801561041a57600080fd5b506008546001600160a01b0316610249565b34801561043857600080fd5b5061021c610aa7565b34801561044d57600080fd5b5061027461045c3660046119c2565b610ab6565b34801561046d57600080fd5b5061021c610b22565b610274610484366004611aa6565b610b2f565b34801561049557600080fd5b506101f26104a436600461195d565b60106020526000908152604090205460ff1681565b3480156104c557600080fd5b5061021c610b79565b3480156104da57600080fd5b5061021c6104e93660046118fe565b610b86565b3480156104fa57600080fd5b5061028f600b5481565b34801561051057600080fd5b5061021c61051f366004611b22565b610c54565b34801561053057600080fd5b506101f261053f366004611b6b565b61100f565b34801561055057600080fd5b5061027461055f36600461195d565b61103d565b60006301ffc9a760e01b6001600160e01b03198316148061059557506380ac58cd60e01b6001600160e01b03198316145b806105b05750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105c590611b9e565b80601f01602080910402602001604051908101604052809291908181526020018280546105f190611b9e565b801561063e5780601f106106135761010080835404028352916020019161063e565b820191906000526020600020905b81548152906001019060200180831161062157829003601f168201915b5050505050905090565b6000610653826110b3565b610670576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069782610a39565b9050336001600160a01b038216146106d0576106b3813361100f565b6106d0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6013602052600090815260409020805461074590611b9e565b80601f016020809104026020016040519081016040528092919081815260200182805461077190611b9e565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b505050505081565b6107ce6110e8565b6107d781611142565b50565b60006107e58261114d565b9050836001600160a01b0316816001600160a01b0316146108185760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546108448187335b6001600160a01b039081169116811491141790565b61086f57610852863361100f565b61086f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661089657604051633a954ecd60e21b815260040160405180910390fd5b6108a386868660016111bc565b80156108ae57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109405760018401600081815260046020526040812054900361093e57600054811461093e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020611f1683398151915260405160405180910390a461097c8686866001611225565b505050505050565b61098c6110e8565b600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6109cf83838360405180602001604052806000815250610b2f565b505050565b336109de82610a39565b6001600160a01b0316146107ce5760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c7920746f6b656e206f776e65722063616e206275726e2069740000000060448201526064015b60405180910390fd5b60006105b08261114d565b60006001600160a01b038216610a6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a9b6110e8565b610aa560006112b8565b565b6060600380546105c590611b9e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e805461074590611b9e565b610b3a8484846107da565b6001600160a01b0383163b15610b7357610b568484848461130a565b610b73576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600f805461074590611b9e565b6060610b91826110b3565b610bf55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a30565b6000610bff6113f6565b90506000815111610c1f5760405180602001604052806000815250610c4d565b80610c2984611405565b600f604051602001610c3d93929190611bd8565b6040516020818303038152906040525b9392505050565b6060600260095403610ca85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a30565b600260095560125460405163dcd6c86160e01b81526001600160a01b039091169063dcd6c86190610cdd9085906004016118eb565b6000604051808303816000875af1158015610cfc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d249190810190611c78565b33600090815260136020526040902090610d3e9082611d35565b50610d47611506565b15610f6a576000610d616001546000546000199190030190565b9050600a548110610da75760405162461bcd60e51b815260206004820152601060248201526f27379031b0b93239903632b33a17171760811b6044820152606401610a30565b3360009081526010602052604090205460ff1615610dfe5760405162461bcd60e51b815260206004820152601460248201527310d85c9908185b1c9958591e4818db185a5b595960621b6044820152606401610a30565b610e09336001611599565b600b8054906000610e1983611e0b565b9091555050336000908152601060205260409020805460ff19166001179055600c54600b5410801590610e4f5750600d5460ff16155b15610eca57600d60019054906101000a90046001600160a01b03166001600160a01b0316638a8c523c6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ea457600080fd5b505af1158015610eb8573d6000803e3d6000fd5b5050600d805460ff1916600117905550505b3360009081526013602052604090208054610ee490611b9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1090611b9e565b8015610f5d5780601f10610f3257610100808354040283529160200191610f5d565b820191906000526020600020905b815481529060010190602001808311610f4057829003601f168201915b5050505050915050611005565b3360009081526013602052604090208054610f8490611b9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb090611b9e565b8015610ffd5780601f10610fd257610100808354040283529160200191610ffd565b820191906000526020600020905b815481529060010190602001808311610fe057829003601f168201915b505050505090505b6001600955919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6110456110e8565b6001600160a01b0381166110aa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a30565b6107d7816112b8565b6000816001111580156110c7575060005482105b80156105b0575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610aa55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a30565b6107d78160006115b7565b600081806001116111a3576000548110156111a35760008181526004602052604081205490600160e01b821690036111a1575b80600003610c4d575060001901600081815260046020526040902054611180565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03841615806111d957506001600160a01b038316155b610b735760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e2774207472616e73666572207468697320746f6b656e0000006044820152606401610a30565b6001600160a01b03841661126e5760405182906001600160a01b038516907fe9274a84b19e9428826de6bae8c48329354f8f0e73f771b97cae2d9dccd45a2790600090a3610b73565b6001600160a01b038316610b735760405182906001600160a01b038516907fec9ab91322523c899ede7830ec9bfc992b5981cdcc27b91162fb23de5791117b90600090a350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061133f903390899088908890600401611e24565b6020604051808303816000875af192505050801561137a575060408051601f3d908101601f1916820190925261137791810190611e61565b60015b6113d8573d8080156113a8576040519150601f19603f3d011682016040523d82523d6000602084013e6113ad565b606091505b5080516000036113d0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546105c590611b9e565b60608160000361142c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611456578061144081611e0b565b915061144f9050600a83611e94565b9150611430565b60008167ffffffffffffffff811115611471576114716119f9565b6040519080825280601f01601f19166020018201604052801561149b576020820181803683370190505b5090505b84156113ee576114b0600183611ea8565b91506114bd600a86611ebb565b6114c8906030611ecf565b60f81b8183815181106114dd576114dd611ee2565b60200101906001600160f81b031916908160001a9053506114ff600a86611e94565b945061149f565b601254604080516373cc5b4760e11b815290516000926001600160a01b03169163e798b68e9160048083019260209291908290030181865afa158015611550573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115749190611ef8565b336000908152601160205260409020805460ff1916911515918217905560ff16919050565b6115b382826040518060200160405280600081525061170b565b5050565b60006115c28361114d565b9050806000806115e086600090815260066020526040902080549091565b915091508415611620576115f581843361082f565b61162057611603833361100f565b61162057604051632ce44b5f60e11b815260040160405180910390fd5b61162e8360008860016111bc565b801561163957600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b851690036116c7576001860160008181526004602052604081205490036116c55760005481146116c55760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020611f16833981519152908390a46116fb836000886001611225565b5050600180548101905550505050565b6117158383611778565b6001600160a01b0383163b156109cf576000548281035b61173f600086838060010194508661130a565b61175c576040516368d2bf6b60e11b815260040160405180910390fd5b81811061172c57816000541461177157600080fd5b5050505050565b600080549082900361179d5760405163b562e8dd60e01b815260040160405180910390fd5b6117aa60008483856111bc565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020611f168339815191528180a4600183015b8181146118355780836000600080516020611f16833981519152600080a460010161180f565b508160000361185657604051622e076360e81b815260040160405180910390fd5b60009081556109cf9150848385611225565b6001600160e01b0319811681146107d757600080fd5b60006020828403121561189057600080fd5b8135610c4d81611868565b60005b838110156118b657818101518382015260200161189e565b50506000910152565b600081518084526118d781602086016020860161189b565b601f01601f19169290920160200192915050565b602081526000610c4d60208301846118bf565b60006020828403121561191057600080fd5b5035919050565b80356001600160a01b038116811461192e57600080fd5b919050565b6000806040838503121561194657600080fd5b61194f83611917565b946020939093013593505050565b60006020828403121561196f57600080fd5b610c4d82611917565b60008060006060848603121561198d57600080fd5b61199684611917565b92506119a460208501611917565b9150604084013590509250925092565b80151581146107d757600080fd5b600080604083850312156119d557600080fd5b6119de83611917565b915060208301356119ee816119b4565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611a3857611a386119f9565b604052919050565b600067ffffffffffffffff821115611a5a57611a5a6119f9565b50601f01601f191660200190565b6000611a7b611a7684611a40565b611a0f565b9050828152838383011115611a8f57600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215611abc57600080fd5b611ac585611917565b9350611ad360208601611917565b925060408501359150606085013567ffffffffffffffff811115611af657600080fd5b8501601f81018713611b0757600080fd5b611b1687823560208401611a68565b91505092959194509250565b600060208284031215611b3457600080fd5b813567ffffffffffffffff811115611b4b57600080fd5b8201601f81018413611b5c57600080fd5b6113ee84823560208401611a68565b60008060408385031215611b7e57600080fd5b611b8783611917565b9150611b9560208401611917565b90509250929050565b600181811c90821680611bb257607f821691505b602082108103611bd257634e487b7160e01b600052602260045260246000fd5b50919050565b600084516020611beb8285838a0161189b565b855191840191611bfe8184848a0161189b565b8554920191600090611c0f81611b9e565b60018281168015611c275760018114611c3c57611c68565b60ff1984168752821515830287019450611c68565b896000528560002060005b84811015611c6057815489820152908301908701611c47565b505082870194505b50929a9950505050505050505050565b600060208284031215611c8a57600080fd5b815167ffffffffffffffff811115611ca157600080fd5b8201601f81018413611cb257600080fd5b8051611cc0611a7682611a40565b818152856020838501011115611cd557600080fd5b611ce682602083016020860161189b565b95945050505050565b601f8211156109cf57600081815260208120601f850160051c81016020861015611d165750805b601f850160051c820191505b8181101561097c57828155600101611d22565b815167ffffffffffffffff811115611d4f57611d4f6119f9565b611d6381611d5d8454611b9e565b84611cef565b602080601f831160018114611d985760008415611d805750858301515b600019600386901b1c1916600185901b17855561097c565b600085815260208120601f198616915b82811015611dc757888601518255948401946001909101908401611da8565b5085821015611de55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600060018201611e1d57611e1d611df5565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e57908301846118bf565b9695505050505050565b600060208284031215611e7357600080fd5b8151610c4d81611868565b634e487b7160e01b600052601260045260246000fd5b600082611ea357611ea3611e7e565b500490565b818103818111156105b0576105b0611df5565b600082611eca57611eca611e7e565b500690565b808201808211156105b0576105b0611df5565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f0a57600080fd5b8151610c4d816119b456feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212209479954b2b679079d0e86b15f31c8f9f94d2bb1750280ea6fe10bcb3f1a3d7d364736f6c63430008110033

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

0000000000000000000000005e0a83e8742ff49a4b6ca6fec73d3332a8f1d2d800000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569616734613765647474643534797667797561766e71676c7669716267756e74736c3267676e7879637762367a6c727062776d77752f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _contractAddress (address): 0x5e0A83e8742FF49a4B6cA6feC73D3332A8f1D2d8
Arg [1] : _baseuri (string): ipfs://bafybeiag4a7edttd54yvgyuavnqglviqbguntsl2ggnxycwb6zlrpbwmwu/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000005e0a83e8742ff49a4b6ca6fec73d3332a8f1d2d8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f62616679626569616734613765647474643534797667797561
Arg [4] : 766e71676c7669716267756e74736c3267676e7879637762367a6c727062776d
Arg [5] : 77752f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

103955:3434:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67321:639;;;;;;;;;;-1:-1:-1;67321:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;67321:639:0;;;;;;;;68223:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;74714:218::-;;;;;;;;;;-1:-1:-1;74714:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;74714:218:0;1533:203:1;74147:408:0;;;;;;:::i;:::-;;:::i;:::-;;63974:323;;;;;;;;;;-1:-1:-1;104893:1:0;64248:12;64035:7;64232:13;:28;-1:-1:-1;;64232:46:0;63974:323;;;2324:25:1;;;2312:2;2297:18;63974:323:0;2178:177:1;104425:41:0;;;;;;;;;;-1:-1:-1;104425:41:0;;;;;:::i;:::-;;:::i;104348:::-;;;;;;;;;;-1:-1:-1;104348:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;106267:81;;;;;;;;;;-1:-1:-1;106267:81:0;;;;;:::i;:::-;;:::i;78353:2825::-;;;;;;:::i;:::-;;:::i;105024:104::-;;;;;;;;;;-1:-1:-1;105024:104:0;;;;;:::i;:::-;;:::i;81274:193::-;;;;;;:::i;:::-;;:::i;106115:148::-;;;;;;;;;;-1:-1:-1;106115:148:0;;;;;:::i;:::-;;:::i;104048:26::-;;;;;;;;;;;;;;;;104161:29;;;;;;;;;;-1:-1:-1;104161:29:0;;;;;;;;104120:34;;;;;;;;;;;;;;;;69616:152;;;;;;;;;;-1:-1:-1;69616:152:0;;;;;:::i;:::-;;:::i;65158:233::-;;;;;;;;;;-1:-1:-1;65158:233:0;;;;;:::i;:::-;;:::i;8032:103::-;;;;;;;;;;;;;:::i;7384:87::-;;;;;;;;;;-1:-1:-1;7457:6:0;;-1:-1:-1;;;;;7457:6:0;7384:87;;68399:104;;;;;;;;;;;;;:::i;75272:234::-;;;;;;;;;;-1:-1:-1;75272:234:0;;;;;:::i;:::-;;:::i;104222:23::-;;;;;;;;;;;;;:::i;82065:407::-;;;;;;:::i;:::-;;:::i;104296:45::-;;;;;;;;;;-1:-1:-1;104296:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;104252:37;;;;;;;;;;;;;:::i;106352:423::-;;;;;;;;;;-1:-1:-1;106352:423:0;;;;;:::i;:::-;;:::i;104081:32::-;;;;;;;;;;;;;;;;105286:821;;;;;;;;;;-1:-1:-1;105286:821:0;;;;;:::i;:::-;;:::i;75663:164::-;;;;;;;;;;-1:-1:-1;75663:164:0;;;;;:::i;:::-;;:::i;8290:201::-;;;;;;;;;;-1:-1:-1;8290:201:0;;;;;:::i;:::-;;:::i;67321:639::-;67406:4;-1:-1:-1;;;;;;;;;67730:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;67807:25:0;;;67730:102;:179;;;-1:-1:-1;;;;;;;;;;67884:25:0;;;67730:179;67710:199;67321:639;-1:-1:-1;;67321:639:0:o;68223:100::-;68277:13;68310:5;68303:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68223:100;:::o;74714:218::-;74790:7;74815:16;74823:7;74815;:16::i;:::-;74810:64;;74840:34;;-1:-1:-1;;;74840:34:0;;;;;;;;;;;74810:64;-1:-1:-1;74894:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;74894:30:0;;74714:218::o;74147:408::-;74236:13;74252:16;74260:7;74252;:16::i;:::-;74236:32;-1:-1:-1;98480:10:0;-1:-1:-1;;;;;74285:28:0;;;74281:175;;74333:44;74350:5;98480:10;75663:164;:::i;74333:44::-;74328:128;;74405:35;;-1:-1:-1;;;74405:35:0;;;;;;;;;;;74328:128;74468:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;74468:35:0;-1:-1:-1;;;;;74468:35:0;;;;;;;;;74519:28;;74468:24;;74519:28;;;;;;;74225:330;74147:408;;:::o;104425:41::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;106267:81::-;7270:13;:11;:13::i;:::-;106328:14:::1;106334:7;106328:5;:14::i;:::-;106267:81:::0;:::o;78353:2825::-;78495:27;78525;78544:7;78525:18;:27::i;:::-;78495:57;;78610:4;-1:-1:-1;;;;;78569:45:0;78585:19;-1:-1:-1;;;;;78569:45:0;;78565:86;;78623:28;;-1:-1:-1;;;78623:28:0;;;;;;;;;;;78565:86;78665:27;77461:24;;;:15;:24;;;;;77689:26;;78856:68;77689:26;78898:4;98480:10;78904:19;-1:-1:-1;;;;;76935:32:0;;;76779:28;;77064:20;;77086:30;;77061:56;;76476:659;78856:68;78851:180;;78944:43;78961:4;98480:10;75663:164;:::i;78944:43::-;78939:92;;78996:35;;-1:-1:-1;;;78996:35:0;;;;;;;;;;;78939:92;-1:-1:-1;;;;;79048:16:0;;79044:52;;79073:23;;-1:-1:-1;;;79073:23:0;;;;;;;;;;;79044:52;79109:43;79131:4;79137:2;79141:7;79150:1;79109:21;:43::i;:::-;79245:15;79242:160;;;79385:1;79364:19;79357:30;79242:160;-1:-1:-1;;;;;79782:24:0;;;;;;;:18;:24;;;;;;79780:26;;-1:-1:-1;;79780:26:0;;;79851:22;;;;;;;;;79849:24;;-1:-1:-1;79849:24:0;;;73005:11;72980:23;72976:41;72963:63;-1:-1:-1;;;72963:63:0;80144:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;80439:47:0;;:52;;80435:627;;80544:1;80534:11;;80512:19;80667:30;;;:17;:30;;;;;;:35;;80663:384;;80805:13;;80790:11;:28;80786:242;;80952:30;;;;:17;:30;;;;;:52;;;80786:242;80493:569;80435:627;81109:7;81105:2;-1:-1:-1;;;;;81090:27:0;81099:4;-1:-1:-1;;;;;81090:27:0;-1:-1:-1;;;;;;;;;;;81090:27:0;;;;;;;;;81128:42;81149:4;81155:2;81159:7;81168:1;81128:20;:42::i;:::-;78484:2694;;;78353:2825;;;:::o;105024:104::-;7270:13;:11;:13::i;:::-;105096:10:::1;:24:::0;;-1:-1:-1;;;;;105096:24:0;;::::1;;;-1:-1:-1::0;;;;;;105096:24:0;;::::1;::::0;;;::::1;::::0;;105024:104::o;81274:193::-;81420:39;81437:4;81443:2;81447:7;81420:39;;;;;;;;;;;;:16;:39::i;:::-;81274:193;;;:::o;106115:148::-;106191:10;106171:16;106179:7;106171;:16::i;:::-;-1:-1:-1;;;;;106171:30:0;;106163:71;;;;-1:-1:-1;;;106163:71:0;;6249:2:1;106163:71:0;;;6231:21:1;6288:2;6268:18;;;6261:30;6327;6307:18;;;6300:58;6375:18;;106163:71:0;;;;;;;;69616:152;69688:7;69731:27;69750:7;69731:18;:27::i;65158:233::-;65230:7;-1:-1:-1;;;;;65254:19:0;;65250:60;;65282:28;;-1:-1:-1;;;65282:28:0;;;;;;;;;;;65250:60;-1:-1:-1;;;;;;65328:25:0;;;;;:18;:25;;;;;;59317:13;65328:55;;65158:233::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;68399:104::-;68455:13;68488:7;68481:14;;;;;:::i;75272:234::-;98480:10;75367:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;75367:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;75367:60:0;;;;;;;;;;75443:55;;540:41:1;;;75367:49:0;;98480:10;75443:55;;513:18:1;75443:55:0;;;;;;;75272:234;;:::o;104222:23::-;;;;;;;:::i;82065:407::-;82240:31;82253:4;82259:2;82263:7;82240:12;:31::i;:::-;-1:-1:-1;;;;;82286:14:0;;;:19;82282:183;;82325:56;82356:4;82362:2;82366:7;82375:5;82325:30;:56::i;:::-;82320:145;;82409:40;;-1:-1:-1;;;82409:40:0;;;;;;;;;;;82320:145;82065:407;;;;:::o;104252:37::-;;;;;;;:::i;106352:423::-;106450:13;106491:16;106499:7;106491;:16::i;:::-;106475:97;;;;-1:-1:-1;;;106475:97:0;;6606:2:1;106475:97:0;;;6588:21:1;6645:2;6625:18;;;6618:30;6684:34;6664:18;;;6657:62;-1:-1:-1;;;6735:18:1;;;6728:45;6790:19;;106475:97:0;6404:411:1;106475:97:0;106581:28;106612:10;:8;:10::i;:::-;106581:41;;106667:1;106642:14;106636:28;:32;:133;;;;;;;;;;;;;;;;;106704:14;106720:18;:7;:16;:18::i;:::-;106740:13;106687:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;106636:133;106629:140;106352:423;-1:-1:-1;;;106352:423:0:o;105286:821::-;105358:13;1812:1;2410:7;;:19;2402:63;;;;-1:-1:-1;;;2402:63:0;;8409:2:1;2402:63:0;;;8391:21:1;8448:2;8428:18;;;8421:30;8487:33;8467:18;;;8460:61;8538:18;;2402:63:0;8207:355:1;2402:63:0;1812:1;2543:7;:18;105406:8:::1;::::0;:26:::1;::::0;-1:-1:-1;;;105406:26:0;;-1:-1:-1;;;;;105406:8:0;;::::1;::::0;:17:::1;::::0;:26:::1;::::0;105424:7;;105406:26:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;105406:26:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;105392:10;105384:19;::::0;;;:7:::1;:19;::::0;;;;;:48:::1;::::0;:19;:48:::1;:::i;:::-;;105452:11;:9;:11::i;:::-;105448:647;;;105482:14;105499:13;104893:1:::0;64248:12;64035:7;64232:13;-1:-1:-1;;64232:28:0;;;:46;;63974:323;105499:13:::1;105482:30;;105586:5;;105577:6;:14;105569:43;;;::::0;-1:-1:-1;;;105569:43:0;;11500:2:1;105569:43:0::1;::::0;::::1;11482:21:1::0;11539:2;11519:18;;;11512:30;-1:-1:-1;;;11558:18:1;;;11551:46;11614:18;;105569:43:0::1;11298:340:1::0;105569:43:0::1;105652:10;105638:25;::::0;;;:13:::1;:25;::::0;;;;;::::1;;105637:26;105629:59;;;::::0;-1:-1:-1;;;105629:59:0;;11845:2:1;105629:59:0::1;::::0;::::1;11827:21:1::0;11884:2;11864:18;;;11857:30;-1:-1:-1;;;11903:18:1;;;11896:50;11963:18;;105629:59:0::1;11643:344:1::0;105629:59:0::1;105705:24;105715:10;105727:1;105705:9;:24::i;:::-;105746:13;:15:::0;;;:13:::1;:15;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;105792:10:0::1;105778:25;::::0;;;:13:::1;:25;::::0;;;;:32;;-1:-1:-1;;105778:32:0::1;105806:4;105778:32;::::0;;105849:13:::1;::::0;105832::::1;::::0;:30:::1;::::0;::::1;::::0;:44:::1;;-1:-1:-1::0;105867:9:0::1;::::0;::::1;;105866:10;105832:44;105828:161;;;105906:10;;;;;;;;;-1:-1:-1::0;;;;;105906:10:0::1;-1:-1:-1::0;;;;;105899:32:0::1;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;105954:9:0::1;:16:::0;;-1:-1:-1;;105954:16:0::1;105966:4;105954:16;::::0;;-1:-1:-1;;105828:161:0::1;106018:10;106010:19;::::0;;;:7:::1;:19;::::0;;;;106003:26;;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105448:647;106074:10;106066:19;::::0;;;:7:::1;:19;::::0;;;;106059:26;;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105448:647;1768:1:::0;2722:7;:22;105286:821;;-1:-1:-1;105286:821:0:o;75663:164::-;-1:-1:-1;;;;;75784:25:0;;;75760:4;75784:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;75663:164::o;8290:201::-;7270:13;:11;:13::i;:::-;-1:-1:-1;;;;;8379:22:0;::::1;8371:73;;;::::0;-1:-1:-1;;;8371:73:0;;12466:2:1;8371:73:0::1;::::0;::::1;12448:21:1::0;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;-1:-1:-1;;;12595:18:1;;;12588:36;12641:19;;8371:73:0::1;12264:402:1::0;8371:73:0::1;8455:28;8474:8;8455:18;:28::i;76085:282::-:0;76150:4;76206:7;104893:1;76187:26;;:66;;;;;76240:13;;76230:7;:23;76187:66;:153;;;;-1:-1:-1;;76291:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;76291:44:0;:49;;76085:282::o;7549:132::-;7457:6;;-1:-1:-1;;;;;7457:6:0;98480:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;12873:2:1;7605:68:0;;;12855:21:1;;;12892:18;;;12885:30;12951:34;12931:18;;;12924:62;13003:18;;7605:68:0;12671:356:1;92604:89:0;92664:21;92670:7;92679:5;92664;:21::i;70771:1275::-;70838:7;70873;;104893:1;70922:23;70918:1061;;70975:13;;70968:4;:20;70964:1015;;;71013:14;71030:23;;;:17;:23;;;;;;;-1:-1:-1;;;71119:24:0;;:29;;71115:845;;71784:113;71791:6;71801:1;71791:11;71784:113;;-1:-1:-1;;;71862:6:0;71844:25;;;;:17;:25;;;;;;71784:113;;71115:845;70990:989;70964:1015;72007:31;;-1:-1:-1;;;72007:31:0;;;;;;;;;;;106779:265;-1:-1:-1;;;;;106964:18:0;;;;:38;;-1:-1:-1;;;;;;106986:16:0;;;106964:38;106956:80;;;;-1:-1:-1;;;106956:80:0;;13234:2:1;106956:80:0;;;13216:21:1;13273:2;13253:18;;;13246:30;13312:31;13292:18;;;13285:59;13361:18;;106956:80:0;13032:353:1;107050:336:0;-1:-1:-1;;;;;107220:18:0;;107217:162;;107260:24;;107271:12;;-1:-1:-1;;;;;107260:24:0;;;;;;;;107217:162;;;-1:-1:-1;;;;;107306:16:0;;107302:77;;107343:24;;107354:12;;-1:-1:-1;;;;;107343:24:0;;;;;;;;107050:336;;;;:::o;8651:191::-;8744:6;;;-1:-1:-1;;;;;8761:17:0;;;-1:-1:-1;;;;;;8761:17:0;;;;;;;8794:40;;8744:6;;;8761:17;8744:6;;8794:40;;8725:16;;8794:40;8714:128;8651:191;:::o;84556:716::-;84740:88;;-1:-1:-1;;;84740:88:0;;84719:4;;-1:-1:-1;;;;;84740:45:0;;;;;:88;;98480:10;;84807:4;;84813:7;;84822:5;;84740:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;84740:88:0;;;;;;;;-1:-1:-1;;84740:88:0;;;;;;;;;;;;:::i;:::-;;;84736:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85023:6;:13;85040:1;85023:18;85019:235;;85069:40;;-1:-1:-1;;;85069:40:0;;;;;;;;;;;85019:235;85212:6;85206:13;85197:6;85193:2;85189:15;85182:38;84736:529;-1:-1:-1;;;;;;84899:64:0;-1:-1:-1;;;84899:64:0;;-1:-1:-1;84736:529:0;84556:716;;;;;;:::o;104908:110::-;104968:13;105001:9;104994:16;;;;;:::i;3189:723::-;3245:13;3466:5;3475:1;3466:10;3462:53;;-1:-1:-1;;3493:10:0;;;;;;;;;;;;-1:-1:-1;;;3493:10:0;;;;;3189:723::o;3462:53::-;3540:5;3525:12;3581:78;3588:9;;3581:78;;3614:8;;;;:::i;:::-;;-1:-1:-1;3637:10:0;;-1:-1:-1;3645:2:0;3637:10;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3691:17:0;;3669:39;;3719:154;3726:10;;3719:154;;3753:11;3763:1;3753:11;;:::i;:::-;;-1:-1:-1;3822:10:0;3830:2;3822:5;:10;:::i;:::-;3809:24;;:2;:24;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3779:56:0;;;;;;;;-1:-1:-1;3850:11:0;3859:2;3850:11;;:::i;:::-;;;3719:154;;105134:144;105212:8;;:20;;;-1:-1:-1;;;105212:20:0;;;;105172:4;;-1:-1:-1;;;;;105212:8:0;;:18;;:20;;;;;;;;;;;;;;:8;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;105198:10;105188:21;;;;:9;:21;;;;;:44;;-1:-1:-1;;105188:44:0;;;;;;;;;;105249:21;;;-1:-1:-1;105134:144:0:o;92225:112::-;92302:27;92312:2;92316:8;92302:27;;;;;;;;;;;;:9;:27::i;:::-;92225:112;;:::o;92922:3081::-;93002:27;93032;93051:7;93032:18;:27::i;:::-;93002:57;-1:-1:-1;93002:57:0;93072:12;;93194:35;93221:7;77350:27;77461:24;;;:15;:24;;;;;77689:26;;77461:24;;77248:485;93194:35;93137:92;;;;93246:13;93242:316;;;93367:68;93392:15;93409:4;98480:10;93415:19;98393:105;93367:68;93362:184;;93459:43;93476:4;98480:10;75663:164;:::i;93459:43::-;93454:92;;93511:35;;-1:-1:-1;;;93511:35:0;;;;;;;;;;;93454:92;93570:51;93592:4;93606:1;93610:7;93619:1;93570:21;:51::i;:::-;93714:15;93711:160;;;93854:1;93833:19;93826:30;93711:160;-1:-1:-1;;;;;94473:24:0;;;;;;:18;:24;;;;;:60;;94501:32;94473:60;;;73005:11;72980:23;72976:41;72963:63;-1:-1:-1;;;72963:63:0;94771:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;95096:47:0;;:52;;95092:627;;95201:1;95191:11;;95169:19;95324:30;;;:17;:30;;;;;;:35;;95320:384;;95462:13;;95447:11;:28;95443:242;;95609:30;;;;:17;:30;;;;;:52;;;95443:242;95150:569;95092:627;95747:35;;95774:7;;95770:1;;-1:-1:-1;;;;;95747:35:0;;;-1:-1:-1;;;;;;;;;;;95747:35:0;95770:1;;95747:35;95793:50;95814:4;95828:1;95832:7;95841:1;95793:20;:50::i;:::-;-1:-1:-1;;95970:12:0;:14;;;;;;-1:-1:-1;;;;92922:3081:0:o;91452:689::-;91583:19;91589:2;91593:8;91583:5;:19::i;:::-;-1:-1:-1;;;;;91644:14:0;;;:19;91640:483;;91684:11;91698:13;91746:14;;;91779:233;91810:62;91849:1;91853:2;91857:7;;;;;;91866:5;91810:30;:62::i;:::-;91805:167;;91908:40;;-1:-1:-1;;;91908:40:0;;;;;;;;;;;91805:167;92007:3;91999:5;:11;91779:233;;92094:3;92077:13;;:20;92073:34;;92099:8;;;92073:34;91665:458;;91452:689;;;:::o;85734:2966::-;85807:20;85830:13;;;85858;;;85854:44;;85880:18;;-1:-1:-1;;;85880:18:0;;;;;;;;;;;85854:44;85911:61;85941:1;85945:2;85949:12;85963:8;85911:21;:61::i;:::-;-1:-1:-1;;;;;86386:22:0;;;;;;:18;:22;;;;59455:2;86386:22;;;:71;;86424:32;86412:45;;86386:71;;;86700:31;;;:17;:31;;;;;-1:-1:-1;73436:15:0;;73410:24;73406:46;73005:11;72980:23;72976:41;72973:52;72963:63;;86700:173;;86935:23;;;;86700:31;;86386:22;;-1:-1:-1;;;;;;;;;;;86386:22:0;;87553:335;88214:1;88200:12;88196:20;88154:346;88255:3;88246:7;88243:16;88154:346;;88473:7;88463:8;88460:1;-1:-1:-1;;;;;;;;;;;88430:1:0;88427;88422:59;88308:1;88295:15;88154:346;;;88158:77;88533:8;88545:1;88533:13;88529:45;;88555:19;;-1:-1:-1;;;88555:19:0;;;;;;;;;;;88529:45;88591:13;:19;;;88632:60;;-1:-1:-1;88665:2:0;88669:12;88683:8;88632:20;:60::i;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:186::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2511:29;2530:9;2511:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:118::-;2970:5;2963:13;2956:21;2949:5;2946:32;2936:60;;2992:1;2989;2982:12;3007:315;3072:6;3080;3133:2;3121:9;3112:7;3108:23;3104:32;3101:52;;;3149:1;3146;3139:12;3101:52;3172:29;3191:9;3172:29;:::i;:::-;3162:39;;3251:2;3240:9;3236:18;3223:32;3264:28;3286:5;3264:28;:::i;:::-;3311:5;3301:15;;;3007:315;;;;;:::o;3327:127::-;3388:10;3383:3;3379:20;3376:1;3369:31;3419:4;3416:1;3409:15;3443:4;3440:1;3433:15;3459:275;3530:2;3524:9;3595:2;3576:13;;-1:-1:-1;;3572:27:1;3560:40;;3630:18;3615:34;;3651:22;;;3612:62;3609:88;;;3677:18;;:::i;:::-;3713:2;3706:22;3459:275;;-1:-1:-1;3459:275:1:o;3739:186::-;3787:4;3820:18;3812:6;3809:30;3806:56;;;3842:18;;:::i;:::-;-1:-1:-1;3908:2:1;3887:15;-1:-1:-1;;3883:29:1;3914:4;3879:40;;3739:186::o;3930:336::-;3994:5;4023:52;4039:35;4067:6;4039:35;:::i;:::-;4023:52;:::i;:::-;4014:61;;4098:6;4091:5;4084:21;4138:3;4129:6;4124:3;4120:16;4117:25;4114:45;;;4155:1;4152;4145:12;4114:45;4204:6;4199:3;4192:4;4185:5;4181:16;4168:43;4258:1;4251:4;4242:6;4235:5;4231:18;4227:29;4220:40;3930:336;;;;;:::o;4271:666::-;4366:6;4374;4382;4390;4443:3;4431:9;4422:7;4418:23;4414:33;4411:53;;;4460:1;4457;4450:12;4411:53;4483:29;4502:9;4483:29;:::i;:::-;4473:39;;4531:38;4565:2;4554:9;4550:18;4531:38;:::i;:::-;4521:48;;4616:2;4605:9;4601:18;4588:32;4578:42;;4671:2;4660:9;4656:18;4643:32;4698:18;4690:6;4687:30;4684:50;;;4730:1;4727;4720:12;4684:50;4753:22;;4806:4;4798:13;;4794:27;-1:-1:-1;4784:55:1;;4835:1;4832;4825:12;4784:55;4858:73;4923:7;4918:2;4905:16;4900:2;4896;4892:11;4858:73;:::i;:::-;4848:83;;;4271:666;;;;;;;:::o;4942:450::-;5011:6;5064:2;5052:9;5043:7;5039:23;5035:32;5032:52;;;5080:1;5077;5070:12;5032:52;5120:9;5107:23;5153:18;5145:6;5142:30;5139:50;;;5185:1;5182;5175:12;5139:50;5208:22;;5261:4;5253:13;;5249:27;-1:-1:-1;5239:55:1;;5290:1;5287;5280:12;5239:55;5313:73;5378:7;5373:2;5360:16;5355:2;5351;5347:11;5313:73;:::i;5397:260::-;5465:6;5473;5526:2;5514:9;5505:7;5501:23;5497:32;5494:52;;;5542:1;5539;5532:12;5494:52;5565:29;5584:9;5565:29;:::i;:::-;5555:39;;5613:38;5647:2;5636:9;5632:18;5613:38;:::i;:::-;5603:48;;5397:260;;;;;:::o;5662:380::-;5741:1;5737:12;;;;5784;;;5805:61;;5859:4;5851:6;5847:17;5837:27;;5805:61;5912:2;5904:6;5901:14;5881:18;5878:38;5875:161;;5958:10;5953:3;5949:20;5946:1;5939:31;5993:4;5990:1;5983:15;6021:4;6018:1;6011:15;5875:161;;5662:380;;;:::o;6946:1256::-;7170:3;7208:6;7202:13;7234:4;7247:64;7304:6;7299:3;7294:2;7286:6;7282:15;7247:64;:::i;:::-;7374:13;;7333:16;;;;7396:68;7374:13;7333:16;7431:15;;;7396:68;:::i;:::-;7553:13;;7486:20;;;7526:1;;7591:36;7553:13;7591:36;:::i;:::-;7646:1;7663:18;;;7690:141;;;;7845:1;7840:337;;;;7656:521;;7690:141;-1:-1:-1;;7725:24:1;;7711:39;;7802:16;;7795:24;7781:39;;7770:51;;;-1:-1:-1;7690:141:1;;7840:337;7871:6;7868:1;7861:17;7919:2;7916:1;7906:16;7944:1;7958:169;7972:8;7969:1;7966:15;7958:169;;;8054:14;;8039:13;;;8032:37;8097:16;;;;7989:10;;7958:169;;;7962:3;;8158:8;8151:5;8147:20;8140:27;;7656:521;-1:-1:-1;8193:3:1;;6946:1256;-1:-1:-1;;;;;;;;;;6946:1256:1:o;8567:648::-;8647:6;8700:2;8688:9;8679:7;8675:23;8671:32;8668:52;;;8716:1;8713;8706:12;8668:52;8749:9;8743:16;8782:18;8774:6;8771:30;8768:50;;;8814:1;8811;8804:12;8768:50;8837:22;;8890:4;8882:13;;8878:27;-1:-1:-1;8868:55:1;;8919:1;8916;8909:12;8868:55;8948:2;8942:9;8973:48;8989:31;9017:2;8989:31;:::i;8973:48::-;9044:2;9037:5;9030:17;9084:7;9079:2;9074;9070;9066:11;9062:20;9059:33;9056:53;;;9105:1;9102;9095:12;9056:53;9118:67;9182:2;9177;9170:5;9166:14;9161:2;9157;9153:11;9118:67;:::i;:::-;9204:5;8567:648;-1:-1:-1;;;;;8567:648:1:o;9220:545::-;9322:2;9317:3;9314:11;9311:448;;;9358:1;9383:5;9379:2;9372:17;9428:4;9424:2;9414:19;9498:2;9486:10;9482:19;9479:1;9475:27;9469:4;9465:38;9534:4;9522:10;9519:20;9516:47;;;-1:-1:-1;9557:4:1;9516:47;9612:2;9607:3;9603:12;9600:1;9596:20;9590:4;9586:31;9576:41;;9667:82;9685:2;9678:5;9675:13;9667:82;;;9730:17;;;9711:1;9700:13;9667:82;;9941:1352;10067:3;10061:10;10094:18;10086:6;10083:30;10080:56;;;10116:18;;:::i;:::-;10145:97;10235:6;10195:38;10227:4;10221:11;10195:38;:::i;:::-;10189:4;10145:97;:::i;:::-;10297:4;;10361:2;10350:14;;10378:1;10373:663;;;;11080:1;11097:6;11094:89;;;-1:-1:-1;11149:19:1;;;11143:26;11094:89;-1:-1:-1;;9898:1:1;9894:11;;;9890:24;9886:29;9876:40;9922:1;9918:11;;;9873:57;11196:81;;10343:944;;10373:663;6893:1;6886:14;;;6930:4;6917:18;;-1:-1:-1;;10409:20:1;;;10527:236;10541:7;10538:1;10535:14;10527:236;;;10630:19;;;10624:26;10609:42;;10722:27;;;;10690:1;10678:14;;;;10557:19;;10527:236;;;10531:3;10791:6;10782:7;10779:19;10776:201;;;10852:19;;;10846:26;-1:-1:-1;;10935:1:1;10931:14;;;10947:3;10927:24;10923:37;10919:42;10904:58;10889:74;;10776:201;-1:-1:-1;;;;;11023:1:1;11007:14;;;11003:22;10990:36;;-1:-1:-1;9941:1352:1:o;11992:127::-;12053:10;12048:3;12044:20;12041:1;12034:31;12084:4;12081:1;12074:15;12108:4;12105:1;12098:15;12124:135;12163:3;12184:17;;;12181:43;;12204:18;;:::i;:::-;-1:-1:-1;12251:1:1;12240:13;;12124:135::o;13390:489::-;-1:-1:-1;;;;;13659:15:1;;;13641:34;;13711:15;;13706:2;13691:18;;13684:43;13758:2;13743:18;;13736:34;;;13806:3;13801:2;13786:18;;13779:31;;;13584:4;;13827:46;;13853:19;;13845:6;13827:46;:::i;:::-;13819:54;13390:489;-1:-1:-1;;;;;;13390:489:1:o;13884:249::-;13953:6;14006:2;13994:9;13985:7;13981:23;13977:32;13974:52;;;14022:1;14019;14012:12;13974:52;14054:9;14048:16;14073:30;14097:5;14073:30;:::i;14138:127::-;14199:10;14194:3;14190:20;14187:1;14180:31;14230:4;14227:1;14220:15;14254:4;14251:1;14244:15;14270:120;14310:1;14336;14326:35;;14341:18;;:::i;:::-;-1:-1:-1;14375:9:1;;14270:120::o;14395:128::-;14462:9;;;14483:11;;;14480:37;;;14497:18;;:::i;14528:112::-;14560:1;14586;14576:35;;14591:18;;:::i;:::-;-1:-1:-1;14625:9:1;;14528:112::o;14645:125::-;14710:9;;;14731:10;;;14728:36;;;14744:18;;:::i;14775:127::-;14836:10;14831:3;14827:20;14824:1;14817:31;14867:4;14864:1;14857:15;14891:4;14888:1;14881:15;14907:245;14974:6;15027:2;15015:9;15006:7;15002:23;14998:32;14995:52;;;15043:1;15040;15033:12;14995:52;15075:9;15069:16;15094:28;15116:5;15094:28;:::i

Swarm Source

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