ETH Price: $3,297.81 (-3.73%)
Gas: 8 Gwei

Token

Phlipped Phunks (PhlippedPhunks)
 

Overview

Max Total Supply

1,398 PhlippedPhunks

Holders

417

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
putinsuckmydick.eth
Balance
1 PhlippedPhunks
0x1850036502fd0db44bde0b05f1e2144c70e0ed0b
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:
PhlippedPhunks

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/phunks.sol





pragma solidity ^0.8.10;



contract PhlippedPhunks is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = "";
  uint64 public cost = 0.01 ether;
  uint16 public maxSupply = 3000;
  uint16 public numFree = 500;
  uint8 public maxMintAmount = 20;
  bool public paused = false;

  constructor() ERC721("Phlipped Phunks", "PhlippedPhunks") {
    setBaseURI("ipfs://Qmbhn2PkW26i3PmWPmyADn6Dop89So4CFoMkgE91ocY3sW/");
    mint(1);
  }

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

  // public
  function mint(uint8 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);
    if(supply>numFree){
        require(msg.value >= cost * _mintAmount);
    }
    

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  //only owner
  function setCost(uint64 _newCost) public onlyOwner() {
    cost = _newCost;
  }

  function setmaxMintAmount(uint8 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

  function setFreeAmount(uint16 _newFreeMints) public onlyOwner() {
    numFree = _newFreeMints;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 


  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numFree","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_newCost","type":"uint64"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newFreeMints","type":"uint16"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_newmaxMintAmount","type":"uint8"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b91600c9162000959565b50600d80546001600160701b0319166c1401f40bb8002386f26fc100001790553480156200004857600080fd5b50604080518082018252600f81526e50686c6970706564205068756e6b7360881b60208083019182528351808501909452600e84526d50686c69707065645068756e6b7360901b908401528151919291620000a69160009162000959565b508051620000bc90600190602084019062000959565b505050620000d9620000d36200010f60201b60201c565b62000113565b620000fd604051806060016040528060368152602001620030516036913962000165565b620001096001620001de565b62000bb1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001da90600b90602084019062000959565b5050565b6000620001ea60085490565b600d549091506d0100000000000000000000000000900460ff16156200020f57600080fd5b600d5460ff6c01000000000000000000000000909104811690831611156200023657600080fd5b600d5468010000000000000000900461ffff166200025860ff84168362000a15565b11156200026457600080fd5b600d546a0100000000000000000000900461ffff16811115620002b357600d546200029d9060ff8416906001600160401b031662000a30565b6001600160401b0316341015620002b357600080fd5b60015b8260ff168111620002ed57620002d833620002d2838562000a15565b620002f2565b80620002e48162000a62565b915050620002b6565b505050565b620001da8282604051806020016040528060008152506200031460201b60201c565b62000320838362000387565b6200032f6000848484620004dd565b620002ed5760405162461bcd60e51b815260206004820152603260248201526000805160206200303183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001bc565b6001600160a01b038216620003df5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001bc565b6000818152600260205260409020546001600160a01b031615620004465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001bc565b620004546000838362000636565b6001600160a01b03821660009081526003602052604081208054600192906200047f90849062000a15565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620004fe846001600160a01b03166200071260201b620011ec1760201c565b156200062a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200053890339089908890889060040162000a80565b6020604051808303816000875af192505050801562000576575060408051601f3d908101601f19168201909252620005739181019062000afb565b60015b6200060f573d808015620005a7576040519150601f19603f3d011682016040523d82523d6000602084013e620005ac565b606091505b508051620006075760405162461bcd60e51b815260206004820152603260248201526000805160206200303183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001bc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200062e565b5060015b949350505050565b6200064e838383620002ed60201b620009751760201c565b6001600160a01b038316620006ac57620006a681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620006d2565b816001600160a01b0316836001600160a01b031614620006d257620006d2838262000718565b6001600160a01b038216620006ec57620002ed81620007c5565b826001600160a01b0316826001600160a01b031614620002ed57620002ed82826200087f565b3b151590565b600060016200073284620008d060201b62000ed31760201c565b6200073e919062000b2e565b60008381526007602052604090205490915080821462000792576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007d99060019062000b2e565b6000838152600960205260408120546008805493945090928490811062000804576200080462000b48565b90600052602060002001549050806008838154811062000828576200082862000b48565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000863576200086362000b5e565b6001900381819060005260206000200160009055905550505050565b60006200089783620008d060201b62000ed31760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b0382166200093d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001bc565b506001600160a01b031660009081526003602052604090205490565b828054620009679062000b74565b90600052602060002090601f0160209004810192826200098b5760008555620009d6565b82601f10620009a657805160ff1916838001178555620009d6565b82800160010185558215620009d6579182015b82811115620009d6578251825591602001919060010190620009b9565b50620009e4929150620009e8565b5090565b5b80821115620009e45760008155600101620009e9565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000a2b5762000a2b620009ff565b500190565b60006001600160401b038281168482168115158284048211161562000a595762000a59620009ff565b02949350505050565b600060001982141562000a795762000a79620009ff565b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000acf5785810182015185820160a00152810162000ab1565b8281111562000ae257600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60006020828403121562000b0e57600080fd5b81516001600160e01b03198116811462000b2757600080fd5b9392505050565b60008282101562000b435762000b43620009ff565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600181811c9082168062000b8957607f821691505b6020821081141562000bab57634e487b7160e01b600052602260045260246000fd5b50919050565b6124708062000bc16000396000f3fe6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105f6578063da3ef23f14610618578063e985e9c514610638578063f2fde38b14610681578063f8f53e6f146106a157600080fd5b8063a22cb46514610581578063b88d4fde146105a1578063c6682862146105c1578063c87b56dd146105d657600080fd5b80636edbba2e116100e75780636edbba2e146104e457806370a0823114610519578063715018a6146105395780638da5cb5b1461054e57806395d89b411461056c57600080fd5b80635c975abb1461047b5780636352211e1461049c5780636c0360eb146104bc5780636ecd2306146104d157600080fd5b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146103ce578063438b6300146103ee57806345e520f91461041b5780634f6ccce71461043b57806355f804b31461045b57600080fd5b806323b872dd146103665780632716d6a7146103865780632f745c59146103a65780633ccfd60b146103c657600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806313faede6146102da57806318160ddd14610314578063239c70ae1461033357600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611d43565b6106c1565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611d75565b6106ec565b005b34801561026c57600080fd5b5061027561073d565b6040516102359190611de8565b34801561028e57600080fd5b506102a261029d366004611dfb565b6107cf565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611e2b565b610864565b3480156102e657600080fd5b50600d546102fb9067ffffffffffffffff1681565b60405167ffffffffffffffff9091168152602001610235565b34801561032057600080fd5b506008545b604051908152602001610235565b34801561033f57600080fd5b50600d5461035490600160601b900460ff1681565b60405160ff9091168152602001610235565b34801561037257600080fd5b5061025e610381366004611e55565b61097a565b34801561039257600080fd5b5061025e6103a1366004611e91565b6109ab565b3480156103b257600080fd5b506103256103c1366004611e2b565b6109f7565b61025e610a8d565b3480156103da57600080fd5b5061025e6103e9366004611e55565b610b0f565b3480156103fa57600080fd5b5061040e610409366004611eb5565b610b2a565b6040516102359190611ed0565b34801561042757600080fd5b5061025e610436366004611f14565b610bcc565b34801561044757600080fd5b50610325610456366004611dfb565b610c1a565b34801561046757600080fd5b5061025e610476366004611fca565b610cad565b34801561048757600080fd5b50600d5461022990600160681b900460ff1681565b3480156104a857600080fd5b506102a26104b7366004611dfb565b610cee565b3480156104c857600080fd5b50610275610d65565b61025e6104df366004612013565b610df3565b3480156104f057600080fd5b50600d5461050690600160501b900461ffff1681565b60405161ffff9091168152602001610235565b34801561052557600080fd5b50610325610534366004611eb5565b610ed3565b34801561054557600080fd5b5061025e610f5a565b34801561055a57600080fd5b50600a546001600160a01b03166102a2565b34801561057857600080fd5b50610275610f90565b34801561058d57600080fd5b5061025e61059c366004612036565b610f9f565b3480156105ad57600080fd5b5061025e6105bc366004612069565b610faa565b3480156105cd57600080fd5b50610275610fe2565b3480156105e257600080fd5b506102756105f1366004611dfb565b610fef565b34801561060257600080fd5b50600d5461050690600160401b900461ffff1681565b34801561062457600080fd5b5061025e610633366004611fca565b6110cd565b34801561064457600080fd5b506102296106533660046120e5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068d57600080fd5b5061025e61069c366004611eb5565b61110a565b3480156106ad57600080fd5b5061025e6106bc366004612013565b6111a2565b60006001600160e01b0319821663780e9d6360e01b14806106e657506106e6826111f2565b92915050565b600a546001600160a01b0316331461071f5760405162461bcd60e51b81526004016107169061210f565b60405180910390fd5b600d8054911515600160681b0260ff60681b19909216919091179055565b60606000805461074c90612144565b80601f016020809104026020016040519081016040528092919081815260200182805461077890612144565b80156107c55780601f1061079a576101008083540402835291602001916107c5565b820191906000526020600020905b8154815290600101906020018083116107a857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610716565b506000908152600460205260409020546001600160a01b031690565b600061086f82610cee565b9050806001600160a01b0316836001600160a01b031614156108dd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610716565b336001600160a01b03821614806108f957506108f98133610653565b61096b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610716565b6109758383611242565b505050565b61098433826112b0565b6109a05760405162461bcd60e51b81526004016107169061217f565b6109758383836113a7565b600a546001600160a01b031633146109d55760405162461bcd60e51b81526004016107169061210f565b600d805461ffff909216600160501b0261ffff60501b19909216919091179055565b6000610a0283610ed3565b8210610a645760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610716565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ab75760405162461bcd60e51b81526004016107169061210f565b604051600090339047908381818185875af1925050503d8060008114610af9576040519150601f19603f3d011682016040523d82523d6000602084013e610afe565b606091505b5050905080610b0c57600080fd5b50565b61097583838360405180602001604052806000815250610faa565b60606000610b3783610ed3565b905060008167ffffffffffffffff811115610b5457610b54611f3e565b604051908082528060200260200182016040528015610b7d578160200160208202803683370190505b50905060005b82811015610bc457610b9585826109f7565b828281518110610ba757610ba76121d0565b602090810291909101015280610bbc816121fc565b915050610b83565b509392505050565b600a546001600160a01b03163314610bf65760405162461bcd60e51b81526004016107169061210f565b600d805467ffffffffffffffff191667ffffffffffffffff92909216919091179055565b6000610c2560085490565b8210610c885760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610716565b60088281548110610c9b57610c9b6121d0565b90600052602060002001549050919050565b600a546001600160a01b03163314610cd75760405162461bcd60e51b81526004016107169061210f565b8051610cea90600b906020840190611c94565b5050565b6000818152600260205260408120546001600160a01b0316806106e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610716565b600b8054610d7290612144565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9e90612144565b8015610deb5780601f10610dc057610100808354040283529160200191610deb565b820191906000526020600020905b815481529060010190602001808311610dce57829003601f168201915b505050505081565b6000610dfe60085490565b600d54909150600160681b900460ff1615610e1857600080fd5b600d5460ff600160601b90910481169083161115610e3557600080fd5b600d54600160401b900461ffff16610e5060ff841683612217565b1115610e5b57600080fd5b600d54600160501b900461ffff16811115610ea157600d54610e8b9060ff84169067ffffffffffffffff1661222f565b67ffffffffffffffff16341015610ea157600080fd5b60015b8260ff16811161097557610ec133610ebc8385612217565b611552565b80610ecb816121fc565b915050610ea4565b60006001600160a01b038216610f3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610716565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f845760405162461bcd60e51b81526004016107169061210f565b610f8e600061156c565b565b60606001805461074c90612144565b610cea3383836115be565b610fb433836112b0565b610fd05760405162461bcd60e51b81526004016107169061217f565b610fdc8484848461168d565b50505050565b600c8054610d7290612144565b6000818152600260205260409020546060906001600160a01b031661106e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610716565b60006110786116c0565b9050600081511161109857604051806020016040528060008152506110c6565b806110a2846116cf565b600c6040516020016110b69392919061225f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110f75760405162461bcd60e51b81526004016107169061210f565b8051610cea90600c906020840190611c94565b600a546001600160a01b031633146111345760405162461bcd60e51b81526004016107169061210f565b6001600160a01b0381166111995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610716565b610b0c8161156c565b600a546001600160a01b031633146111cc5760405162461bcd60e51b81526004016107169061210f565b600d805460ff909216600160601b0260ff60601b19909216919091179055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061122357506001600160e01b03198216635b5e139f60e01b145b806106e657506301ffc9a760e01b6001600160e01b03198316146106e6565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061127782610cee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610716565b600061133483610cee565b9050806001600160a01b0316846001600160a01b0316148061136f5750836001600160a01b0316611364846107cf565b6001600160a01b0316145b8061139f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113ba82610cee565b6001600160a01b0316146114225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610716565b6001600160a01b0382166114845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610716565b61148f8383836117cd565b61149a600082611242565b6001600160a01b03831660009081526003602052604081208054600192906114c3908490612323565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f1908490612217565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cea828260405180602001604052806000815250611885565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116205760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610716565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116988484846113a7565b6116a4848484846118b8565b610fdc5760405162461bcd60e51b81526004016107169061233a565b6060600b805461074c90612144565b6060816116f35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171d5780611707816121fc565b91506117169050600a836123a2565b91506116f7565b60008167ffffffffffffffff81111561173857611738611f3e565b6040519080825280601f01601f191660200182016040528015611762576020820181803683370190505b5090505b841561139f57611777600183612323565b9150611784600a866123b6565b61178f906030612217565b60f81b8183815181106117a4576117a46121d0565b60200101906001600160f81b031916908160001a9053506117c6600a866123a2565b9450611766565b6001600160a01b0383166118285761182381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61184b565b816001600160a01b0316836001600160a01b03161461184b5761184b83826119b6565b6001600160a01b0382166118625761097581611a53565b826001600160a01b0316826001600160a01b031614610975576109758282611b02565b61188f8383611b46565b61189c60008484846118b8565b6109755760405162461bcd60e51b81526004016107169061233a565b60006001600160a01b0384163b156119ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118fc9033908990889088906004016123ca565b6020604051808303816000875af1925050508015611937575060408051601f3d908101601f1916820190925261193491810190612407565b60015b611991573d808015611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b5080516119895760405162461bcd60e51b81526004016107169061233a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061139f565b506001949350505050565b600060016119c384610ed3565b6119cd9190612323565b600083815260076020526040902054909150808214611a20576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a6590600190612323565b60008381526009602052604081205460088054939450909284908110611a8d57611a8d6121d0565b906000526020600020015490508060088381548110611aae57611aae6121d0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ae657611ae6612424565b6001900381819060005260206000200160009055905550505050565b6000611b0d83610ed3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b9c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610716565b6000818152600260205260409020546001600160a01b031615611c015760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610716565b611c0d600083836117cd565b6001600160a01b0382166000908152600360205260408120805460019290611c36908490612217565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ca090612144565b90600052602060002090601f016020900481019282611cc25760008555611d08565b82601f10611cdb57805160ff1916838001178555611d08565b82800160010185558215611d08579182015b82811115611d08578251825591602001919060010190611ced565b50611d14929150611d18565b5090565b5b80821115611d145760008155600101611d19565b6001600160e01b031981168114610b0c57600080fd5b600060208284031215611d5557600080fd5b81356110c681611d2d565b80358015158114611d7057600080fd5b919050565b600060208284031215611d8757600080fd5b6110c682611d60565b60005b83811015611dab578181015183820152602001611d93565b83811115610fdc5750506000910152565b60008151808452611dd4816020860160208601611d90565b601f01601f19169290920160200192915050565b6020815260006110c66020830184611dbc565b600060208284031215611e0d57600080fd5b5035919050565b80356001600160a01b0381168114611d7057600080fd5b60008060408385031215611e3e57600080fd5b611e4783611e14565b946020939093013593505050565b600080600060608486031215611e6a57600080fd5b611e7384611e14565b9250611e8160208501611e14565b9150604084013590509250925092565b600060208284031215611ea357600080fd5b813561ffff811681146110c657600080fd5b600060208284031215611ec757600080fd5b6110c682611e14565b6020808252825182820181905260009190848201906040850190845b81811015611f0857835183529284019291840191600101611eec565b50909695505050505050565b600060208284031215611f2657600080fd5b813567ffffffffffffffff811681146110c657600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f6f57611f6f611f3e565b604051601f8501601f19908116603f01168101908282118183101715611f9757611f97611f3e565b81604052809350858152868686011115611fb057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fdc57600080fd5b813567ffffffffffffffff811115611ff357600080fd5b8201601f8101841361200457600080fd5b61139f84823560208401611f54565b60006020828403121561202557600080fd5b813560ff811681146110c657600080fd5b6000806040838503121561204957600080fd5b61205283611e14565b915061206060208401611d60565b90509250929050565b6000806000806080858703121561207f57600080fd5b61208885611e14565b935061209660208601611e14565b925060408501359150606085013567ffffffffffffffff8111156120b957600080fd5b8501601f810187136120ca57600080fd5b6120d987823560208401611f54565b91505092959194509250565b600080604083850312156120f857600080fd5b61210183611e14565b915061206060208401611e14565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061215857607f821691505b6020821081141561217957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612210576122106121e6565b5060010190565b6000821982111561222a5761222a6121e6565b500190565b600067ffffffffffffffff80831681851681830481118215151615612256576122566121e6565b02949350505050565b6000845160206122728285838a01611d90565b8551918401916122858184848a01611d90565b8554920191600090600181811c90808316806122a257607f831692505b8583108114156122c057634e487b7160e01b85526022600452602485fd5b8080156122d457600181146122e557612312565b60ff19851688528388019550612312565b60008b81526020902060005b8581101561230a5781548a8201529084019088016122f1565b505083880195505b50939b9a5050505050505050505050565b600082821015612335576123356121e6565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123b1576123b161238c565b500490565b6000826123c5576123c561238c565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123fd90830184611dbc565b9695505050505050565b60006020828403121561241957600080fd5b81516110c681611d2d565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220805d08c443e24cc1a95836b80a29982bde9a8e59d8991c6a5a7e7f2db319575464736f6c634300080a00334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f516d62686e32506b5732366933506d57506d7941446e36446f703839536f3443466f4d6b674539316f63593373572f

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105f6578063da3ef23f14610618578063e985e9c514610638578063f2fde38b14610681578063f8f53e6f146106a157600080fd5b8063a22cb46514610581578063b88d4fde146105a1578063c6682862146105c1578063c87b56dd146105d657600080fd5b80636edbba2e116100e75780636edbba2e146104e457806370a0823114610519578063715018a6146105395780638da5cb5b1461054e57806395d89b411461056c57600080fd5b80635c975abb1461047b5780636352211e1461049c5780636c0360eb146104bc5780636ecd2306146104d157600080fd5b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146103ce578063438b6300146103ee57806345e520f91461041b5780634f6ccce71461043b57806355f804b31461045b57600080fd5b806323b872dd146103665780632716d6a7146103865780632f745c59146103a65780633ccfd60b146103c657600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806313faede6146102da57806318160ddd14610314578063239c70ae1461033357600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611d43565b6106c1565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611d75565b6106ec565b005b34801561026c57600080fd5b5061027561073d565b6040516102359190611de8565b34801561028e57600080fd5b506102a261029d366004611dfb565b6107cf565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611e2b565b610864565b3480156102e657600080fd5b50600d546102fb9067ffffffffffffffff1681565b60405167ffffffffffffffff9091168152602001610235565b34801561032057600080fd5b506008545b604051908152602001610235565b34801561033f57600080fd5b50600d5461035490600160601b900460ff1681565b60405160ff9091168152602001610235565b34801561037257600080fd5b5061025e610381366004611e55565b61097a565b34801561039257600080fd5b5061025e6103a1366004611e91565b6109ab565b3480156103b257600080fd5b506103256103c1366004611e2b565b6109f7565b61025e610a8d565b3480156103da57600080fd5b5061025e6103e9366004611e55565b610b0f565b3480156103fa57600080fd5b5061040e610409366004611eb5565b610b2a565b6040516102359190611ed0565b34801561042757600080fd5b5061025e610436366004611f14565b610bcc565b34801561044757600080fd5b50610325610456366004611dfb565b610c1a565b34801561046757600080fd5b5061025e610476366004611fca565b610cad565b34801561048757600080fd5b50600d5461022990600160681b900460ff1681565b3480156104a857600080fd5b506102a26104b7366004611dfb565b610cee565b3480156104c857600080fd5b50610275610d65565b61025e6104df366004612013565b610df3565b3480156104f057600080fd5b50600d5461050690600160501b900461ffff1681565b60405161ffff9091168152602001610235565b34801561052557600080fd5b50610325610534366004611eb5565b610ed3565b34801561054557600080fd5b5061025e610f5a565b34801561055a57600080fd5b50600a546001600160a01b03166102a2565b34801561057857600080fd5b50610275610f90565b34801561058d57600080fd5b5061025e61059c366004612036565b610f9f565b3480156105ad57600080fd5b5061025e6105bc366004612069565b610faa565b3480156105cd57600080fd5b50610275610fe2565b3480156105e257600080fd5b506102756105f1366004611dfb565b610fef565b34801561060257600080fd5b50600d5461050690600160401b900461ffff1681565b34801561062457600080fd5b5061025e610633366004611fca565b6110cd565b34801561064457600080fd5b506102296106533660046120e5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068d57600080fd5b5061025e61069c366004611eb5565b61110a565b3480156106ad57600080fd5b5061025e6106bc366004612013565b6111a2565b60006001600160e01b0319821663780e9d6360e01b14806106e657506106e6826111f2565b92915050565b600a546001600160a01b0316331461071f5760405162461bcd60e51b81526004016107169061210f565b60405180910390fd5b600d8054911515600160681b0260ff60681b19909216919091179055565b60606000805461074c90612144565b80601f016020809104026020016040519081016040528092919081815260200182805461077890612144565b80156107c55780601f1061079a576101008083540402835291602001916107c5565b820191906000526020600020905b8154815290600101906020018083116107a857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610716565b506000908152600460205260409020546001600160a01b031690565b600061086f82610cee565b9050806001600160a01b0316836001600160a01b031614156108dd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610716565b336001600160a01b03821614806108f957506108f98133610653565b61096b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610716565b6109758383611242565b505050565b61098433826112b0565b6109a05760405162461bcd60e51b81526004016107169061217f565b6109758383836113a7565b600a546001600160a01b031633146109d55760405162461bcd60e51b81526004016107169061210f565b600d805461ffff909216600160501b0261ffff60501b19909216919091179055565b6000610a0283610ed3565b8210610a645760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610716565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ab75760405162461bcd60e51b81526004016107169061210f565b604051600090339047908381818185875af1925050503d8060008114610af9576040519150601f19603f3d011682016040523d82523d6000602084013e610afe565b606091505b5050905080610b0c57600080fd5b50565b61097583838360405180602001604052806000815250610faa565b60606000610b3783610ed3565b905060008167ffffffffffffffff811115610b5457610b54611f3e565b604051908082528060200260200182016040528015610b7d578160200160208202803683370190505b50905060005b82811015610bc457610b9585826109f7565b828281518110610ba757610ba76121d0565b602090810291909101015280610bbc816121fc565b915050610b83565b509392505050565b600a546001600160a01b03163314610bf65760405162461bcd60e51b81526004016107169061210f565b600d805467ffffffffffffffff191667ffffffffffffffff92909216919091179055565b6000610c2560085490565b8210610c885760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610716565b60088281548110610c9b57610c9b6121d0565b90600052602060002001549050919050565b600a546001600160a01b03163314610cd75760405162461bcd60e51b81526004016107169061210f565b8051610cea90600b906020840190611c94565b5050565b6000818152600260205260408120546001600160a01b0316806106e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610716565b600b8054610d7290612144565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9e90612144565b8015610deb5780601f10610dc057610100808354040283529160200191610deb565b820191906000526020600020905b815481529060010190602001808311610dce57829003601f168201915b505050505081565b6000610dfe60085490565b600d54909150600160681b900460ff1615610e1857600080fd5b600d5460ff600160601b90910481169083161115610e3557600080fd5b600d54600160401b900461ffff16610e5060ff841683612217565b1115610e5b57600080fd5b600d54600160501b900461ffff16811115610ea157600d54610e8b9060ff84169067ffffffffffffffff1661222f565b67ffffffffffffffff16341015610ea157600080fd5b60015b8260ff16811161097557610ec133610ebc8385612217565b611552565b80610ecb816121fc565b915050610ea4565b60006001600160a01b038216610f3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610716565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f845760405162461bcd60e51b81526004016107169061210f565b610f8e600061156c565b565b60606001805461074c90612144565b610cea3383836115be565b610fb433836112b0565b610fd05760405162461bcd60e51b81526004016107169061217f565b610fdc8484848461168d565b50505050565b600c8054610d7290612144565b6000818152600260205260409020546060906001600160a01b031661106e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610716565b60006110786116c0565b9050600081511161109857604051806020016040528060008152506110c6565b806110a2846116cf565b600c6040516020016110b69392919061225f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110f75760405162461bcd60e51b81526004016107169061210f565b8051610cea90600c906020840190611c94565b600a546001600160a01b031633146111345760405162461bcd60e51b81526004016107169061210f565b6001600160a01b0381166111995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610716565b610b0c8161156c565b600a546001600160a01b031633146111cc5760405162461bcd60e51b81526004016107169061210f565b600d805460ff909216600160601b0260ff60601b19909216919091179055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061122357506001600160e01b03198216635b5e139f60e01b145b806106e657506301ffc9a760e01b6001600160e01b03198316146106e6565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061127782610cee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610716565b600061133483610cee565b9050806001600160a01b0316846001600160a01b0316148061136f5750836001600160a01b0316611364846107cf565b6001600160a01b0316145b8061139f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113ba82610cee565b6001600160a01b0316146114225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610716565b6001600160a01b0382166114845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610716565b61148f8383836117cd565b61149a600082611242565b6001600160a01b03831660009081526003602052604081208054600192906114c3908490612323565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f1908490612217565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cea828260405180602001604052806000815250611885565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116205760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610716565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116988484846113a7565b6116a4848484846118b8565b610fdc5760405162461bcd60e51b81526004016107169061233a565b6060600b805461074c90612144565b6060816116f35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171d5780611707816121fc565b91506117169050600a836123a2565b91506116f7565b60008167ffffffffffffffff81111561173857611738611f3e565b6040519080825280601f01601f191660200182016040528015611762576020820181803683370190505b5090505b841561139f57611777600183612323565b9150611784600a866123b6565b61178f906030612217565b60f81b8183815181106117a4576117a46121d0565b60200101906001600160f81b031916908160001a9053506117c6600a866123a2565b9450611766565b6001600160a01b0383166118285761182381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61184b565b816001600160a01b0316836001600160a01b03161461184b5761184b83826119b6565b6001600160a01b0382166118625761097581611a53565b826001600160a01b0316826001600160a01b031614610975576109758282611b02565b61188f8383611b46565b61189c60008484846118b8565b6109755760405162461bcd60e51b81526004016107169061233a565b60006001600160a01b0384163b156119ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118fc9033908990889088906004016123ca565b6020604051808303816000875af1925050508015611937575060408051601f3d908101601f1916820190925261193491810190612407565b60015b611991573d808015611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b5080516119895760405162461bcd60e51b81526004016107169061233a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061139f565b506001949350505050565b600060016119c384610ed3565b6119cd9190612323565b600083815260076020526040902054909150808214611a20576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a6590600190612323565b60008381526009602052604081205460088054939450909284908110611a8d57611a8d6121d0565b906000526020600020015490508060088381548110611aae57611aae6121d0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ae657611ae6612424565b6001900381819060005260206000200160009055905550505050565b6000611b0d83610ed3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b9c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610716565b6000818152600260205260409020546001600160a01b031615611c015760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610716565b611c0d600083836117cd565b6001600160a01b0382166000908152600360205260408120805460019290611c36908490612217565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ca090612144565b90600052602060002090601f016020900481019282611cc25760008555611d08565b82601f10611cdb57805160ff1916838001178555611d08565b82800160010185558215611d08579182015b82811115611d08578251825591602001919060010190611ced565b50611d14929150611d18565b5090565b5b80821115611d145760008155600101611d19565b6001600160e01b031981168114610b0c57600080fd5b600060208284031215611d5557600080fd5b81356110c681611d2d565b80358015158114611d7057600080fd5b919050565b600060208284031215611d8757600080fd5b6110c682611d60565b60005b83811015611dab578181015183820152602001611d93565b83811115610fdc5750506000910152565b60008151808452611dd4816020860160208601611d90565b601f01601f19169290920160200192915050565b6020815260006110c66020830184611dbc565b600060208284031215611e0d57600080fd5b5035919050565b80356001600160a01b0381168114611d7057600080fd5b60008060408385031215611e3e57600080fd5b611e4783611e14565b946020939093013593505050565b600080600060608486031215611e6a57600080fd5b611e7384611e14565b9250611e8160208501611e14565b9150604084013590509250925092565b600060208284031215611ea357600080fd5b813561ffff811681146110c657600080fd5b600060208284031215611ec757600080fd5b6110c682611e14565b6020808252825182820181905260009190848201906040850190845b81811015611f0857835183529284019291840191600101611eec565b50909695505050505050565b600060208284031215611f2657600080fd5b813567ffffffffffffffff811681146110c657600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f6f57611f6f611f3e565b604051601f8501601f19908116603f01168101908282118183101715611f9757611f97611f3e565b81604052809350858152868686011115611fb057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fdc57600080fd5b813567ffffffffffffffff811115611ff357600080fd5b8201601f8101841361200457600080fd5b61139f84823560208401611f54565b60006020828403121561202557600080fd5b813560ff811681146110c657600080fd5b6000806040838503121561204957600080fd5b61205283611e14565b915061206060208401611d60565b90509250929050565b6000806000806080858703121561207f57600080fd5b61208885611e14565b935061209660208601611e14565b925060408501359150606085013567ffffffffffffffff8111156120b957600080fd5b8501601f810187136120ca57600080fd5b6120d987823560208401611f54565b91505092959194509250565b600080604083850312156120f857600080fd5b61210183611e14565b915061206060208401611e14565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061215857607f821691505b6020821081141561217957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612210576122106121e6565b5060010190565b6000821982111561222a5761222a6121e6565b500190565b600067ffffffffffffffff80831681851681830481118215151615612256576122566121e6565b02949350505050565b6000845160206122728285838a01611d90565b8551918401916122858184848a01611d90565b8554920191600090600181811c90808316806122a257607f831692505b8583108114156122c057634e487b7160e01b85526022600452602485fd5b8080156122d457600181146122e557612312565b60ff19851688528388019550612312565b60008b81526020902060005b8581101561230a5781548a8201529084019088016122f1565b505083880195505b50939b9a5050505050505050505050565b600082821015612335576123356121e6565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123b1576123b161238c565b500490565b6000826123c5576123c561238c565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123fd90830184611dbc565b9695505050505050565b60006020828403121561241957600080fd5b81516110c681611d2d565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220805d08c443e24cc1a95836b80a29982bde9a8e59d8991c6a5a7e7f2db319575464736f6c634300080a0033

Deployed Bytecode Sourcemap

44487:2614:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;-1:-1:-1;38266:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38266:224:0;;;;;;;;46856:73;;;;;;;;;;-1:-1:-1;46856:73:0;;;;;:::i;:::-;;:::i;:::-;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27319:221::-;;;;;;;;;;-1:-1:-1;27319:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;27319:221:0;1878:203:1;26842:411:0;;;;;;;;;;-1:-1:-1;26842:411:0;;;;;:::i;:::-;;:::i;44640:31::-;;;;;;;;;;-1:-1:-1;44640:31:0;;;;;;;;;;;2697:18:1;2685:31;;;2667:50;;2655:2;2640:18;44640:31:0;2523:200:1;38906:113:0;;;;;;;;;;-1:-1:-1;38994:10:0;:17;38906:113;;;2874:25:1;;;2862:2;2847:18;38906:113:0;2728:177:1;44743:31:0;;;;;;;;;;-1:-1:-1;44743:31:0;;;;-1:-1:-1;;;44743:31:0;;;;;;;;;3082:4:1;3070:17;;;3052:36;;3040:2;3025:18;44743:31:0;2910:184:1;28069:339:0;;;;;;;;;;-1:-1:-1;28069:339:0;;;;;:::i;:::-;;:::i;46518:100::-;;;;;;;;;;-1:-1:-1;46518:100:0;;;;;:::i;:::-;;:::i;38574:256::-;;;;;;;;;;-1:-1:-1;38574:256:0;;;;;:::i;:::-;;:::i;46940:158::-;;;:::i;28479:185::-;;;;;;;;;;-1:-1:-1;28479:185:0;;;;;:::i;:::-;;:::i;45510:348::-;;;;;;;;;;-1:-1:-1;45510:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46309:81::-;;;;;;;;;;-1:-1:-1;46309:81:0;;;;;:::i;:::-;;:::i;39096:233::-;;;;;;;;;;-1:-1:-1;39096:233:0;;;;;:::i;:::-;;:::i;46624:98::-;;;;;;;;;;-1:-1:-1;46624:98:0;;;;;:::i;:::-;;:::i;44779:26::-;;;;;;;;;;-1:-1:-1;44779:26:0;;;;-1:-1:-1;;;44779:26:0;;;;;;25454:239;;;;;;;;;;-1:-1:-1;25454:239:0;;;;;:::i;:::-;;:::i;44577:21::-;;;;;;;;;;;;;:::i;45107:397::-;;;;;;:::i;:::-;;:::i;44711:27::-;;;;;;;;;;-1:-1:-1;44711:27:0;;;;-1:-1:-1;;;44711:27:0;;;;;;;;;6499:6:1;6487:19;;;6469:38;;6457:2;6442:18;44711:27:0;6325:188:1;25184:208:0;;;;;;;;;;-1:-1:-1;25184:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;25929:104;;;;;;;;;;;;;:::i;27612:155::-;;;;;;;;;;-1:-1:-1;27612:155:0;;;;;:::i;:::-;;:::i;28735:328::-;;;;;;;;;;-1:-1:-1;28735:328:0;;;;;:::i;:::-;;:::i;44603:32::-;;;;;;;;;;;;;:::i;45864:423::-;;;;;;;;;;-1:-1:-1;45864:423:0;;;;;:::i;:::-;;:::i;44676:30::-;;;;;;;;;;-1:-1:-1;44676:30:0;;;;-1:-1:-1;;;44676:30:0;;;;;;46728:122;;;;;;;;;;-1:-1:-1;46728:122:0;;;;;:::i;:::-;;:::i;27838:164::-;;;;;;;;;;-1:-1:-1;27838:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27838:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;46396:116::-;;;;;;;;;;-1:-1:-1;46396:116:0;;;;;:::i;:::-;;:::i;38266:224::-;38368:4;-1:-1:-1;;;;;;38392:50:0;;-1:-1:-1;;;38392:50:0;;:90;;;38446:36;38470:11;38446:23;:36::i;:::-;38385:97;38266:224;-1:-1:-1;;38266:224:0:o;46856:73::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;46908:6:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;46908:15:0::1;-1:-1:-1::0;;;;46908:15:0;;::::1;::::0;;;::::1;::::0;;46856:73::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;27415:73;;;;-1:-1:-1;;;27415:73:0;;8662:2:1;27415:73:0;;;8644:21:1;8701:2;8681:18;;;8674:30;8740:34;8720:18;;;8713:62;-1:-1:-1;;;8791:18:1;;;8784:42;8843:19;;27415:73:0;8460:408:1;27415:73:0;-1:-1:-1;27508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27508:24:0;;27319:221::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;-1:-1:-1;;;;;26981:11:0;:2;-1:-1:-1;;;;;26981:11:0;;;26973:57;;;;-1:-1:-1;;;26973:57:0;;9075:2:1;26973:57:0;;;9057:21:1;9114:2;9094:18;;;9087:30;9153:34;9133:18;;;9126:62;-1:-1:-1;;;9204:18:1;;;9197:31;9245:19;;26973:57:0;8873:397:1;26973:57:0;2883:10;-1:-1:-1;;;;;27065:21:0;;;;:62;;-1:-1:-1;27090:37:0;27107:5;2883:10;27838:164;:::i;27090:37::-;27043:168;;;;-1:-1:-1;;;27043:168:0;;9477:2:1;27043:168:0;;;9459:21:1;9516:2;9496:18;;;9489:30;9555:34;9535:18;;;9528:62;9626:26;9606:18;;;9599:54;9670:19;;27043:168:0;9275:420:1;27043:168:0;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;28069:339::-;28264:41;2883:10;28297:7;28264:18;:41::i;:::-;28256:103;;;;-1:-1:-1;;;28256:103:0;;;;;;;:::i;:::-;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;46518:100::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46589:7:::1;:23:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;46589:23:0::1;-1:-1:-1::0;;;;46589:23:0;;::::1;::::0;;;::::1;::::0;;46518:100::o;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;-1:-1:-1;;;38691:87:0;;10320:2:1;38691:87:0;;;10302:21:1;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;-1:-1:-1;;;10449:18:1;;;10442:41;10500:19;;38691:87:0;10118:407:1;38691:87:0;-1:-1:-1;;;;;;38796:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38574:256::o;46940:158::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47011:58:::1;::::0;46993:12:::1;::::0;47019:10:::1;::::0;47043:21:::1;::::0;46993:12;47011:58;46993:12;47011:58;47043:21;47019:10;47011:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46992:77;;;47084:7;47076:16;;;::::0;::::1;;46985:113;46940:158::o:0;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;45510:348::-;45585:16;45613:23;45639:17;45649:6;45639:9;:17::i;:::-;45613:43;;45663:25;45705:15;45691:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45691:30:0;;45663:58;;45733:9;45728:103;45748:15;45744:1;:19;45728:103;;;45793:30;45813:6;45821:1;45793:19;:30::i;:::-;45779:8;45788:1;45779:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45765:3;;;;:::i;:::-;;;;45728:103;;;-1:-1:-1;45844:8:0;45510:348;-1:-1:-1;;;45510:348:0:o;46309:81::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46369:4:::1;:15:::0;;-1:-1:-1;;46369:15:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46309:81::o;39096:233::-;39171:7;39207:30;38994:10;:17;;38906:113;39207:30;39199:5;:38;39191:95;;;;-1:-1:-1;;;39191:95:0;;11346:2:1;39191:95:0;;;11328:21:1;11385:2;11365:18;;;11358:30;11424:34;11404:18;;;11397:62;-1:-1:-1;;;11475:18:1;;;11468:42;11527:19;;39191:95:0;11144:408:1;39191:95:0;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;39297:24;;39096:233;;;:::o;46624:98::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46695:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46624:98:::0;:::o;25454:239::-;25526:7;25562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25562:16:0;25597:19;25589:73;;;;-1:-1:-1;;;25589:73:0;;11759:2:1;25589:73:0;;;11741:21:1;11798:2;11778:18;;;11771:30;11837:34;11817:18;;;11810:62;-1:-1:-1;;;11888:18:1;;;11881:39;11937:19;;25589:73:0;11557:405:1;44577:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45107:397::-;45162:14;45179:13;38994:10;:17;;38906:113;45179:13;45208:6;;45162:30;;-1:-1:-1;;;;45208:6:0;;;;45207:7;45199:16;;;;;;45245:13;;;-1:-1:-1;;;45245:13:0;;;;;45230:28;;;;;45222:37;;;;;;45298:9;;-1:-1:-1;;;45298:9:0;;;;45274:20;;;;:6;:20;:::i;:::-;:33;;45266:42;;;;;;45325:7;;-1:-1:-1;;;45325:7:0;;;;45318:14;;45315:77;;;45365:4;;:18;;;;;;:4;;:18;:::i;:::-;45352:31;;:9;:31;;45344:40;;;;;;45423:1;45406:93;45431:11;45426:16;;:1;:16;45406:93;;45458:33;45468:10;45480;45489:1;45480:6;:10;:::i;:::-;45458:9;:33::i;:::-;45444:3;;;;:::i;:::-;;;;45406:93;;25184:208;25256:7;-1:-1:-1;;;;;25284:19:0;;25276:74;;;;-1:-1:-1;;;25276:74:0;;12577:2:1;25276:74:0;;;12559:21:1;12616:2;12596:18;;;12589:30;12655:34;12635:18;;;12628:62;-1:-1:-1;;;12706:18:1;;;12699:40;12756:19;;25276:74:0;12375:406:1;25276:74:0;-1:-1:-1;;;;;;25368:16:0;;;;;:9;:16;;;;;;;25184:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;25929:104::-;25985:13;26018:7;26011:14;;;;;:::i;27612:155::-;27707:52;2883:10;27740:8;27750;27707:18;:52::i;28735:328::-;28910:41;2883:10;28943:7;28910:18;:41::i;:::-;28902:103;;;;-1:-1:-1;;;28902:103:0;;;;;;;:::i;:::-;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;:::-;28735:328;;;;:::o;44603:32::-;;;;;;;:::i;45864:423::-;30638:4;30662:16;;;:7;:16;;;;;;45962:13;;-1:-1:-1;;;;;30662:16:0;45987:97;;;;-1:-1:-1;;;45987:97:0;;12988:2:1;45987:97:0;;;12970:21:1;13027:2;13007:18;;;13000:30;13066:34;13046:18;;;13039:62;-1:-1:-1;;;13117:18:1;;;13110:45;13172:19;;45987:97:0;12786:411:1;45987:97:0;46093:28;46124:10;:8;:10::i;:::-;46093:41;;46179:1;46154:14;46148:28;:32;:133;;;;;;;;;;;;;;;;;46216:14;46232:18;:7;:16;:18::i;:::-;46252:13;46199:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46148:133;46141:140;45864:423;-1:-1:-1;;;45864:423:0:o;46728:122::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46811:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4988:201::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;15062:2:1;5069:73:0::1;::::0;::::1;15044:21:1::0;15101:2;15081:18;;;15074:30;15140:34;15120:18;;;15113:62;-1:-1:-1;;;15191:18:1;;;15184:36;15237:19;;5069:73:0::1;14860:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;46396:116::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46473:13:::1;:33:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;46473:33:0::1;-1:-1:-1::0;;;;46473:33:0;;::::1;::::0;;;::::1;::::0;;46396:116::o;6367:387::-;6690:20;6738:8;;;6367:387::o;24815:305::-;24917:4;-1:-1:-1;;;;;;24954:40:0;;-1:-1:-1;;;24954:40:0;;:105;;-1:-1:-1;;;;;;;25011:48:0;;-1:-1:-1;;;25011:48:0;24954:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;25076:36;16511:157;34555:174;34630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34630:29:0;-1:-1:-1;;;;;34630:29:0;;;;;;;;:24;;34684:23;34630:24;34684:14;:23::i;:::-;-1:-1:-1;;;;;34675:46:0;;;;;;;;;;;34555:174;;:::o;30867:348::-;30960:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;30977:73;;;;-1:-1:-1;;;30977:73:0;;15469:2:1;30977:73:0;;;15451:21:1;15508:2;15488:18;;;15481:30;15547:34;15527:18;;;15520:62;-1:-1:-1;;;15598:18:1;;;15591:42;15650:19;;30977:73:0;15267:408:1;30977:73:0;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;-1:-1:-1;;;;;31119:16:0;:7;-1:-1:-1;;;;;31119:16:0;;:51;;;;31163:7;-1:-1:-1;;;;;31139:31:0;:20;31151:7;31139:11;:20::i;:::-;-1:-1:-1;;;;;31139:31:0;;31119:51;:87;;;-1:-1:-1;;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31174:32;31111:96;30867:348;-1:-1:-1;;;;30867:348:0:o;33859:578::-;34018:4;-1:-1:-1;;;;;33991:31:0;:23;34006:7;33991:14;:23::i;:::-;-1:-1:-1;;;;;33991:31:0;;33983:85;;;;-1:-1:-1;;;33983:85:0;;15882:2:1;33983:85:0;;;15864:21:1;15921:2;15901:18;;;15894:30;15960:34;15940:18;;;15933:62;-1:-1:-1;;;16011:18:1;;;16004:39;16060:19;;33983:85:0;15680:405:1;33983:85:0;-1:-1:-1;;;;;34087:16:0;;34079:65;;;;-1:-1:-1;;;34079:65:0;;16292:2:1;34079:65:0;;;16274:21:1;16331:2;16311:18;;;16304:30;16370:34;16350:18;;;16343:62;-1:-1:-1;;;16421:18:1;;;16414:34;16465:19;;34079:65:0;16090:400:1;34079:65:0;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;-1:-1:-1;;;;;34303:15:0;;;;;;:9;:15;;;;;:20;;34322:1;;34303:15;:20;;34322:1;;34303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34334:13:0;;;;;;:9;:13;;;;;:18;;34351:1;;34334:13;:18;;34351:1;;34334:18;:::i;:::-;;;;-1:-1:-1;;34363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34363:21:0;-1:-1:-1;;;;;34363:21:0;;;;;;;;;34402:27;;34363:16;;34402:27;;;;;;;33859:578;;;:::o;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;34871:315::-;35026:8;-1:-1:-1;;;;;35017:17:0;:5;-1:-1:-1;;;;;35017:17:0;;;35009:55;;;;-1:-1:-1;;;35009:55:0;;16827:2:1;35009:55:0;;;16809:21:1;16866:2;16846:18;;;16839:30;16905:27;16885:18;;;16878:55;16950:18;;35009:55:0;16625:349:1;35009:55:0;-1:-1:-1;;;;;35075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35075:46:0;;;;;;;;;;35137:41;;540::1;;;35137::0;;513:18:1;35137:41:0;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;-1:-1:-1;;;30141:111:0;;;;;;;:::i;44986:102::-;45046:13;45075:7;45068:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;39942:589;-1:-1:-1;;;;;40148:18:0;;40144:187;;40183:40;40215:7;41358:10;:17;;41331:24;;;;:15;:24;;;;;:44;;;41386:24;;;;;;;;;;;;41254:164;40183:40;40144:187;;;40253:2;-1:-1:-1;;;;;40245:10:0;:4;-1:-1:-1;;;;;40245:10:0;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;-1:-1:-1;;;;;40345:16:0;;40341:183;;40378:45;40415:7;40378:36;:45::i;40341:183::-;40451:4;-1:-1:-1;;;;;40445:10:0;:2;-1:-1:-1;;;;;40445:10:0;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;31894:321::-;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;-1:-1:-1;;;32053:154:0;;;;;;;:::i;35751:799::-;35906:4;-1:-1:-1;;;;;35927:13:0;;6690:20;6738:8;35923:620;;35963:72;;-1:-1:-1;;;35963:72:0;;-1:-1:-1;;;;;35963:36:0;;;;;:72;;2883:10;;36014:4;;36020:7;;36029:5;;35963:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35963:72:0;;;;;;;;-1:-1:-1;;35963:72:0;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36205:13:0;;36201:272;;36248:60;;-1:-1:-1;;;36248:60:0;;;;;;;:::i;36201:272::-;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;-1:-1:-1;;;;;;36086:51:0;-1:-1:-1;;;36086:51:0;;-1:-1:-1;36079:58:0;;35923:620;-1:-1:-1;36527:4:0;35751:799;;;;;;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42373:18;42394:26;;;:17;:26;;;;;;42311:51;;-1:-1:-1;42527:28:0;;;42523:328;;-1:-1:-1;;;;;42594:18:0;;42572:19;42594:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42645:30;;;;;;:44;;;42762:30;;:17;:30;;;;;:43;;;42523:328;-1:-1:-1;42947:26:0;;;;:17;:26;;;;;;;;42940:33;;;-1:-1:-1;;;;;42991:18:0;;;;;:12;:18;;;;;:34;;;;;;;42984:41;42045:988::o;43328:1079::-;43606:10;:17;43581:22;;43606:21;;43626:1;;43606:21;:::i;:::-;43638:18;43659:24;;;:15;:24;;;;;;44032:10;:26;;43581:46;;-1:-1:-1;43659:24:0;;43581:46;;44032:26;;;;;;:::i;:::-;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44176:28;;;:15;:28;;;;;;;:41;;;44348:24;;;;;44341:31;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;-1:-1:-1;;;;;40965:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41010:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40832:221:0:o;32551:382::-;-1:-1:-1;;;;;32631:16:0;;32623:61;;;;-1:-1:-1;;;32623:61:0;;18854:2:1;32623:61:0;;;18836:21:1;;;18873:18;;;18866:30;18932:34;18912:18;;;18905:62;18984:18;;32623:61:0;18652:356:1;32623:61:0;30638:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;:30;32695:58;;;;-1:-1:-1;;;32695:58:0;;19215:2:1;32695:58:0;;;19197:21:1;19254:2;19234:18;;;19227:30;19293;19273:18;;;19266:58;19341:18;;32695:58:0;19013:352:1;32695:58:0;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;-1:-1:-1;;;;;32824:13:0;;;;;;:9;:13;;;;;:18;;32841:1;;32824:13;:18;;32841:1;;32824:18;:::i;:::-;;;;-1:-1:-1;;32853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32853:21:0;-1:-1:-1;;;;;32853:21:0;;;;;;;;32892:33;;32853:16;;;32892:33;;32853:16;;32892:33;32551:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;3099:328::-;3176:6;3184;3192;3245:2;3233:9;3224:7;3220:23;3216:32;3213:52;;;3261:1;3258;3251:12;3213:52;3284:29;3303:9;3284:29;:::i;:::-;3274:39;;3332:38;3366:2;3355:9;3351:18;3332:38;:::i;:::-;3322:48;;3417:2;3406:9;3402:18;3389:32;3379:42;;3099:328;;;;;:::o;3432:272::-;3490:6;3543:2;3531:9;3522:7;3518:23;3514:32;3511:52;;;3559:1;3556;3549:12;3511:52;3598:9;3585:23;3648:6;3641:5;3637:18;3630:5;3627:29;3617:57;;3670:1;3667;3660:12;3709:186;3768:6;3821:2;3809:9;3800:7;3796:23;3792:32;3789:52;;;3837:1;3834;3827:12;3789:52;3860:29;3879:9;3860:29;:::i;3900:632::-;4071:2;4123:21;;;4193:13;;4096:18;;;4215:22;;;4042:4;;4071:2;4294:15;;;;4268:2;4253:18;;;4042:4;4337:169;4351:6;4348:1;4345:13;4337:169;;;4412:13;;4400:26;;4481:15;;;;4446:12;;;;4373:1;4366:9;4337:169;;;-1:-1:-1;4523:3:1;;3900:632;-1:-1:-1;;;;;;3900:632:1:o;4537:284::-;4595:6;4648:2;4636:9;4627:7;4623:23;4619:32;4616:52;;;4664:1;4661;4654:12;4616:52;4703:9;4690:23;4753:18;4746:5;4742:30;4735:5;4732:41;4722:69;;4787:1;4784;4777:12;4826:127;4887:10;4882:3;4878:20;4875:1;4868:31;4918:4;4915:1;4908:15;4942:4;4939:1;4932:15;4958:632;5023:5;5053:18;5094:2;5086:6;5083:14;5080:40;;;5100:18;;:::i;:::-;5175:2;5169:9;5143:2;5229:15;;-1:-1:-1;;5225:24:1;;;5251:2;5221:33;5217:42;5205:55;;;5275:18;;;5295:22;;;5272:46;5269:72;;;5321:18;;:::i;:::-;5361:10;5357:2;5350:22;5390:6;5381:15;;5420:6;5412;5405:22;5460:3;5451:6;5446:3;5442:16;5439:25;5436:45;;;5477:1;5474;5467:12;5436:45;5527:6;5522:3;5515:4;5507:6;5503:17;5490:44;5582:1;5575:4;5566:6;5558;5554:19;5550:30;5543:41;;;;4958:632;;;;;:::o;5595:451::-;5664:6;5717:2;5705:9;5696:7;5692:23;5688:32;5685:52;;;5733:1;5730;5723:12;5685:52;5773:9;5760:23;5806:18;5798:6;5795:30;5792:50;;;5838:1;5835;5828:12;5792:50;5861:22;;5914:4;5906:13;;5902:27;-1:-1:-1;5892:55:1;;5943:1;5940;5933:12;5892:55;5966:74;6032:7;6027:2;6014:16;6009:2;6005;6001:11;5966:74;:::i;6051:269::-;6108:6;6161:2;6149:9;6140:7;6136:23;6132:32;6129:52;;;6177:1;6174;6167:12;6129:52;6216:9;6203:23;6266:4;6259:5;6255:16;6248:5;6245:27;6235:55;;6286:1;6283;6276:12;6518:254;6583:6;6591;6644:2;6632:9;6623:7;6619:23;6615:32;6612:52;;;6660:1;6657;6650:12;6612:52;6683:29;6702:9;6683:29;:::i;:::-;6673:39;;6731:35;6762:2;6751:9;6747:18;6731:35;:::i;:::-;6721:45;;6518:254;;;;;:::o;6777:667::-;6872:6;6880;6888;6896;6949:3;6937:9;6928:7;6924:23;6920:33;6917:53;;;6966:1;6963;6956:12;6917:53;6989:29;7008:9;6989:29;:::i;:::-;6979:39;;7037:38;7071:2;7060:9;7056:18;7037:38;:::i;:::-;7027:48;;7122:2;7111:9;7107:18;7094:32;7084:42;;7177:2;7166:9;7162:18;7149:32;7204:18;7196:6;7193:30;7190:50;;;7236:1;7233;7226:12;7190:50;7259:22;;7312:4;7304:13;;7300:27;-1:-1:-1;7290:55:1;;7341:1;7338;7331:12;7290:55;7364:74;7430:7;7425:2;7412:16;7407:2;7403;7399:11;7364:74;:::i;:::-;7354:84;;;6777:667;;;;;;;:::o;7449:260::-;7517:6;7525;7578:2;7566:9;7557:7;7553:23;7549:32;7546:52;;;7594:1;7591;7584:12;7546:52;7617:29;7636:9;7617:29;:::i;:::-;7607:39;;7665:38;7699:2;7688:9;7684:18;7665:38;:::i;7714:356::-;7916:2;7898:21;;;7935:18;;;7928:30;7994:34;7989:2;7974:18;;7967:62;8061:2;8046:18;;7714:356::o;8075:380::-;8154:1;8150:12;;;;8197;;;8218:61;;8272:4;8264:6;8260:17;8250:27;;8218:61;8325:2;8317:6;8314:14;8294:18;8291:38;8288:161;;;8371:10;8366:3;8362:20;8359:1;8352:31;8406:4;8403:1;8396:15;8434:4;8431:1;8424:15;8288:161;;8075:380;;;:::o;9700:413::-;9902:2;9884:21;;;9941:2;9921:18;;;9914:30;9980:34;9975:2;9960:18;;9953:62;-1:-1:-1;;;10046:2:1;10031:18;;10024:47;10103:3;10088:19;;9700:413::o;10740:127::-;10801:10;10796:3;10792:20;10789:1;10782:31;10832:4;10829:1;10822:15;10856:4;10853:1;10846:15;10872:127;10933:10;10928:3;10924:20;10921:1;10914:31;10964:4;10961:1;10954:15;10988:4;10985:1;10978:15;11004:135;11043:3;-1:-1:-1;;11064:17:1;;11061:43;;;11084:18;;:::i;:::-;-1:-1:-1;11131:1:1;11120:13;;11004:135::o;11967:128::-;12007:3;12038:1;12034:6;12031:1;12028:13;12025:39;;;12044:18;;:::i;:::-;-1:-1:-1;12080:9:1;;11967:128::o;12100:270::-;12139:7;12171:18;12216:2;12213:1;12209:10;12246:2;12243:1;12239:10;12302:3;12298:2;12294:12;12289:3;12286:21;12279:3;12272:11;12265:19;12261:47;12258:73;;;12311:18;;:::i;:::-;12351:13;;12100:270;-1:-1:-1;;;;12100:270:1:o;13328:1527::-;13552:3;13590:6;13584:13;13616:4;13629:51;13673:6;13668:3;13663:2;13655:6;13651:15;13629:51;:::i;:::-;13743:13;;13702:16;;;;13765:55;13743:13;13702:16;13787:15;;;13765:55;:::i;:::-;13909:13;;13842:20;;;13882:1;;13969;13991:18;;;;14044;;;;14071:93;;14149:4;14139:8;14135:19;14123:31;;14071:93;14212:2;14202:8;14199:16;14179:18;14176:40;14173:167;;;-1:-1:-1;;;14239:33:1;;14295:4;14292:1;14285:15;14325:4;14246:3;14313:17;14173:167;14356:18;14383:110;;;;14507:1;14502:328;;;;14349:481;;14383:110;-1:-1:-1;;14418:24:1;;14404:39;;14463:20;;;;-1:-1:-1;14383:110:1;;14502:328;13275:1;13268:14;;;13312:4;13299:18;;14597:1;14611:169;14625:8;14622:1;14619:15;14611:169;;;14707:14;;14692:13;;;14685:37;14750:16;;;;14642:10;;14611:169;;;14615:3;;14811:8;14804:5;14800:20;14793:27;;14349:481;-1:-1:-1;14846:3:1;;13328:1527;-1:-1:-1;;;;;;;;;;;13328:1527:1:o;16495:125::-;16535:4;16563:1;16560;16557:8;16554:34;;;16568:18;;:::i;:::-;-1:-1:-1;16605:9:1;;16495:125::o;16979:414::-;17181:2;17163:21;;;17220:2;17200:18;;;17193:30;17259:34;17254:2;17239:18;;17232:62;-1:-1:-1;;;17325:2:1;17310:18;;17303:48;17383:3;17368:19;;16979:414::o;17398:127::-;17459:10;17454:3;17450:20;17447:1;17440:31;17490:4;17487:1;17480:15;17514:4;17511:1;17504:15;17530:120;17570:1;17596;17586:35;;17601:18;;:::i;:::-;-1:-1:-1;17635:9:1;;17530:120::o;17655:112::-;17687:1;17713;17703:35;;17718:18;;:::i;:::-;-1:-1:-1;17752:9:1;;17655:112::o;17772:489::-;-1:-1:-1;;;;;18041:15:1;;;18023:34;;18093:15;;18088:2;18073:18;;18066:43;18140:2;18125:18;;18118:34;;;18188:3;18183:2;18168:18;;18161:31;;;17966:4;;18209:46;;18235:19;;18227:6;18209:46;:::i;:::-;18201:54;17772:489;-1:-1:-1;;;;;;17772:489:1:o;18266:249::-;18335:6;18388:2;18376:9;18367:7;18363:23;18359:32;18356:52;;;18404:1;18401;18394:12;18356:52;18436:9;18430:16;18455:30;18479:5;18455:30;:::i;18520:127::-;18581:10;18576:3;18572:20;18569:1;18562:31;18612:4;18609:1;18602:15;18636:4;18633:1;18626:15

Swarm Source

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