ETH Price: $3,110.35 (+1.24%)
Gas: 6 Gwei

Token

Optical Illusion (OPI)
 

Overview

Max Total Supply

124 OPI

Holders

76

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
smilenft.eth
Balance
3 OPI
0xdd69c8b49873d6b9bf0e4fd90a5bfcb819cc2456
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:
OpticalIllusion

Compiler Version
v0.8.0+commit.c7dfd78e

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-17
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/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/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/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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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/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/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/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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/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/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/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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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(to).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

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: OpticalIllusion.sol

pragma solidity ^0.8.0;

/// @author 
contract OpticalIllusion is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    uint256 public maxOPI = 1111;
    uint256 public price = 150000000000000000; //0.15 Ether
    string baseTokenURI;
    bool public isSaleOpen = false;

    event OpticalIllusionMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Optical Illusion", "OPI") {
        setBaseURI(baseURI);
    }

    //Get token Ids of all tokens owned by _owner
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

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

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function changeMaxOPI(uint256 _maxOPI) external onlyOwner {
        maxOPI += _maxOPI;
    }

    //Close sale if open, open sale if closed
    function toggleSale() external onlyOwner {
        isSaleOpen = !isSaleOpen;
    }

    function withdrawETH() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    //mint OpticalIllusion
    function mintOpticalIllusion(address _to, uint256 _count) external payable {
        require(
            totalSupply() + _count <= maxOPI,
            "Exceeds maximum supply of Optical Illusion"
        );
        if (msg.sender != owner()) {
            require(isSaleOpen, "Sale is not open yet");
            require(
                _count > 0 && _count <= 5,
                "Minimum 1 & Maximum 5 Optical Illusions can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }

        for (uint256 i = 0; i < _count; i++) {
            _mint(_to);
        }
    }

    function _mint(address _to) private {
        _tokenId.increment();
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        emit OpticalIllusionMinted(tokenId);
    }

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

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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"OpticalIllusionMinted","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":[{"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":"_maxOPI","type":"uint256"}],"name":"changeMaxOPI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOPI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintOpticalIllusion","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610457600c55670214e8348c4f0000600d55600f805460ff191690553480156200002d57600080fd5b50604051620028173803806200281783398101604081905262000050916200025b565b604080518082018252601081526f27b83a34b1b0b61024b6363ab9b4b7b760811b6020808301918252835180850190945260038452624f504960e81b908401528151919291620000a391600091620001b5565b508051620000b9906001906020840190620001b5565b505050620000d6620000d0620000e860201b60201c565b620000ec565b620000e1816200013e565b50620003b2565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000148620000e8565b6001600160a01b03166200015b620001a6565b6001600160a01b0316146200018d5760405162461bcd60e51b815260040162000184906200032a565b60405180910390fd5b8051620001a290600e906020840190620001b5565b5050565b600a546001600160a01b031690565b828054620001c3906200035f565b90600052602060002090601f016020900481019282620001e7576000855562000232565b82601f106200020257805160ff191683800117855562000232565b8280016001018555821562000232579182015b828111156200023257825182559160200191906001019062000215565b506200024092915062000244565b5090565b5b8082111562000240576000815560010162000245565b600060208083850312156200026e578182fd5b82516001600160401b038082111562000285578384fd5b818501915085601f83011262000299578384fd5b815181811115620002ae57620002ae6200039c565b604051601f8201601f1916810185018381118282101715620002d457620002d46200039c565b6040528181528382018501881015620002eb578586fd5b8592505b818310156200030e5783830185015181840186015291840191620002ef565b818311156200031f57858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200037457607f821691505b602082108114156200039657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61245580620003c26000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a2b40d1911610095578063e086e5ec11610064578063e086e5ec146104c3578063e985e9c5146104d8578063f2fde38b146104f8578063fba6c74814610518576101c2565b8063a2b40d191461044e578063a3394ee81461046e578063b88d4fde14610483578063c87b56dd146104a3576101c2565b80638da5cb5b116100d15780638da5cb5b146103ef57806395d89b4114610404578063a035b1fe14610419578063a22cb4651461042e576101c2565b806370a08231146103a5578063715018a6146103c55780637d8966e4146103da576101c2565b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461033257806355f804b3146103525780636352211e146103725780636ef4e05514610392576101c2565b80632f745c59146102c557806342842e0e146102e5578063438b630014610305576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e5780631a0813301461029057806323b872dd146102a5576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611ac6565b610538565b6040516101f49190611c4f565b60405180910390f35b34801561020957600080fd5b50610212610565565b6040516101f49190611c5a565b34801561022b57600080fd5b5061023f61023a366004611b44565b6105f7565b6040516101f49190611bba565b34801561025857600080fd5b5061026c610267366004611a9d565b610643565b005b34801561027a57600080fd5b506102836106db565b6040516101f491906122c6565b34801561029c57600080fd5b506101e76106e1565b3480156102b157600080fd5b5061026c6102c03660046119af565b6106ea565b3480156102d157600080fd5b506102836102e0366004611a9d565b610722565b3480156102f157600080fd5b5061026c6103003660046119af565b610774565b34801561031157600080fd5b50610325610320366004611963565b61078f565b6040516101f49190611c0b565b34801561033e57600080fd5b5061028361034d366004611b44565b61084d565b34801561035e57600080fd5b5061026c61036d366004611afe565b6108a8565b34801561037e57600080fd5b5061023f61038d366004611b44565b6108fe565b61026c6103a0366004611a9d565b610933565b3480156103b157600080fd5b506102836103c0366004611963565b610a29565b3480156103d157600080fd5b5061026c610a6d565b3480156103e657600080fd5b5061026c610ab8565b3480156103fb57600080fd5b5061023f610b0b565b34801561041057600080fd5b50610212610b1a565b34801561042557600080fd5b50610283610b29565b34801561043a57600080fd5b5061026c610449366004611a63565b610b2f565b34801561045a57600080fd5b5061026c610469366004611b44565b610bfd565b34801561047a57600080fd5b50610283610c41565b34801561048f57600080fd5b5061026c61049e3660046119ea565b610c47565b3480156104af57600080fd5b506102126104be366004611b44565b610c86565b3480156104cf57600080fd5b5061026c610d09565b3480156104e457600080fd5b506101e76104f336600461197d565b610dc7565b34801561050457600080fd5b5061026c610513366004611963565b610df5565b34801561052457600080fd5b5061026c610533366004611b44565b610e63565b60006001600160e01b0319821663780e9d6360e01b148061055d575061055d82610ebc565b90505b919050565b6060600080546105749061235d565b80601f01602080910402602001604051908101604052809291908181526020018280546105a09061235d565b80156105ed5780601f106105c2576101008083540402835291602001916105ed565b820191906000526020600020905b8154815290600101906020018083116105d057829003601f168201915b5050505050905090565b600061060282610efc565b6106275760405162461bcd60e51b815260040161061e90611fa1565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061064e826108fe565b9050806001600160a01b0316836001600160a01b031614156106825760405162461bcd60e51b815260040161061e90612153565b806001600160a01b0316610694610f19565b6001600160a01b031614806106b057506106b0816104f3610f19565b6106cc5760405162461bcd60e51b815260040161061e90611e7c565b6106d68383610f1d565b505050565b60085490565b600f5460ff1681565b6106fb6106f5610f19565b82610f8b565b6107175760405162461bcd60e51b815260040161061e906121be565b6106d6838383611010565b600061072d83610a29565b821061074b5760405162461bcd60e51b815260040161061e90611c6d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106d683838360405180602001604052806000815250610c47565b6060600061079c83610a29565b905060008167ffffffffffffffff8111156107c757634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156107f0578160200160208202803683370190505b50905060005b82811015610845576108088582610722565b82828151811061082857634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061083d81612398565b9150506107f6565b509392505050565b60006108576106db565b82106108755760405162461bcd60e51b815260040161061e9061220f565b6008828154811061089657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6108b0610f19565b6001600160a01b03166108c1610b0b565b6001600160a01b0316146108e75760405162461bcd60e51b815260040161061e9061203c565b80516108fa90600e906020840190611843565b5050565b6000818152600260205260408120546001600160a01b03168061055d5760405162461bcd60e51b815260040161061e90611f23565b600c548161093f6106db565b61094991906122cf565b11156109675760405162461bcd60e51b815260040161061e90612109565b61096f610b0b565b6001600160a01b0316336001600160a01b031614610a0357600f5460ff166109a95760405162461bcd60e51b815260040161061e90611e02565b6000811180156109ba575060058111155b6109d65760405162461bcd60e51b815260040161061e9061225b565b80600d546109e491906122fb565b341015610a035760405162461bcd60e51b815260040161061e90611fed565b60005b818110156106d657610a178361113d565b80610a2181612398565b915050610a06565b60006001600160a01b038216610a515760405162461bcd60e51b815260040161061e90611ed9565b506001600160a01b031660009081526003602052604090205490565b610a75610f19565b6001600160a01b0316610a86610b0b565b6001600160a01b031614610aac5760405162461bcd60e51b815260040161061e9061203c565b610ab6600061119a565b565b610ac0610f19565b6001600160a01b0316610ad1610b0b565b6001600160a01b031614610af75760405162461bcd60e51b815260040161061e9061203c565b600f805460ff19811660ff90911615179055565b600a546001600160a01b031690565b6060600180546105749061235d565b600d5481565b610b37610f19565b6001600160a01b0316826001600160a01b03161415610b685760405162461bcd60e51b815260040161061e90611dcb565b8060056000610b75610f19565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610bb9610f19565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bf19190611c4f565b60405180910390a35050565b610c05610f19565b6001600160a01b0316610c16610b0b565b6001600160a01b031614610c3c5760405162461bcd60e51b815260040161061e9061203c565b600d55565b600c5481565b610c58610c52610f19565b83610f8b565b610c745760405162461bcd60e51b815260040161061e906121be565b610c80848484846111ec565b50505050565b6060610c9182610efc565b610cad5760405162461bcd60e51b815260040161061e906120ba565b6000610cb761121f565b90506000815111610cd75760405180602001604052806000815250610d02565b80610ce18461122e565b604051602001610cf2929190611b88565b6040516020818303038152906040525b9392505050565b610d11610f19565b6001600160a01b0316610d22610b0b565b6001600160a01b031614610d485760405162461bcd60e51b815260040161061e9061203c565b6000336001600160a01b031647604051610d6190611bb7565b60006040518083038185875af1925050503d8060008114610d9e576040519150601f19603f3d011682016040523d82523d6000602084013e610da3565b606091505b5050905080610dc45760405162461bcd60e51b815260040161061e90612194565b50565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610dfd610f19565b6001600160a01b0316610e0e610b0b565b6001600160a01b031614610e345760405162461bcd60e51b815260040161061e9061203c565b6001600160a01b038116610e5a5760405162461bcd60e51b815260040161061e90611d0a565b610dc48161119a565b610e6b610f19565b6001600160a01b0316610e7c610b0b565b6001600160a01b031614610ea25760405162461bcd60e51b815260040161061e9061203c565b80600c6000828254610eb491906122cf565b909155505050565b60006001600160e01b031982166380ac58cd60e01b1480610eed57506001600160e01b03198216635b5e139f60e01b145b8061055d575061055d82611349565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f52826108fe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f9682610efc565b610fb25760405162461bcd60e51b815260040161061e90611e30565b6000610fbd836108fe565b9050806001600160a01b0316846001600160a01b03161480610ff85750836001600160a01b0316610fed846105f7565b6001600160a01b0316145b8061100857506110088185610dc7565b949350505050565b826001600160a01b0316611023826108fe565b6001600160a01b0316146110495760405162461bcd60e51b815260040161061e90612071565b6001600160a01b03821661106f5760405162461bcd60e51b815260040161061e90611d87565b61107a838383611362565b611085600082610f1d565b6001600160a01b03831660009081526003602052604081208054600192906110ae90849061231a565b90915550506001600160a01b03821660009081526003602052604081208054600192906110dc9084906122cf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611147600b6113eb565b6000611153600b6113f4565b905061115f82826113f8565b7fd03f50ee8b713b2b22537bb15fde1369376b07aab2298d0d6d7bfa6b16a71ff48160405161118e91906122c6565b60405180910390a15050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111f7848484611010565b61120384848484611412565b610c805760405162461bcd60e51b815260040161061e90611cb8565b6060600e80546105749061235d565b60608161125357506040805180820190915260018152600360fc1b6020820152610560565b8160005b811561127d578061126781612398565b91506112769050600a836122e7565b9150611257565b60008167ffffffffffffffff8111156112a657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112d0576020820181803683370190505b5090505b8415611008576112e560018361231a565b91506112f2600a866123b3565b6112fd9060306122cf565b60f81b81838151811061132057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611342600a866122e7565b94506112d4565b6001600160e01b031981166301ffc9a760e01b14919050565b61136d8383836106d6565b6001600160a01b038316611389576113848161152d565b6113ac565b816001600160a01b0316836001600160a01b0316146113ac576113ac8382611571565b6001600160a01b0382166113c8576113c38161160e565b6106d6565b826001600160a01b0316826001600160a01b0316146106d6576106d682826116e7565b80546001019055565b5490565b6108fa82826040518060200160405280600081525061172b565b6000611426846001600160a01b031661175e565b1561152257836001600160a01b031663150b7a02611442610f19565b8786866040518563ffffffff1660e01b81526004016114649493929190611bce565b602060405180830381600087803b15801561147e57600080fd5b505af19250505080156114ae575060408051601f3d908101601f191682019092526114ab91810190611ae2565b60015b611508573d8080156114dc576040519150601f19603f3d011682016040523d82523d6000602084013e6114e1565b606091505b5080516115005760405162461bcd60e51b815260040161061e90611cb8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611008565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161157e84610a29565b611588919061231a565b6000838152600760205260409020549091508082146115db576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116209060019061231a565b6000838152600960205260408120546008805493945090928490811061165657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061168557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116cb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006116f283610a29565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6117358383611764565b6117426000848484611412565b6106d65760405162461bcd60e51b815260040161061e90611cb8565b3b151590565b6001600160a01b03821661178a5760405162461bcd60e51b815260040161061e90611f6c565b61179381610efc565b156117b05760405162461bcd60e51b815260040161061e90611d50565b6117bc60008383611362565b6001600160a01b03821660009081526003602052604081208054600192906117e59084906122cf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461184f9061235d565b90600052602060002090601f01602090048101928261187157600085556118b7565b82601f1061188a57805160ff19168380011785556118b7565b828001600101855582156118b7579182015b828111156118b757825182559160200191906001019061189c565b506118c39291506118c7565b5090565b5b808211156118c357600081556001016118c8565b600067ffffffffffffffff808411156118f7576118f76123f3565b604051601f8501601f19168101602001828111828210171561191b5761191b6123f3565b60405284815291508183850186101561193357600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461056057600080fd5b600060208284031215611974578081fd5b610d028261194c565b6000806040838503121561198f578081fd5b6119988361194c565b91506119a66020840161194c565b90509250929050565b6000806000606084860312156119c3578081fd5b6119cc8461194c565b92506119da6020850161194c565b9150604084013590509250925092565b600080600080608085870312156119ff578081fd5b611a088561194c565b9350611a166020860161194c565b925060408501359150606085013567ffffffffffffffff811115611a38578182fd5b8501601f81018713611a48578182fd5b611a57878235602084016118dc565b91505092959194509250565b60008060408385031215611a75578182fd5b611a7e8361194c565b915060208301358015158114611a92578182fd5b809150509250929050565b60008060408385031215611aaf578182fd5b611ab88361194c565b946020939093013593505050565b600060208284031215611ad7578081fd5b8135610d0281612409565b600060208284031215611af3578081fd5b8151610d0281612409565b600060208284031215611b0f578081fd5b813567ffffffffffffffff811115611b25578182fd5b8201601f81018413611b35578182fd5b611008848235602084016118dc565b600060208284031215611b55578081fd5b5035919050565b60008151808452611b74816020860160208601612331565b601f01601f19169290920160200192915050565b60008351611b9a818460208801612331565b835190830190611bae818360208801612331565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0190830184611b5c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c4357835183529284019291840191600101611c27565b50909695505050505050565b901515815260200190565b600060208252610d026020830184611b5c565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602a908201527f45786365656473206d6178696d756d20737570706c79206f66204f7074696361604082015269361024b6363ab9b4b7b760b11b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526045908201527f4d696e696d756d20312026204d6178696d756d2035204f70746963616c20496c60408201527f6c7573696f6e732063616e206265206d696e74656420706572207472616e736160608201526431ba34b7b760d91b608082015260a00190565b90815260200190565b600082198211156122e2576122e26123c7565b500190565b6000826122f6576122f66123dd565b500490565b6000816000190483118215151615612315576123156123c7565b500290565b60008282101561232c5761232c6123c7565b500390565b60005b8381101561234c578181015183820152602001612334565b83811115610c805750506000910152565b60028104600182168061237157607f821691505b6020821081141561239257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123ac576123ac6123c7565b5060010190565b6000826123c2576123c26123dd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dc457600080fdfea2646970667358221220262b372a28796ab5933058b34195902ffa8415b092542fd2f8dc0075ac0e0e0664736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a2b40d1911610095578063e086e5ec11610064578063e086e5ec146104c3578063e985e9c5146104d8578063f2fde38b146104f8578063fba6c74814610518576101c2565b8063a2b40d191461044e578063a3394ee81461046e578063b88d4fde14610483578063c87b56dd146104a3576101c2565b80638da5cb5b116100d15780638da5cb5b146103ef57806395d89b4114610404578063a035b1fe14610419578063a22cb4651461042e576101c2565b806370a08231146103a5578063715018a6146103c55780637d8966e4146103da576101c2565b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461033257806355f804b3146103525780636352211e146103725780636ef4e05514610392576101c2565b80632f745c59146102c557806342842e0e146102e5578063438b630014610305576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e5780631a0813301461029057806323b872dd146102a5576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611ac6565b610538565b6040516101f49190611c4f565b60405180910390f35b34801561020957600080fd5b50610212610565565b6040516101f49190611c5a565b34801561022b57600080fd5b5061023f61023a366004611b44565b6105f7565b6040516101f49190611bba565b34801561025857600080fd5b5061026c610267366004611a9d565b610643565b005b34801561027a57600080fd5b506102836106db565b6040516101f491906122c6565b34801561029c57600080fd5b506101e76106e1565b3480156102b157600080fd5b5061026c6102c03660046119af565b6106ea565b3480156102d157600080fd5b506102836102e0366004611a9d565b610722565b3480156102f157600080fd5b5061026c6103003660046119af565b610774565b34801561031157600080fd5b50610325610320366004611963565b61078f565b6040516101f49190611c0b565b34801561033e57600080fd5b5061028361034d366004611b44565b61084d565b34801561035e57600080fd5b5061026c61036d366004611afe565b6108a8565b34801561037e57600080fd5b5061023f61038d366004611b44565b6108fe565b61026c6103a0366004611a9d565b610933565b3480156103b157600080fd5b506102836103c0366004611963565b610a29565b3480156103d157600080fd5b5061026c610a6d565b3480156103e657600080fd5b5061026c610ab8565b3480156103fb57600080fd5b5061023f610b0b565b34801561041057600080fd5b50610212610b1a565b34801561042557600080fd5b50610283610b29565b34801561043a57600080fd5b5061026c610449366004611a63565b610b2f565b34801561045a57600080fd5b5061026c610469366004611b44565b610bfd565b34801561047a57600080fd5b50610283610c41565b34801561048f57600080fd5b5061026c61049e3660046119ea565b610c47565b3480156104af57600080fd5b506102126104be366004611b44565b610c86565b3480156104cf57600080fd5b5061026c610d09565b3480156104e457600080fd5b506101e76104f336600461197d565b610dc7565b34801561050457600080fd5b5061026c610513366004611963565b610df5565b34801561052457600080fd5b5061026c610533366004611b44565b610e63565b60006001600160e01b0319821663780e9d6360e01b148061055d575061055d82610ebc565b90505b919050565b6060600080546105749061235d565b80601f01602080910402602001604051908101604052809291908181526020018280546105a09061235d565b80156105ed5780601f106105c2576101008083540402835291602001916105ed565b820191906000526020600020905b8154815290600101906020018083116105d057829003601f168201915b5050505050905090565b600061060282610efc565b6106275760405162461bcd60e51b815260040161061e90611fa1565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061064e826108fe565b9050806001600160a01b0316836001600160a01b031614156106825760405162461bcd60e51b815260040161061e90612153565b806001600160a01b0316610694610f19565b6001600160a01b031614806106b057506106b0816104f3610f19565b6106cc5760405162461bcd60e51b815260040161061e90611e7c565b6106d68383610f1d565b505050565b60085490565b600f5460ff1681565b6106fb6106f5610f19565b82610f8b565b6107175760405162461bcd60e51b815260040161061e906121be565b6106d6838383611010565b600061072d83610a29565b821061074b5760405162461bcd60e51b815260040161061e90611c6d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106d683838360405180602001604052806000815250610c47565b6060600061079c83610a29565b905060008167ffffffffffffffff8111156107c757634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156107f0578160200160208202803683370190505b50905060005b82811015610845576108088582610722565b82828151811061082857634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061083d81612398565b9150506107f6565b509392505050565b60006108576106db565b82106108755760405162461bcd60e51b815260040161061e9061220f565b6008828154811061089657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6108b0610f19565b6001600160a01b03166108c1610b0b565b6001600160a01b0316146108e75760405162461bcd60e51b815260040161061e9061203c565b80516108fa90600e906020840190611843565b5050565b6000818152600260205260408120546001600160a01b03168061055d5760405162461bcd60e51b815260040161061e90611f23565b600c548161093f6106db565b61094991906122cf565b11156109675760405162461bcd60e51b815260040161061e90612109565b61096f610b0b565b6001600160a01b0316336001600160a01b031614610a0357600f5460ff166109a95760405162461bcd60e51b815260040161061e90611e02565b6000811180156109ba575060058111155b6109d65760405162461bcd60e51b815260040161061e9061225b565b80600d546109e491906122fb565b341015610a035760405162461bcd60e51b815260040161061e90611fed565b60005b818110156106d657610a178361113d565b80610a2181612398565b915050610a06565b60006001600160a01b038216610a515760405162461bcd60e51b815260040161061e90611ed9565b506001600160a01b031660009081526003602052604090205490565b610a75610f19565b6001600160a01b0316610a86610b0b565b6001600160a01b031614610aac5760405162461bcd60e51b815260040161061e9061203c565b610ab6600061119a565b565b610ac0610f19565b6001600160a01b0316610ad1610b0b565b6001600160a01b031614610af75760405162461bcd60e51b815260040161061e9061203c565b600f805460ff19811660ff90911615179055565b600a546001600160a01b031690565b6060600180546105749061235d565b600d5481565b610b37610f19565b6001600160a01b0316826001600160a01b03161415610b685760405162461bcd60e51b815260040161061e90611dcb565b8060056000610b75610f19565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610bb9610f19565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bf19190611c4f565b60405180910390a35050565b610c05610f19565b6001600160a01b0316610c16610b0b565b6001600160a01b031614610c3c5760405162461bcd60e51b815260040161061e9061203c565b600d55565b600c5481565b610c58610c52610f19565b83610f8b565b610c745760405162461bcd60e51b815260040161061e906121be565b610c80848484846111ec565b50505050565b6060610c9182610efc565b610cad5760405162461bcd60e51b815260040161061e906120ba565b6000610cb761121f565b90506000815111610cd75760405180602001604052806000815250610d02565b80610ce18461122e565b604051602001610cf2929190611b88565b6040516020818303038152906040525b9392505050565b610d11610f19565b6001600160a01b0316610d22610b0b565b6001600160a01b031614610d485760405162461bcd60e51b815260040161061e9061203c565b6000336001600160a01b031647604051610d6190611bb7565b60006040518083038185875af1925050503d8060008114610d9e576040519150601f19603f3d011682016040523d82523d6000602084013e610da3565b606091505b5050905080610dc45760405162461bcd60e51b815260040161061e90612194565b50565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610dfd610f19565b6001600160a01b0316610e0e610b0b565b6001600160a01b031614610e345760405162461bcd60e51b815260040161061e9061203c565b6001600160a01b038116610e5a5760405162461bcd60e51b815260040161061e90611d0a565b610dc48161119a565b610e6b610f19565b6001600160a01b0316610e7c610b0b565b6001600160a01b031614610ea25760405162461bcd60e51b815260040161061e9061203c565b80600c6000828254610eb491906122cf565b909155505050565b60006001600160e01b031982166380ac58cd60e01b1480610eed57506001600160e01b03198216635b5e139f60e01b145b8061055d575061055d82611349565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f52826108fe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f9682610efc565b610fb25760405162461bcd60e51b815260040161061e90611e30565b6000610fbd836108fe565b9050806001600160a01b0316846001600160a01b03161480610ff85750836001600160a01b0316610fed846105f7565b6001600160a01b0316145b8061100857506110088185610dc7565b949350505050565b826001600160a01b0316611023826108fe565b6001600160a01b0316146110495760405162461bcd60e51b815260040161061e90612071565b6001600160a01b03821661106f5760405162461bcd60e51b815260040161061e90611d87565b61107a838383611362565b611085600082610f1d565b6001600160a01b03831660009081526003602052604081208054600192906110ae90849061231a565b90915550506001600160a01b03821660009081526003602052604081208054600192906110dc9084906122cf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611147600b6113eb565b6000611153600b6113f4565b905061115f82826113f8565b7fd03f50ee8b713b2b22537bb15fde1369376b07aab2298d0d6d7bfa6b16a71ff48160405161118e91906122c6565b60405180910390a15050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111f7848484611010565b61120384848484611412565b610c805760405162461bcd60e51b815260040161061e90611cb8565b6060600e80546105749061235d565b60608161125357506040805180820190915260018152600360fc1b6020820152610560565b8160005b811561127d578061126781612398565b91506112769050600a836122e7565b9150611257565b60008167ffffffffffffffff8111156112a657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112d0576020820181803683370190505b5090505b8415611008576112e560018361231a565b91506112f2600a866123b3565b6112fd9060306122cf565b60f81b81838151811061132057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611342600a866122e7565b94506112d4565b6001600160e01b031981166301ffc9a760e01b14919050565b61136d8383836106d6565b6001600160a01b038316611389576113848161152d565b6113ac565b816001600160a01b0316836001600160a01b0316146113ac576113ac8382611571565b6001600160a01b0382166113c8576113c38161160e565b6106d6565b826001600160a01b0316826001600160a01b0316146106d6576106d682826116e7565b80546001019055565b5490565b6108fa82826040518060200160405280600081525061172b565b6000611426846001600160a01b031661175e565b1561152257836001600160a01b031663150b7a02611442610f19565b8786866040518563ffffffff1660e01b81526004016114649493929190611bce565b602060405180830381600087803b15801561147e57600080fd5b505af19250505080156114ae575060408051601f3d908101601f191682019092526114ab91810190611ae2565b60015b611508573d8080156114dc576040519150601f19603f3d011682016040523d82523d6000602084013e6114e1565b606091505b5080516115005760405162461bcd60e51b815260040161061e90611cb8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611008565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161157e84610a29565b611588919061231a565b6000838152600760205260409020549091508082146115db576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116209060019061231a565b6000838152600960205260408120546008805493945090928490811061165657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061168557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116cb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006116f283610a29565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6117358383611764565b6117426000848484611412565b6106d65760405162461bcd60e51b815260040161061e90611cb8565b3b151590565b6001600160a01b03821661178a5760405162461bcd60e51b815260040161061e90611f6c565b61179381610efc565b156117b05760405162461bcd60e51b815260040161061e90611d50565b6117bc60008383611362565b6001600160a01b03821660009081526003602052604081208054600192906117e59084906122cf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461184f9061235d565b90600052602060002090601f01602090048101928261187157600085556118b7565b82601f1061188a57805160ff19168380011785556118b7565b828001600101855582156118b7579182015b828111156118b757825182559160200191906001019061189c565b506118c39291506118c7565b5090565b5b808211156118c357600081556001016118c8565b600067ffffffffffffffff808411156118f7576118f76123f3565b604051601f8501601f19168101602001828111828210171561191b5761191b6123f3565b60405284815291508183850186101561193357600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461056057600080fd5b600060208284031215611974578081fd5b610d028261194c565b6000806040838503121561198f578081fd5b6119988361194c565b91506119a66020840161194c565b90509250929050565b6000806000606084860312156119c3578081fd5b6119cc8461194c565b92506119da6020850161194c565b9150604084013590509250925092565b600080600080608085870312156119ff578081fd5b611a088561194c565b9350611a166020860161194c565b925060408501359150606085013567ffffffffffffffff811115611a38578182fd5b8501601f81018713611a48578182fd5b611a57878235602084016118dc565b91505092959194509250565b60008060408385031215611a75578182fd5b611a7e8361194c565b915060208301358015158114611a92578182fd5b809150509250929050565b60008060408385031215611aaf578182fd5b611ab88361194c565b946020939093013593505050565b600060208284031215611ad7578081fd5b8135610d0281612409565b600060208284031215611af3578081fd5b8151610d0281612409565b600060208284031215611b0f578081fd5b813567ffffffffffffffff811115611b25578182fd5b8201601f81018413611b35578182fd5b611008848235602084016118dc565b600060208284031215611b55578081fd5b5035919050565b60008151808452611b74816020860160208601612331565b601f01601f19169290920160200192915050565b60008351611b9a818460208801612331565b835190830190611bae818360208801612331565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0190830184611b5c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c4357835183529284019291840191600101611c27565b50909695505050505050565b901515815260200190565b600060208252610d026020830184611b5c565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602a908201527f45786365656473206d6178696d756d20737570706c79206f66204f7074696361604082015269361024b6363ab9b4b7b760b11b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526045908201527f4d696e696d756d20312026204d6178696d756d2035204f70746963616c20496c60408201527f6c7573696f6e732063616e206265206d696e74656420706572207472616e736160608201526431ba34b7b760d91b608082015260a00190565b90815260200190565b600082198211156122e2576122e26123c7565b500190565b6000826122f6576122f66123dd565b500490565b6000816000190483118215151615612315576123156123c7565b500290565b60008282101561232c5761232c6123c7565b500390565b60005b8381101561234c578181015183820152602001612334565b83811115610c805750506000910152565b60028104600182168061237157607f821691505b6020821081141561239257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123ac576123ac6123c7565b5060010190565b6000826123c2576123c26123dd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dc457600080fdfea2646970667358221220262b372a28796ab5933058b34195902ffa8415b092542fd2f8dc0075ac0e0e0664736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46357:2663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39872:300;;;;;;;;;;-1:-1:-1;39872:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28725:308::-;;;;;;;;;;-1:-1:-1;28725:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28248:411::-;;;;;;;;;;-1:-1:-1;28248:411:0;;;;;:::i;:::-;;:::i;:::-;;40675:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46624:30::-;;;;;;;;;;;;;:::i;29784:376::-;;;;;;;;;;-1:-1:-1;29784:376:0;;;;;:::i;:::-;;:::i;40256:343::-;;;;;;;;;;-1:-1:-1;40256:343:0;;;;;:::i;:::-;;:::i;30231:185::-;;;;;;;;;;-1:-1:-1;30231:185:0;;;;;:::i;:::-;;:::i;46886:385::-;;;;;;;;;;-1:-1:-1;46886:385:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40865:320::-;;;;;;;;;;-1:-1:-1;40865:320:0;;;;;:::i;:::-;;:::i;47279:101::-;;;;;;;;;;-1:-1:-1;47279:101:0;;;;;:::i;:::-;;:::i;26639:326::-;;;;;;;;;;-1:-1:-1;26639:326:0;;;;;:::i;:::-;;:::i;47953:733::-;;;;;;:::i;:::-;;:::i;26282:295::-;;;;;;;;;;-1:-1:-1;26282:295:0;;;;;:::i;:::-;;:::i;9739:94::-;;;;;;;;;;;;;:::i;47640:84::-;;;;;;;;;;;;;:::i;9088:87::-;;;;;;;;;;;;;:::i;27201:104::-;;;;;;;;;;;;;:::i;46537:41::-;;;;;;;;;;;;;:::i;29105:327::-;;;;;;;;;;-1:-1:-1;29105:327:0;;;;;:::i;:::-;;:::i;47388:95::-;;;;;;;;;;-1:-1:-1;47388:95:0;;;;;:::i;:::-;;:::i;46502:28::-;;;;;;;;;;;;;:::i;30487:365::-;;;;;;;;;;-1:-1:-1;30487:365:0;;;;;:::i;:::-;;:::i;27376:468::-;;;;;;;;;;-1:-1:-1;27376:468:0;;;;;:::i;:::-;;:::i;47732:185::-;;;;;;;;;;;;;:::i;29503:214::-;;;;;;;;;;-1:-1:-1;29503:214:0;;;;;:::i;:::-;;:::i;9988:229::-;;;;;;;;;;-1:-1:-1;9988:229:0;;;;;:::i;:::-;;:::i;47491:94::-;;;;;;;;;;-1:-1:-1;47491:94:0;;;;;:::i;:::-;;:::i;39872:300::-;40019:4;-1:-1:-1;;;;;;40061:50:0;;-1:-1:-1;;;40061:50:0;;:103;;;40128:36;40152:11;40128:23;:36::i;:::-;40041:123;;39872:300;;;;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;-1:-1:-1;;;28871:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;29001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29001:24:0;;28725:308::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;-1:-1:-1;;;;;28387:11:0;:2;-1:-1:-1;;;;;28387:11:0;;;28379:57;;;;-1:-1:-1;;;28379:57:0;;;;;;;:::i;:::-;28487:5;-1:-1:-1;;;;;28471:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;28471:21:0;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;28496:37::-;28449:168;;;;-1:-1:-1;;;28449:168:0;;;;;;;:::i;:::-;28630:21;28639:2;28643:7;28630:8;:21::i;:::-;28248:411;;;:::o;40675:113::-;40763:10;:17;40675:113;:::o;46624:30::-;;;;;;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;-1:-1:-1;;;29971:140:0;;;;;;;:::i;:::-;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;40256:343::-;40398:7;40453:23;40470:5;40453:16;:23::i;:::-;40445:5;:31;40423:124;;;;-1:-1:-1;;;40423:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40565:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40256:343::o;30231:185::-;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;46886:385::-;46975:16;47009:18;47030:17;47040:6;47030:9;:17::i;:::-;47009:38;;47060:25;47102:10;47088:25;;;;;;-1:-1:-1;;;47088:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47088:25:0;;47060:53;;47129:9;47124:112;47148:10;47144:1;:14;47124:112;;;47194:30;47214:6;47222:1;47194:19;:30::i;:::-;47180:8;47189:1;47180:11;;;;;;-1:-1:-1;;;47180:11:0;;;;;;;;;;;;;;;;;;:44;47160:3;;;;:::i;:::-;;;;47124:112;;;-1:-1:-1;47255:8:0;46886:385;-1:-1:-1;;;46886:385:0:o;40865:320::-;40985:7;41040:30;:28;:30::i;:::-;41032:5;:38;41010:132;;;;-1:-1:-1;;;41010:132:0;;;;;;;:::i;:::-;41160:10;41171:5;41160:17;;;;;;-1:-1:-1;;;41160:17:0;;;;;;;;;;;;;;;;;41153:24;;40865:320;;;:::o;47279:101::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47350:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47279:101:::0;:::o;26639:326::-;26756:7;26797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26797:16:0;26846:19;26824:110;;;;-1:-1:-1;;;26824:110:0;;;;;;;:::i;47953:733::-;48087:6;;48077;48061:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:32;;48039:124;;;;-1:-1:-1;;;48039:124:0;;;;;;;:::i;:::-;48192:7;:5;:7::i;:::-;-1:-1:-1;;;;;48178:21:0;:10;-1:-1:-1;;;;;48178:21:0;;48174:419;;48224:10;;;;48216:43;;;;-1:-1:-1;;;48216:43:0;;;;;;;:::i;:::-;48309:1;48300:6;:10;:25;;;;;48324:1;48314:6;:11;;48300:25;48274:156;;;;-1:-1:-1;;;48274:156:0;;;;;;;:::i;:::-;48492:6;48484:5;;:14;;;;:::i;:::-;48471:9;:27;;48445:136;;;;-1:-1:-1;;;48445:136:0;;;;;;;:::i;:::-;48610:9;48605:74;48629:6;48625:1;:10;48605:74;;;48657:10;48663:3;48657:5;:10::i;:::-;48637:3;;;;:::i;:::-;;;;48605:74;;26282:295;26399:7;-1:-1:-1;;;;;26446:19:0;;26424:111;;;;-1:-1:-1;;;26424:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26553:16:0;;;;;:9;:16;;;;;;;26282:295::o;9739:94::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;47640:84::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47706:10:::1;::::0;;-1:-1:-1;;47692:24:0;::::1;47706:10;::::0;;::::1;47705:11;47692:24;::::0;;47640:84::o;9088:87::-;9161:6;;-1:-1:-1;;;;;9161:6:0;9088:87;:::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;46537:41::-;;;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;-1:-1:-1;;;;;29240:24:0;:8;-1:-1:-1;;;;;29240:24:0;;;29232:62;;;;-1:-1:-1;;;29232:62:0;;;;;;;:::i;:::-;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;-1:-1:-1;;;;;29307:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29307:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29307:53:0;;;;;;;;;;;29391:12;:10;:12::i;:::-;-1:-1:-1;;;;;29376:48:0;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;47388:95::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47458:5:::1;:17:::0;47388:95::o;46502:28::-;;;;:::o;30487:365::-;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;-1:-1:-1;;;30654:140:0;;;;;;;:::i;:::-;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;:::-;30487:365;;;;:::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;-1:-1:-1;;;27525:113:0;;;;;;;:::i;:::-;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27740:1;27722:7;27716:21;:25;:120;;;;;;;;;;;;;;;;;27785:7;27794:18;:7;:16;:18::i;:::-;27768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27716:120;27696:140;27376:468;-1:-1:-1;;;27376:468:0:o;47732:185::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47786:12:::1;47812:10;-1:-1:-1::0;;;;;47804:24:0::1;47836:21;47804:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47785:77;;;47881:7;47873:36;;;;-1:-1:-1::0;;;47873:36:0::1;;;;;;;:::i;:::-;9379:1;47732:185::o:0;29503:214::-;-1:-1:-1;;;;;29674:25:0;;;29645:4;29674:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29503:214::o;9988:229::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10091:22:0;::::1;10069:110;;;;-1:-1:-1::0;;;10069:110:0::1;;;;;;;:::i;:::-;10190:19;10200:8;10190:9;:19::i;47491:94::-:0;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47570:7:::1;47560:6;;:17;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;47491:94:0:o;25863:355::-;26010:4;-1:-1:-1;;;;;;26052:40:0;;-1:-1:-1;;;26052:40:0;;:105;;-1:-1:-1;;;;;;;26109:48:0;;-1:-1:-1;;;26109:48:0;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;32399:127::-;32464:4;32488:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32488:16:0;:30;;;32399:127::o;2061:98::-;2141:10;2061:98;:::o;36522:174::-;36597:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36597:29:0;-1:-1:-1;;;;;36597:29:0;;;;;;;;:24;;36651:23;36597:24;36651:14;:23::i;:::-;-1:-1:-1;;;;;36642:46:0;;;;;;;;;;;36522:174;;:::o;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;-1:-1:-1;;;32844:110:0;;;;;;;:::i;:::-;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;-1:-1:-1;;;;;33023:16:0;:7;-1:-1:-1;;;;;33023:16:0;;:64;;;;33080:7;-1:-1:-1;;;;;33056:31:0;:20;33068:7;33056:11;:20::i;:::-;-1:-1:-1;;;;;33056:31:0;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;:::-;33015:122;32693:452;-1:-1:-1;;;;32693:452:0:o;35789:615::-;35962:4;-1:-1:-1;;;;;35935:31:0;:23;35950:7;35935:14;:23::i;:::-;-1:-1:-1;;;;;35935:31:0;;35913:122;;;;-1:-1:-1;;;35913:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36054:16:0;;36046:65;;;;-1:-1:-1;;;36046:65:0;;;;;;;:::i;:::-;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;-1:-1:-1;;;;;36270:15:0;;;;;;:9;:15;;;;;:20;;36289:1;;36270:15;:20;;36289:1;;36270:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36301:13:0;;;;;;:9;:13;;;;;:18;;36318:1;;36301:13;:18;;36318:1;;36301:18;:::i;:::-;;;;-1:-1:-1;;36330:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36330:21:0;-1:-1:-1;;;;;36330:21:0;;;;;;;;;36369:27;;36330:16;;36369:27;;;;;;;35789:615;;;:::o;48694:202::-;48741:20;:8;:18;:20::i;:::-;48772:15;48790:18;:8;:16;:18::i;:::-;48772:36;;48819:23;48829:3;48834:7;48819:9;:23::i;:::-;48858:30;48880:7;48858:30;;;;;;:::i;:::-;;;;;;;;48694:202;;:::o;10225:173::-;10300:6;;;-1:-1:-1;;;;;10317:17:0;;;-1:-1:-1;;;;;;10317:17:0;;;;;;;10350:40;;10300:6;;;10317:17;10300:6;;10350:40;;10281:16;;10350:40;10225:173;;:::o;31734:352::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31952:48;31975:4;31981:2;31985:7;31994:5;31952:22;:48::i;:::-;31930:148;;;;-1:-1:-1;;;31930:148:0;;;;;;;:::i;48904:113::-;48964:13;48997:12;48990:19;;;;;:::i;12730:723::-;12786:13;13007:10;13003:53;;-1:-1:-1;13034:10:0;;;;;;;;;;;;-1:-1:-1;;;13034:10:0;;;;;;13003:53;13081:5;13066:12;13122:78;13129:9;;13122:78;;13155:8;;;;:::i;:::-;;-1:-1:-1;13178:10:0;;-1:-1:-1;13186:2:0;13178:10;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;-1:-1:-1;;;13232:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13232:17:0;;13210:39;;13260:154;13267:10;;13260:154;;13294:11;13304:1;13294:11;;:::i;:::-;;-1:-1:-1;13363:10:0;13371:2;13363:5;:10;:::i;:::-;13350:24;;:2;:24;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;-1:-1:-1;;;13320:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13320:56:0;;;;;;;;-1:-1:-1;13391:11:0;13400:2;13391:11;;:::i;:::-;;;13260:154;;12209:207;-1:-1:-1;;;;;;12368:40:0;;-1:-1:-1;;;12368:40:0;12209:207;;;:::o;41798:589::-;41942:45;41969:4;41975:2;41979:7;41942:26;:45::i;:::-;-1:-1:-1;;;;;42004:18:0;;42000:187;;42039:40;42071:7;42039:31;:40::i;:::-;42000:187;;;42109:2;-1:-1:-1;;;;;42101:10:0;:4;-1:-1:-1;;;;;42101:10:0;;42097:90;;42128:47;42161:4;42167:7;42128:32;:47::i;:::-;-1:-1:-1;;;;;42201:16:0;;42197:183;;42234:45;42271:7;42234:36;:45::i;:::-;42197:183;;;42307:4;-1:-1:-1;;;;;42301:10:0;:2;-1:-1:-1;;;;;42301:10:0;;42297:83;;42328:40;42356:2;42360:7;42328:27;:40::i;970:127::-;1059:19;;1077:1;1059:19;;;970:127::o;848:114::-;940:14;;848:114::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;37261:984::-;37416:4;37437:15;:2;-1:-1:-1;;;;;37437:13:0;;:15::i;:::-;37433:805;;;37506:2;-1:-1:-1;;;;;37490:36:0;;37549:12;:10;:12::i;:::-;37584:4;37611:7;37641:5;37490:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37490:175:0;;;;;;;;-1:-1:-1;;37490:175:0;;;;;;;;;;;;:::i;:::-;;;37469:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37852:13:0;;37848:320;;37895:108;;-1:-1:-1;;;37895:108:0;;;;;;;:::i;37848:320::-;38118:6;38112:13;38103:6;38099:2;38095:15;38088:38;37469:714;-1:-1:-1;;;;;;37729:55:0;-1:-1:-1;;;37729:55:0;;-1:-1:-1;37722:62:0;;37433:805;-1:-1:-1;38222:4:0;37261:984;;;;;;:::o;43110:164::-;43214:10;:17;;43187:24;;;;:15;:24;;;;;:44;;;43242:24;;;;;;;;;;;;43110:164::o;43901:1002::-;44181:22;44231:1;44206:22;44223:4;44206:16;:22::i;:::-;:26;;;;:::i;:::-;44243:18;44264:26;;;:17;:26;;;;;;44181:51;;-1:-1:-1;44397:28:0;;;44393:328;;-1:-1:-1;;;;;44464:18:0;;44442:19;44464:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44515:30;;;;;;:44;;;44632:30;;:17;:30;;;;;:43;;;44393:328;-1:-1:-1;44817:26:0;;;;:17;:26;;;;;;;;44810:33;;;-1:-1:-1;;;;;44861:18:0;;;;;:12;:18;;;;;:34;;;;;;;44854:41;43901:1002::o;45198:1079::-;45476:10;:17;45451:22;;45476:21;;45496:1;;45476:21;:::i;:::-;45508:18;45529:24;;;:15;:24;;;;;;45902:10;:26;;45451:46;;-1:-1:-1;45529:24:0;;45451:46;;45902:26;;;;-1:-1:-1;;;45902:26:0;;;;;;;;;;;;;;;;;45880:48;;45966:11;45941:10;45952;45941:22;;;;;;-1:-1:-1;;;45941:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46046:28;;;:15;:28;;;;;;;:41;;;46218:24;;;;;46211:31;46253:10;:16;;;;;-1:-1:-1;;;46253:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45198:1079;;;;:::o;42688:221::-;42773:14;42790:20;42807:2;42790:16;:20::i;:::-;-1:-1:-1;;;;;42821:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42866:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42688:221:0:o;33824:321::-;33954:18;33960:2;33964:7;33954:5;:18::i;:::-;34005:54;34036:1;34040:2;34044:7;34053:5;34005:22;:54::i;:::-;33983:154;;;;-1:-1:-1;;;33983:154:0;;;;;;;:::i;15283:387::-;15606:20;15654:8;;;15283:387::o;34481:382::-;-1:-1:-1;;;;;34561:16:0;;34553:61;;;;-1:-1:-1;;;34553:61:0;;;;;;;:::i;:::-;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;-1:-1:-1;;;34625:58:0;;;;;;;:::i;:::-;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;-1:-1:-1;;;;;34754:13:0;;;;;;:9;:13;;;;;:18;;34771:1;;34754:13;:18;;34771:1;;34754:18;:::i;:::-;;;;-1:-1:-1;;34783:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34783:21:0;-1:-1:-1;;;;;34783:21:0;;;;;;;;34822:33;;34783:16;;;34822:33;;34783:16;;34822:33;34481:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:1:o;4936:205::-;5136:3;5127:14::o;5146:203::-;-1:-1:-1;;;;;5310:32:1;;;;5292:51;;5280:2;5265:18;;5247:102::o;5354:490::-;-1:-1:-1;;;;;5623:15:1;;;5605:34;;5675:15;;5670:2;5655:18;;5648:43;5722:2;5707:18;;5700:34;;;5770:3;5765:2;5750:18;;5743:31;;;5354:490;;5791:47;;5818:19;;5810:6;5791:47;:::i;:::-;5783:55;5557:287;-1:-1:-1;;;;;;5557:287:1:o;5849:635::-;6020:2;6072:21;;;6142:13;;6045:18;;;6164:22;;;5849:635;;6020:2;6243:15;;;;6217:2;6202:18;;;5849:635;6289:169;6303:6;6300:1;6297:13;6289:169;;;6364:13;;6352:26;;6433:15;;;;6398:12;;;;6325:1;6318:9;6289:169;;;-1:-1:-1;6475:3:1;;6000:484;-1:-1:-1;;;;;;6000:484:1:o;6489:187::-;6654:14;;6647:22;6629:41;;6617:2;6602:18;;6584:92::o;6681:221::-;;6830:2;6819:9;6812:21;6850:46;6892:2;6881:9;6877:18;6869:6;6850:46;:::i;6907:407::-;7109:2;7091:21;;;7148:2;7128:18;;;7121:30;7187:34;7182:2;7167:18;;7160:62;-1:-1:-1;;;7253:2:1;7238:18;;7231:41;7304:3;7289:19;;7081:233::o;7319:414::-;7521:2;7503:21;;;7560:2;7540:18;;;7533:30;7599:34;7594:2;7579:18;;7572:62;-1:-1:-1;;;7665:2:1;7650:18;;7643:48;7723:3;7708:19;;7493:240::o;7738:402::-;7940:2;7922:21;;;7979:2;7959:18;;;7952:30;8018:34;8013:2;7998:18;;7991:62;-1:-1:-1;;;8084:2:1;8069:18;;8062:36;8130:3;8115:19;;7912:228::o;8145:352::-;8347:2;8329:21;;;8386:2;8366:18;;;8359:30;8425;8420:2;8405:18;;8398:58;8488:2;8473:18;;8319:178::o;8502:400::-;8704:2;8686:21;;;8743:2;8723:18;;;8716:30;8782:34;8777:2;8762:18;;8755:62;-1:-1:-1;;;8848:2:1;8833:18;;8826:34;8892:3;8877:19;;8676:226::o;8907:349::-;9109:2;9091:21;;;9148:2;9128:18;;;9121:30;9187:27;9182:2;9167:18;;9160:55;9247:2;9232:18;;9081:175::o;9261:344::-;9463:2;9445:21;;;9502:2;9482:18;;;9475:30;-1:-1:-1;;;9536:2:1;9521:18;;9514:50;9596:2;9581:18;;9435:170::o;9610:408::-;9812:2;9794:21;;;9851:2;9831:18;;;9824:30;9890:34;9885:2;9870:18;;9863:62;-1:-1:-1;;;9956:2:1;9941:18;;9934:42;10008:3;9993:19;;9784:234::o;10023:420::-;10225:2;10207:21;;;10264:2;10244:18;;;10237:30;10303:34;10298:2;10283:18;;10276:62;10374:26;10369:2;10354:18;;10347:54;10433:3;10418:19;;10197:246::o;10448:406::-;10650:2;10632:21;;;10689:2;10669:18;;;10662:30;10728:34;10723:2;10708:18;;10701:62;-1:-1:-1;;;10794:2:1;10779:18;;10772:40;10844:3;10829:19;;10622:232::o;10859:405::-;11061:2;11043:21;;;11100:2;11080:18;;;11073:30;11139:34;11134:2;11119:18;;11112:62;-1:-1:-1;;;11205:2:1;11190:18;;11183:39;11254:3;11239:19;;11033:231::o;11269:356::-;11471:2;11453:21;;;11490:18;;;11483:30;11549:34;11544:2;11529:18;;11522:62;11616:2;11601:18;;11443:182::o;11630:408::-;11832:2;11814:21;;;11871:2;11851:18;;;11844:30;11910:34;11905:2;11890:18;;11883:62;-1:-1:-1;;;11976:2:1;11961:18;;11954:42;12028:3;12013:19;;11804:234::o;12043:411::-;12245:2;12227:21;;;12284:2;12264:18;;;12257:30;12323:34;12318:2;12303:18;;12296:62;-1:-1:-1;;;12389:2:1;12374:18;;12367:45;12444:3;12429:19;;12217:237::o;12459:356::-;12661:2;12643:21;;;12680:18;;;12673:30;12739:34;12734:2;12719:18;;12712:62;12806:2;12791:18;;12633:182::o;12820:405::-;13022:2;13004:21;;;13061:2;13041:18;;;13034:30;13100:34;13095:2;13080:18;;13073:62;-1:-1:-1;;;13166:2:1;13151:18;;13144:39;13215:3;13200:19;;12994:231::o;13230:411::-;13432:2;13414:21;;;13471:2;13451:18;;;13444:30;13510:34;13505:2;13490:18;;13483:62;-1:-1:-1;;;13576:2:1;13561:18;;13554:45;13631:3;13616:19;;13404:237::o;13646:406::-;13848:2;13830:21;;;13887:2;13867:18;;;13860:30;13926:34;13921:2;13906:18;;13899:62;-1:-1:-1;;;13992:2:1;13977:18;;13970:40;14042:3;14027:19;;13820:232::o;14057:397::-;14259:2;14241:21;;;14298:2;14278:18;;;14271:30;14337:34;14332:2;14317:18;;14310:62;-1:-1:-1;;;14403:2:1;14388:18;;14381:31;14444:3;14429:19;;14231:223::o;14459:340::-;14661:2;14643:21;;;14700:2;14680:18;;;14673:30;-1:-1:-1;;;14734:2:1;14719:18;;14712:46;14790:2;14775:18;;14633:166::o;14804:413::-;15006:2;14988:21;;;15045:2;15025:18;;;15018:30;15084:34;15079:2;15064:18;;15057:62;-1:-1:-1;;;15150:2:1;15135:18;;15128:47;15207:3;15192:19;;14978:239::o;15222:408::-;15424:2;15406:21;;;15463:2;15443:18;;;15436:30;15502:34;15497:2;15482:18;;15475:62;-1:-1:-1;;;15568:2:1;15553:18;;15546:42;15620:3;15605:19;;15396:234::o;15635:473::-;15837:2;15819:21;;;15876:2;15856:18;;;15849:30;15915:34;15910:2;15895:18;;15888:62;15986:34;15981:2;15966:18;;15959:62;-1:-1:-1;;;16052:3:1;16037:19;;16030:36;16098:3;16083:19;;15809:299::o;16113:177::-;16259:25;;;16247:2;16232:18;;16214:76::o;16295:128::-;;16366:1;16362:6;16359:1;16356:13;16353:2;;;16372:18;;:::i;:::-;-1:-1:-1;16408:9:1;;16343:80::o;16428:120::-;;16494:1;16484:2;;16499:18;;:::i;:::-;-1:-1:-1;16533:9:1;;16474:74::o;16553:168::-;;16659:1;16655;16651:6;16647:14;16644:1;16641:21;16636:1;16629:9;16622:17;16618:45;16615:2;;;16666:18;;:::i;:::-;-1:-1:-1;16706:9:1;;16605:116::o;16726:125::-;;16794:1;16791;16788:8;16785:2;;;16799:18;;:::i;:::-;-1:-1:-1;16836:9:1;;16775:76::o;16856:258::-;16928:1;16938:113;16952:6;16949:1;16946:13;16938:113;;;17028:11;;;17022:18;17009:11;;;17002:39;16974:2;16967:10;16938:113;;;17069:6;17066:1;17063:13;17060:2;;;-1:-1:-1;;17104:1:1;17086:16;;17079:27;16909:205::o;17119:380::-;17204:1;17194:12;;17251:1;17241:12;;;17262:2;;17316:4;17308:6;17304:17;17294:27;;17262:2;17369;17361:6;17358:14;17338:18;17335:38;17332:2;;;17415:10;17410:3;17406:20;17403:1;17396:31;17450:4;17447:1;17440:15;17478:4;17475:1;17468:15;17332:2;;17174:325;;;:::o;17504:135::-;;-1:-1:-1;;17564:17:1;;17561:2;;;17584:18;;:::i;:::-;-1:-1:-1;17631:1:1;17620:13;;17551:88::o;17644:112::-;;17702:1;17692:2;;17707:18;;:::i;:::-;-1:-1:-1;17741:9:1;;17682:74::o;17761:127::-;17822:10;17817:3;17813:20;17810:1;17803:31;17853:4;17850:1;17843:15;17877:4;17874:1;17867:15;17893:127;17954:10;17949:3;17945:20;17942:1;17935:31;17985:4;17982:1;17975:15;18009:4;18006:1;17999:15;18025:127;18086:10;18081:3;18077:20;18074:1;18067:31;18117:4;18114:1;18107:15;18141:4;18138:1;18131:15;18157:133;-1:-1:-1;;;;;;18233:32:1;;18223:43;;18213:2;;18280:1;18277;18270:12

Swarm Source

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