ETH Price: $3,331.08 (-4.36%)
Gas: 4 Gwei

Token

PlaybookXO The Order (PB)
 

Overview

Max Total Supply

249 PB

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PB
0x65e7cb1cc512d2de3eabfbf33bbaf14ab453cd38
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:
PlaybookXO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-26
*/

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


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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

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


// OpenZeppelin Contracts v4.4.0 (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/playbook.sol


pragma solidity ^0.8.6;



contract PlaybookXO is ERC721Enumerable, Ownable {
    using Strings for uint256;
    
    struct MintedAddress{
        bool isExist;
    }
    struct _canWhiteListMint{
        bool[2] _canMint; 
        bool _joined;
    }
    mapping(address => _canWhiteListMint) whitelistOrigin;
    mapping(address => MintedAddress) whitelistBranch;

    string _baseTokenURI;
    uint256 public _price = 0.06 ether;
    uint256 public presaleprice = 0.06 ether;

    bool public _paused = true;

    uint256 public _reserved =70;
    uint256 private _whitelistReserved = 404;

    uint256 public maxSupply = 777;

    uint256 public maxMintAmount = 5;
    uint256 private maxClaimable = 7;



    constructor(string memory baseURI) ERC721("PlaybookXO The Order", "PB")  {
        setBaseURI(baseURI);
    }

    function mint(address _to, uint256 _mintAmount) public payable {

        uint256 supply = totalSupply();
        require(_mintAmount > 0, "PB: Amount should be greater than 0.");
        require(supply + _mintAmount <= maxSupply - _reserved, "PB: No more NFTs to mint, decrease the quantity or check out OpenSea.");
        require(msg.sender == tx.origin, "PB: Only EOA");

        
        if(msg.sender != owner()){
            _to = msg.sender;
            require(_mintAmount <= maxMintAmount, "PB: Maximum minting amount = 5 per transaction.");
            require(msg.value >= _price * _mintAmount, "PB: Insufficient funds.");
            require(balanceOf(_to)+_mintAmount <= maxClaimable ,"PB : You can't own more than 5 tokens");
            require(!_paused, "PB: Contract paused.");
        }
        else{
            if(msg.value < _price){
                require(_reserved - _mintAmount >= 0, "PB: Admin Reserve Drained");
                _reserved = _reserved-_mintAmount;
            }
        }
        

        for(uint256 i = 1; i <= _mintAmount; i++){

            _safeMint(_to,supply + i);
        }

    }
    function whiteListMint2(bytes memory sig) public payable {

        uint256 supply = totalSupply();

        require(supply + 1 <= maxSupply - _reserved, "PB: No more NFTs to mint, decrease the quantity or check out OpenSea.");

        require(msg.value >= _price, "PB: Insufficient funds.");
        require(_whitelistReserved > 0 ,"PB : Whitelist Reserve Drained!");
        require(!whitelistOrigin[msg.sender]._joined,"PB : Whitelist can be used Twice Only!");
        require(isValidUser(msg.sender,sig,2),"PB: INVALID SIGNATURE");
        
        if (!whitelistOrigin[msg.sender]._canMint[0]){
                    _safeMint(msg.sender, supply+1);
                    whitelistOrigin[msg.sender]._canMint[0] = true;
                     _whitelistReserved--;
        }
        else if (!whitelistOrigin[msg.sender]._canMint[1]){

                    _safeMint(msg.sender, supply+1);

                    whitelistOrigin[msg.sender]._canMint[1] = true;

                    whitelistOrigin[msg.sender]._joined = true;
                     _whitelistReserved--;
        }
         
        

    }
    
    function whiteListMint1(bytes memory sig) public payable {

        uint256 supply = totalSupply();

        require(supply + 1 <= maxSupply - _reserved, "PB: No more NFTs to mint, decrease the quantity or check out OpenSea.");


        require(msg.value >= _price, "PB: Insufficient funds.");
        require(_whitelistReserved > 0 ,"PB : Whitelist Reserve Drained!");
        require(isValidUser(msg.sender,sig,1),"PB: INVALID SIGNATURE");
        require(!whitelistBranch[msg.sender].isExist,"PB : Whitelist can be used Once Only!");
        
        _safeMint(msg.sender,supply + 1);
        whitelistBranch[msg.sender].isExist = true;
        _whitelistReserved--;
        

    }
   

    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }


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


    function setBaseURI(string memory baseURI) public onlyOwner() {
        _baseTokenURI = baseURI;
    }


    function getPrice() public view returns (uint256){
        return _price;
    }
    

    function pause(bool val) public onlyOwner() {
        _paused = val;
    }

   

    function withdrawAll() public onlyOwner() {
        require(payable(msg.sender).send(address(this).balance));
    }
     // Signature FUnctions
     
    function splitSignature(bytes memory sig) private pure returns (uint8, bytes32, bytes32){
       require(sig.length == 65);

       bytes32 r;
       bytes32 s;
       uint8 v;

       assembly {
           // first 32 bytes, after the length prefix
           r := mload(add(sig, 32))
           // second 32 bytes
           s := mload(add(sig, 64))
           // final byte (first byte of the next 32 bytes)
           v := byte(0, mload(add(sig, 96)))
       }
     
       return (v, r, s);
   }

    
    function isValidUser(address _addr,bytes memory sig,uint256 _whitelistID)public view returns (bool){
        bytes32 hash;
        if(_whitelistID == 2){
            hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32",_addr,owner()));
        }
        else{
            hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32",_addr));
        }
        
        uint8 v;
        bytes32 r;
        bytes32 s;

        (v, r, s) = splitSignature(sig);
        return (owner() == ecrecover(hash, v, r, s));
        //return (hash);
        
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bytes","name":"sig","type":"bytes"},{"internalType":"uint256","name":"_whitelistID","type":"uint256"}],"name":"isValidUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleprice","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"whiteListMint1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"whiteListMint2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600e819055600f556010805460ff191660011790556046601155610194601255610309601355600560145560076015553480156200004957600080fd5b5060405162002cc738038062002cc78339810160408190526200006c9162000284565b604080518082018252601481527f506c6179626f6f6b584f20546865204f72646572000000000000000000000000602080830191825283518085019094526002845261282160f11b908401528151919291620000cb91600091620001de565b508051620000e1906001906020840190620001de565b505050620000fe620000f86200011060201b60201c565b62000114565b620001098162000166565b50620003b3565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001da90600d906020840190620001de565b5050565b828054620001ec9062000360565b90600052602060002090601f0160209004810192826200021057600085556200025b565b82601f106200022b57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025b5782518255916020019190600101906200023e565b50620002699291506200026d565b5090565b5b808211156200026957600081556001016200026e565b600060208083850312156200029857600080fd5b82516001600160401b0380821115620002b057600080fd5b818501915085601f830112620002c557600080fd5b815181811115620002da57620002da6200039d565b604051601f8201601f19908116603f011681019083821181831017156200030557620003056200039d565b8160405282815288868487010111156200031e57600080fd5b600093505b8284101562000342578484018601518185018701529285019262000323565b82841115620003545760008684830101525b98975050505050505050565b600181811c908216806200037557607f821691505b602082108114156200039757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61290480620003c36000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b19df54b116100a0578063d5abeb011161006f578063d5abeb0114610565578063e985e9c51461057b578063ecb4768c146105c4578063f2fde38b146105d7578063fcaf2410146105f757600080fd5b8063b19df54b146104ef578063b88d4fde14610505578063c87b56dd14610525578063cc2c83471461054557600080fd5b806391b7f5ed116100dc57806391b7f5ed1461048557806395d89b41146104a557806398d5fdca146104ba578063a22cb465146104cf57600080fd5b806370a082311461041d578063715018a61461043d578063853828b6146104525780638da5cb5b1461046757600080fd5b8063239c70ae1161019057806342842e0e1161015f57806342842e0e146103875780634f6ccce7146103a757806355f804b3146103c75780636352211e146103e75780636aaa571d1461040757600080fd5b8063239c70ae1461031e57806323b872dd146103345780632f745c591461035457806340c10f191461037457600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806316c61ccc146102cf57806318160ddd146102e9578063235b6ea11461030857600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004612445565b61060a565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e36600461242a565b610635565b005b34801561026157600080fd5b5061026a61067b565b60405161022a91906125ae565b34801561028357600080fd5b506102976102923660046124fd565b61070d565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004612400565b6107a2565b3480156102db57600080fd5b5060105461021e9060ff1681565b3480156102f557600080fd5b506008545b60405190815260200161022a565b34801561031457600080fd5b506102fa600e5481565b34801561032a57600080fd5b506102fa60145481565b34801561034057600080fd5b5061025361034f3660046122db565b6108b8565b34801561036057600080fd5b506102fa61036f366004612400565b6108e9565b610253610382366004612400565b61097f565b34801561039357600080fd5b506102536103a23660046122db565b610c7b565b3480156103b357600080fd5b506102fa6103c23660046124fd565b610c96565b3480156103d357600080fd5b506102536103e23660046124b4565b610d29565b3480156103f357600080fd5b506102976104023660046124fd565b610d6a565b34801561041357600080fd5b506102fa60115481565b34801561042957600080fd5b506102fa61043836600461228d565b610de1565b34801561044957600080fd5b50610253610e68565b34801561045e57600080fd5b50610253610e9e565b34801561047357600080fd5b50600a546001600160a01b0316610297565b34801561049157600080fd5b506102536104a03660046124fd565b610eec565b3480156104b157600080fd5b5061026a610f1b565b3480156104c657600080fd5b50600e546102fa565b3480156104db57600080fd5b506102536104ea36600461237f565b610f2a565b3480156104fb57600080fd5b506102fa600f5481565b34801561051157600080fd5b50610253610520366004612317565b610f35565b34801561053157600080fd5b5061026a6105403660046124fd565b610f67565b34801561055157600080fd5b5061021e6105603660046123a9565b611042565b34801561057157600080fd5b506102fa60135481565b34801561058757600080fd5b5061021e6105963660046122a8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102536105d236600461247f565b6111d0565b3480156105e357600080fd5b506102536105f236600461228d565b611408565b61025361060536600461247f565b6114a3565b60006001600160e01b0319821663780e9d6360e01b148061062f575061062f82611652565b92915050565b600a546001600160a01b031633146106685760405162461bcd60e51b815260040161065f906126b5565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461068a906127e0565b80601f01602080910402602001604051908101604052809291908181526020018280546106b6906127e0565b80156107035780601f106106d857610100808354040283529160200191610703565b820191906000526020600020905b8154815290600101906020018083116106e657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065f565b506000908152600460205260409020546001600160a01b031690565b60006107ad82610d6a565b9050806001600160a01b0316836001600160a01b0316141561081b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161065f565b336001600160a01b038216148061083757506108378133610596565b6108a95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161065f565b6108b383836116a2565b505050565b6108c23382611710565b6108de5760405162461bcd60e51b815260040161065f906126ea565b6108b3838383611807565b60006108f483610de1565b82106109565760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161065f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061098a60085490565b9050600082116109e85760405162461bcd60e51b8152602060048201526024808201527f50423a20416d6f756e742073686f756c642062652067726561746572207468616044820152633710181760e11b606482015260840161065f565b6011546013546109f89190612786565b610a02838361273b565b1115610a205760405162461bcd60e51b815260040161065f906125c1565b333214610a5e5760405162461bcd60e51b815260206004820152600c60248201526b50423a204f6e6c7920454f4160a01b604482015260640161065f565b600a546001600160a01b03163314610bcc57339250601454821115610add5760405162461bcd60e51b815260206004820152602f60248201527f50423a204d6178696d756d206d696e74696e6720616d6f756e74203d2035207060448201526e32b9103a3930b739b0b1ba34b7b71760891b606482015260840161065f565b81600e54610aeb9190612767565b341015610b0a5760405162461bcd60e51b815260040161065f9061262c565b60155482610b1785610de1565b610b21919061273b565b1115610b7d5760405162461bcd60e51b815260206004820152602560248201527f5042203a20596f752063616e2774206f776e206d6f7265207468616e203520746044820152646f6b656e7360d81b606482015260840161065f565b60105460ff1615610bc75760405162461bcd60e51b815260206004820152601460248201527328211d1021b7b73a3930b1ba103830bab9b2b21760611b604482015260640161065f565b610c46565b600e54341015610c4657600082601154610be69190612786565b1015610c345760405162461bcd60e51b815260206004820152601960248201527f50423a2041646d696e205265736572766520447261696e656400000000000000604482015260640161065f565b81601154610c429190612786565b6011555b60015b828111610c7557610c6384610c5e838561273b565b6119b2565b80610c6d8161281b565b915050610c49565b50505050565b6108b383838360405180602001604052806000815250610f35565b6000610ca160085490565b8210610d045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161065f565b60088281548110610d1757610d1761288c565b90600052602060002001549050919050565b600a546001600160a01b03163314610d535760405162461bcd60e51b815260040161065f906126b5565b8051610d6690600d906020840190612132565b5050565b6000818152600260205260408120546001600160a01b03168061062f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161065f565b60006001600160a01b038216610e4c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161065f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e925760405162461bcd60e51b815260040161065f906126b5565b610e9c60006119cc565b565b600a546001600160a01b03163314610ec85760405162461bcd60e51b815260040161065f906126b5565b60405133904780156108fc02916000818181858888f19350505050610e9c57600080fd5b600a546001600160a01b03163314610f165760405162461bcd60e51b815260040161065f906126b5565b600e55565b60606001805461068a906127e0565b610d66338383611a1e565b610f3f3383611710565b610f5b5760405162461bcd60e51b815260040161065f906126ea565b610c7584848484611aed565b6000818152600260205260409020546060906001600160a01b0316610fe65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161065f565b6000610ff0611b20565b90506000815111611010576040518060200160405280600081525061103b565b8061101a84611b2f565b60405160200161102b929190612542565b6040516020818303038152906040525b9392505050565b60008082600214156110ce5784611061600a546001600160a01b031690565b6040517f19457468657265756d205369676e6564204d6573736167653a0a33320000000060208201526bffffffffffffffffffffffff19606093841b8116603c8301529190921b16605082015260640160405160208183030381529060405280519060200120905061112c565b6040517f19457468657265756d205369676e6564204d6573736167653a0a33320000000060208201526bffffffffffffffffffffffff19606087901b16603c8201526050016040516020818303038152906040528051906020012090505b600080600061113a87611c2d565b60408051600081526020810180835289905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa158015611195573d6000803e3d6000fd5b505050602060405103516001600160a01b03166111ba600a546001600160a01b031690565b6001600160a01b03161498975050505050505050565b60006111db60085490565b90506011546013546111ed9190612786565b6111f882600161273b565b11156112165760405162461bcd60e51b815260040161065f906125c1565b600e543410156112385760405162461bcd60e51b815260040161065f9061262c565b60006012541161128a5760405162461bcd60e51b815260206004820152601f60248201527f5042203a2057686974656c697374205265736572766520447261696e65642100604482015260640161065f565b336000908152600b602052604090206001015460ff16156112fc5760405162461bcd60e51b815260206004820152602660248201527f5042203a2057686974656c6973742063616e2062652075736564205477696365604482015265204f6e6c792160d01b606482015260840161065f565b61130833836002611042565b61134c5760405162461bcd60e51b815260206004820152601560248201527450423a20494e56414c4944205349474e415455524560581b604482015260640161065f565b336000908152600b602052604090205460ff166113a35761137233610c5e83600161273b565b336000908152600b60205260408120805460ff19166001179055601280549161139a836127c9565b91905055505050565b336000908152600b6020526040902054610100900460ff16610d66576113ce33610c5e83600161273b565b336000908152600b60205260408120805461ff0019166101001781556001908101805460ff19169091179055601280549161139a836127c9565b600a546001600160a01b031633146114325760405162461bcd60e51b815260040161065f906126b5565b6001600160a01b0381166114975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065f565b6114a0816119cc565b50565b60006114ae60085490565b90506011546013546114c09190612786565b6114cb82600161273b565b11156114e95760405162461bcd60e51b815260040161065f906125c1565b600e5434101561150b5760405162461bcd60e51b815260040161065f9061262c565b60006012541161155d5760405162461bcd60e51b815260206004820152601f60248201527f5042203a2057686974656c697374205265736572766520447261696e65642100604482015260640161065f565b61156933836001611042565b6115ad5760405162461bcd60e51b815260206004820152601560248201527450423a20494e56414c4944205349474e415455524560581b604482015260640161065f565b336000908152600c602052604090205460ff161561161b5760405162461bcd60e51b815260206004820152602560248201527f5042203a2057686974656c6973742063616e2062652075736564204f6e6365206044820152644f6e6c792160d81b606482015260840161065f565b61162a33610c5e83600161273b565b336000908152600c60205260408120805460ff19166001179055601280549161139a836127c9565b60006001600160e01b031982166380ac58cd60e01b148061168357506001600160e01b03198216635b5e139f60e01b145b8061062f57506301ffc9a760e01b6001600160e01b031983161461062f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116d782610d6a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065f565b600061179483610d6a565b9050806001600160a01b0316846001600160a01b031614806117cf5750836001600160a01b03166117c48461070d565b6001600160a01b0316145b806117ff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661181a82610d6a565b6001600160a01b0316146118825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161065f565b6001600160a01b0382166118e45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161065f565b6118ef838383611c5c565b6118fa6000826116a2565b6001600160a01b0383166000908152600360205260408120805460019290611923908490612786565b90915550506001600160a01b038216600090815260036020526040812080546001929061195190849061273b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d66828260405180602001604052806000815250611d14565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a805760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161065f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611af8848484611807565b611b0484848484611d47565b610c755760405162461bcd60e51b815260040161065f90612663565b6060600d805461068a906127e0565b606081611b535750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7d5780611b678161281b565b9150611b769050600a83612753565b9150611b57565b60008167ffffffffffffffff811115611b9857611b986128a2565b6040519080825280601f01601f191660200182016040528015611bc2576020820181803683370190505b5090505b84156117ff57611bd7600183612786565b9150611be4600a86612836565b611bef90603061273b565b60f81b818381518110611c0457611c0461288c565b60200101906001600160f81b031916908160001a905350611c26600a86612753565b9450611bc6565b60008060008351604114611c4057600080fd5b5050506020810151604082015160609092015160001a92909190565b6001600160a01b038316611cb757611cb281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cda565b816001600160a01b0316836001600160a01b031614611cda57611cda8382611e54565b6001600160a01b038216611cf1576108b381611ef1565b826001600160a01b0316826001600160a01b0316146108b3576108b38282611fa0565b611d1e8383611fe4565b611d2b6000848484611d47565b6108b35760405162461bcd60e51b815260040161065f90612663565b60006001600160a01b0384163b15611e4957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8b903390899088908890600401612571565b602060405180830381600087803b158015611da557600080fd5b505af1925050508015611dd5575060408051601f3d908101601f19168201909252611dd291810190612462565b60015b611e2f573d808015611e03576040519150601f19603f3d011682016040523d82523d6000602084013e611e08565b606091505b508051611e275760405162461bcd60e51b815260040161065f90612663565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ff565b506001949350505050565b60006001611e6184610de1565b611e6b9190612786565b600083815260076020526040902054909150808214611ebe576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0390600190612786565b60008381526009602052604081205460088054939450909284908110611f2b57611f2b61288c565b906000526020600020015490508060088381548110611f4c57611f4c61288c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8457611f84612876565b6001900381819060005260206000200160009055905550505050565b6000611fab83610de1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661203a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161065f565b6000818152600260205260409020546001600160a01b03161561209f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161065f565b6120ab60008383611c5c565b6001600160a01b03821660009081526003602052604081208054600192906120d490849061273b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461213e906127e0565b90600052602060002090601f01602090048101928261216057600085556121a6565b82601f1061217957805160ff19168380011785556121a6565b828001600101855582156121a6579182015b828111156121a657825182559160200191906001019061218b565b506121b29291506121b6565b5090565b5b808211156121b257600081556001016121b7565b600067ffffffffffffffff808411156121e6576121e66128a2565b604051601f8501601f19908116603f0116810190828211818310171561220e5761220e6128a2565b8160405280935085815286868601111561222757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461225857600080fd5b919050565b8035801515811461225857600080fd5b600082601f83011261227e57600080fd5b61103b838335602085016121cb565b60006020828403121561229f57600080fd5b61103b82612241565b600080604083850312156122bb57600080fd5b6122c483612241565b91506122d260208401612241565b90509250929050565b6000806000606084860312156122f057600080fd5b6122f984612241565b925061230760208501612241565b9150604084013590509250925092565b6000806000806080858703121561232d57600080fd5b61233685612241565b935061234460208601612241565b925060408501359150606085013567ffffffffffffffff81111561236757600080fd5b6123738782880161226d565b91505092959194509250565b6000806040838503121561239257600080fd5b61239b83612241565b91506122d26020840161225d565b6000806000606084860312156123be57600080fd5b6123c784612241565b9250602084013567ffffffffffffffff8111156123e357600080fd5b6123ef8682870161226d565b925050604084013590509250925092565b6000806040838503121561241357600080fd5b61241c83612241565b946020939093013593505050565b60006020828403121561243c57600080fd5b61103b8261225d565b60006020828403121561245757600080fd5b813561103b816128b8565b60006020828403121561247457600080fd5b815161103b816128b8565b60006020828403121561249157600080fd5b813567ffffffffffffffff8111156124a857600080fd5b6117ff8482850161226d565b6000602082840312156124c657600080fd5b813567ffffffffffffffff8111156124dd57600080fd5b8201601f810184136124ee57600080fd5b6117ff848235602084016121cb565b60006020828403121561250f57600080fd5b5035919050565b6000815180845261252e81602086016020860161279d565b601f01601f19169290920160200192915050565b6000835161255481846020880161279d565b83519083019061256881836020880161279d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125a490830184612516565b9695505050505050565b60208152600061103b6020830184612516565b60208082526045908201527f50423a204e6f206d6f7265204e46547320746f206d696e742c2064656372656160408201527f736520746865207175616e74697479206f7220636865636b206f7574204f70656060820152643729b2b09760d91b608082015260a00190565b60208082526017908201527f50423a20496e73756666696369656e742066756e64732e000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561274e5761274e61284a565b500190565b60008261276257612762612860565b500490565b60008160001904831182151516156127815761278161284a565b500290565b6000828210156127985761279861284a565b500390565b60005b838110156127b85781810151838201526020016127a0565b83811115610c755750506000910152565b6000816127d8576127d861284a565b506000190190565b600181811c908216806127f457607f821691505b6020821081141561281557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561282f5761282f61284a565b5060010190565b60008261284557612845612860565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114a057600080fdfea26469706673582212203d8a6c049dcad1d07b5bd98d50db34ae9f998f002b0a4dfb68540fee7f92ffc164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d52337357487a4a35717448546631756167396a783361594e35576832584c33597034736956436e523943646f2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b19df54b116100a0578063d5abeb011161006f578063d5abeb0114610565578063e985e9c51461057b578063ecb4768c146105c4578063f2fde38b146105d7578063fcaf2410146105f757600080fd5b8063b19df54b146104ef578063b88d4fde14610505578063c87b56dd14610525578063cc2c83471461054557600080fd5b806391b7f5ed116100dc57806391b7f5ed1461048557806395d89b41146104a557806398d5fdca146104ba578063a22cb465146104cf57600080fd5b806370a082311461041d578063715018a61461043d578063853828b6146104525780638da5cb5b1461046757600080fd5b8063239c70ae1161019057806342842e0e1161015f57806342842e0e146103875780634f6ccce7146103a757806355f804b3146103c75780636352211e146103e75780636aaa571d1461040757600080fd5b8063239c70ae1461031e57806323b872dd146103345780632f745c591461035457806340c10f191461037457600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806316c61ccc146102cf57806318160ddd146102e9578063235b6ea11461030857600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004612445565b61060a565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e36600461242a565b610635565b005b34801561026157600080fd5b5061026a61067b565b60405161022a91906125ae565b34801561028357600080fd5b506102976102923660046124fd565b61070d565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004612400565b6107a2565b3480156102db57600080fd5b5060105461021e9060ff1681565b3480156102f557600080fd5b506008545b60405190815260200161022a565b34801561031457600080fd5b506102fa600e5481565b34801561032a57600080fd5b506102fa60145481565b34801561034057600080fd5b5061025361034f3660046122db565b6108b8565b34801561036057600080fd5b506102fa61036f366004612400565b6108e9565b610253610382366004612400565b61097f565b34801561039357600080fd5b506102536103a23660046122db565b610c7b565b3480156103b357600080fd5b506102fa6103c23660046124fd565b610c96565b3480156103d357600080fd5b506102536103e23660046124b4565b610d29565b3480156103f357600080fd5b506102976104023660046124fd565b610d6a565b34801561041357600080fd5b506102fa60115481565b34801561042957600080fd5b506102fa61043836600461228d565b610de1565b34801561044957600080fd5b50610253610e68565b34801561045e57600080fd5b50610253610e9e565b34801561047357600080fd5b50600a546001600160a01b0316610297565b34801561049157600080fd5b506102536104a03660046124fd565b610eec565b3480156104b157600080fd5b5061026a610f1b565b3480156104c657600080fd5b50600e546102fa565b3480156104db57600080fd5b506102536104ea36600461237f565b610f2a565b3480156104fb57600080fd5b506102fa600f5481565b34801561051157600080fd5b50610253610520366004612317565b610f35565b34801561053157600080fd5b5061026a6105403660046124fd565b610f67565b34801561055157600080fd5b5061021e6105603660046123a9565b611042565b34801561057157600080fd5b506102fa60135481565b34801561058757600080fd5b5061021e6105963660046122a8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102536105d236600461247f565b6111d0565b3480156105e357600080fd5b506102536105f236600461228d565b611408565b61025361060536600461247f565b6114a3565b60006001600160e01b0319821663780e9d6360e01b148061062f575061062f82611652565b92915050565b600a546001600160a01b031633146106685760405162461bcd60e51b815260040161065f906126b5565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461068a906127e0565b80601f01602080910402602001604051908101604052809291908181526020018280546106b6906127e0565b80156107035780601f106106d857610100808354040283529160200191610703565b820191906000526020600020905b8154815290600101906020018083116106e657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065f565b506000908152600460205260409020546001600160a01b031690565b60006107ad82610d6a565b9050806001600160a01b0316836001600160a01b0316141561081b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161065f565b336001600160a01b038216148061083757506108378133610596565b6108a95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161065f565b6108b383836116a2565b505050565b6108c23382611710565b6108de5760405162461bcd60e51b815260040161065f906126ea565b6108b3838383611807565b60006108f483610de1565b82106109565760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161065f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061098a60085490565b9050600082116109e85760405162461bcd60e51b8152602060048201526024808201527f50423a20416d6f756e742073686f756c642062652067726561746572207468616044820152633710181760e11b606482015260840161065f565b6011546013546109f89190612786565b610a02838361273b565b1115610a205760405162461bcd60e51b815260040161065f906125c1565b333214610a5e5760405162461bcd60e51b815260206004820152600c60248201526b50423a204f6e6c7920454f4160a01b604482015260640161065f565b600a546001600160a01b03163314610bcc57339250601454821115610add5760405162461bcd60e51b815260206004820152602f60248201527f50423a204d6178696d756d206d696e74696e6720616d6f756e74203d2035207060448201526e32b9103a3930b739b0b1ba34b7b71760891b606482015260840161065f565b81600e54610aeb9190612767565b341015610b0a5760405162461bcd60e51b815260040161065f9061262c565b60155482610b1785610de1565b610b21919061273b565b1115610b7d5760405162461bcd60e51b815260206004820152602560248201527f5042203a20596f752063616e2774206f776e206d6f7265207468616e203520746044820152646f6b656e7360d81b606482015260840161065f565b60105460ff1615610bc75760405162461bcd60e51b815260206004820152601460248201527328211d1021b7b73a3930b1ba103830bab9b2b21760611b604482015260640161065f565b610c46565b600e54341015610c4657600082601154610be69190612786565b1015610c345760405162461bcd60e51b815260206004820152601960248201527f50423a2041646d696e205265736572766520447261696e656400000000000000604482015260640161065f565b81601154610c429190612786565b6011555b60015b828111610c7557610c6384610c5e838561273b565b6119b2565b80610c6d8161281b565b915050610c49565b50505050565b6108b383838360405180602001604052806000815250610f35565b6000610ca160085490565b8210610d045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161065f565b60088281548110610d1757610d1761288c565b90600052602060002001549050919050565b600a546001600160a01b03163314610d535760405162461bcd60e51b815260040161065f906126b5565b8051610d6690600d906020840190612132565b5050565b6000818152600260205260408120546001600160a01b03168061062f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161065f565b60006001600160a01b038216610e4c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161065f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e925760405162461bcd60e51b815260040161065f906126b5565b610e9c60006119cc565b565b600a546001600160a01b03163314610ec85760405162461bcd60e51b815260040161065f906126b5565b60405133904780156108fc02916000818181858888f19350505050610e9c57600080fd5b600a546001600160a01b03163314610f165760405162461bcd60e51b815260040161065f906126b5565b600e55565b60606001805461068a906127e0565b610d66338383611a1e565b610f3f3383611710565b610f5b5760405162461bcd60e51b815260040161065f906126ea565b610c7584848484611aed565b6000818152600260205260409020546060906001600160a01b0316610fe65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161065f565b6000610ff0611b20565b90506000815111611010576040518060200160405280600081525061103b565b8061101a84611b2f565b60405160200161102b929190612542565b6040516020818303038152906040525b9392505050565b60008082600214156110ce5784611061600a546001600160a01b031690565b6040517f19457468657265756d205369676e6564204d6573736167653a0a33320000000060208201526bffffffffffffffffffffffff19606093841b8116603c8301529190921b16605082015260640160405160208183030381529060405280519060200120905061112c565b6040517f19457468657265756d205369676e6564204d6573736167653a0a33320000000060208201526bffffffffffffffffffffffff19606087901b16603c8201526050016040516020818303038152906040528051906020012090505b600080600061113a87611c2d565b60408051600081526020810180835289905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa158015611195573d6000803e3d6000fd5b505050602060405103516001600160a01b03166111ba600a546001600160a01b031690565b6001600160a01b03161498975050505050505050565b60006111db60085490565b90506011546013546111ed9190612786565b6111f882600161273b565b11156112165760405162461bcd60e51b815260040161065f906125c1565b600e543410156112385760405162461bcd60e51b815260040161065f9061262c565b60006012541161128a5760405162461bcd60e51b815260206004820152601f60248201527f5042203a2057686974656c697374205265736572766520447261696e65642100604482015260640161065f565b336000908152600b602052604090206001015460ff16156112fc5760405162461bcd60e51b815260206004820152602660248201527f5042203a2057686974656c6973742063616e2062652075736564205477696365604482015265204f6e6c792160d01b606482015260840161065f565b61130833836002611042565b61134c5760405162461bcd60e51b815260206004820152601560248201527450423a20494e56414c4944205349474e415455524560581b604482015260640161065f565b336000908152600b602052604090205460ff166113a35761137233610c5e83600161273b565b336000908152600b60205260408120805460ff19166001179055601280549161139a836127c9565b91905055505050565b336000908152600b6020526040902054610100900460ff16610d66576113ce33610c5e83600161273b565b336000908152600b60205260408120805461ff0019166101001781556001908101805460ff19169091179055601280549161139a836127c9565b600a546001600160a01b031633146114325760405162461bcd60e51b815260040161065f906126b5565b6001600160a01b0381166114975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065f565b6114a0816119cc565b50565b60006114ae60085490565b90506011546013546114c09190612786565b6114cb82600161273b565b11156114e95760405162461bcd60e51b815260040161065f906125c1565b600e5434101561150b5760405162461bcd60e51b815260040161065f9061262c565b60006012541161155d5760405162461bcd60e51b815260206004820152601f60248201527f5042203a2057686974656c697374205265736572766520447261696e65642100604482015260640161065f565b61156933836001611042565b6115ad5760405162461bcd60e51b815260206004820152601560248201527450423a20494e56414c4944205349474e415455524560581b604482015260640161065f565b336000908152600c602052604090205460ff161561161b5760405162461bcd60e51b815260206004820152602560248201527f5042203a2057686974656c6973742063616e2062652075736564204f6e6365206044820152644f6e6c792160d81b606482015260840161065f565b61162a33610c5e83600161273b565b336000908152600c60205260408120805460ff19166001179055601280549161139a836127c9565b60006001600160e01b031982166380ac58cd60e01b148061168357506001600160e01b03198216635b5e139f60e01b145b8061062f57506301ffc9a760e01b6001600160e01b031983161461062f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116d782610d6a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065f565b600061179483610d6a565b9050806001600160a01b0316846001600160a01b031614806117cf5750836001600160a01b03166117c48461070d565b6001600160a01b0316145b806117ff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661181a82610d6a565b6001600160a01b0316146118825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161065f565b6001600160a01b0382166118e45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161065f565b6118ef838383611c5c565b6118fa6000826116a2565b6001600160a01b0383166000908152600360205260408120805460019290611923908490612786565b90915550506001600160a01b038216600090815260036020526040812080546001929061195190849061273b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d66828260405180602001604052806000815250611d14565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a805760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161065f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611af8848484611807565b611b0484848484611d47565b610c755760405162461bcd60e51b815260040161065f90612663565b6060600d805461068a906127e0565b606081611b535750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7d5780611b678161281b565b9150611b769050600a83612753565b9150611b57565b60008167ffffffffffffffff811115611b9857611b986128a2565b6040519080825280601f01601f191660200182016040528015611bc2576020820181803683370190505b5090505b84156117ff57611bd7600183612786565b9150611be4600a86612836565b611bef90603061273b565b60f81b818381518110611c0457611c0461288c565b60200101906001600160f81b031916908160001a905350611c26600a86612753565b9450611bc6565b60008060008351604114611c4057600080fd5b5050506020810151604082015160609092015160001a92909190565b6001600160a01b038316611cb757611cb281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cda565b816001600160a01b0316836001600160a01b031614611cda57611cda8382611e54565b6001600160a01b038216611cf1576108b381611ef1565b826001600160a01b0316826001600160a01b0316146108b3576108b38282611fa0565b611d1e8383611fe4565b611d2b6000848484611d47565b6108b35760405162461bcd60e51b815260040161065f90612663565b60006001600160a01b0384163b15611e4957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8b903390899088908890600401612571565b602060405180830381600087803b158015611da557600080fd5b505af1925050508015611dd5575060408051601f3d908101601f19168201909252611dd291810190612462565b60015b611e2f573d808015611e03576040519150601f19603f3d011682016040523d82523d6000602084013e611e08565b606091505b508051611e275760405162461bcd60e51b815260040161065f90612663565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ff565b506001949350505050565b60006001611e6184610de1565b611e6b9190612786565b600083815260076020526040902054909150808214611ebe576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0390600190612786565b60008381526009602052604081205460088054939450909284908110611f2b57611f2b61288c565b906000526020600020015490508060088381548110611f4c57611f4c61288c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8457611f84612876565b6001900381819060005260206000200160009055905550505050565b6000611fab83610de1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661203a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161065f565b6000818152600260205260409020546001600160a01b03161561209f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161065f565b6120ab60008383611c5c565b6001600160a01b03821660009081526003602052604081208054600192906120d490849061273b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461213e906127e0565b90600052602060002090601f01602090048101928261216057600085556121a6565b82601f1061217957805160ff19168380011785556121a6565b828001600101855582156121a6579182015b828111156121a657825182559160200191906001019061218b565b506121b29291506121b6565b5090565b5b808211156121b257600081556001016121b7565b600067ffffffffffffffff808411156121e6576121e66128a2565b604051601f8501601f19908116603f0116810190828211818310171561220e5761220e6128a2565b8160405280935085815286868601111561222757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461225857600080fd5b919050565b8035801515811461225857600080fd5b600082601f83011261227e57600080fd5b61103b838335602085016121cb565b60006020828403121561229f57600080fd5b61103b82612241565b600080604083850312156122bb57600080fd5b6122c483612241565b91506122d260208401612241565b90509250929050565b6000806000606084860312156122f057600080fd5b6122f984612241565b925061230760208501612241565b9150604084013590509250925092565b6000806000806080858703121561232d57600080fd5b61233685612241565b935061234460208601612241565b925060408501359150606085013567ffffffffffffffff81111561236757600080fd5b6123738782880161226d565b91505092959194509250565b6000806040838503121561239257600080fd5b61239b83612241565b91506122d26020840161225d565b6000806000606084860312156123be57600080fd5b6123c784612241565b9250602084013567ffffffffffffffff8111156123e357600080fd5b6123ef8682870161226d565b925050604084013590509250925092565b6000806040838503121561241357600080fd5b61241c83612241565b946020939093013593505050565b60006020828403121561243c57600080fd5b61103b8261225d565b60006020828403121561245757600080fd5b813561103b816128b8565b60006020828403121561247457600080fd5b815161103b816128b8565b60006020828403121561249157600080fd5b813567ffffffffffffffff8111156124a857600080fd5b6117ff8482850161226d565b6000602082840312156124c657600080fd5b813567ffffffffffffffff8111156124dd57600080fd5b8201601f810184136124ee57600080fd5b6117ff848235602084016121cb565b60006020828403121561250f57600080fd5b5035919050565b6000815180845261252e81602086016020860161279d565b601f01601f19169290920160200192915050565b6000835161255481846020880161279d565b83519083019061256881836020880161279d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125a490830184612516565b9695505050505050565b60208152600061103b6020830184612516565b60208082526045908201527f50423a204e6f206d6f7265204e46547320746f206d696e742c2064656372656160408201527f736520746865207175616e74697479206f7220636865636b206f7574204f70656060820152643729b2b09760d91b608082015260a00190565b60208082526017908201527f50423a20496e73756666696369656e742066756e64732e000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561274e5761274e61284a565b500190565b60008261276257612762612860565b500490565b60008160001904831182151516156127815761278161284a565b500290565b6000828210156127985761279861284a565b500390565b60005b838110156127b85781810151838201526020016127a0565b83811115610c755750506000910152565b6000816127d8576127d861284a565b506000190190565b600181811c908216806127f457607f821691505b6020821081141561281557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561282f5761282f61284a565b5060010190565b60008261284557612845612860565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114a057600080fdfea26469706673582212203d8a6c049dcad1d07b5bd98d50db34ae9f998f002b0a4dfb68540fee7f92ffc164736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d52337357487a4a35717448546631756167396a783361594e35576832584c33597034736956436e523943646f2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmR3sWHzJ5qtHTf1uag9jx3aYN5Wh2XL3Yp4siVCnR9Cdo/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d52337357487a4a35717448546631756167396a783361594e35576832
Arg [4] : 584c33597034736956436e523943646f2f000000000000000000000000000000


Deployed Bytecode Sourcemap

44482:5678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;-1:-1:-1;38266:224:0;;;;;:::i;:::-;;:::i;:::-;;;7759:14:1;;7752:22;7734:41;;7722:2;7707:18;38266:224:0;;;;;;;;48778:76;;;;;;;;;;-1:-1:-1;48778:76:0;;;;;:::i;:::-;;:::i;:::-;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27319:221::-;;;;;;;;;;-1:-1:-1;27319:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7057:32:1;;;7039:51;;7027:2;7012:18;27319:221:0;6893:203:1;26842:411:0;;;;;;;;;;-1:-1:-1;26842:411:0;;;;;:::i;:::-;;:::i;44957:26::-;;;;;;;;;;-1:-1:-1;44957:26:0;;;;;;;;38906:113;;;;;;;;;;-1:-1:-1;38994:10:0;:17;38906:113;;;20390:25:1;;;20378:2;20363:18;38906:113:0;20244:177:1;44867:34:0;;;;;;;;;;;;;;;;45115:32;;;;;;;;;;;;;;;;28069:339;;;;;;;;;;-1:-1:-1;28069:339:0;;;;;:::i;:::-;;:::i;38574:256::-;;;;;;;;;;-1:-1:-1;38574:256:0;;;;;:::i;:::-;;:::i;45318:1160::-;;;;;;:::i;:::-;;:::i;28479:185::-;;;;;;;;;;-1:-1:-1;28479:185:0;;;;;:::i;:::-;;:::i;39096:233::-;;;;;;;;;;-1:-1:-1;39096:233:0;;;;;:::i;:::-;;:::i;48569:104::-;;;;;;;;;;-1:-1:-1;48569:104:0;;;;;:::i;:::-;;:::i;25454:239::-;;;;;;;;;;-1:-1:-1;25454:239:0;;;;;:::i;:::-;;:::i;44992:28::-;;;;;;;;;;;;;;;;25184:208;;;;;;;;;;-1:-1:-1;25184:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;48869:117::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;48342:93;;;;;;;;;;-1:-1:-1;48342:93:0;;;;;:::i;:::-;;:::i;25929:104::-;;;;;;;;;;;;;:::i;48683:81::-;;;;;;;;;;-1:-1:-1;48750:6:0;;48683:81;;27612:155;;;;;;;;;;-1:-1:-1;27612:155:0;;;;;:::i;:::-;;:::i;44908:40::-;;;;;;;;;;;;;;;;28735:328;;;;;;;;;;-1:-1:-1;28735:328:0;;;;;:::i;:::-;;:::i;26104:334::-;;;;;;;;;;-1:-1:-1;26104:334:0;;;;;:::i;:::-;;:::i;49559:592::-;;;;;;;;;;-1:-1:-1;49559:592:0;;;;;:::i;:::-;;:::i;45076:30::-;;;;;;;;;;;;;;;;27838:164;;;;;;;;;;-1:-1:-1;27838:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27838:164;46484:1130;;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;47626:703::-;;;;;;:::i;:::-;;:::i;38266:224::-;38368:4;-1:-1:-1;;;;;;38392:50:0;;-1:-1:-1;;;38392:50:0;;:90;;;38446:36;38470:11;38446:23;:36::i;:::-;38385:97;38266:224;-1:-1:-1;;38266:224:0:o;48778:76::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;48833:7:::1;:13:::0;;-1:-1:-1;;48833:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48778:76::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;27415:73;;;;-1:-1:-1;;;27415:73:0;;15685:2:1;27415:73:0;;;15667:21:1;15724:2;15704:18;;;15697:30;15763:34;15743:18;;;15736:62;-1:-1:-1;;;15814:18:1;;;15807:42;15866:19;;27415:73:0;15483:408:1;27415:73:0;-1:-1:-1;27508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27508:24:0;;27319:221::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;-1:-1:-1;;;;;26981:11:0;:2;-1:-1:-1;;;;;26981:11:0;;;26973:57;;;;-1:-1:-1;;;26973:57:0;;18864:2:1;26973:57:0;;;18846:21:1;18903:2;18883:18;;;18876:30;18942:34;18922:18;;;18915:62;-1:-1:-1;;;18993:18:1;;;18986:31;19034:19;;26973:57:0;18662:397:1;26973:57:0;2883:10;-1:-1:-1;;;;;27065:21:0;;;;:62;;-1:-1:-1;27090:37:0;27107:5;2883:10;27838:164;:::i;27090:37::-;27043:168;;;;-1:-1:-1;;;27043:168:0;;14078:2:1;27043:168:0;;;14060:21:1;14117:2;14097:18;;;14090:30;14156:34;14136:18;;;14129:62;14227:26;14207:18;;;14200:54;14271:19;;27043:168:0;13876:420:1;27043:168:0;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;28069:339::-;28264:41;2883:10;28297:7;28264:18;:41::i;:::-;28256:103;;;;-1:-1:-1;;;28256:103:0;;;;;;;:::i;:::-;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;-1:-1:-1;;;38691:87:0;;9805:2:1;38691:87:0;;;9787:21:1;9844:2;9824:18;;;9817:30;9883:34;9863:18;;;9856:62;-1:-1:-1;;;9934:18:1;;;9927:41;9985:19;;38691:87:0;9603:407:1;38691:87:0;-1:-1:-1;;;;;;38796:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38574:256::o;45318:1160::-;45394:14;45411:13;38994:10;:17;;38906:113;45411:13;45394:30;;45457:1;45443:11;:15;45435:64;;;;-1:-1:-1;;;45435:64:0;;12159:2:1;45435:64:0;;;12141:21:1;12198:2;12178:18;;;12171:30;12237:34;12217:18;;;12210:62;-1:-1:-1;;;12288:18:1;;;12281:34;12332:19;;45435:64:0;11957:400:1;45435:64:0;45554:9;;45542;;:21;;;;:::i;:::-;45518:20;45527:11;45518:6;:20;:::i;:::-;:45;;45510:127;;;;-1:-1:-1;;;45510:127:0;;;;;;;:::i;:::-;45656:10;45670:9;45656:23;45648:48;;;;-1:-1:-1;;;45648:48:0;;13383:2:1;45648:48:0;;;13365:21:1;13422:2;13402:18;;;13395:30;-1:-1:-1;;;13441:18:1;;;13434:42;13493:18;;45648:48:0;13181:336:1;45648:48:0;4152:6;;-1:-1:-1;;;;;4152:6:0;45722:10;:21;45719:633;;45765:10;45759:16;;45813:13;;45798:11;:28;;45790:88;;;;-1:-1:-1;;;45790:88:0;;16448:2:1;45790:88:0;;;16430:21:1;16487:2;16467:18;;;16460:30;16526:34;16506:18;;;16499:62;-1:-1:-1;;;16577:18:1;;;16570:45;16632:19;;45790:88:0;16246:411:1;45790:88:0;45923:11;45914:6;;:20;;;;:::i;:::-;45901:9;:33;;45893:69;;;;-1:-1:-1;;;45893:69:0;;;;;;;:::i;:::-;46015:12;;46000:11;45985:14;45995:3;45985:9;:14::i;:::-;:26;;;;:::i;:::-;:42;;45977:92;;;;-1:-1:-1;;;45977:92:0;;12977:2:1;45977:92:0;;;12959:21:1;13016:2;12996:18;;;12989:30;13055:34;13035:18;;;13028:62;-1:-1:-1;;;13106:18:1;;;13099:35;13151:19;;45977:92:0;12775:401:1;45977:92:0;46093:7;;;;46092:8;46084:41;;;;-1:-1:-1;;;46084:41:0;;20097:2:1;46084:41:0;;;20079:21:1;20136:2;20116:18;;;20109:30;-1:-1:-1;;;20155:18:1;;;20148:50;20215:18;;46084:41:0;19895:344:1;46084:41:0;45719:633;;;46181:6;;46169:9;:18;46166:175;;;46242:1;46227:11;46215:9;;:23;;;;:::i;:::-;:28;;46207:66;;;;-1:-1:-1;;;46207:66:0;;13724:2:1;46207:66:0;;;13706:21:1;13763:2;13743:18;;;13736:30;13802:27;13782:18;;;13775:55;13847:18;;46207:66:0;13522:349:1;46207:66:0;46314:11;46304:9;;:21;;;;:::i;:::-;46292:9;:33;46166:175;46390:1;46374:95;46398:11;46393:1;:16;46374:95;;46432:25;46442:3;46446:10;46455:1;46446:6;:10;:::i;:::-;46432:9;:25::i;:::-;46411:3;;;;:::i;:::-;;;;46374:95;;;;45381:1097;45318:1160;;:::o;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;39096:233::-;39171:7;39207:30;38994:10;:17;;38906:113;39207:30;39199:5;:38;39191:95;;;;-1:-1:-1;;;39191:95:0;;19684:2:1;39191:95:0;;;19666:21:1;19723:2;19703:18;;;19696:30;19762:34;19742:18;;;19735:62;-1:-1:-1;;;19813:18:1;;;19806:42;19865:19;;39191:95:0;19482:408:1;39191:95:0;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;39297:24;;39096:233;;;:::o;48569:104::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48642:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48569:104:::0;:::o;25454:239::-;25526:7;25562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25562:16:0;25597:19;25589:73;;;;-1:-1:-1;;;25589:73:0;;14914:2:1;25589:73:0;;;14896:21:1;14953:2;14933:18;;;14926:30;14992:34;14972:18;;;14965:62;-1:-1:-1;;;15043:18:1;;;15036:39;15092:19;;25589:73:0;14712:405:1;25184:208:0;25256:7;-1:-1:-1;;;;;25284:19:0;;25276:74;;;;-1:-1:-1;;;25276:74:0;;14503:2:1;25276:74:0;;;14485:21:1;14542:2;14522:18;;;14515:30;14581:34;14561:18;;;14554:62;-1:-1:-1;;;14632:18:1;;;14625:40;14682:19;;25276:74:0;14301:406:1;25276:74:0;-1:-1:-1;;;;;;25368:16:0;;;;;:9;:16;;;;;;;25184:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;48869:117::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48930:47:::1;::::0;48938:10:::1;::::0;48955:21:::1;48930:47:::0;::::1;;;::::0;::::1;::::0;;;48955:21;48938:10;48930:47;::::1;;;;;;48922:56;;;::::0;::::1;48342:93:::0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48409:6:::1;:18:::0;48342:93::o;25929:104::-;25985:13;26018:7;26011:14;;;;;:::i;27612:155::-;27707:52;2883:10;27740:8;27750;27707:18;:52::i;28735:328::-;28910:41;2883:10;28943:7;28910:18;:41::i;:::-;28902:103;;;;-1:-1:-1;;;28902:103:0;;;;;;;:::i;:::-;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;26104:334::-;30638:4;30662:16;;;:7;:16;;;;;;26177:13;;-1:-1:-1;;;;;30662:16:0;26203:76;;;;-1:-1:-1;;;26203:76:0;;18042:2:1;26203:76:0;;;18024:21:1;18081:2;18061:18;;;18054:30;18120:34;18100:18;;;18093:62;-1:-1:-1;;;18171:18:1;;;18164:45;18226:19;;26203:76:0;17840:411:1;26203:76:0;26292:21;26316:10;:8;:10::i;:::-;26292:34;;26368:1;26350:7;26344:21;:25;:86;;;;;;;;;;;;;;;;;26396:7;26405:18;:7;:16;:18::i;:::-;26379:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26344:86;26337:93;26104:334;-1:-1:-1;;;26104:334:0:o;49559:592::-;49653:4;49669:12;49695;49711:1;49695:17;49692:249;;;49797:5;49803:7;4152:6;;-1:-1:-1;;;;;4152:6:0;;4079:87;49803:7;49745:66;;6627::1;49745::0;;;6615:79:1;-1:-1:-1;;6782:2:1;6778:15;;;6774:24;;6760:12;;;6753:46;6833:15;;;;6829:24;6815:12;;;6808:46;6870:12;;49745:66:0;;;;;;;;;;;;49735:77;;;;;;49728:84;;49692:249;;;49870:58;;6167:66:1;49870:58:0;;;6155:79:1;-1:-1:-1;;6272:2:1;6268:15;;;6264:53;6250:12;;;6243:75;6334:12;;49870:58:0;;;;;;;;;;;;49860:69;;;;;;49853:76;;49692:249;49961:7;49979:9;49999;50033:19;50048:3;50033:14;:19::i;:::-;50082:24;;;;;;;;;;;;8013:25:1;;;8086:4;8074:17;;8054:18;;;8047:45;;;;8108:18;;;8101:34;;;8151:18;;;8144:34;;;50021:31:0;;-1:-1:-1;50021:31:0;;-1:-1:-1;50021:31:0;-1:-1:-1;50082:24:0;;7985:19:1;;50082:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50071:35:0;:7;4152:6;;-1:-1:-1;;;;;4152:6:0;;4079:87;50071:7;-1:-1:-1;;;;;50071:35:0;;;49559:592;-1:-1:-1;;;;;;;;49559:592:0:o;46484:1130::-;46554:14;46571:13;38994:10;:17;;38906:113;46571:13;46554:30;;46631:9;;46619;;:21;;;;:::i;:::-;46605:10;:6;46614:1;46605:10;:::i;:::-;:35;;46597:117;;;;-1:-1:-1;;;46597:117:0;;;;;;;:::i;:::-;46748:6;;46735:9;:19;;46727:55;;;;-1:-1:-1;;;46727:55:0;;;;;;;:::i;:::-;46822:1;46801:18;;:22;46793:66;;;;-1:-1:-1;;;46793:66:0;;8615:2:1;46793:66:0;;;8597:21:1;8654:2;8634:18;;;8627:30;8693:33;8673:18;;;8666:61;8744:18;;46793:66:0;8413:355:1;46793:66:0;46895:10;46879:27;;;;:15;:27;;;;;:35;;;;;46878:36;46870:86;;;;-1:-1:-1;;;46870:86:0;;17635:2:1;46870:86:0;;;17617:21:1;17674:2;17654:18;;;17647:30;17713:34;17693:18;;;17686:62;-1:-1:-1;;;17764:18:1;;;17757:36;17810:19;;46870:86:0;17433:402:1;46870:86:0;46975:29;46987:10;46998:3;47002:1;46975:11;:29::i;:::-;46967:62;;;;-1:-1:-1;;;46967:62:0;;16098:2:1;46967:62:0;;;16080:21:1;16137:2;16117:18;;;16110:30;-1:-1:-1;;;16156:18:1;;;16149:51;16217:18;;46967:62:0;15896:345:1;46967:62:0;47071:10;47055:27;;;;:15;:27;;;;;:39;;;47050:534;;47118:31;47128:10;47140:8;:6;47147:1;47140:8;:::i;47118:31::-;47188:10;47172:27;;;;:15;:27;;;;;:46;;-1:-1:-1;;47172:46:0;47214:4;47172:46;;;47242:18;:20;;;;;;:::i;:::-;;;;;;48642:23:::1;48569:104:::0;:::o;47050:534::-;47310:10;47294:27;;;;:15;:27;;;;;:39;;;;;;47289:295;;47359:31;47369:10;47381:8;:6;47388:1;47381:8;:::i;47359:31::-;47431:10;47415:27;;;;:15;:27;;;;;:46;;-1:-1:-1;;47415:46:0;;;;;47457:4;47486:35;;;:42;;-1:-1:-1;;47486:42:0;;;;;;47552:18;:20;;;;;;:::i;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;10636:2:1;5069:73:0::1;::::0;::::1;10618:21:1::0;10675:2;10655:18;;;10648:30;10714:34;10694:18;;;10687:62;-1:-1:-1;;;10765:18:1;;;10758:36;10811:19;;5069:73:0::1;10434:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;47626:703::-;47696:14;47713:13;38994:10;:17;;38906:113;47713:13;47696:30;;47773:9;;47761;;:21;;;;:::i;:::-;47747:10;:6;47756:1;47747:10;:::i;:::-;:35;;47739:117;;;;-1:-1:-1;;;47739:117:0;;;;;;;:::i;:::-;47892:6;;47879:9;:19;;47871:55;;;;-1:-1:-1;;;47871:55:0;;;;;;;:::i;:::-;47966:1;47945:18;;:22;47937:66;;;;-1:-1:-1;;;47937:66:0;;8615:2:1;47937:66:0;;;8597:21:1;8654:2;8634:18;;;8627:30;8693:33;8673:18;;;8666:61;8744:18;;47937:66:0;8413:355:1;47937:66:0;48022:29;48034:10;48045:3;48049:1;48022:11;:29::i;:::-;48014:62;;;;-1:-1:-1;;;48014:62:0;;16098:2:1;48014:62:0;;;16080:21:1;16137:2;16117:18;;;16110:30;-1:-1:-1;;;16156:18:1;;;16149:51;16217:18;;48014:62:0;15896:345:1;48014:62:0;48112:10;48096:27;;;;:15;:27;;;;;:35;;;48095:36;48087:85;;;;-1:-1:-1;;;48087:85:0;;18458:2:1;48087:85:0;;;18440:21:1;18497:2;18477:18;;;18470:30;18536:34;18516:18;;;18509:62;-1:-1:-1;;;18587:18:1;;;18580:35;18632:19;;48087:85:0;18256:401:1;48087:85:0;48193:32;48203:10;48214;:6;48223:1;48214:10;:::i;48193:32::-;48252:10;48236:27;;;;:15;:27;;;;;:42;;-1:-1:-1;;48236:42:0;48274:4;48236:42;;;48289:18;:20;;;;;;:::i;24815:305::-;24917:4;-1:-1:-1;;;;;;24954:40:0;;-1:-1:-1;;;24954:40:0;;:105;;-1:-1:-1;;;;;;;25011:48:0;;-1:-1:-1;;;25011:48:0;24954:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;25076:36;16511:157;34555:174;34630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34630:29:0;-1:-1:-1;;;;;34630:29:0;;;;;;;;:24;;34684:23;34630:24;34684:14;:23::i;:::-;-1:-1:-1;;;;;34675:46:0;;;;;;;;;;;34555:174;;:::o;30867:348::-;30960:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;30977:73;;;;-1:-1:-1;;;30977:73:0;;12564:2:1;30977:73:0;;;12546:21:1;12603:2;12583:18;;;12576:30;12642:34;12622:18;;;12615:62;-1:-1:-1;;;12693:18:1;;;12686:42;12745:19;;30977:73:0;12362:408:1;30977:73:0;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;-1:-1:-1;;;;;31119:16:0;:7;-1:-1:-1;;;;;31119:16:0;;:51;;;;31163:7;-1:-1:-1;;;;;31139:31:0;:20;31151:7;31139:11;:20::i;:::-;-1:-1:-1;;;;;31139:31:0;;31119:51;:87;;;-1:-1:-1;;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31174:32;31111:96;30867:348;-1:-1:-1;;;;30867:348:0:o;33859:578::-;34018:4;-1:-1:-1;;;;;33991:31:0;:23;34006:7;33991:14;:23::i;:::-;-1:-1:-1;;;;;33991:31:0;;33983:85;;;;-1:-1:-1;;;33983:85:0;;17225:2:1;33983:85:0;;;17207:21:1;17264:2;17244:18;;;17237:30;17303:34;17283:18;;;17276:62;-1:-1:-1;;;17354:18:1;;;17347:39;17403:19;;33983:85:0;17023:405:1;33983:85:0;-1:-1:-1;;;;;34087:16:0;;34079:65;;;;-1:-1:-1;;;34079:65:0;;11400:2:1;34079:65:0;;;11382:21:1;11439:2;11419:18;;;11412:30;11478:34;11458:18;;;11451:62;-1:-1:-1;;;11529:18:1;;;11522:34;11573:19;;34079:65:0;11198:400:1;34079:65:0;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;-1:-1:-1;;;;;34303:15:0;;;;;;:9;:15;;;;;:20;;34322:1;;34303:15;:20;;34322:1;;34303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34334:13:0;;;;;;:9;:13;;;;;:18;;34351:1;;34334:13;:18;;34351:1;;34334:18;:::i;:::-;;;;-1:-1:-1;;34363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34363:21:0;-1:-1:-1;;;;;34363:21:0;;;;;;;;;34402:27;;34363:16;;34402:27;;;;;;;33859:578;;;:::o;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;34871:315::-;35026:8;-1:-1:-1;;;;;35017:17:0;:5;-1:-1:-1;;;;;35017:17:0;;;35009:55;;;;-1:-1:-1;;;35009:55:0;;11805:2:1;35009:55:0;;;11787:21:1;11844:2;11824:18;;;11817:30;11883:27;11863:18;;;11856:55;11928:18;;35009:55:0;11603:349:1;35009:55:0;-1:-1:-1;;;;;35075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35075:46:0;;;;;;;;;;35137:41;;7734::1;;;35137::0;;7707:18:1;35137:41:0;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;-1:-1:-1;;;30141:111:0;;;;;;;:::i;48445:114::-;48505:13;48538;48531:20;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;49028:517;49092:5;49099:7;49108;49134:3;:10;49148:2;49134:16;49126:25;;;;;;-1:-1:-1;;;49318:2:0;49309:12;;49303:19;49386:2;49377:12;;49371:19;49491:2;49482:12;;;49476:19;49163:9;49468:28;;49303:19;;49371;49028:517::o;39942:589::-;-1:-1:-1;;;;;40148:18:0;;40144:187;;40183:40;40215:7;41358:10;:17;;41331:24;;;;:15;:24;;;;;:44;;;41386:24;;;;;;;;;;;;41254:164;40183:40;40144:187;;;40253:2;-1:-1:-1;;;;;40245:10:0;:4;-1:-1:-1;;;;;40245:10:0;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;-1:-1:-1;;;;;40345:16:0;;40341:183;;40378:45;40415:7;40378:36;:45::i;40341:183::-;40451:4;-1:-1:-1;;;;;40445:10:0;:2;-1:-1:-1;;;;;40445:10:0;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;31894:321::-;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;-1:-1:-1;;;32053:154:0;;;;;;;:::i;35751:799::-;35906:4;-1:-1:-1;;;;;35927:13:0;;6690:20;6738:8;35923:620;;35963:72;;-1:-1:-1;;;35963:72:0;;-1:-1:-1;;;;;35963:36:0;;;;;:72;;2883:10;;36014:4;;36020:7;;36029:5;;35963:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35963:72:0;;;;;;;;-1:-1:-1;;35963:72:0;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36205:13:0;;36201:272;;36248:60;;-1:-1:-1;;;36248:60:0;;;;;;;:::i;36201:272::-;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;-1:-1:-1;;;;;;36086:51:0;-1:-1:-1;;;36086:51:0;;-1:-1:-1;36079:58:0;;35923:620;-1:-1:-1;36527:4:0;35751:799;;;;;;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42373:18;42394:26;;;:17;:26;;;;;;42311:51;;-1:-1:-1;42527:28:0;;;42523:328;;-1:-1:-1;;;;;42594:18:0;;42572:19;42594:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42645:30;;;;;;:44;;;42762:30;;:17;:30;;;;;:43;;;42523:328;-1:-1:-1;42947:26:0;;;;:17;:26;;;;;;;;42940:33;;;-1:-1:-1;;;;;42991:18:0;;;;;:12;:18;;;;;:34;;;;;;;42984:41;42045:988::o;43328:1079::-;43606:10;:17;43581:22;;43606:21;;43626:1;;43606:21;:::i;:::-;43638:18;43659:24;;;:15;:24;;;;;;44032:10;:26;;43581:46;;-1:-1:-1;43659:24:0;;43581:46;;44032:26;;;;;;:::i;:::-;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44176:28;;;:15;:28;;;;;;;:41;;;44348:24;;;;;44341:31;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;-1:-1:-1;;;;;40965:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41010:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40832:221:0:o;32551:382::-;-1:-1:-1;;;;;32631:16:0;;32623:61;;;;-1:-1:-1;;;32623:61:0;;15324:2:1;32623:61:0;;;15306:21:1;;;15343:18;;;15336:30;15402:34;15382:18;;;15375:62;15454:18;;32623:61:0;15122:356:1;32623:61:0;30638:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;:30;32695:58;;;;-1:-1:-1;;;32695:58:0;;11043:2:1;32695:58:0;;;11025:21:1;11082:2;11062:18;;;11055:30;11121;11101:18;;;11094:58;11169:18;;32695:58:0;10841:352:1;32695:58:0;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;-1:-1:-1;;;;;32824:13:0;;;;;;:9;:13;;;;;:18;;32841:1;;32824:13;:18;;32841:1;;32824:18;:::i;:::-;;;;-1:-1:-1;;32853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32853:21:0;-1:-1:-1;;;;;32853:21:0;;;;;;;;32892:33;;32853:16;;;32892:33;;32853:16;;32892:33;32551:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;1218:186::-;1277:6;1330:2;1318:9;1309:7;1305:23;1301:32;1298:52;;;1346:1;1343;1336:12;1298:52;1369:29;1388:9;1369:29;:::i;1409:260::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1577:29;1596:9;1577:29;:::i;:::-;1567:39;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1409:260;;;;;:::o;1674:328::-;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1859:29;1878:9;1859:29;:::i;:::-;1849:39;;1907:38;1941:2;1930:9;1926:18;1907:38;:::i;:::-;1897:48;;1992:2;1981:9;1977:18;1964:32;1954:42;;1674:328;;;;;:::o;2007:537::-;2102:6;2110;2118;2126;2179:3;2167:9;2158:7;2154:23;2150:33;2147:53;;;2196:1;2193;2186:12;2147:53;2219:29;2238:9;2219:29;:::i;:::-;2209:39;;2267:38;2301:2;2290:9;2286:18;2267:38;:::i;:::-;2257:48;;2352:2;2341:9;2337:18;2324:32;2314:42;;2407:2;2396:9;2392:18;2379:32;2434:18;2426:6;2423:30;2420:50;;;2466:1;2463;2456:12;2420:50;2489:49;2530:7;2521:6;2510:9;2506:22;2489:49;:::i;:::-;2479:59;;;2007:537;;;;;;;:::o;2549:254::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2714:29;2733:9;2714:29;:::i;:::-;2704:39;;2762:35;2793:2;2782:9;2778:18;2762:35;:::i;2808:462::-;2894:6;2902;2910;2963:2;2951:9;2942:7;2938:23;2934:32;2931:52;;;2979:1;2976;2969:12;2931:52;3002:29;3021:9;3002:29;:::i;:::-;2992:39;;3082:2;3071:9;3067:18;3054:32;3109:18;3101:6;3098:30;3095:50;;;3141:1;3138;3131:12;3095:50;3164:49;3205:7;3196:6;3185:9;3181:22;3164:49;:::i;:::-;3154:59;;;3260:2;3249:9;3245:18;3232:32;3222:42;;2808:462;;;;;:::o;3275:254::-;3343:6;3351;3404:2;3392:9;3383:7;3379:23;3375:32;3372:52;;;3420:1;3417;3410:12;3372:52;3443:29;3462:9;3443:29;:::i;:::-;3433:39;3519:2;3504:18;;;;3491:32;;-1:-1:-1;;;3275:254:1:o;3534:180::-;3590:6;3643:2;3631:9;3622:7;3618:23;3614:32;3611:52;;;3659:1;3656;3649:12;3611:52;3682:26;3698:9;3682:26;:::i;3719:245::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:52;;;3846:1;3843;3836:12;3798:52;3885:9;3872:23;3904:30;3928:5;3904:30;:::i;3969:249::-;4038:6;4091:2;4079:9;4070:7;4066:23;4062:32;4059:52;;;4107:1;4104;4097:12;4059:52;4139:9;4133:16;4158:30;4182:5;4158:30;:::i;4223:320::-;4291:6;4344:2;4332:9;4323:7;4319:23;4315:32;4312:52;;;4360:1;4357;4350:12;4312:52;4400:9;4387:23;4433:18;4425:6;4422:30;4419:50;;;4465:1;4462;4455:12;4419:50;4488:49;4529:7;4520:6;4509:9;4505:22;4488:49;:::i;4548:450::-;4617:6;4670:2;4658:9;4649:7;4645:23;4641:32;4638:52;;;4686:1;4683;4676:12;4638:52;4726:9;4713:23;4759:18;4751:6;4748:30;4745:50;;;4791:1;4788;4781:12;4745:50;4814:22;;4867:4;4859:13;;4855:27;-1:-1:-1;4845:55:1;;4896:1;4893;4886:12;4845:55;4919:73;4984:7;4979:2;4966:16;4961:2;4957;4953:11;4919:73;:::i;5003:180::-;5062:6;5115:2;5103:9;5094:7;5090:23;5086:32;5083:52;;;5131:1;5128;5121:12;5083:52;-1:-1:-1;5154:23:1;;5003:180;-1:-1:-1;5003:180:1:o;5188:257::-;5229:3;5267:5;5261:12;5294:6;5289:3;5282:19;5310:63;5366:6;5359:4;5354:3;5350:14;5343:4;5336:5;5332:16;5310:63;:::i;:::-;5427:2;5406:15;-1:-1:-1;;5402:29:1;5393:39;;;;5434:4;5389:50;;5188:257;-1:-1:-1;;5188:257:1:o;5450:470::-;5629:3;5667:6;5661:13;5683:53;5729:6;5724:3;5717:4;5709:6;5705:17;5683:53;:::i;:::-;5799:13;;5758:16;;;;5821:57;5799:13;5758:16;5855:4;5843:17;;5821:57;:::i;:::-;5894:20;;5450:470;-1:-1:-1;;;;5450:470:1:o;7101:488::-;-1:-1:-1;;;;;7370:15:1;;;7352:34;;7422:15;;7417:2;7402:18;;7395:43;7469:2;7454:18;;7447:34;;;7517:3;7512:2;7497:18;;7490:31;;;7295:4;;7538:45;;7563:19;;7555:6;7538:45;:::i;:::-;7530:53;7101:488;-1:-1:-1;;;;;;7101:488:1:o;8189:219::-;8338:2;8327:9;8320:21;8301:4;8358:44;8398:2;8387:9;8383:18;8375:6;8358:44;:::i;8773:473::-;8975:2;8957:21;;;9014:2;8994:18;;;8987:30;9053:34;9048:2;9033:18;;9026:62;9124:34;9119:2;9104:18;;9097:62;-1:-1:-1;;;9190:3:1;9175:19;;9168:36;9236:3;9221:19;;8773:473::o;9251:347::-;9453:2;9435:21;;;9492:2;9472:18;;;9465:30;9531:25;9526:2;9511:18;;9504:53;9589:2;9574:18;;9251:347::o;10015:414::-;10217:2;10199:21;;;10256:2;10236:18;;;10229:30;10295:34;10290:2;10275:18;;10268:62;-1:-1:-1;;;10361:2:1;10346:18;;10339:48;10419:3;10404:19;;10015:414::o;16662:356::-;16864:2;16846:21;;;16883:18;;;16876:30;16942:34;16937:2;16922:18;;16915:62;17009:2;16994:18;;16662:356::o;19064:413::-;19266:2;19248:21;;;19305:2;19285:18;;;19278:30;19344:34;19339:2;19324:18;;19317:62;-1:-1:-1;;;19410:2:1;19395:18;;19388:47;19467:3;19452:19;;19064:413::o;20426:128::-;20466:3;20497:1;20493:6;20490:1;20487:13;20484:39;;;20503:18;;:::i;:::-;-1:-1:-1;20539:9:1;;20426:128::o;20559:120::-;20599:1;20625;20615:35;;20630:18;;:::i;:::-;-1:-1:-1;20664:9:1;;20559:120::o;20684:168::-;20724:7;20790:1;20786;20782:6;20778:14;20775:1;20772:21;20767:1;20760:9;20753:17;20749:45;20746:71;;;20797:18;;:::i;:::-;-1:-1:-1;20837:9:1;;20684:168::o;20857:125::-;20897:4;20925:1;20922;20919:8;20916:34;;;20930:18;;:::i;:::-;-1:-1:-1;20967:9:1;;20857:125::o;20987:258::-;21059:1;21069:113;21083:6;21080:1;21077:13;21069:113;;;21159:11;;;21153:18;21140:11;;;21133:39;21105:2;21098:10;21069:113;;;21200:6;21197:1;21194:13;21191:48;;;-1:-1:-1;;21235:1:1;21217:16;;21210:27;20987:258::o;21250:136::-;21289:3;21317:5;21307:39;;21326:18;;:::i;:::-;-1:-1:-1;;;21362:18:1;;21250:136::o;21391:380::-;21470:1;21466:12;;;;21513;;;21534:61;;21588:4;21580:6;21576:17;21566:27;;21534:61;21641:2;21633:6;21630:14;21610:18;21607:38;21604:161;;;21687:10;21682:3;21678:20;21675:1;21668:31;21722:4;21719:1;21712:15;21750:4;21747:1;21740:15;21604:161;;21391:380;;;:::o;21776:135::-;21815:3;-1:-1:-1;;21836:17:1;;21833:43;;;21856:18;;:::i;:::-;-1:-1:-1;21903:1:1;21892:13;;21776:135::o;21916:112::-;21948:1;21974;21964:35;;21979:18;;:::i;:::-;-1:-1:-1;22013:9:1;;21916:112::o;22033:127::-;22094:10;22089:3;22085:20;22082:1;22075:31;22125:4;22122:1;22115:15;22149:4;22146:1;22139:15;22165:127;22226:10;22221:3;22217:20;22214:1;22207:31;22257:4;22254:1;22247:15;22281:4;22278:1;22271:15;22297:127;22358:10;22353:3;22349:20;22346:1;22339:31;22389:4;22386:1;22379:15;22413:4;22410:1;22403:15;22429:127;22490:10;22485:3;22481:20;22478:1;22471:31;22521:4;22518:1;22511:15;22545:4;22542:1;22535:15;22561:127;22622:10;22617:3;22613:20;22610:1;22603:31;22653:4;22650:1;22643:15;22677:4;22674:1;22667:15;22693:131;-1:-1:-1;;;;;;22767:32:1;;22757:43;;22747:71;;22814:1;22811;22804:12

Swarm Source

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