ETH Price: $2,450.42 (+6.33%)

Token

Poker Face (Poker Face)
 

Overview

Max Total Supply

334 Poker Face

Holders

273

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
agiao.eth
Balance
1 Poker Face
0xBB6bfe5568cA7e6e34beF93f7772Ab2333addf70
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:
NFT

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-27
*/

// SPDX-License-Identifier: MIT
// File: contracts\openzeppelin-contracts\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: contracts\openzeppelin-contracts\contracts\access\Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: contracts\openzeppelin-contracts\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: contracts\openzeppelin-contracts\contracts\token\ERC721\IERC721.sol


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

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

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

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

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

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

// File: contracts\openzeppelin-contracts\contracts\token\ERC721\IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: contracts\openzeppelin-contracts\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: contracts\openzeppelin-contracts\contracts\utils\Address.sol


// OpenZeppelin Contracts v4.4.1 (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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: contracts\openzeppelin-contracts\contracts\utils\Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts\openzeppelin-contracts\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: contracts\openzeppelin-contracts\contracts\token\ERC721\ERC721.sol


// OpenZeppelin Contracts v4.4.1 (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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overriden 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 a {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 a {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 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 {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

// File: contracts\openzeppelin-contracts\contracts\token\ERC721\extensions\IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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: contracts\openzeppelin-contracts\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: contracts\openzeppelin-contracts\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: contracts\openzeppelin-contracts\contracts\utils\cryptography\ECDSA.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

// File: contracts\openzeppelin-contracts\contracts\utils\cryptography\draft-EIP712.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// File: contracts\NFT.sol

pragma solidity ^0.8.0;





contract NFT is Ownable, ERC721Enumerable, ReentrancyGuard, EIP712("NFT", "1") {
    using Strings for uint256;
    
    uint256 public cap = 10000;
    uint256 public price = 4e16;
    uint256 public deltaPrice = 1e16;
    uint256 public batchNumber = 1000;
    string private _uri;
    mapping(uint256 => uint256) public avatarToToken;
    mapping(uint256 => uint256) public tokenToAvatar;
    address public operator;
    bytes32 public constant TYPEHASH = keccak256("Mint(uint256 avatarId)");
    
    constructor(string memory name, string memory symbol, string memory uri) ERC721(name, symbol){
        _uri = uri;
        operator = msg.sender;
    }
    
    function setOperator(address _operator) public onlyOwner {
        operator = _operator;
    }
    
    function domainSeparatorV4() view public returns (bytes32) {
        return _domainSeparatorV4();
    }
    
    function setURI(string memory uri) public onlyOwner {
        _uri = uri;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return _uri;
    }
    
    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }
    
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory baseURI = _baseURI();
        uint256 avatarId = tokenToAvatar[tokenId];
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, avatarId.toString())) : "";
    }
    
    function mint(uint256 avatarId,uint8 v,bytes32 r,bytes32 s) payable public nonReentrant() {
        require(!Address.isContract(msg.sender), "NFT:not allowed for contract");
        require(msg.value == price, "NFT:invalid value");
        uint256 tokenId = totalSupply() + 1;
        require(avatarToToken[avatarId] == 0, "NFT:used avatarId");
        require(tokenId <= cap, "NFT:over than max supply");
        bytes32 structHash = keccak256(abi.encode(TYPEHASH, avatarId));
        bytes32 hash = _hashTypedDataV4(structHash);
        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == operator, "NFT:invalid signer");
        _safeMint(msg.sender, tokenId);
        avatarToToken[avatarId] = tokenId;
        tokenToAvatar[tokenId] = avatarId;
        if(tokenId % batchNumber == 0){
            price += deltaPrice;
        }
    }
    
    function claim(address payable to) public onlyOwner{
        to.transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"avatarToToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deltaPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"domainSeparatorV4","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"avatarId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenToAvatar","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610140604052612710600c55668e1bc9bf040000600d55662386f26fc10000600e556103e8600f553480156200003457600080fd5b5060405162002db238038062002db283398101604081905262000057916200035a565b6040518060400160405280600381526020016213919560ea1b815250604051806040016040528060018152602001603160f81b8152508484620000a9620000a36200017160201b60201c565b62000175565b8151620000be90600190602085019062000201565b508051620000d490600290602084019062000201565b50506001600b5550815160208084019190912082519183019190912060e08290526101008190524660a0527f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6200012d818484620001c5565b6080523060601b60c052610120525050825162000154925060109150602084019062000201565b5050601380546001600160a01b0319163317905550620004669050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008383834630604051602001620001e2959493929190620003e7565b6040516020818303038152906040528051906020012090509392505050565b8280546200020f9062000413565b90600052602060002090601f0160209004810192826200023357600085556200027e565b82601f106200024e57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027e57825182559160200191906001019062000261565b506200028c92915062000290565b5090565b5b808211156200028c576000815560010162000291565b600082601f830112620002b8578081fd5b81516001600160401b0380821115620002d557620002d562000450565b604051601f8301601f19908116603f0116810190828211818310171562000300576200030062000450565b816040528381526020925086838588010111156200031c578485fd5b8491505b838210156200033f578582018301518183018401529082019062000320565b838211156200035057848385830101525b9695505050505050565b6000806000606084860312156200036f578283fd5b83516001600160401b038082111562000386578485fd5b6200039487838801620002a7565b94506020860151915080821115620003aa578384fd5b620003b887838801620002a7565b93506040860151915080821115620003ce578283fd5b50620003dd86828701620002a7565b9150509250925092565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b6002810460018216806200042857607f821691505b602082108114156200044a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160601c60e05161010051610120516128f9620004b96000396000611212015260006112540152600061123301526000611195015260006111bf015260006111e901526128f96000f3fe6080604052600436106101ee5760003560e01c80634f6ccce71161010d578063a035b1fe116100a0578063ba8730651161006f578063ba8730651461052c578063c87b56dd14610541578063e985e9c514610561578063f2fde38b14610581578063f94d6d65146105a1576101ee565b8063a035b1fe146104b7578063a22cb465146104cc578063b3ab15fb146104ec578063b88d4fde1461050c576101ee565b8063715018a6116100dc578063715018a61461046357806378e890ba146104785780638da5cb5b1461048d57806395d89b41146104a2576101ee565b80634f6ccce7146103ee578063570ca7351461040e5780636352211e1461042357806370a0823114610443576101ee565b80631bc6a79e11610185578063355274ea11610154578063355274ea146103845780633b639e6f1461039957806342842e0e146103ae5780634f558e79146103ce576101ee565b80631bc6a79e1461030f5780631e83409a1461032457806323b872dd146103445780632f745c5914610364576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806310aec4a6146102ba578063113185fb146102cd57806318160ddd146102fa576101ee565b806301ffc9a7146101f357806302fe53051461022957806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e4e565b6105c1565b6040516102209190611fec565b60405180910390f35b34801561023557600080fd5b50610249610244366004611e86565b6105ee565b005b34801561025757600080fd5b5061026061064d565b6040516102209190612058565b34801561027957600080fd5b5061028d610288366004611ecc565b6106e0565b6040516102209190611f9b565b3480156102a657600080fd5b506102496102b5366004611e23565b610723565b6102496102c8366004611ee4565b6107bb565b3480156102d957600080fd5b506102ed6102e8366004611ecc565b61098d565b6040516102209190611ff7565b34801561030657600080fd5b506102ed61099f565b34801561031b57600080fd5b506102ed6109a5565b34801561033057600080fd5b5061024961033f366004611cda565b6109ab565b34801561035057600080fd5b5061024961035f366004611d35565b610a1f565b34801561037057600080fd5b506102ed61037f366004611e23565b610a57565b34801561039057600080fd5b506102ed610aa9565b3480156103a557600080fd5b506102ed610aaf565b3480156103ba57600080fd5b506102496103c9366004611d35565b610ad3565b3480156103da57600080fd5b506102136103e9366004611ecc565b610aee565b3480156103fa57600080fd5b506102ed610409366004611ecc565b610af9565b34801561041a57600080fd5b5061028d610b54565b34801561042f57600080fd5b5061028d61043e366004611ecc565b610b63565b34801561044f57600080fd5b506102ed61045e366004611cda565b610b98565b34801561046f57600080fd5b50610249610bdc565b34801561048457600080fd5b506102ed610c27565b34801561049957600080fd5b5061028d610c36565b3480156104ae57600080fd5b50610260610c45565b3480156104c357600080fd5b506102ed610c54565b3480156104d857600080fd5b506102496104e7366004611df2565b610c5a565b3480156104f857600080fd5b50610249610507366004611cda565b610c6c565b34801561051857600080fd5b50610249610527366004611d75565b610ccd565b34801561053857600080fd5b506102ed610d0c565b34801561054d57600080fd5b5061026061055c366004611ecc565b610d12565b34801561056d57600080fd5b5061021361057c366004611cfd565b610da4565b34801561058d57600080fd5b5061024961059c366004611cda565b610dd2565b3480156105ad57600080fd5b506102ed6105bc366004611ecc565b610e43565b60006001600160e01b0319821663780e9d6360e01b14806105e657506105e682610e55565b90505b919050565b6105f6610e95565b6001600160a01b0316610607610c36565b6001600160a01b0316146106365760405162461bcd60e51b815260040161062d90612582565b60405180910390fd5b8051610649906010906020840190611bcb565b5050565b60606001805461065c906127ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610688906127ec565b80156106d55780601f106106aa576101008083540402835291602001916106d5565b820191906000526020600020905b8154815290600101906020018083116106b857829003601f168201915b505050505090505b90565b60006106eb82610e99565b6107075760405162461bcd60e51b815260040161062d90612536565b506000908152600560205260409020546001600160a01b031690565b600061072e82610b63565b9050806001600160a01b0316836001600160a01b031614156107625760405162461bcd60e51b815260040161062d9061263d565b806001600160a01b0316610774610e95565b6001600160a01b0316148061079057506107908161057c610e95565b6107ac5760405162461bcd60e51b815260040161062d90612341565b6107b68383610eb6565b505050565b6002600b5414156107de5760405162461bcd60e51b815260040161062d9061271b565b6002600b556107ec33610f24565b156108095760405162461bcd60e51b815260040161062d90612488565b600d54341461082a5760405162461bcd60e51b815260040161062d90612752565b600061083461099f565b61083f90600161277d565b6000868152601160205260409020549091501561086e5760405162461bcd60e51b815260040161062d9061245d565b600c548111156108905760405162461bcd60e51b815260040161062d90612606565b60007f52f6b35b7b749d2d3693cd20fff3ec1d1809a10a2c28e28774f6ed876de8f15f866040516020016108c592919061202c565b60405160208183030381529060405280519060200120905060006108e882610f33565b905060006108f882888888610f46565b6013549091506001600160a01b038083169116146109285760405162461bcd60e51b815260040161062d90612431565b6109323385610f6e565b600088815260116020908152604080832087905586835260129091529020889055600f546109609085612842565b61097e57600e54600d6000828254610978919061277d565b90915550505b50506001600b55505050505050565b60116020526000908152604090205481565b60095490565b600e5481565b6109b3610e95565b6001600160a01b03166109c4610c36565b6001600160a01b0316146109ea5760405162461bcd60e51b815260040161062d90612582565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610649573d6000803e3d6000fd5b610a30610a2a610e95565b82610f88565b610a4c5760405162461bcd60e51b815260040161062d9061267e565b6107b6838383611005565b6000610a6283610b98565b8210610a805760405162461bcd60e51b815260040161062d906120d9565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600c5481565b7f52f6b35b7b749d2d3693cd20fff3ec1d1809a10a2c28e28774f6ed876de8f15f81565b6107b683838360405180602001604052806000815250610ccd565b60006105e682610e99565b6000610b0361099f565b8210610b215760405162461bcd60e51b815260040161062d906126cf565b60098281548110610b4257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6013546001600160a01b031681565b6000818152600360205260408120546001600160a01b0316806105e65760405162461bcd60e51b815260040161062d906123e8565b60006001600160a01b038216610bc05760405162461bcd60e51b815260040161062d9061239e565b506001600160a01b031660009081526004602052604090205490565b610be4610e95565b6001600160a01b0316610bf5610c36565b6001600160a01b031614610c1b5760405162461bcd60e51b815260040161062d90612582565b610c256000611138565b565b6000610c31611188565b905090565b6000546001600160a01b031690565b60606002805461065c906127ec565b600d5481565b610649610c65610e95565b838361127f565b610c74610e95565b6001600160a01b0316610c85610c36565b6001600160a01b031614610cab5760405162461bcd60e51b815260040161062d90612582565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b610cde610cd8610e95565b83610f88565b610cfa5760405162461bcd60e51b815260040161062d9061267e565b610d0684848484611322565b50505050565b600f5481565b6060610d1d82610e99565b610d395760405162461bcd60e51b815260040161062d906125b7565b6000610d43611355565b600084815260126020526040902054815191925090610d715760405180602001604052806000815250610d9c565b81610d7b82611364565b604051602001610d8c929190611f51565b6040516020818303038152906040525b949350505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610dda610e95565b6001600160a01b0316610deb610c36565b6001600160a01b031614610e115760405162461bcd60e51b815260040161062d90612582565b6001600160a01b038116610e375760405162461bcd60e51b815260040161062d90612176565b610e4081611138565b50565b60126020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b1480610e8657506001600160e01b03198216635b5e139f60e01b145b806105e657506105e68261147f565b3390565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eeb82610b63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03163b151590565b60006105e6610f40611188565b83611498565b6000806000610f57878787876114cb565b91509150610f64816115ab565b5095945050505050565b6106498282604051806020016040528060008152506116d8565b6000610f9382610e99565b610faf5760405162461bcd60e51b815260040161062d906122f5565b6000610fba83610b63565b9050806001600160a01b0316846001600160a01b03161480610ff55750836001600160a01b0316610fea846106e0565b6001600160a01b0316145b80610d9c5750610d9c8185610da4565b826001600160a01b031661101882610b63565b6001600160a01b03161461103e5760405162461bcd60e51b815260040161062d906121bc565b6001600160a01b0382166110645760405162461bcd60e51b815260040161062d90612238565b61106f83838361170b565b61107a600082610eb6565b6001600160a01b03831660009081526004602052604081208054600192906110a39084906127a9565b90915550506001600160a01b03821660009081526004602052604081208054600192906110d190849061277d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46107b68383836107b6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156111e157507f000000000000000000000000000000000000000000000000000000000000000046145b1561120d57507f00000000000000000000000000000000000000000000000000000000000000006106dd565b6112787f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611794565b90506106dd565b816001600160a01b0316836001600160a01b031614156112b15760405162461bcd60e51b815260040161062d9061227c565b6001600160a01b0383811660008181526006602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611315908590611fec565b60405180910390a3505050565b61132d848484611005565b611339848484846117ce565b610d065760405162461bcd60e51b815260040161062d90612124565b60606010805461065c906127ec565b60608161138957506040805180820190915260018152600360fc1b60208201526105e9565b8160005b81156113b3578061139d81612827565b91506113ac9050600a83612795565b915061138d565b60008167ffffffffffffffff8111156113dc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611406576020820181803683370190505b5090505b8415610d9c5761141b6001836127a9565b9150611428600a86612842565b61143390603061277d565b60f81b81838151811061145657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611478600a86612795565b945061140a565b6001600160e01b031981166301ffc9a760e01b14919050565b600082826040516020016114ad929190611f80565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561150257506000905060036115a2565b8460ff16601b1415801561151a57508460ff16601c14155b1561152b57506000905060046115a2565b600060018787878760405160008152602001604052604051611550949392919061203a565b6020604051602081039080840390855afa158015611572573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661159b576000600192509250506115a2565b9150600090505b94509492505050565b60008160048111156115cd57634e487b7160e01b600052602160045260246000fd5b14156115d857610e40565b60018160048111156115fa57634e487b7160e01b600052602160045260246000fd5b14156116185760405162461bcd60e51b815260040161062d9061206b565b600281600481111561163a57634e487b7160e01b600052602160045260246000fd5b14156116585760405162461bcd60e51b815260040161062d906120a2565b600381600481111561167a57634e487b7160e01b600052602160045260246000fd5b14156116985760405162461bcd60e51b815260040161062d906122b3565b60048160048111156116ba57634e487b7160e01b600052602160045260246000fd5b1415610e405760405162461bcd60e51b815260040161062d906124bf565b6116e283836118e6565b6116ef60008484846117ce565b6107b65760405162461bcd60e51b815260040161062d90612124565b6117168383836107b6565b6001600160a01b0383166117325761172d816119cd565b611755565b816001600160a01b0316836001600160a01b031614611755576117558382611a11565b6001600160a01b0382166117715761176c81611aae565b6107b6565b826001600160a01b0316826001600160a01b0316146107b6576107b68282611b87565b600083838346306040516020016117af959493929190612000565b6040516020818303038152906040528051906020012090509392505050565b60006117e2846001600160a01b0316610f24565b156118de57836001600160a01b031663150b7a026117fe610e95565b8786866040518563ffffffff1660e01b81526004016118209493929190611faf565b602060405180830381600087803b15801561183a57600080fd5b505af192505050801561186a575060408051601f3d908101601f1916820190925261186791810190611e6a565b60015b6118c4573d808015611898576040519150601f19603f3d011682016040523d82523d6000602084013e61189d565b606091505b5080516118bc5760405162461bcd60e51b815260040161062d90612124565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d9c565b506001610d9c565b6001600160a01b03821661190c5760405162461bcd60e51b815260040161062d90612501565b61191581610e99565b156119325760405162461bcd60e51b815260040161062d90612201565b61193e6000838361170b565b6001600160a01b038216600090815260046020526040812080546001929061196790849061277d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610649600083836107b6565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611a1e84610b98565b611a2891906127a9565b600083815260086020526040902054909150808214611a7b576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611ac0906001906127a9565b6000838152600a602052604081205460098054939450909284908110611af657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611b2557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611b6b57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b9283610b98565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611bd7906127ec565b90600052602060002090601f016020900481019282611bf95760008555611c3f565b82601f10611c1257805160ff1916838001178555611c3f565b82800160010185558215611c3f579182015b82811115611c3f578251825591602001919060010190611c24565b50611c4b929150611c4f565b5090565b5b80821115611c4b5760008155600101611c50565b600067ffffffffffffffff80841115611c7f57611c7f612882565b604051601f8501601f19908116603f01168101908282118183101715611ca757611ca7612882565b81604052809350858152868686011115611cc057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ceb578081fd5b8135611cf681612898565b9392505050565b60008060408385031215611d0f578081fd5b8235611d1a81612898565b91506020830135611d2a81612898565b809150509250929050565b600080600060608486031215611d49578081fd5b8335611d5481612898565b92506020840135611d6481612898565b929592945050506040919091013590565b60008060008060808587031215611d8a578081fd5b8435611d9581612898565b93506020850135611da581612898565b925060408501359150606085013567ffffffffffffffff811115611dc7578182fd5b8501601f81018713611dd7578182fd5b611de687823560208401611c64565b91505092959194509250565b60008060408385031215611e04578182fd5b8235611e0f81612898565b915060208301358015158114611d2a578182fd5b60008060408385031215611e35578182fd5b8235611e4081612898565b946020939093013593505050565b600060208284031215611e5f578081fd5b8135611cf6816128ad565b600060208284031215611e7b578081fd5b8151611cf6816128ad565b600060208284031215611e97578081fd5b813567ffffffffffffffff811115611ead578182fd5b8201601f81018413611ebd578182fd5b610d9c84823560208401611c64565b600060208284031215611edd578081fd5b5035919050565b60008060008060808587031215611ef9578384fd5b84359350602085013560ff81168114611f10578384fd5b93969395505050506040820135916060013590565b60008151808452611f3d8160208601602086016127c0565b601f01601f19169290920160200192915050565b60008351611f638184602088016127c0565b835190830190611f778183602088016127c0565b01949350505050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe290830184611f25565b9695505050505050565b901515815260200190565b90815260200190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b918252602082015260400190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252611cf66020830184611f25565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526012908201527127232a1d34b73b30b634b21039b4b3b732b960711b604082015260600190565b6020808252601190820152701391950e9d5cd95908185d985d185c9259607a1b604082015260600190565b6020808252601c908201527f4e46543a6e6f7420616c6c6f77656420666f7220636f6e747261637400000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526018908201527f4e46543a6f766572207468616e206d617820737570706c790000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601190820152704e46543a696e76616c69642076616c756560781b604082015260600190565b6000821982111561279057612790612856565b500190565b6000826127a4576127a461286c565b500490565b6000828210156127bb576127bb612856565b500390565b60005b838110156127db5781810151838201526020016127c3565b83811115610d065750506000910152565b60028104600182168061280057607f821691505b6020821081141561282157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561283b5761283b612856565b5060010190565b6000826128515761285161286c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e4057600080fd5b6001600160e01b031981168114610e4057600080fdfea26469706673582212203773d40f3918999366f92584bd28c69bb2e07a4d9a1e9d8ebb2e6c8e9d94d51c64736f6c63430008010033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a506f6b6572204661636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a506f6b6572204661636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f6d696e742e706f6b6572666163652e686f7573652f737667617661746172732f7068702f6e66742e7068703f61766174617249643d000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80634f6ccce71161010d578063a035b1fe116100a0578063ba8730651161006f578063ba8730651461052c578063c87b56dd14610541578063e985e9c514610561578063f2fde38b14610581578063f94d6d65146105a1576101ee565b8063a035b1fe146104b7578063a22cb465146104cc578063b3ab15fb146104ec578063b88d4fde1461050c576101ee565b8063715018a6116100dc578063715018a61461046357806378e890ba146104785780638da5cb5b1461048d57806395d89b41146104a2576101ee565b80634f6ccce7146103ee578063570ca7351461040e5780636352211e1461042357806370a0823114610443576101ee565b80631bc6a79e11610185578063355274ea11610154578063355274ea146103845780633b639e6f1461039957806342842e0e146103ae5780634f558e79146103ce576101ee565b80631bc6a79e1461030f5780631e83409a1461032457806323b872dd146103445780632f745c5914610364576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806310aec4a6146102ba578063113185fb146102cd57806318160ddd146102fa576101ee565b806301ffc9a7146101f357806302fe53051461022957806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e4e565b6105c1565b6040516102209190611fec565b60405180910390f35b34801561023557600080fd5b50610249610244366004611e86565b6105ee565b005b34801561025757600080fd5b5061026061064d565b6040516102209190612058565b34801561027957600080fd5b5061028d610288366004611ecc565b6106e0565b6040516102209190611f9b565b3480156102a657600080fd5b506102496102b5366004611e23565b610723565b6102496102c8366004611ee4565b6107bb565b3480156102d957600080fd5b506102ed6102e8366004611ecc565b61098d565b6040516102209190611ff7565b34801561030657600080fd5b506102ed61099f565b34801561031b57600080fd5b506102ed6109a5565b34801561033057600080fd5b5061024961033f366004611cda565b6109ab565b34801561035057600080fd5b5061024961035f366004611d35565b610a1f565b34801561037057600080fd5b506102ed61037f366004611e23565b610a57565b34801561039057600080fd5b506102ed610aa9565b3480156103a557600080fd5b506102ed610aaf565b3480156103ba57600080fd5b506102496103c9366004611d35565b610ad3565b3480156103da57600080fd5b506102136103e9366004611ecc565b610aee565b3480156103fa57600080fd5b506102ed610409366004611ecc565b610af9565b34801561041a57600080fd5b5061028d610b54565b34801561042f57600080fd5b5061028d61043e366004611ecc565b610b63565b34801561044f57600080fd5b506102ed61045e366004611cda565b610b98565b34801561046f57600080fd5b50610249610bdc565b34801561048457600080fd5b506102ed610c27565b34801561049957600080fd5b5061028d610c36565b3480156104ae57600080fd5b50610260610c45565b3480156104c357600080fd5b506102ed610c54565b3480156104d857600080fd5b506102496104e7366004611df2565b610c5a565b3480156104f857600080fd5b50610249610507366004611cda565b610c6c565b34801561051857600080fd5b50610249610527366004611d75565b610ccd565b34801561053857600080fd5b506102ed610d0c565b34801561054d57600080fd5b5061026061055c366004611ecc565b610d12565b34801561056d57600080fd5b5061021361057c366004611cfd565b610da4565b34801561058d57600080fd5b5061024961059c366004611cda565b610dd2565b3480156105ad57600080fd5b506102ed6105bc366004611ecc565b610e43565b60006001600160e01b0319821663780e9d6360e01b14806105e657506105e682610e55565b90505b919050565b6105f6610e95565b6001600160a01b0316610607610c36565b6001600160a01b0316146106365760405162461bcd60e51b815260040161062d90612582565b60405180910390fd5b8051610649906010906020840190611bcb565b5050565b60606001805461065c906127ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610688906127ec565b80156106d55780601f106106aa576101008083540402835291602001916106d5565b820191906000526020600020905b8154815290600101906020018083116106b857829003601f168201915b505050505090505b90565b60006106eb82610e99565b6107075760405162461bcd60e51b815260040161062d90612536565b506000908152600560205260409020546001600160a01b031690565b600061072e82610b63565b9050806001600160a01b0316836001600160a01b031614156107625760405162461bcd60e51b815260040161062d9061263d565b806001600160a01b0316610774610e95565b6001600160a01b0316148061079057506107908161057c610e95565b6107ac5760405162461bcd60e51b815260040161062d90612341565b6107b68383610eb6565b505050565b6002600b5414156107de5760405162461bcd60e51b815260040161062d9061271b565b6002600b556107ec33610f24565b156108095760405162461bcd60e51b815260040161062d90612488565b600d54341461082a5760405162461bcd60e51b815260040161062d90612752565b600061083461099f565b61083f90600161277d565b6000868152601160205260409020549091501561086e5760405162461bcd60e51b815260040161062d9061245d565b600c548111156108905760405162461bcd60e51b815260040161062d90612606565b60007f52f6b35b7b749d2d3693cd20fff3ec1d1809a10a2c28e28774f6ed876de8f15f866040516020016108c592919061202c565b60405160208183030381529060405280519060200120905060006108e882610f33565b905060006108f882888888610f46565b6013549091506001600160a01b038083169116146109285760405162461bcd60e51b815260040161062d90612431565b6109323385610f6e565b600088815260116020908152604080832087905586835260129091529020889055600f546109609085612842565b61097e57600e54600d6000828254610978919061277d565b90915550505b50506001600b55505050505050565b60116020526000908152604090205481565b60095490565b600e5481565b6109b3610e95565b6001600160a01b03166109c4610c36565b6001600160a01b0316146109ea5760405162461bcd60e51b815260040161062d90612582565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610649573d6000803e3d6000fd5b610a30610a2a610e95565b82610f88565b610a4c5760405162461bcd60e51b815260040161062d9061267e565b6107b6838383611005565b6000610a6283610b98565b8210610a805760405162461bcd60e51b815260040161062d906120d9565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600c5481565b7f52f6b35b7b749d2d3693cd20fff3ec1d1809a10a2c28e28774f6ed876de8f15f81565b6107b683838360405180602001604052806000815250610ccd565b60006105e682610e99565b6000610b0361099f565b8210610b215760405162461bcd60e51b815260040161062d906126cf565b60098281548110610b4257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6013546001600160a01b031681565b6000818152600360205260408120546001600160a01b0316806105e65760405162461bcd60e51b815260040161062d906123e8565b60006001600160a01b038216610bc05760405162461bcd60e51b815260040161062d9061239e565b506001600160a01b031660009081526004602052604090205490565b610be4610e95565b6001600160a01b0316610bf5610c36565b6001600160a01b031614610c1b5760405162461bcd60e51b815260040161062d90612582565b610c256000611138565b565b6000610c31611188565b905090565b6000546001600160a01b031690565b60606002805461065c906127ec565b600d5481565b610649610c65610e95565b838361127f565b610c74610e95565b6001600160a01b0316610c85610c36565b6001600160a01b031614610cab5760405162461bcd60e51b815260040161062d90612582565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b610cde610cd8610e95565b83610f88565b610cfa5760405162461bcd60e51b815260040161062d9061267e565b610d0684848484611322565b50505050565b600f5481565b6060610d1d82610e99565b610d395760405162461bcd60e51b815260040161062d906125b7565b6000610d43611355565b600084815260126020526040902054815191925090610d715760405180602001604052806000815250610d9c565b81610d7b82611364565b604051602001610d8c929190611f51565b6040516020818303038152906040525b949350505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610dda610e95565b6001600160a01b0316610deb610c36565b6001600160a01b031614610e115760405162461bcd60e51b815260040161062d90612582565b6001600160a01b038116610e375760405162461bcd60e51b815260040161062d90612176565b610e4081611138565b50565b60126020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b1480610e8657506001600160e01b03198216635b5e139f60e01b145b806105e657506105e68261147f565b3390565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eeb82610b63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03163b151590565b60006105e6610f40611188565b83611498565b6000806000610f57878787876114cb565b91509150610f64816115ab565b5095945050505050565b6106498282604051806020016040528060008152506116d8565b6000610f9382610e99565b610faf5760405162461bcd60e51b815260040161062d906122f5565b6000610fba83610b63565b9050806001600160a01b0316846001600160a01b03161480610ff55750836001600160a01b0316610fea846106e0565b6001600160a01b0316145b80610d9c5750610d9c8185610da4565b826001600160a01b031661101882610b63565b6001600160a01b03161461103e5760405162461bcd60e51b815260040161062d906121bc565b6001600160a01b0382166110645760405162461bcd60e51b815260040161062d90612238565b61106f83838361170b565b61107a600082610eb6565b6001600160a01b03831660009081526004602052604081208054600192906110a39084906127a9565b90915550506001600160a01b03821660009081526004602052604081208054600192906110d190849061277d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46107b68383836107b6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000306001600160a01b037f000000000000000000000000b8180bed5a2980f31a65ef4ce2ead0025fef0a03161480156111e157507f000000000000000000000000000000000000000000000000000000000000000146145b1561120d57507f00dec944660dc6771e813f4346f7a98288b870847e859f0ca4ab9a6743b884d76106dd565b6112787f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f9c4138cd0a1311e4748f70d0fe3dc55f0f5f75e0f20db731225cbc3b8914016a7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611794565b90506106dd565b816001600160a01b0316836001600160a01b031614156112b15760405162461bcd60e51b815260040161062d9061227c565b6001600160a01b0383811660008181526006602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611315908590611fec565b60405180910390a3505050565b61132d848484611005565b611339848484846117ce565b610d065760405162461bcd60e51b815260040161062d90612124565b60606010805461065c906127ec565b60608161138957506040805180820190915260018152600360fc1b60208201526105e9565b8160005b81156113b3578061139d81612827565b91506113ac9050600a83612795565b915061138d565b60008167ffffffffffffffff8111156113dc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611406576020820181803683370190505b5090505b8415610d9c5761141b6001836127a9565b9150611428600a86612842565b61143390603061277d565b60f81b81838151811061145657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611478600a86612795565b945061140a565b6001600160e01b031981166301ffc9a760e01b14919050565b600082826040516020016114ad929190611f80565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561150257506000905060036115a2565b8460ff16601b1415801561151a57508460ff16601c14155b1561152b57506000905060046115a2565b600060018787878760405160008152602001604052604051611550949392919061203a565b6020604051602081039080840390855afa158015611572573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661159b576000600192509250506115a2565b9150600090505b94509492505050565b60008160048111156115cd57634e487b7160e01b600052602160045260246000fd5b14156115d857610e40565b60018160048111156115fa57634e487b7160e01b600052602160045260246000fd5b14156116185760405162461bcd60e51b815260040161062d9061206b565b600281600481111561163a57634e487b7160e01b600052602160045260246000fd5b14156116585760405162461bcd60e51b815260040161062d906120a2565b600381600481111561167a57634e487b7160e01b600052602160045260246000fd5b14156116985760405162461bcd60e51b815260040161062d906122b3565b60048160048111156116ba57634e487b7160e01b600052602160045260246000fd5b1415610e405760405162461bcd60e51b815260040161062d906124bf565b6116e283836118e6565b6116ef60008484846117ce565b6107b65760405162461bcd60e51b815260040161062d90612124565b6117168383836107b6565b6001600160a01b0383166117325761172d816119cd565b611755565b816001600160a01b0316836001600160a01b031614611755576117558382611a11565b6001600160a01b0382166117715761176c81611aae565b6107b6565b826001600160a01b0316826001600160a01b0316146107b6576107b68282611b87565b600083838346306040516020016117af959493929190612000565b6040516020818303038152906040528051906020012090509392505050565b60006117e2846001600160a01b0316610f24565b156118de57836001600160a01b031663150b7a026117fe610e95565b8786866040518563ffffffff1660e01b81526004016118209493929190611faf565b602060405180830381600087803b15801561183a57600080fd5b505af192505050801561186a575060408051601f3d908101601f1916820190925261186791810190611e6a565b60015b6118c4573d808015611898576040519150601f19603f3d011682016040523d82523d6000602084013e61189d565b606091505b5080516118bc5760405162461bcd60e51b815260040161062d90612124565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d9c565b506001610d9c565b6001600160a01b03821661190c5760405162461bcd60e51b815260040161062d90612501565b61191581610e99565b156119325760405162461bcd60e51b815260040161062d90612201565b61193e6000838361170b565b6001600160a01b038216600090815260046020526040812080546001929061196790849061277d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610649600083836107b6565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611a1e84610b98565b611a2891906127a9565b600083815260086020526040902054909150808214611a7b576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611ac0906001906127a9565b6000838152600a602052604081205460098054939450909284908110611af657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611b2557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611b6b57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b9283610b98565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611bd7906127ec565b90600052602060002090601f016020900481019282611bf95760008555611c3f565b82601f10611c1257805160ff1916838001178555611c3f565b82800160010185558215611c3f579182015b82811115611c3f578251825591602001919060010190611c24565b50611c4b929150611c4f565b5090565b5b80821115611c4b5760008155600101611c50565b600067ffffffffffffffff80841115611c7f57611c7f612882565b604051601f8501601f19908116603f01168101908282118183101715611ca757611ca7612882565b81604052809350858152868686011115611cc057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ceb578081fd5b8135611cf681612898565b9392505050565b60008060408385031215611d0f578081fd5b8235611d1a81612898565b91506020830135611d2a81612898565b809150509250929050565b600080600060608486031215611d49578081fd5b8335611d5481612898565b92506020840135611d6481612898565b929592945050506040919091013590565b60008060008060808587031215611d8a578081fd5b8435611d9581612898565b93506020850135611da581612898565b925060408501359150606085013567ffffffffffffffff811115611dc7578182fd5b8501601f81018713611dd7578182fd5b611de687823560208401611c64565b91505092959194509250565b60008060408385031215611e04578182fd5b8235611e0f81612898565b915060208301358015158114611d2a578182fd5b60008060408385031215611e35578182fd5b8235611e4081612898565b946020939093013593505050565b600060208284031215611e5f578081fd5b8135611cf6816128ad565b600060208284031215611e7b578081fd5b8151611cf6816128ad565b600060208284031215611e97578081fd5b813567ffffffffffffffff811115611ead578182fd5b8201601f81018413611ebd578182fd5b610d9c84823560208401611c64565b600060208284031215611edd578081fd5b5035919050565b60008060008060808587031215611ef9578384fd5b84359350602085013560ff81168114611f10578384fd5b93969395505050506040820135916060013590565b60008151808452611f3d8160208601602086016127c0565b601f01601f19169290920160200192915050565b60008351611f638184602088016127c0565b835190830190611f778183602088016127c0565b01949350505050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe290830184611f25565b9695505050505050565b901515815260200190565b90815260200190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b918252602082015260400190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252611cf66020830184611f25565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526012908201527127232a1d34b73b30b634b21039b4b3b732b960711b604082015260600190565b6020808252601190820152701391950e9d5cd95908185d985d185c9259607a1b604082015260600190565b6020808252601c908201527f4e46543a6e6f7420616c6c6f77656420666f7220636f6e747261637400000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526018908201527f4e46543a6f766572207468616e206d617820737570706c790000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601190820152704e46543a696e76616c69642076616c756560781b604082015260600190565b6000821982111561279057612790612856565b500190565b6000826127a4576127a461286c565b500490565b6000828210156127bb576127bb612856565b500390565b60005b838110156127db5781810151838201526020016127c3565b83811115610d065750506000910152565b60028104600182168061280057607f821691505b6020821081141561282157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561283b5761283b612856565b5060010190565b6000826128515761285161286c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e4057600080fd5b6001600160e01b031981168114610e4057600080fdfea26469706673582212203773d40f3918999366f92584bd28c69bb2e07a4d9a1e9d8ebb2e6c8e9d94d51c64736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a506f6b6572204661636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a506f6b6572204661636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f6d696e742e706f6b6572666163652e686f7573652f737667617661746172732f7068702f6e66742e7068703f61766174617249643d000000

-----Decoded View---------------
Arg [0] : name (string): Poker Face
Arg [1] : symbol (string): Poker Face
Arg [2] : uri (string): https://mint.pokerface.house/svgavatars/php/nft.php?avatarId=

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 506f6b6572204661636500000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 506f6b6572204661636500000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000003d
Arg [8] : 68747470733a2f2f6d696e742e706f6b6572666163652e686f7573652f737667
Arg [9] : 617661746172732f7068702f6e66742e7068703f61766174617249643d000000


Deployed Bytecode Sourcemap

62707:2609:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39528:224;;;;;;;;;;-1:-1:-1;39528:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63617:81;;;;;;;;;;-1:-1:-1;63617:81:0;;;;;:::i;:::-;;:::i;:::-;;25245:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26804:221::-;;;;;;;;;;-1:-1:-1;26804:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26327:411::-;;;;;;;;;;-1:-1:-1;26327:411:0;;;;;:::i;:::-;;:::i;64322:875::-;;;;;;:::i;:::-;;:::i;63003:48::-;;;;;;;;;;-1:-1:-1;63003:48:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40168:113::-;;;;;;;;;;;;;:::i;62898:32::-;;;;;;;;;;;;;:::i;65209:104::-;;;;;;;;;;-1:-1:-1;65209:104:0;;;;;:::i;:::-;;:::i;27554:339::-;;;;;;;;;;-1:-1:-1;27554:339:0;;;;;:::i;:::-;;:::i;39836:256::-;;;;;;;;;;-1:-1:-1;39836:256:0;;;;;:::i;:::-;;:::i;62831:26::-;;;;;;;;;;;;;:::i;63143:70::-;;;;;;;;;;;;;:::i;27964:185::-;;;;;;;;;;-1:-1:-1;27964:185:0;;;;;:::i;:::-;;:::i;63819:102::-;;;;;;;;;;-1:-1:-1;63819:102:0;;;;;:::i;:::-;;:::i;40358:233::-;;;;;;;;;;-1:-1:-1;40358:233:0;;;;;:::i;:::-;;:::i;63113:23::-;;;;;;;;;;;;;:::i;24939:239::-;;;;;;;;;;-1:-1:-1;24939:239:0;;;;;:::i;:::-;;:::i;24669:208::-;;;;;;;;;;-1:-1:-1;24669:208:0;;;;;:::i;:::-;;:::i;2675:103::-;;;;;;;;;;;;;:::i;63500:105::-;;;;;;;;;;;;;:::i;2024:87::-;;;;;;;;;;;;;:::i;25414:104::-;;;;;;;;;;;;;:::i;62864:27::-;;;;;;;;;;;;;:::i;27097:155::-;;;;;;;;;;-1:-1:-1;27097:155:0;;;;;:::i;:::-;;:::i;63392:96::-;;;;;;;;;;-1:-1:-1;63392:96:0;;;;;:::i;:::-;;:::i;28220:328::-;;;;;;;;;;-1:-1:-1;28220:328:0;;;;;:::i;:::-;;:::i;62937:33::-;;;;;;;;;;;;;:::i;63933:377::-;;;;;;;;;;-1:-1:-1;63933:377:0;;;;;:::i;:::-;;:::i;27323:164::-;;;;;;;;;;-1:-1:-1;27323:164:0;;;;;:::i;:::-;;:::i;2933:201::-;;;;;;;;;;-1:-1:-1;2933:201:0;;;;;:::i;:::-;;:::i;63058:48::-;;;;;;;;;;-1:-1:-1;63058:48:0;;;;;:::i;:::-;;:::i;39528:224::-;39630:4;-1:-1:-1;;;;;;39654:50:0;;-1:-1:-1;;;39654:50:0;;:90;;;39708:36;39732:11;39708:23;:36::i;:::-;39647:97;;39528:224;;;;:::o;63617:81::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;;;;;;;;;63680:10;;::::1;::::0;:4:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;:::-;;63617:81:::0;:::o;25245:100::-;25299:13;25332:5;25325:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25245:100;;:::o;26804:221::-;26880:7;26908:16;26916:7;26908;:16::i;:::-;26900:73;;;;-1:-1:-1;;;26900:73:0;;;;;;;:::i;:::-;-1:-1:-1;26993:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26993:24:0;;26804:221::o;26327:411::-;26408:13;26424:23;26439:7;26424:14;:23::i;:::-;26408:39;;26472:5;-1:-1:-1;;;;;26466:11:0;:2;-1:-1:-1;;;;;26466:11:0;;;26458:57;;;;-1:-1:-1;;;26458:57:0;;;;;;;:::i;:::-;26566:5;-1:-1:-1;;;;;26550:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26550:21:0;;:62;;;;26575:37;26592:5;26599:12;:10;:12::i;26575:37::-;26528:168;;;;-1:-1:-1;;;26528:168:0;;;;;;;:::i;:::-;26709:21;26718:2;26722:7;26709:8;:21::i;:::-;26327:411;;;:::o;64322:875::-;47507:1;48105:7;;:19;;48097:63;;;;-1:-1:-1;;;48097:63:0;;;;;;;:::i;:::-;47507:1;48238:7;:18;64432:30:::1;64451:10;64432:18;:30::i;:::-;64431:31;64423:72;;;;-1:-1:-1::0;;;64423:72:0::1;;;;;;;:::i;:::-;64527:5;;64514:9;:18;64506:48;;;;-1:-1:-1::0;;;64506:48:0::1;;;;;;;:::i;:::-;64565:15;64583:13;:11;:13::i;:::-;:17;::::0;64599:1:::1;64583:17;:::i;:::-;64619:23;::::0;;;:13:::1;:23;::::0;;;;;64565:35;;-1:-1:-1;64619:28:0;64611:58:::1;;;;-1:-1:-1::0;;;64611:58:0::1;;;;;;;:::i;:::-;64699:3;;64688:7;:14;;64680:51;;;;-1:-1:-1::0;;;64680:51:0::1;;;;;;;:::i;:::-;64742:18;63178:35;64794:8;64773:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64763:41;;;;;;64742:62;;64815:12;64830:28;64847:10;64830:16;:28::i;:::-;64815:43;;64869:14;64886:28;64900:4;64906:1;64909;64912;64886:13;:28::i;:::-;64943:8;::::0;64869:45;;-1:-1:-1;;;;;;64933:18:0;;::::1;64943:8:::0;::::1;64933:18;64925:49;;;;-1:-1:-1::0;;;64925:49:0::1;;;;;;;:::i;:::-;64985:30;64995:10;65007:7;64985:9;:30::i;:::-;65026:23;::::0;;;:13:::1;:23;::::0;;;;;;;:33;;;65070:22;;;:13:::1;:22:::0;;;;;:33;;;65127:11:::1;::::0;65117:21:::1;::::0;65052:7;65117:21:::1;:::i;:::-;65114:76;;65168:10;;65159:5;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;65114:76:0::1;-1:-1:-1::0;;47463:1:0;48417:7;:22;-1:-1:-1;;;;;;64322:875:0:o;63003:48::-;;;;;;;;;;;;;:::o;40168:113::-;40256:10;:17;40168:113;:::o;62898:32::-;;;;:::o;65209:104::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;65271:34:::1;::::0;-1:-1:-1;;;;;65271:11:0;::::1;::::0;65283:21:::1;65271:34:::0;::::1;;;::::0;::::1;::::0;;;65283:21;65271:11;:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;27554:339:::0;27749:41;27768:12;:10;:12::i;:::-;27782:7;27749:18;:41::i;:::-;27741:103;;;;-1:-1:-1;;;27741:103:0;;;;;;;:::i;:::-;27857:28;27867:4;27873:2;27877:7;27857:9;:28::i;39836:256::-;39933:7;39969:23;39986:5;39969:16;:23::i;:::-;39961:5;:31;39953:87;;;;-1:-1:-1;;;39953:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40058:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39836:256::o;62831:26::-;;;;:::o;63143:70::-;63178:35;63143:70;:::o;27964:185::-;28102:39;28119:4;28125:2;28129:7;28102:39;;;;;;;;;;;;:16;:39::i;63819:102::-;63873:4;63897:16;63905:7;63897;:16::i;40358:233::-;40433:7;40469:30;:28;:30::i;:::-;40461:5;:38;40453:95;;;;-1:-1:-1;;;40453:95:0;;;;;;;:::i;:::-;40566:10;40577:5;40566:17;;;;;;-1:-1:-1;;;40566:17:0;;;;;;;;;;;;;;;;;40559:24;;40358:233;;;:::o;63113:23::-;;;-1:-1:-1;;;;;63113:23:0;;:::o;24939:239::-;25011:7;25047:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25047:16:0;25082:19;25074:73;;;;-1:-1:-1;;;25074:73:0;;;;;;;:::i;24669:208::-;24741:7;-1:-1:-1;;;;;24769:19:0;;24761:74;;;;-1:-1:-1;;;24761:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24853:16:0;;;;;:9;:16;;;;;;;24669:208::o;2675:103::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;2740:30:::1;2767:1;2740:18;:30::i;:::-;2675:103::o:0;63500:105::-;63550:7;63577:20;:18;:20::i;:::-;63570:27;;63500:105;:::o;2024:87::-;2070:7;2097:6;-1:-1:-1;;;;;2097:6:0;2024:87;:::o;25414:104::-;25470:13;25503:7;25496:14;;;;;:::i;62864:27::-;;;;:::o;27097:155::-;27192:52;27211:12;:10;:12::i;:::-;27225:8;27235;27192:18;:52::i;63392:96::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;63460:8:::1;:20:::0;;-1:-1:-1;;;;;;63460:20:0::1;-1:-1:-1::0;;;;;63460:20:0;;;::::1;::::0;;;::::1;::::0;;63392:96::o;28220:328::-;28395:41;28414:12;:10;:12::i;:::-;28428:7;28395:18;:41::i;:::-;28387:103;;;;-1:-1:-1;;;28387:103:0;;;;;;;:::i;:::-;28501:39;28515:4;28521:2;28525:7;28534:5;28501:13;:39::i;:::-;28220:328;;;;:::o;62937:33::-;;;;:::o;63933:377::-;63998:13;64032:16;64040:7;64032;:16::i;:::-;64024:76;;;;-1:-1:-1;;;64024:76:0;;;;;;;:::i;:::-;64111:21;64135:10;:8;:10::i;:::-;64156:16;64175:22;;;:13;:22;;;;;;64215:21;;64111:34;;-1:-1:-1;64175:22:0;64215:87;;;;;;;;;;;;;;;;;64267:7;64276:19;:8;:17;:19::i;:::-;64250:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64215:87;64208:94;63933:377;-1:-1:-1;;;;63933:377:0:o;27323:164::-;-1:-1:-1;;;;;27444:25:0;;;27420:4;27444:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27323:164::o;2933:201::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3022:22:0;::::1;3014:73;;;;-1:-1:-1::0;;;3014:73:0::1;;;;;;;:::i;:::-;3098:28;3117:8;3098:18;:28::i;:::-;2933:201:::0;:::o;63058:48::-;;;;;;;;;;;;;:::o;24300:305::-;24402:4;-1:-1:-1;;;;;;24439:40:0;;-1:-1:-1;;;24439:40:0;;:105;;-1:-1:-1;;;;;;;24496:48:0;;-1:-1:-1;;;24496:48:0;24439:105;:158;;;;24561:36;24585:11;24561:23;:36::i;729:98::-;809:10;729:98;:::o;30058:127::-;30123:4;30147:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30147:16:0;:30;;;30058:127::o;34204:174::-;34279:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34279:29:0;-1:-1:-1;;;;;34279:29:0;;;;;;;;:24;;34333:23;34279:24;34333:14;:23::i;:::-;-1:-1:-1;;;;;34324:46:0;;;;;;;;;;;34204:174;;:::o;12428:326::-;-1:-1:-1;;;;;12723:19:0;;:23;;;12428:326::o;62468:167::-;62545:7;62572:55;62594:20;:18;:20::i;:::-;62616:10;62572:21;:55::i;56098:279::-;56226:7;56247:17;56266:18;56288:25;56299:4;56305:1;56308;56311;56288:10;:25::i;:::-;56246:67;;;;56324:18;56336:5;56324:11;:18::i;:::-;-1:-1:-1;56360:9:0;56098:279;-1:-1:-1;;;;;56098:279:0:o;31042:110::-;31118:26;31128:2;31132:7;31118:26;;;;;;;;;;;;:9;:26::i;30352:348::-;30445:4;30470:16;30478:7;30470;:16::i;:::-;30462:73;;;;-1:-1:-1;;;30462:73:0;;;;;;;:::i;:::-;30546:13;30562:23;30577:7;30562:14;:23::i;:::-;30546:39;;30615:5;-1:-1:-1;;;;;30604:16:0;:7;-1:-1:-1;;;;;30604:16:0;;:51;;;;30648:7;-1:-1:-1;;;;;30624:31:0;:20;30636:7;30624:11;:20::i;:::-;-1:-1:-1;;;;;30624:31:0;;30604:51;:87;;;;30659:32;30676:5;30683:7;30659:16;:32::i;33461:625::-;33620:4;-1:-1:-1;;;;;33593:31:0;:23;33608:7;33593:14;:23::i;:::-;-1:-1:-1;;;;;33593:31:0;;33585:81;;;;-1:-1:-1;;;33585:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33685:16:0;;33677:65;;;;-1:-1:-1;;;33677:65:0;;;;;;;:::i;:::-;33755:39;33776:4;33782:2;33786:7;33755:20;:39::i;:::-;33859:29;33876:1;33880:7;33859:8;:29::i;:::-;-1:-1:-1;;;;;33901:15:0;;;;;;:9;:15;;;;;:20;;33920:1;;33901:15;:20;;33920:1;;33901:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33932:13:0;;;;;;:9;:13;;;;;:18;;33949:1;;33932:13;:18;;33949:1;;33932:18;:::i;:::-;;;;-1:-1:-1;;33961:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33961:21:0;-1:-1:-1;;;;;33961:21:0;;;;;;;;;34000:27;;33961:16;;34000:27;;;;;;;34040:38;34060:4;34066:2;34070:7;34040:19;:38::i;3294:191::-;3368:16;3387:6;;-1:-1:-1;;;;;3404:17:0;;;-1:-1:-1;;;;;;3404:17:0;;;;;;3437:40;;3387:6;;;;;;;3437:40;;3368:16;3437:40;3294:191;;:::o;61241:314::-;61294:7;61326:4;-1:-1:-1;;;;;61335:12:0;61318:29;;:66;;;;;61368:16;61351:13;:33;61318:66;61314:234;;;-1:-1:-1;61408:24:0;61401:31;;61314:234;61472:64;61494:10;61506:12;61520:15;61472:21;:64::i;:::-;61465:71;;;;34520:315;34675:8;-1:-1:-1;;;;;34666:17:0;:5;-1:-1:-1;;;;;34666:17:0;;;34658:55;;;;-1:-1:-1;;;34658:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34724:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;34724:46:0;;;;;;;34786:41;;;;;34724:46;;34786:41;:::i;:::-;;;;;;;;34520:315;;;:::o;29430:::-;29587:28;29597:4;29603:2;29607:7;29587:9;:28::i;:::-;29634:48;29657:4;29663:2;29667:7;29676:5;29634:22;:48::i;:::-;29626:111;;;;-1:-1:-1;;;29626:111:0;;;;;;;:::i;63710:97::-;63762:13;63795:4;63788:11;;;;;:::i;20082:723::-;20138:13;20359:10;20355:53;;-1:-1:-1;20386:10:0;;;;;;;;;;;;-1:-1:-1;;;20386:10:0;;;;;;20355:53;20433:5;20418:12;20474:78;20481:9;;20474:78;;20507:8;;;;:::i;:::-;;-1:-1:-1;20530:10:0;;-1:-1:-1;20538:2:0;20530:10;;:::i;:::-;;;20474:78;;;20562:19;20594:6;20584:17;;;;;;-1:-1:-1;;;20584:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20584:17:0;;20562:39;;20612:154;20619:10;;20612:154;;20646:11;20656:1;20646:11;;:::i;:::-;;-1:-1:-1;20715:10:0;20723:2;20715:5;:10;:::i;:::-;20702:24;;:2;:24;:::i;:::-;20689:39;;20672:6;20679;20672:14;;;;;;-1:-1:-1;;;20672:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;20672:56:0;;;;;;;;-1:-1:-1;20743:11:0;20752:2;20743:11;;:::i;:::-;;;20612:154;;22725:157;-1:-1:-1;;;;;;22834:40:0;;-1:-1:-1;;;22834:40:0;22725:157;;;:::o;57789:196::-;57882:7;57948:15;57965:10;57919:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57909:68;;;;;;57902:75;;57789:196;;;;:::o;54327:1632::-;54458:7;;55392:66;55379:79;;55375:163;;;-1:-1:-1;55491:1:0;;-1:-1:-1;55495:30:0;55475:51;;55375:163;55552:1;:7;;55557:2;55552:7;;:18;;;;;55563:1;:7;;55568:2;55563:7;;55552:18;55548:102;;;-1:-1:-1;55603:1:0;;-1:-1:-1;55607:30:0;55587:51;;55548:102;55747:14;55764:24;55774:4;55780:1;55783;55786;55764:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55764:24:0;;-1:-1:-1;;55764:24:0;;;-1:-1:-1;;;;;;;55803:20:0;;55799:103;;55856:1;55860:29;55840:50;;;;;;;55799:103;55922:6;-1:-1:-1;55930:20:0;;-1:-1:-1;54327:1632:0;;;;;;;;:::o;49036:643::-;49114:20;49105:5;:29;;;;;;-1:-1:-1;;;49105:29:0;;;;;;;;;;49101:571;;;49151:7;;49101:571;49212:29;49203:5;:38;;;;;;-1:-1:-1;;;49203:38:0;;;;;;;;;;49199:473;;;49258:34;;-1:-1:-1;;;49258:34:0;;;;;;;:::i;49199:473::-;49323:35;49314:5;:44;;;;;;-1:-1:-1;;;49314:44:0;;;;;;;;;;49310:362;;;49375:41;;-1:-1:-1;;;49375:41:0;;;;;;;:::i;49310:362::-;49447:30;49438:5;:39;;;;;;-1:-1:-1;;;49438:39:0;;;;;;;;;;49434:238;;;49494:44;;-1:-1:-1;;;49494:44:0;;;;;;;:::i;49434:238::-;49569:30;49560:5;:39;;;;;;-1:-1:-1;;;49560:39:0;;;;;;;;;;49556:116;;;49616:44;;-1:-1:-1;;;49616:44:0;;;;;;;:::i;31379:321::-;31509:18;31515:2;31519:7;31509:5;:18::i;:::-;31560:54;31591:1;31595:2;31599:7;31608:5;31560:22;:54::i;:::-;31538:154;;;;-1:-1:-1;;;31538:154:0;;;;;;;:::i;41204:589::-;41348:45;41375:4;41381:2;41385:7;41348:26;:45::i;:::-;-1:-1:-1;;;;;41410:18:0;;41406:187;;41445:40;41477:7;41445:31;:40::i;:::-;41406:187;;;41515:2;-1:-1:-1;;;;;41507:10:0;:4;-1:-1:-1;;;;;41507:10:0;;41503:90;;41534:47;41567:4;41573:7;41534:32;:47::i;:::-;-1:-1:-1;;;;;41607:16:0;;41603:183;;41640:45;41677:7;41640:36;:45::i;:::-;41603:183;;;41713:4;-1:-1:-1;;;;;41707:10:0;:2;-1:-1:-1;;;;;41707:10:0;;41703:83;;41734:40;41762:2;41766:7;41734:27;:40::i;61563:263::-;61707:7;61755:8;61765;61775:11;61788:13;61811:4;61744:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61734:84;;;;;;61727:91;;61563:263;;;;;:::o;35400:799::-;35555:4;35576:15;:2;-1:-1:-1;;;;;35576:13:0;;:15::i;:::-;35572:620;;;35628:2;-1:-1:-1;;;;;35612:36:0;;35649:12;:10;:12::i;:::-;35663:4;35669:7;35678:5;35612:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35612:72:0;;;;;;;;-1:-1:-1;;35612:72:0;;;;;;;;;;;;:::i;:::-;;;35608:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35854:13:0;;35850:272;;35897:60;;-1:-1:-1;;;35897:60:0;;;;;;;:::i;35850:272::-;36072:6;36066:13;36057:6;36053:2;36049:15;36042:38;35608:529;-1:-1:-1;;;;;;35735:51:0;-1:-1:-1;;;35735:51:0;;-1:-1:-1;35728:58:0;;35572:620;-1:-1:-1;36176:4:0;36169:11;;32036:439;-1:-1:-1;;;;;32116:16:0;;32108:61;;;;-1:-1:-1;;;32108:61:0;;;;;;;:::i;:::-;32189:16;32197:7;32189;:16::i;:::-;32188:17;32180:58;;;;-1:-1:-1;;;32180:58:0;;;;;;;:::i;:::-;32251:45;32280:1;32284:2;32288:7;32251:20;:45::i;:::-;-1:-1:-1;;;;;32309:13:0;;;;;;:9;:13;;;;;:18;;32326:1;;32309:13;:18;;32326:1;;32309:18;:::i;:::-;;;;-1:-1:-1;;32338:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32338:21:0;-1:-1:-1;;;;;32338:21:0;;;;;;;;32377:33;;32338:16;;;32377:33;;32338:16;;32377:33;32423:44;32451:1;32455:2;32459:7;32423:19;:44::i;42516:164::-;42620:10;:17;;42593:24;;;;:15;:24;;;;;:44;;;42648:24;;;;;;;;;;;;42516:164::o;43307:988::-;43573:22;43623:1;43598:22;43615:4;43598:16;:22::i;:::-;:26;;;;:::i;:::-;43635:18;43656:26;;;:17;:26;;;;;;43573:51;;-1:-1:-1;43789:28:0;;;43785:328;;-1:-1:-1;;;;;43856:18:0;;43834:19;43856:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43907:30;;;;;;:44;;;44024:30;;:17;:30;;;;;:43;;;43785:328;-1:-1:-1;44209:26:0;;;;:17;:26;;;;;;;;44202:33;;;-1:-1:-1;;;;;44253:18:0;;;;;:12;:18;;;;;:34;;;;;;;44246:41;43307:988::o;44590:1079::-;44868:10;:17;44843:22;;44868:21;;44888:1;;44868:21;:::i;:::-;44900:18;44921:24;;;:15;:24;;;;;;45294:10;:26;;44843:46;;-1:-1:-1;44921:24:0;;44843:46;;45294:26;;;;-1:-1:-1;;;45294:26:0;;;;;;;;;;;;;;;;;45272:48;;45358:11;45333:10;45344;45333:22;;;;;;-1:-1:-1;;;45333:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;45438:28;;;:15;:28;;;;;;;:41;;;45610:24;;;;;45603:31;45645:10;:16;;;;;-1:-1:-1;;;45645:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;44590:1079;;;;:::o;42094:221::-;42179:14;42196:20;42213:2;42196:16;:20::i;:::-;-1:-1:-1;;;;;42227:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42272:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42094:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:259::-;;764:2;752:9;743:7;739:23;735:32;732:2;;;785:6;777;770:22;732:2;829:9;816:23;848:33;875:5;848:33;:::i;:::-;900:5;722:189;-1:-1:-1;;;722:189:1:o;1188:402::-;;;1317:2;1305:9;1296:7;1292:23;1288:32;1285:2;;;1338:6;1330;1323:22;1285:2;1382:9;1369:23;1401:33;1428:5;1401:33;:::i;:::-;1453:5;-1:-1:-1;1510:2:1;1495:18;;1482:32;1523:35;1482:32;1523:35;:::i;:::-;1577:7;1567:17;;;1275:315;;;;;:::o;1595:470::-;;;;1741:2;1729:9;1720:7;1716:23;1712:32;1709:2;;;1762:6;1754;1747:22;1709:2;1806:9;1793:23;1825:33;1852:5;1825:33;:::i;:::-;1877:5;-1:-1:-1;1934:2:1;1919:18;;1906:32;1947:35;1906:32;1947:35;:::i;:::-;1699:366;;2001:7;;-1:-1:-1;;;2055:2:1;2040:18;;;;2027:32;;1699:366::o;2070:830::-;;;;;2242:3;2230:9;2221:7;2217:23;2213:33;2210:2;;;2264:6;2256;2249:22;2210:2;2308:9;2295:23;2327:33;2354:5;2327:33;:::i;:::-;2379:5;-1:-1:-1;2436:2:1;2421:18;;2408:32;2449:35;2408:32;2449:35;:::i;:::-;2503:7;-1:-1:-1;2557:2:1;2542:18;;2529:32;;-1:-1:-1;2612:2:1;2597:18;;2584:32;2639:18;2628:30;;2625:2;;;2676:6;2668;2661:22;2625:2;2704:22;;2757:4;2749:13;;2745:27;-1:-1:-1;2735:2:1;;2791:6;2783;2776:22;2735:2;2819:75;2886:7;2881:2;2868:16;2863:2;2859;2855:11;2819:75;:::i;:::-;2809:85;;;2200:700;;;;;;;:::o;2905:438::-;;;3031:2;3019:9;3010:7;3006:23;3002:32;2999:2;;;3052:6;3044;3037:22;2999:2;3096:9;3083:23;3115:33;3142:5;3115:33;:::i;:::-;3167:5;-1:-1:-1;3224:2:1;3209:18;;3196:32;3266:15;;3259:23;3247:36;;3237:2;;3302:6;3294;3287:22;3348:327;;;3477:2;3465:9;3456:7;3452:23;3448:32;3445:2;;;3498:6;3490;3483:22;3445:2;3542:9;3529:23;3561:33;3588:5;3561:33;:::i;:::-;3613:5;3665:2;3650:18;;;;3637:32;;-1:-1:-1;;;3435:240:1:o;3680:257::-;;3791:2;3779:9;3770:7;3766:23;3762:32;3759:2;;;3812:6;3804;3797:22;3759:2;3856:9;3843:23;3875:32;3901:5;3875:32;:::i;3942:261::-;;4064:2;4052:9;4043:7;4039:23;4035:32;4032:2;;;4085:6;4077;4070:22;4032:2;4122:9;4116:16;4141:32;4167:5;4141:32;:::i;4208:482::-;;4330:2;4318:9;4309:7;4305:23;4301:32;4298:2;;;4351:6;4343;4336:22;4298:2;4396:9;4383:23;4429:18;4421:6;4418:30;4415:2;;;4466:6;4458;4451:22;4415:2;4494:22;;4547:4;4539:13;;4535:27;-1:-1:-1;4525:2:1;;4581:6;4573;4566:22;4525:2;4609:75;4676:7;4671:2;4658:16;4653:2;4649;4645:11;4609:75;:::i;4695:190::-;;4807:2;4795:9;4786:7;4782:23;4778:32;4775:2;;;4828:6;4820;4813:22;4775:2;-1:-1:-1;4856:23:1;;4765:120;-1:-1:-1;4765:120:1:o;4890:494::-;;;;;5051:3;5039:9;5030:7;5026:23;5022:33;5019:2;;;5073:6;5065;5058:22;5019:2;5114:9;5101:23;5091:33;;5174:2;5163:9;5159:18;5146:32;5218:4;5211:5;5207:16;5200:5;5197:27;5187:2;;5243:6;5235;5228:22;5187:2;5009:375;;5271:5;;-1:-1:-1;;;;5323:2:1;5308:18;;5295:32;;5374:2;5359:18;5346:32;;5009:375::o;5389:259::-;;5470:5;5464:12;5497:6;5492:3;5485:19;5513:63;5569:6;5562:4;5557:3;5553:14;5546:4;5539:5;5535:16;5513:63;:::i;:::-;5630:2;5609:15;-1:-1:-1;;5605:29:1;5596:39;;;;5637:4;5592:50;;5440:208;-1:-1:-1;;5440:208:1:o;5653:470::-;;5870:6;5864:13;5886:53;5932:6;5927:3;5920:4;5912:6;5908:17;5886:53;:::i;:::-;6002:13;;5961:16;;;;6024:57;6002:13;5961:16;6058:4;6046:17;;6024:57;:::i;:::-;6097:20;;5840:283;-1:-1:-1;;;;5840:283:1:o;6128:392::-;-1:-1:-1;;;6386:27:1;;6438:1;6429:11;;6422:27;;;;6474:2;6465:12;;6458:28;6511:2;6502:12;;6376:144::o;6525:203::-;-1:-1:-1;;;;;6689:32:1;;;;6671:51;;6659:2;6644:18;;6626:102::o;6733:490::-;-1:-1:-1;;;;;7002:15:1;;;6984:34;;7054:15;;7049:2;7034:18;;7027:43;7101:2;7086:18;;7079:34;;;7149:3;7144:2;7129:18;;7122:31;;;6733:490;;7170:47;;7197:19;;7189:6;7170:47;:::i;:::-;7162:55;6936:287;-1:-1:-1;;;;;;6936:287:1:o;7228:187::-;7393:14;;7386:22;7368:41;;7356:2;7341:18;;7323:92::o;7420:177::-;7566:25;;;7554:2;7539:18;;7521:76::o;7602:489::-;7861:25;;;7917:2;7902:18;;7895:34;;;;7960:2;7945:18;;7938:34;;;;8003:2;7988:18;;7981:34;-1:-1:-1;;;;;8052:32:1;8046:3;8031:19;;8024:61;7848:3;7833:19;;7815:276::o;8096:248::-;8270:25;;;8326:2;8311:18;;8304:34;8258:2;8243:18;;8225:119::o;8349:398::-;8576:25;;;8649:4;8637:17;;;;8632:2;8617:18;;8610:45;8686:2;8671:18;;8664:34;8729:2;8714:18;;8707:34;8563:3;8548:19;;8530:217::o;8752:221::-;;8901:2;8890:9;8883:21;8921:46;8963:2;8952:9;8948:18;8940:6;8921:46;:::i;8978:348::-;9180:2;9162:21;;;9219:2;9199:18;;;9192:30;9258:26;9253:2;9238:18;;9231:54;9317:2;9302:18;;9152:174::o;9331:355::-;9533:2;9515:21;;;9572:2;9552:18;;;9545:30;9611:33;9606:2;9591:18;;9584:61;9677:2;9662:18;;9505:181::o;9691:407::-;9893:2;9875:21;;;9932:2;9912:18;;;9905:30;9971:34;9966:2;9951:18;;9944:62;-1:-1:-1;;;10037:2:1;10022:18;;10015:41;10088:3;10073:19;;9865:233::o;10103:414::-;10305:2;10287:21;;;10344:2;10324:18;;;10317:30;10383:34;10378:2;10363:18;;10356:62;-1:-1:-1;;;10449:2:1;10434:18;;10427:48;10507:3;10492:19;;10277:240::o;10522:402::-;10724:2;10706:21;;;10763:2;10743:18;;;10736:30;10802:34;10797:2;10782:18;;10775:62;-1:-1:-1;;;10868:2:1;10853:18;;10846:36;10914:3;10899:19;;10696:228::o;10929:401::-;11131:2;11113:21;;;11170:2;11150:18;;;11143:30;11209:34;11204:2;11189:18;;11182:62;-1:-1:-1;;;11275:2:1;11260:18;;11253:35;11320:3;11305:19;;11103:227::o;11335:352::-;11537:2;11519:21;;;11576:2;11556:18;;;11549:30;11615;11610:2;11595:18;;11588:58;11678:2;11663:18;;11509:178::o;11692:400::-;11894:2;11876:21;;;11933:2;11913:18;;;11906:30;11972:34;11967:2;11952:18;;11945:62;-1:-1:-1;;;12038:2:1;12023:18;;12016:34;12082:3;12067:19;;11866:226::o;12097:349::-;12299:2;12281:21;;;12338:2;12318:18;;;12311:30;12377:27;12372:2;12357:18;;12350:55;12437:2;12422:18;;12271:175::o;12451:398::-;12653:2;12635:21;;;12692:2;12672:18;;;12665:30;12731:34;12726:2;12711:18;;12704:62;-1:-1:-1;;;12797:2:1;12782:18;;12775:32;12839:3;12824:19;;12625:224::o;12854:408::-;13056:2;13038:21;;;13095:2;13075:18;;;13068:30;13134:34;13129:2;13114:18;;13107:62;-1:-1:-1;;;13200:2:1;13185:18;;13178:42;13252:3;13237:19;;13028:234::o;13267:420::-;13469:2;13451:21;;;13508:2;13488:18;;;13481:30;13547:34;13542:2;13527:18;;13520:62;13618:26;13613:2;13598:18;;13591:54;13677:3;13662:19;;13441:246::o;13692:406::-;13894:2;13876:21;;;13933:2;13913:18;;;13906:30;13972:34;13967:2;13952:18;;13945:62;-1:-1:-1;;;14038:2:1;14023:18;;14016:40;14088:3;14073:19;;13866:232::o;14103:405::-;14305:2;14287:21;;;14344:2;14324:18;;;14317:30;14383:34;14378:2;14363:18;;14356:62;-1:-1:-1;;;14449:2:1;14434:18;;14427:39;14498:3;14483:19;;14277:231::o;14513:342::-;14715:2;14697:21;;;14754:2;14734:18;;;14727:30;-1:-1:-1;;;14788:2:1;14773:18;;14766:48;14846:2;14831:18;;14687:168::o;14860:341::-;15062:2;15044:21;;;15101:2;15081:18;;;15074:30;-1:-1:-1;;;15135:2:1;15120:18;;15113:47;15192:2;15177:18;;15034:167::o;15206:352::-;15408:2;15390:21;;;15447:2;15427:18;;;15420:30;15486;15481:2;15466:18;;15459:58;15549:2;15534:18;;15380:178::o;15563:398::-;15765:2;15747:21;;;15804:2;15784:18;;;15777:30;15843:34;15838:2;15823:18;;15816:62;-1:-1:-1;;;15909:2:1;15894:18;;15887:32;15951:3;15936:19;;15737:224::o;15966:356::-;16168:2;16150:21;;;16187:18;;;16180:30;16246:34;16241:2;16226:18;;16219:62;16313:2;16298:18;;16140:182::o;16327:408::-;16529:2;16511:21;;;16568:2;16548:18;;;16541:30;16607:34;16602:2;16587:18;;16580:62;-1:-1:-1;;;16673:2:1;16658:18;;16651:42;16725:3;16710:19;;16501:234::o;16740:356::-;16942:2;16924:21;;;16961:18;;;16954:30;17020:34;17015:2;17000:18;;16993:62;17087:2;17072:18;;16914:182::o;17101:411::-;17303:2;17285:21;;;17342:2;17322:18;;;17315:30;17381:34;17376:2;17361:18;;17354:62;-1:-1:-1;;;17447:2:1;17432:18;;17425:45;17502:3;17487:19;;17275:237::o;17517:348::-;17719:2;17701:21;;;17758:2;17738:18;;;17731:30;17797:26;17792:2;17777:18;;17770:54;17856:2;17841:18;;17691:174::o;17870:397::-;18072:2;18054:21;;;18111:2;18091:18;;;18084:30;18150:34;18145:2;18130:18;;18123:62;-1:-1:-1;;;18216:2:1;18201:18;;18194:31;18257:3;18242:19;;18044:223::o;18272:413::-;18474:2;18456:21;;;18513:2;18493:18;;;18486:30;18552:34;18547:2;18532:18;;18525:62;-1:-1:-1;;;18618:2:1;18603:18;;18596:47;18675:3;18660:19;;18446:239::o;18690:408::-;18892:2;18874:21;;;18931:2;18911:18;;;18904:30;18970:34;18965:2;18950:18;;18943:62;-1:-1:-1;;;19036:2:1;19021:18;;19014:42;19088:3;19073:19;;18864:234::o;19103:355::-;19305:2;19287:21;;;19344:2;19324:18;;;19317:30;19383:33;19378:2;19363:18;;19356:61;19449:2;19434:18;;19277:181::o;19463:341::-;19665:2;19647:21;;;19704:2;19684:18;;;19677:30;-1:-1:-1;;;19738:2:1;19723:18;;19716:47;19795:2;19780:18;;19637:167::o;19991:128::-;;20062:1;20058:6;20055:1;20052:13;20049:2;;;20068:18;;:::i;:::-;-1:-1:-1;20104:9:1;;20039:80::o;20124:120::-;;20190:1;20180:2;;20195:18;;:::i;:::-;-1:-1:-1;20229:9:1;;20170:74::o;20249:125::-;;20317:1;20314;20311:8;20308:2;;;20322:18;;:::i;:::-;-1:-1:-1;20359:9:1;;20298:76::o;20379:258::-;20451:1;20461:113;20475:6;20472:1;20469:13;20461:113;;;20551:11;;;20545:18;20532:11;;;20525:39;20497:2;20490:10;20461:113;;;20592:6;20589:1;20586:13;20583:2;;;-1:-1:-1;;20627:1:1;20609:16;;20602:27;20432:205::o;20642:380::-;20727:1;20717:12;;20774:1;20764:12;;;20785:2;;20839:4;20831:6;20827:17;20817:27;;20785:2;20892;20884:6;20881:14;20861:18;20858:38;20855:2;;;20938:10;20933:3;20929:20;20926:1;20919:31;20973:4;20970:1;20963:15;21001:4;20998:1;20991:15;20855:2;;20697:325;;;:::o;21027:135::-;;-1:-1:-1;;21087:17:1;;21084:2;;;21107:18;;:::i;:::-;-1:-1:-1;21154:1:1;21143:13;;21074:88::o;21167:112::-;;21225:1;21215:2;;21230:18;;:::i;:::-;-1:-1:-1;21264:9:1;;21205:74::o;21284:127::-;21345:10;21340:3;21336:20;21333:1;21326:31;21376:4;21373:1;21366:15;21400:4;21397:1;21390:15;21416:127;21477:10;21472:3;21468:20;21465:1;21458:31;21508:4;21505:1;21498:15;21532:4;21529:1;21522:15;21548:127;21609:10;21604:3;21600:20;21597:1;21590:31;21640:4;21637:1;21630:15;21664:4;21661:1;21654:15;21680:133;-1:-1:-1;;;;;21757:31:1;;21747:42;;21737:2;;21803:1;21800;21793:12;21818:133;-1:-1:-1;;;;;;21894:32:1;;21884:43;;21874:2;;21941:1;21938;21931:12

Swarm Source

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