ETH Price: $3,270.54 (-4.10%)
Gas: 14 Gwei

Token

Neneneko (NNNK)
 

Overview

Max Total Supply

3,939 NNNK

Holders

855

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wshh.eth
Balance
1 NNNK
0xCB17C8e39Ec71Ec7d9D0738275Eb0963A9aBC680
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:
Neneneko

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/neneneko.sol



    pragma solidity ^0.8.0;




    /*
    ███    ██ ███████ ███    ██ ███████ ███    ██ ███████ ██   ██  ██████  
    ████   ██ ██      ████   ██ ██      ████   ██ ██      ██  ██  ██    ██ 
    ██ ██  ██ █████   ██ ██  ██ █████   ██ ██  ██ █████   █████   ██    ██ 
    ██  ██ ██ ██      ██  ██ ██ ██      ██  ██ ██ ██      ██  ██  ██    ██ 
    ██   ████ ███████ ██   ████ ███████ ██   ████ ███████ ██   ██  ██████  
    */
                                                                          
    contract Neneneko is ERC721Enumerable, ReentrancyGuard, Ownable {
        using Strings for uint256;

        string public baseURI;
        string public baseExtension = ".json";

        bool public mintIsActive = false;

        uint256 public maxSupply = 3939;
        uint256 public maxMintAmount = 10;
        // constructor
        constructor(
        string memory _name,
        string memory _symbol
        ) ERC721(_name, _symbol) {
            
        }

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

        // public
        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))
                : "";
        }

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

        function setMaxSupply(uint256 _newmaxSupply) public onlyOwner {
            maxSupply = _newmaxSupply;
        }

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

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

        function flipMintState() public onlyOwner {
            mintIsActive = !mintIsActive;
        }

        function withdraw() public onlyOwner {
            uint balance = address(this).balance;
            payable(_msgSender()).transfer(balance);
        }

        // mint
        function devMint(uint256 numberOfTokens) public onlyOwner {
            for (uint i = 0; i < numberOfTokens; i++) {
                _safeMint(_msgSender(), totalSupply() + 1);
            }
        }

        function mint(uint256 numberOfTokens) public nonReentrant  {
            require(mintIsActive, "Public mint is not active at the moment. Be patient.");
            require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0.");
            require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply.");
            require(numberOfTokens <= maxMintAmount, "Can only mint up to 15 per transaction.");

            for (uint i = 0; i < numberOfTokens; i++) {
                _safeMint(_msgSender(), totalSupply() + 1);
            }
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"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":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d91906200010a565b50600e805460ff19169055610f63600f55600a6010553480156200004b57600080fd5b50604051620025a6380380620025a68339810160408190526200006e9162000267565b815182908290620000879060009060208501906200010a565b5080516200009d9060019060208401906200010a565b50506001600a5550620000b033620000b8565b505062000324565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011890620002d1565b90600052602060002090601f0160209004810192826200013c576000855562000187565b82601f106200015757805160ff191683800117855562000187565b8280016001018555821562000187579182015b82811115620001875782518255916020019190600101906200016a565b506200019592915062000199565b5090565b5b808211156200019557600081556001016200019a565b600082601f830112620001c257600080fd5b81516001600160401b0380821115620001df57620001df6200030e565b604051601f8301601f19908116603f011681019082821181831017156200020a576200020a6200030e565b816040528381526020925086838588010111156200022757600080fd5b600091505b838210156200024b57858201830151818301840152908201906200022c565b838211156200025d5760008385830101525b9695505050505050565b600080604083850312156200027b57600080fd5b82516001600160401b03808211156200029357600080fd5b620002a186838701620001b0565b93506020850151915080821115620002b857600080fd5b50620002c785828601620001b0565b9150509250929050565b600181811c90821680620002e657607f821691505b602082108114156200030857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61227280620003346000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636352211e1161011a578063a0712d68116100ad578063c87b56dd1161007c578063c87b56dd146103fd578063d5abeb0114610410578063da3ef23f14610419578063e985e9c51461042c578063f2fde38b1461046857600080fd5b8063a0712d68146103bc578063a22cb465146103cf578063b88d4fde146103e2578063c6682862146103f557600080fd5b8063715018a6116100e9578063715018a6146103885780637f00c7a6146103905780638da5cb5b146103a357806395d89b41146103b457600080fd5b80636352211e146103475780636c0360eb1461035a5780636f8b44b01461036257806370a082311461037557600080fd5b8063375a069a11610192578063471a429411610161578063471a42941461030c5780634f6ccce71461031957806355f804b31461032c57806359c74f291461033f57600080fd5b8063375a069a146102be5780633ccfd60b146102d157806342842e0e146102d9578063438b6300146102ec57600080fd5b806318160ddd116101ce57806318160ddd1461027d578063239c70ae1461028f57806323b872dd146102985780632f745c59146102ab57600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004611de7565b61047b565b60405190151581526020015b60405180910390f35b6102306104a6565b60405161021f9190611ff4565b61025061024b366004611e6a565b610538565b6040516001600160a01b03909116815260200161021f565b61027b610276366004611dbd565b6105d2565b005b6008545b60405190815260200161021f565b61028160105481565b61027b6102a6366004611cc9565b6106e8565b6102816102b9366004611dbd565b610719565b61027b6102cc366004611e6a565b6107af565b61027b610812565b61027b6102e7366004611cc9565b61086b565b6102ff6102fa366004611c7b565b610886565b60405161021f9190611fb0565b600e546102139060ff1681565b610281610327366004611e6a565b610928565b61027b61033a366004611e21565b6109bb565b61027b6109f8565b610250610355366004611e6a565b610a36565b610230610aad565b61027b610370366004611e6a565b610b3b565b610281610383366004611c7b565b610b6a565b61027b610bf1565b61027b61039e366004611e6a565b610c27565b600b546001600160a01b0316610250565b610230610c56565b61027b6103ca366004611e6a565b610c65565b61027b6103dd366004611d81565b610e99565b61027b6103f0366004611d05565b610ea4565b610230610edc565b61023061040b366004611e6a565b610ee9565b610281600f5481565b61027b610427366004611e21565b610fc7565b61021361043a366004611c96565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61027b610476366004611c7b565b611004565b60006001600160e01b0319821663780e9d6360e01b14806104a057506104a08261109f565b92915050565b6060600080546104b59061214e565b80601f01602080910402602001604051908101604052809291908181526020018280546104e19061214e565b801561052e5780601f106105035761010080835404028352916020019161052e565b820191906000526020600020905b81548152906001019060200180831161051157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105dd82610a36565b9050806001600160a01b0316836001600160a01b0316141561064b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ad565b336001600160a01b03821614806106675750610667813361043a565b6106d95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105ad565b6106e383836110ef565b505050565b6106f2338261115d565b61070e5760405162461bcd60e51b81526004016105ad9061208e565b6106e3838383611254565b600061072483610b6a565b82106107865760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105ad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146107d95760405162461bcd60e51b81526004016105ad90612059565b60005b8181101561080e576107fc335b6008546107f79060016120df565b6113ff565b8061080681612189565b9150506107dc565b5050565b600b546001600160a01b0316331461083c5760405162461bcd60e51b81526004016105ad90612059565b6040514790339082156108fc029083906000818181858888f1935050505015801561080e573d6000803e3d6000fd5b6106e383838360405180602001604052806000815250610ea4565b6060600061089383610b6a565b905060008167ffffffffffffffff8111156108b0576108b0612210565b6040519080825280602002602001820160405280156108d9578160200160208202803683370190505b50905060005b82811015610920576108f18582610719565b828281518110610903576109036121fa565b60209081029190910101528061091881612189565b9150506108df565b509392505050565b600061093360085490565b82106109965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105ad565b600882815481106109a9576109a96121fa565b90600052602060002001549050919050565b600b546001600160a01b031633146109e55760405162461bcd60e51b81526004016105ad90612059565b805161080e90600c906020840190611b50565b600b546001600160a01b03163314610a225760405162461bcd60e51b81526004016105ad90612059565b600e805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806104a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ad565b600c8054610aba9061214e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae69061214e565b8015610b335780601f10610b0857610100808354040283529160200191610b33565b820191906000526020600020905b815481529060010190602001808311610b1657829003601f168201915b505050505081565b600b546001600160a01b03163314610b655760405162461bcd60e51b81526004016105ad90612059565b600f55565b60006001600160a01b038216610bd55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ad565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610c1b5760405162461bcd60e51b81526004016105ad90612059565b610c256000611419565b565b600b546001600160a01b03163314610c515760405162461bcd60e51b81526004016105ad90612059565b601055565b6060600180546104b59061214e565b6002600a541415610cb85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ad565b6002600a55600e5460ff16610d2c5760405162461bcd60e51b815260206004820152603460248201527f5075626c6963206d696e74206973206e6f7420616374697665206174207468656044820152731036b7b6b2b73a17102132903830ba34b2b73a1760611b60648201526084016105ad565b60008111610d995760405162461bcd60e51b815260206004820152603460248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373604482015273103a3430b71037b91032b8bab0b6103a3790181760611b60648201526084016105ad565b600f5481610da660085490565b610db091906120df565b1115610e085760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b60648201526084016105ad565b601054811115610e6a5760405162461bcd60e51b815260206004820152602760248201527f43616e206f6e6c79206d696e7420757020746f20313520706572207472616e7360448201526630b1ba34b7b71760c91b60648201526084016105ad565b60005b81811015610e9057610e7e336107e9565b80610e8881612189565b915050610e6d565b50506001600a55565b61080e33838361146b565b610eae338361115d565b610eca5760405162461bcd60e51b81526004016105ad9061208e565b610ed68484848461153a565b50505050565b600d8054610aba9061214e565b6000818152600260205260409020546060906001600160a01b0316610f685760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ad565b6000610f7261156d565b90506000815111610f925760405180602001604052806000815250610fc0565b80610f9c8461157c565b600d604051602001610fb093929190611eaf565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314610ff15760405162461bcd60e51b81526004016105ad90612059565b805161080e90600d906020840190611b50565b600b546001600160a01b0316331461102e5760405162461bcd60e51b81526004016105ad90612059565b6001600160a01b0381166110935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ad565b61109c81611419565b50565b60006001600160e01b031982166380ac58cd60e01b14806110d057506001600160e01b03198216635b5e139f60e01b145b806104a057506301ffc9a760e01b6001600160e01b03198316146104a0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061112482610a36565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ad565b60006111e183610a36565b9050806001600160a01b0316846001600160a01b0316148061121c5750836001600160a01b031661121184610538565b6001600160a01b0316145b8061124c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661126782610a36565b6001600160a01b0316146112cf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105ad565b6001600160a01b0382166113315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ad565b61133c83838361167a565b6113476000826110ef565b6001600160a01b038316600090815260036020526040812080546001929061137090849061210b565b90915550506001600160a01b038216600090815260036020526040812080546001929061139e9084906120df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61080e828260405180602001604052806000815250611732565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114cd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ad565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611545848484611254565b61155184848484611765565b610ed65760405162461bcd60e51b81526004016105ad90612007565b6060600c80546104b59061214e565b6060816115a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115ca57806115b481612189565b91506115c39050600a836120f7565b91506115a4565b60008167ffffffffffffffff8111156115e5576115e5612210565b6040519080825280601f01601f19166020018201604052801561160f576020820181803683370190505b5090505b841561124c5761162460018361210b565b9150611631600a866121a4565b61163c9060306120df565b60f81b818381518110611651576116516121fa565b60200101906001600160f81b031916908160001a905350611673600a866120f7565b9450611613565b6001600160a01b0383166116d5576116d081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116f8565b816001600160a01b0316836001600160a01b0316146116f8576116f88382611872565b6001600160a01b03821661170f576106e38161190f565b826001600160a01b0316826001600160a01b0316146106e3576106e382826119be565b61173c8383611a02565b6117496000848484611765565b6106e35760405162461bcd60e51b81526004016105ad90612007565b60006001600160a01b0384163b1561186757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117a9903390899088908890600401611f73565b602060405180830381600087803b1580156117c357600080fd5b505af19250505080156117f3575060408051601f3d908101601f191682019092526117f091810190611e04565b60015b61184d573d808015611821576040519150601f19603f3d011682016040523d82523d6000602084013e611826565b606091505b5080516118455760405162461bcd60e51b81526004016105ad90612007565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061124c565b506001949350505050565b6000600161187f84610b6a565b611889919061210b565b6000838152600760205260409020549091508082146118dc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119219060019061210b565b60008381526009602052604081205460088054939450909284908110611949576119496121fa565b90600052602060002001549050806008838154811061196a5761196a6121fa565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119a2576119a26121e4565b6001900381819060005260206000200160009055905550505050565b60006119c983610b6a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ad565b6000818152600260205260409020546001600160a01b031615611abd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ad565b611ac96000838361167a565b6001600160a01b0382166000908152600360205260408120805460019290611af29084906120df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b5c9061214e565b90600052602060002090601f016020900481019282611b7e5760008555611bc4565b82601f10611b9757805160ff1916838001178555611bc4565b82800160010185558215611bc4579182015b82811115611bc4578251825591602001919060010190611ba9565b50611bd0929150611bd4565b5090565b5b80821115611bd05760008155600101611bd5565b600067ffffffffffffffff80841115611c0457611c04612210565b604051601f8501601f19908116603f01168101908282118183101715611c2c57611c2c612210565b81604052809350858152868686011115611c4557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7657600080fd5b919050565b600060208284031215611c8d57600080fd5b610fc082611c5f565b60008060408385031215611ca957600080fd5b611cb283611c5f565b9150611cc060208401611c5f565b90509250929050565b600080600060608486031215611cde57600080fd5b611ce784611c5f565b9250611cf560208501611c5f565b9150604084013590509250925092565b60008060008060808587031215611d1b57600080fd5b611d2485611c5f565b9350611d3260208601611c5f565b925060408501359150606085013567ffffffffffffffff811115611d5557600080fd5b8501601f81018713611d6657600080fd5b611d7587823560208401611be9565b91505092959194509250565b60008060408385031215611d9457600080fd5b611d9d83611c5f565b915060208301358015158114611db257600080fd5b809150509250929050565b60008060408385031215611dd057600080fd5b611dd983611c5f565b946020939093013593505050565b600060208284031215611df957600080fd5b8135610fc081612226565b600060208284031215611e1657600080fd5b8151610fc081612226565b600060208284031215611e3357600080fd5b813567ffffffffffffffff811115611e4a57600080fd5b8201601f81018413611e5b57600080fd5b61124c84823560208401611be9565b600060208284031215611e7c57600080fd5b5035919050565b60008151808452611e9b816020860160208601612122565b601f01601f19169290920160200192915050565b600084516020611ec28285838a01612122565b855191840191611ed58184848a01612122565b8554920191600090600181811c9080831680611ef257607f831692505b858310811415611f1057634e487b7160e01b85526022600452602485fd5b808015611f245760018114611f3557611f62565b60ff19851688528388019550611f62565b60008b81526020902060005b85811015611f5a5781548a820152908401908801611f41565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fa690830184611e83565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611fe857835183529284019291840191600101611fcc565b50909695505050505050565b602081526000610fc06020830184611e83565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120f2576120f26121b8565b500190565b600082612106576121066121ce565b500490565b60008282101561211d5761211d6121b8565b500390565b60005b8381101561213d578181015183820152602001612125565b83811115610ed65750506000910152565b600181811c9082168061216257607f821691505b6020821081141561218357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561219d5761219d6121b8565b5060010190565b6000826121b3576121b36121ce565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461109c57600080fdfea2646970667358221220e38c85a959766af5efe426f69cd43b05ddba0dc50217a84865e38b6a32efc65764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084e656e656e656b6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e4e4e4b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636352211e1161011a578063a0712d68116100ad578063c87b56dd1161007c578063c87b56dd146103fd578063d5abeb0114610410578063da3ef23f14610419578063e985e9c51461042c578063f2fde38b1461046857600080fd5b8063a0712d68146103bc578063a22cb465146103cf578063b88d4fde146103e2578063c6682862146103f557600080fd5b8063715018a6116100e9578063715018a6146103885780637f00c7a6146103905780638da5cb5b146103a357806395d89b41146103b457600080fd5b80636352211e146103475780636c0360eb1461035a5780636f8b44b01461036257806370a082311461037557600080fd5b8063375a069a11610192578063471a429411610161578063471a42941461030c5780634f6ccce71461031957806355f804b31461032c57806359c74f291461033f57600080fd5b8063375a069a146102be5780633ccfd60b146102d157806342842e0e146102d9578063438b6300146102ec57600080fd5b806318160ddd116101ce57806318160ddd1461027d578063239c70ae1461028f57806323b872dd146102985780632f745c59146102ab57600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004611de7565b61047b565b60405190151581526020015b60405180910390f35b6102306104a6565b60405161021f9190611ff4565b61025061024b366004611e6a565b610538565b6040516001600160a01b03909116815260200161021f565b61027b610276366004611dbd565b6105d2565b005b6008545b60405190815260200161021f565b61028160105481565b61027b6102a6366004611cc9565b6106e8565b6102816102b9366004611dbd565b610719565b61027b6102cc366004611e6a565b6107af565b61027b610812565b61027b6102e7366004611cc9565b61086b565b6102ff6102fa366004611c7b565b610886565b60405161021f9190611fb0565b600e546102139060ff1681565b610281610327366004611e6a565b610928565b61027b61033a366004611e21565b6109bb565b61027b6109f8565b610250610355366004611e6a565b610a36565b610230610aad565b61027b610370366004611e6a565b610b3b565b610281610383366004611c7b565b610b6a565b61027b610bf1565b61027b61039e366004611e6a565b610c27565b600b546001600160a01b0316610250565b610230610c56565b61027b6103ca366004611e6a565b610c65565b61027b6103dd366004611d81565b610e99565b61027b6103f0366004611d05565b610ea4565b610230610edc565b61023061040b366004611e6a565b610ee9565b610281600f5481565b61027b610427366004611e21565b610fc7565b61021361043a366004611c96565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61027b610476366004611c7b565b611004565b60006001600160e01b0319821663780e9d6360e01b14806104a057506104a08261109f565b92915050565b6060600080546104b59061214e565b80601f01602080910402602001604051908101604052809291908181526020018280546104e19061214e565b801561052e5780601f106105035761010080835404028352916020019161052e565b820191906000526020600020905b81548152906001019060200180831161051157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105dd82610a36565b9050806001600160a01b0316836001600160a01b0316141561064b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ad565b336001600160a01b03821614806106675750610667813361043a565b6106d95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105ad565b6106e383836110ef565b505050565b6106f2338261115d565b61070e5760405162461bcd60e51b81526004016105ad9061208e565b6106e3838383611254565b600061072483610b6a565b82106107865760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105ad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146107d95760405162461bcd60e51b81526004016105ad90612059565b60005b8181101561080e576107fc335b6008546107f79060016120df565b6113ff565b8061080681612189565b9150506107dc565b5050565b600b546001600160a01b0316331461083c5760405162461bcd60e51b81526004016105ad90612059565b6040514790339082156108fc029083906000818181858888f1935050505015801561080e573d6000803e3d6000fd5b6106e383838360405180602001604052806000815250610ea4565b6060600061089383610b6a565b905060008167ffffffffffffffff8111156108b0576108b0612210565b6040519080825280602002602001820160405280156108d9578160200160208202803683370190505b50905060005b82811015610920576108f18582610719565b828281518110610903576109036121fa565b60209081029190910101528061091881612189565b9150506108df565b509392505050565b600061093360085490565b82106109965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105ad565b600882815481106109a9576109a96121fa565b90600052602060002001549050919050565b600b546001600160a01b031633146109e55760405162461bcd60e51b81526004016105ad90612059565b805161080e90600c906020840190611b50565b600b546001600160a01b03163314610a225760405162461bcd60e51b81526004016105ad90612059565b600e805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806104a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ad565b600c8054610aba9061214e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae69061214e565b8015610b335780601f10610b0857610100808354040283529160200191610b33565b820191906000526020600020905b815481529060010190602001808311610b1657829003601f168201915b505050505081565b600b546001600160a01b03163314610b655760405162461bcd60e51b81526004016105ad90612059565b600f55565b60006001600160a01b038216610bd55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ad565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610c1b5760405162461bcd60e51b81526004016105ad90612059565b610c256000611419565b565b600b546001600160a01b03163314610c515760405162461bcd60e51b81526004016105ad90612059565b601055565b6060600180546104b59061214e565b6002600a541415610cb85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ad565b6002600a55600e5460ff16610d2c5760405162461bcd60e51b815260206004820152603460248201527f5075626c6963206d696e74206973206e6f7420616374697665206174207468656044820152731036b7b6b2b73a17102132903830ba34b2b73a1760611b60648201526084016105ad565b60008111610d995760405162461bcd60e51b815260206004820152603460248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373604482015273103a3430b71037b91032b8bab0b6103a3790181760611b60648201526084016105ad565b600f5481610da660085490565b610db091906120df565b1115610e085760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b60648201526084016105ad565b601054811115610e6a5760405162461bcd60e51b815260206004820152602760248201527f43616e206f6e6c79206d696e7420757020746f20313520706572207472616e7360448201526630b1ba34b7b71760c91b60648201526084016105ad565b60005b81811015610e9057610e7e336107e9565b80610e8881612189565b915050610e6d565b50506001600a55565b61080e33838361146b565b610eae338361115d565b610eca5760405162461bcd60e51b81526004016105ad9061208e565b610ed68484848461153a565b50505050565b600d8054610aba9061214e565b6000818152600260205260409020546060906001600160a01b0316610f685760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ad565b6000610f7261156d565b90506000815111610f925760405180602001604052806000815250610fc0565b80610f9c8461157c565b600d604051602001610fb093929190611eaf565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314610ff15760405162461bcd60e51b81526004016105ad90612059565b805161080e90600d906020840190611b50565b600b546001600160a01b0316331461102e5760405162461bcd60e51b81526004016105ad90612059565b6001600160a01b0381166110935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ad565b61109c81611419565b50565b60006001600160e01b031982166380ac58cd60e01b14806110d057506001600160e01b03198216635b5e139f60e01b145b806104a057506301ffc9a760e01b6001600160e01b03198316146104a0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061112482610a36565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ad565b60006111e183610a36565b9050806001600160a01b0316846001600160a01b0316148061121c5750836001600160a01b031661121184610538565b6001600160a01b0316145b8061124c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661126782610a36565b6001600160a01b0316146112cf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105ad565b6001600160a01b0382166113315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ad565b61133c83838361167a565b6113476000826110ef565b6001600160a01b038316600090815260036020526040812080546001929061137090849061210b565b90915550506001600160a01b038216600090815260036020526040812080546001929061139e9084906120df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61080e828260405180602001604052806000815250611732565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114cd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ad565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611545848484611254565b61155184848484611765565b610ed65760405162461bcd60e51b81526004016105ad90612007565b6060600c80546104b59061214e565b6060816115a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115ca57806115b481612189565b91506115c39050600a836120f7565b91506115a4565b60008167ffffffffffffffff8111156115e5576115e5612210565b6040519080825280601f01601f19166020018201604052801561160f576020820181803683370190505b5090505b841561124c5761162460018361210b565b9150611631600a866121a4565b61163c9060306120df565b60f81b818381518110611651576116516121fa565b60200101906001600160f81b031916908160001a905350611673600a866120f7565b9450611613565b6001600160a01b0383166116d5576116d081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116f8565b816001600160a01b0316836001600160a01b0316146116f8576116f88382611872565b6001600160a01b03821661170f576106e38161190f565b826001600160a01b0316826001600160a01b0316146106e3576106e382826119be565b61173c8383611a02565b6117496000848484611765565b6106e35760405162461bcd60e51b81526004016105ad90612007565b60006001600160a01b0384163b1561186757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117a9903390899088908890600401611f73565b602060405180830381600087803b1580156117c357600080fd5b505af19250505080156117f3575060408051601f3d908101601f191682019092526117f091810190611e04565b60015b61184d573d808015611821576040519150601f19603f3d011682016040523d82523d6000602084013e611826565b606091505b5080516118455760405162461bcd60e51b81526004016105ad90612007565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061124c565b506001949350505050565b6000600161187f84610b6a565b611889919061210b565b6000838152600760205260409020549091508082146118dc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119219060019061210b565b60008381526009602052604081205460088054939450909284908110611949576119496121fa565b90600052602060002001549050806008838154811061196a5761196a6121fa565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119a2576119a26121e4565b6001900381819060005260206000200160009055905550505050565b60006119c983610b6a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ad565b6000818152600260205260409020546001600160a01b031615611abd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ad565b611ac96000838361167a565b6001600160a01b0382166000908152600360205260408120805460019290611af29084906120df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b5c9061214e565b90600052602060002090601f016020900481019282611b7e5760008555611bc4565b82601f10611b9757805160ff1916838001178555611bc4565b82800160010185558215611bc4579182015b82811115611bc4578251825591602001919060010190611ba9565b50611bd0929150611bd4565b5090565b5b80821115611bd05760008155600101611bd5565b600067ffffffffffffffff80841115611c0457611c04612210565b604051601f8501601f19908116603f01168101908282118183101715611c2c57611c2c612210565b81604052809350858152868686011115611c4557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7657600080fd5b919050565b600060208284031215611c8d57600080fd5b610fc082611c5f565b60008060408385031215611ca957600080fd5b611cb283611c5f565b9150611cc060208401611c5f565b90509250929050565b600080600060608486031215611cde57600080fd5b611ce784611c5f565b9250611cf560208501611c5f565b9150604084013590509250925092565b60008060008060808587031215611d1b57600080fd5b611d2485611c5f565b9350611d3260208601611c5f565b925060408501359150606085013567ffffffffffffffff811115611d5557600080fd5b8501601f81018713611d6657600080fd5b611d7587823560208401611be9565b91505092959194509250565b60008060408385031215611d9457600080fd5b611d9d83611c5f565b915060208301358015158114611db257600080fd5b809150509250929050565b60008060408385031215611dd057600080fd5b611dd983611c5f565b946020939093013593505050565b600060208284031215611df957600080fd5b8135610fc081612226565b600060208284031215611e1657600080fd5b8151610fc081612226565b600060208284031215611e3357600080fd5b813567ffffffffffffffff811115611e4a57600080fd5b8201601f81018413611e5b57600080fd5b61124c84823560208401611be9565b600060208284031215611e7c57600080fd5b5035919050565b60008151808452611e9b816020860160208601612122565b601f01601f19169290920160200192915050565b600084516020611ec28285838a01612122565b855191840191611ed58184848a01612122565b8554920191600090600181811c9080831680611ef257607f831692505b858310811415611f1057634e487b7160e01b85526022600452602485fd5b808015611f245760018114611f3557611f62565b60ff19851688528388019550611f62565b60008b81526020902060005b85811015611f5a5781548a820152908401908801611f41565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fa690830184611e83565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611fe857835183529284019291840191600101611fcc565b50909695505050505050565b602081526000610fc06020830184611e83565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120f2576120f26121b8565b500190565b600082612106576121066121ce565b500490565b60008282101561211d5761211d6121b8565b500390565b60005b8381101561213d578181015183820152602001612125565b83811115610ed65750506000910152565b600181811c9082168061216257607f821691505b6020821081141561218357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561219d5761219d6121b8565b5060010190565b6000826121b3576121b36121ce565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461109c57600080fdfea2646970667358221220e38c85a959766af5efe426f69cd43b05ddba0dc50217a84865e38b6a32efc65764736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084e656e656e656b6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e4e4e4b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Neneneko
Arg [1] : _symbol (string): NNNK

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 4e656e656e656b6f000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4e4e4e4b00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48132:3263:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41025:224;;;;;;:::i;:::-;;:::i;:::-;;;7340:14:1;;7333:22;7315:41;;7303:2;7288:18;41025:224:0;;;;;;;;28519:100;;;:::i;:::-;;;;;;;:::i;30078:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6001:32:1;;;5983:51;;5971:2;5956:18;30078:221:0;5837:203:1;29601:411:0;;;;;;:::i;:::-;;:::i;:::-;;41665:113;41753:10;:17;41665:113;;;16956:25:1;;;16944:2;16929:18;41665:113:0;16810:177:1;48414:33:0;;;;;;30828:339;;;;;;:::i;:::-;;:::i;41333:256::-;;;;;;:::i;:::-;;:::i;50575:203::-;;;;;;:::i;:::-;;:::i;50392:154::-;;;:::i;31238:185::-;;;;;;:::i;:::-;;:::i;48796:430::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48327:32::-;;;;;;;;;41855:233;;;;;;:::i;:::-;;:::i;50011:112::-;;;;;;:::i;:::-;;:::i;50283:97::-;;;:::i;28213:239::-;;;;;;:::i;:::-;;:::i;48245:21::-;;;:::i;49885:114::-;;;;;;:::i;:::-;;:::i;27943:208::-;;;;;;:::i;:::-;;:::i;7489:103::-;;;:::i;49743:130::-;;;;;;:::i;:::-;;:::i;6838:87::-;6911:6;;-1:-1:-1;;;;;6911:6:0;6838:87;;28688:104;;;:::i;50790:598::-;;;;;;:::i;:::-;;:::i;30371:155::-;;;;;;:::i;:::-;;:::i;31494:328::-;;;;;;:::i;:::-;;:::i;48277:37::-;;;:::i;49238:493::-;;;;;;:::i;:::-;;:::i;48372:31::-;;;;;;50135:136;;;;;;:::i;:::-;;:::i;30597:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;30718:25:0;;;30694:4;30718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30597:164;7747:201;;;;;;:::i;:::-;;:::i;41025:224::-;41127:4;-1:-1:-1;;;;;;41151:50:0;;-1:-1:-1;;;41151:50:0;;:90;;;41205:36;41229:11;41205:23;:36::i;:::-;41144:97;41025:224;-1:-1:-1;;41025:224:0:o;28519:100::-;28573:13;28606:5;28599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28519:100;:::o;30078:221::-;30154:7;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;30174:73;;;;-1:-1:-1;;;30174:73:0;;13009:2:1;30174:73:0;;;12991:21:1;13048:2;13028:18;;;13021:30;13087:34;13067:18;;;13060:62;-1:-1:-1;;;13138:18:1;;;13131:42;13190:19;;30174:73:0;;;;;;;;;-1:-1:-1;30267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30267:24:0;;30078:221::o;29601:411::-;29682:13;29698:23;29713:7;29698:14;:23::i;:::-;29682:39;;29746:5;-1:-1:-1;;;;;29740:11:0;:2;-1:-1:-1;;;;;29740:11:0;;;29732:57;;;;-1:-1:-1;;;29732:57:0;;15011:2:1;29732:57:0;;;14993:21:1;15050:2;15030:18;;;15023:30;15089:34;15069:18;;;15062:62;-1:-1:-1;;;15140:18:1;;;15133:31;15181:19;;29732:57:0;14809:397:1;29732:57:0;5642:10;-1:-1:-1;;;;;29824:21:0;;;;:62;;-1:-1:-1;29849:37:0;29866:5;5642:10;30597:164;:::i;29849:37::-;29802:168;;;;-1:-1:-1;;;29802:168:0;;10560:2:1;29802:168:0;;;10542:21:1;10599:2;10579:18;;;10572:30;10638:34;10618:18;;;10611:62;10709:26;10689:18;;;10682:54;10753:19;;29802:168:0;10358:420:1;29802:168:0;29983:21;29992:2;29996:7;29983:8;:21::i;:::-;29671:341;29601:411;;:::o;30828:339::-;31023:41;5642:10;31056:7;31023:18;:41::i;:::-;31015:103;;;;-1:-1:-1;;;31015:103:0;;;;;;;:::i;:::-;31131:28;31141:4;31147:2;31151:7;31131:9;:28::i;41333:256::-;41430:7;41466:23;41483:5;41466:16;:23::i;:::-;41458:5;:31;41450:87;;;;-1:-1:-1;;;41450:87:0;;7793:2:1;41450:87:0;;;7775:21:1;7832:2;7812:18;;;7805:30;7871:34;7851:18;;;7844:62;-1:-1:-1;;;7922:18:1;;;7915:41;7973:19;;41450:87:0;7591:407:1;41450:87:0;-1:-1:-1;;;;;;41555:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41333:256::o;50575:203::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50653:6:::1;50648:119;50669:14;50665:1;:18;50648:119;;;50709:42;5642:10:::0;50719:12:::1;41753:10:::0;:17;50733::::1;::::0;50749:1:::1;50733:17;:::i;:::-;50709:9;:42::i;:::-;50685:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50648:119;;;;50575:203:::0;:::o;50392:154::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50495:39:::1;::::0;50459:21:::1;::::0;5642:10;;50495:39;::::1;;;::::0;50459:21;;50495:39:::1;::::0;;;50459:21;5642:10;50495:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;31238:185:::0;31376:39;31393:4;31399:2;31403:7;31376:39;;;;;;;;;;;;:16;:39::i;48796:430::-;48895:16;48937:23;48963:17;48973:6;48963:9;:17::i;:::-;48937:43;;48995:25;49037:15;49023:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49023:30:0;;48995:58;;49073:9;49068:117;49088:15;49084:1;:19;49068:117;;;49139:30;49159:6;49167:1;49139:19;:30::i;:::-;49125:8;49134:1;49125:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49105:3;;;;:::i;:::-;;;;49068:117;;;-1:-1:-1;49206:8:0;48796:430;-1:-1:-1;;;48796:430:0:o;41855:233::-;41930:7;41966:30;41753:10;:17;;41665:113;41966:30;41958:5;:38;41950:95;;;;-1:-1:-1;;;41950:95:0;;16239:2:1;41950:95:0;;;16221:21:1;16278:2;16258:18;;;16251:30;16317:34;16297:18;;;16290:62;-1:-1:-1;;;16368:18:1;;;16361:42;16420:19;;41950:95:0;16037:408:1;41950:95:0;42063:10;42074:5;42063:17;;;;;;;;:::i;:::-;;;;;;;;;42056:24;;41855:233;;;:::o;50011:112::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50090:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;50283:97::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50356:12:::1;::::0;;-1:-1:-1;;50340:28:0;::::1;50356:12;::::0;;::::1;50355:13;50340:28;::::0;;50283:97::o;28213:239::-;28285:7;28321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28321:16:0;28356:19;28348:73;;;;-1:-1:-1;;;28348:73:0;;11396:2:1;28348:73:0;;;11378:21:1;11435:2;11415:18;;;11408:30;11474:34;11454:18;;;11447:62;-1:-1:-1;;;11525:18:1;;;11518:39;11574:19;;28348:73:0;11194:405:1;48245:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49885:114::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;49962:9:::1;:25:::0;49885:114::o;27943:208::-;28015:7;-1:-1:-1;;;;;28043:19:0;;28035:74;;;;-1:-1:-1;;;28035:74:0;;10985:2:1;28035:74:0;;;10967:21:1;11024:2;11004:18;;;10997:30;11063:34;11043:18;;;11036:62;-1:-1:-1;;;11114:18:1;;;11107:40;11164:19;;28035:74:0;10783:406:1;28035:74:0;-1:-1:-1;;;;;;28127:16:0;;;;;:9;:16;;;;;;;27943:208::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;49743:130::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;49828:13:::1;:33:::0;49743:130::o;28688:104::-;28744:13;28777:7;28770:14;;;;;:::i;50790:598::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;16652:2:1;2402:63:0;;;16634:21:1;16691:2;16671:18;;;16664:30;16730:33;16710:18;;;16703:61;16781:18;;2402:63:0;16450:355:1;2402:63:0;1812:1;2543:7;:18;50872:12:::1;::::0;::::1;;50864:77;;;::::0;-1:-1:-1;;;50864:77:0;;11806:2:1;50864:77:0::1;::::0;::::1;11788:21:1::0;11845:2;11825:18;;;11818:30;11884:34;11864:18;;;11857:62;-1:-1:-1;;;11935:18:1;;;11928:50;11995:19;;50864:77:0::1;11604:416:1::0;50864:77:0::1;50981:1;50964:14;:18;50956:83;;;::::0;-1:-1:-1;;;50956:83:0;;12227:2:1;50956:83:0::1;::::0;::::1;12209:21:1::0;12266:2;12246:18;;;12239:30;12305:34;12285:18;;;12278:62;-1:-1:-1;;;12356:18:1;;;12349:50;12416:19;;50956:83:0::1;12025:416:1::0;50956:83:0::1;51096:9;;51078:14;51062:13;41753:10:::0;:17;;41665:113;51062:13:::1;:30;;;;:::i;:::-;:43;;51054:89;;;::::0;-1:-1:-1;;;51054:89:0;;14193:2:1;51054:89:0::1;::::0;::::1;14175:21:1::0;14232:2;14212:18;;;14205:30;14271:34;14251:18;;;14244:62;-1:-1:-1;;;14322:18:1;;;14315:31;14363:19;;51054:89:0::1;13991:397:1::0;51054:89:0::1;51184:13;;51166:14;:31;;51158:83;;;::::0;-1:-1:-1;;;51158:83:0;;15413:2:1;51158:83:0::1;::::0;::::1;15395:21:1::0;15452:2;15432:18;;;15425:30;15491:34;15471:18;;;15464:62;-1:-1:-1;;;15542:18:1;;;15535:37;15589:19;;51158:83:0::1;15211:403:1::0;51158:83:0::1;51263:6;51258:119;51279:14;51275:1;:18;51258:119;;;51319:42;5642:10:::0;51329:12:::1;5562:98:::0;51319:42:::1;51295:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51258:119;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;50790:598::o;30371:155::-;30466:52;5642:10;30499:8;30509;30466:18;:52::i;31494:328::-;31669:41;5642:10;31702:7;31669:18;:41::i;:::-;31661:103;;;;-1:-1:-1;;;31661:103:0;;;;;;;:::i;:::-;31775:39;31789:4;31795:2;31799:7;31808:5;31775:13;:39::i;:::-;31494:328;;;;:::o;48277:37::-;;;;;;;:::i;49238:493::-;33397:4;33421:16;;;:7;:16;;;;;;49376:13;;-1:-1:-1;;;;;33421:16:0;49415:77;;;;-1:-1:-1;;;49415:77:0;;14595:2:1;49415:77:0;;;14577:21:1;14634:2;14614:18;;;14607:30;14673:34;14653:18;;;14646:62;-1:-1:-1;;;14724:18:1;;;14717:45;14779:19;;49415:77:0;14393:411:1;49415:77:0;49507:28;49538:10;:8;:10::i;:::-;49507:41;;49601:1;49576:14;49570:28;:32;:149;;;;;;;;;;;;;;;;;49646:14;49662:18;:7;:16;:18::i;:::-;49682:13;49629:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49570:149;49563:156;49238:493;-1:-1:-1;;;49238:493:0:o;50135:136::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50226:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;7747:201::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;8624:2:1;7828:73:0::1;::::0;::::1;8606:21:1::0;8663:2;8643:18;;;8636:30;8702:34;8682:18;;;8675:62;-1:-1:-1;;;8753:18:1;;;8746:36;8799:19;;7828:73:0::1;8422:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;27574:305::-;27676:4;-1:-1:-1;;;;;;27713:40:0;;-1:-1:-1;;;27713:40:0;;:105;;-1:-1:-1;;;;;;;27770:48:0;;-1:-1:-1;;;27770:48:0;27713:105;:158;;;-1:-1:-1;;;;;;;;;;19379:40:0;;;27835:36;19270:157;37314:174;37389:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37389:29:0;-1:-1:-1;;;;;37389:29:0;;;;;;;;:24;;37443:23;37389:24;37443:14;:23::i;:::-;-1:-1:-1;;;;;37434:46:0;;;;;;;;;;;37314:174;;:::o;33626:348::-;33719:4;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;33736:73;;;;-1:-1:-1;;;33736:73:0;;10147:2:1;33736:73:0;;;10129:21:1;10186:2;10166:18;;;10159:30;10225:34;10205:18;;;10198:62;-1:-1:-1;;;10276:18:1;;;10269:42;10328:19;;33736:73:0;9945:408:1;33736:73:0;33820:13;33836:23;33851:7;33836:14;:23::i;:::-;33820:39;;33889:5;-1:-1:-1;;;;;33878:16:0;:7;-1:-1:-1;;;;;33878:16:0;;:51;;;;33922:7;-1:-1:-1;;;;;33898:31:0;:20;33910:7;33898:11;:20::i;:::-;-1:-1:-1;;;;;33898:31:0;;33878:51;:87;;;-1:-1:-1;;;;;;30718:25:0;;;30694:4;30718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33933:32;33870:96;33626:348;-1:-1:-1;;;;33626:348:0:o;36618:578::-;36777:4;-1:-1:-1;;;;;36750:31:0;:23;36765:7;36750:14;:23::i;:::-;-1:-1:-1;;;;;36750:31:0;;36742:85;;;;-1:-1:-1;;;36742:85:0;;13783:2:1;36742:85:0;;;13765:21:1;13822:2;13802:18;;;13795:30;13861:34;13841:18;;;13834:62;-1:-1:-1;;;13912:18:1;;;13905:39;13961:19;;36742:85:0;13581:405:1;36742:85:0;-1:-1:-1;;;;;36846:16:0;;36838:65;;;;-1:-1:-1;;;36838:65:0;;9388:2:1;36838:65:0;;;9370:21:1;9427:2;9407:18;;;9400:30;9466:34;9446:18;;;9439:62;-1:-1:-1;;;9517:18:1;;;9510:34;9561:19;;36838:65:0;9186:400:1;36838:65:0;36916:39;36937:4;36943:2;36947:7;36916:20;:39::i;:::-;37020:29;37037:1;37041:7;37020:8;:29::i;:::-;-1:-1:-1;;;;;37062:15:0;;;;;;:9;:15;;;;;:20;;37081:1;;37062:15;:20;;37081:1;;37062:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37093:13:0;;;;;;:9;:13;;;;;:18;;37110:1;;37093:13;:18;;37110:1;;37093:18;:::i;:::-;;;;-1:-1:-1;;37122:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37122:21:0;-1:-1:-1;;;;;37122:21:0;;;;;;;;;37161:27;;37122:16;;37161:27;;;;;;;36618:578;;;:::o;34316:110::-;34392:26;34402:2;34406:7;34392:26;;;;;;;;;;;;:9;:26::i;8108:191::-;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;37630:315::-;37785:8;-1:-1:-1;;;;;37776:17:0;:5;-1:-1:-1;;;;;37776:17:0;;;37768:55;;;;-1:-1:-1;;;37768:55:0;;9793:2:1;37768:55:0;;;9775:21:1;9832:2;9812:18;;;9805:30;9871:27;9851:18;;;9844:55;9916:18;;37768:55:0;9591:349:1;37768:55:0;-1:-1:-1;;;;;37834:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37834:46:0;;;;;;;;;;37896:41;;7315::1;;;37896::0;;7288:18:1;37896:41:0;;;;;;;37630:315;;;:::o;32704:::-;32861:28;32871:4;32877:2;32881:7;32861:9;:28::i;:::-;32908:48;32931:4;32937:2;32941:7;32950:5;32908:22;:48::i;:::-;32900:111;;;;-1:-1:-1;;;32900:111:0;;;;;;;:::i;48649:116::-;48709:13;48746:7;48739:14;;;;;:::i;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3714:56:0;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;42701:589;-1:-1:-1;;;;;42907:18:0;;42903:187;;42942:40;42974:7;44117:10;:17;;44090:24;;;;:15;:24;;;;;:44;;;44145:24;;;;;;;;;;;;44013:164;42942:40;42903:187;;;43012:2;-1:-1:-1;;;;;43004:10:0;:4;-1:-1:-1;;;;;43004:10:0;;43000:90;;43031:47;43064:4;43070:7;43031:32;:47::i;:::-;-1:-1:-1;;;;;43104:16:0;;43100:183;;43137:45;43174:7;43137:36;:45::i;43100:183::-;43210:4;-1:-1:-1;;;;;43204:10:0;:2;-1:-1:-1;;;;;43204:10:0;;43200:83;;43231:40;43259:2;43263:7;43231:27;:40::i;34653:321::-;34783:18;34789:2;34793:7;34783:5;:18::i;:::-;34834:54;34865:1;34869:2;34873:7;34882:5;34834:22;:54::i;:::-;34812:154;;;;-1:-1:-1;;;34812:154:0;;;;;;;:::i;38510:799::-;38665:4;-1:-1:-1;;;;;38686:13:0;;9449:20;9497:8;38682:620;;38722:72;;-1:-1:-1;;;38722:72:0;;-1:-1:-1;;;;;38722:36:0;;;;;:72;;5642:10;;38773:4;;38779:7;;38788:5;;38722:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38722:72:0;;;;;;;;-1:-1:-1;;38722:72:0;;;;;;;;;;;;:::i;:::-;;;38718:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38964:13:0;;38960:272;;39007:60;;-1:-1:-1;;;39007:60:0;;;;;;;:::i;38960:272::-;39182:6;39176:13;39167:6;39163:2;39159:15;39152:38;38718:529;-1:-1:-1;;;;;;38845:51:0;-1:-1:-1;;;38845:51:0;;-1:-1:-1;38838:58:0;;38682:620;-1:-1:-1;39286:4:0;38510:799;;;;;;:::o;44804:988::-;45070:22;45120:1;45095:22;45112:4;45095:16;:22::i;:::-;:26;;;;:::i;:::-;45132:18;45153:26;;;:17;:26;;;;;;45070:51;;-1:-1:-1;45286:28:0;;;45282:328;;-1:-1:-1;;;;;45353:18:0;;45331:19;45353:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45404:30;;;;;;:44;;;45521:30;;:17;:30;;;;;:43;;;45282:328;-1:-1:-1;45706:26:0;;;;:17;:26;;;;;;;;45699:33;;;-1:-1:-1;;;;;45750:18:0;;;;;:12;:18;;;;;:34;;;;;;;45743:41;44804:988::o;46087:1079::-;46365:10;:17;46340:22;;46365:21;;46385:1;;46365:21;:::i;:::-;46397:18;46418:24;;;:15;:24;;;;;;46791:10;:26;;46340:46;;-1:-1:-1;46418:24:0;;46340:46;;46791:26;;;;;;:::i;:::-;;;;;;;;;46769:48;;46855:11;46830:10;46841;46830:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46935:28;;;:15;:28;;;;;;;:41;;;47107:24;;;;;47100:31;47142:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46158:1008;;;46087:1079;:::o;43591:221::-;43676:14;43693:20;43710:2;43693:16;:20::i;:::-;-1:-1:-1;;;;;43724:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43769:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43591:221:0:o;35310:382::-;-1:-1:-1;;;;;35390:16:0;;35382:61;;;;-1:-1:-1;;;35382:61:0;;12648:2:1;35382:61:0;;;12630:21:1;;;12667:18;;;12660:30;12726:34;12706:18;;;12699:62;12778:18;;35382:61:0;12446:356:1;35382:61:0;33397:4;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;:30;35454:58;;;;-1:-1:-1;;;35454:58:0;;9031:2:1;35454:58:0;;;9013:21:1;9070:2;9050:18;;;9043:30;9109;9089:18;;;9082:58;9157:18;;35454:58:0;8829:352:1;35454:58:0;35525:45;35554:1;35558:2;35562:7;35525:20;:45::i;:::-;-1:-1:-1;;;;;35583:13:0;;;;;;:9;:13;;;;;:18;;35600:1;;35583:13;:18;;35600:1;;35583:18;:::i;:::-;;;;-1:-1:-1;;35612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35612:21:0;-1:-1:-1;;;;;35612:21:0;;;;;;;;35651:33;;35612:16;;;35651:33;;35612:16;;35651:33;35310:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:1527::-;4529:3;4567:6;4561:13;4593:4;4606:51;4650:6;4645:3;4640:2;4632:6;4628:15;4606:51;:::i;:::-;4720:13;;4679:16;;;;4742:55;4720:13;4679:16;4764:15;;;4742:55;:::i;:::-;4886:13;;4819:20;;;4859:1;;4946;4968:18;;;;5021;;;;5048:93;;5126:4;5116:8;5112:19;5100:31;;5048:93;5189:2;5179:8;5176:16;5156:18;5153:40;5150:167;;;-1:-1:-1;;;5216:33:1;;5272:4;5269:1;5262:15;5302:4;5223:3;5290:17;5150:167;5333:18;5360:110;;;;5484:1;5479:328;;;;5326:481;;5360:110;-1:-1:-1;;5395:24:1;;5381:39;;5440:20;;;;-1:-1:-1;5360:110:1;;5479:328;17065:1;17058:14;;;17102:4;17089:18;;5574:1;5588:169;5602:8;5599:1;5596:15;5588:169;;;5684:14;;5669:13;;;5662:37;5727:16;;;;5619:10;;5588:169;;;5592:3;;5788:8;5781:5;5777:20;5770:27;;5326:481;-1:-1:-1;5823:3:1;;4305:1527;-1:-1:-1;;;;;;;;;;;4305:1527:1:o;6045:488::-;-1:-1:-1;;;;;6314:15:1;;;6296:34;;6366:15;;6361:2;6346:18;;6339:43;6413:2;6398:18;;6391:34;;;6461:3;6456:2;6441:18;;6434:31;;;6239:4;;6482:45;;6507:19;;6499:6;6482:45;:::i;:::-;6474:53;6045:488;-1:-1:-1;;;;;;6045:488:1:o;6538:632::-;6709:2;6761:21;;;6831:13;;6734:18;;;6853:22;;;6680:4;;6709:2;6932:15;;;;6906:2;6891:18;;;6680:4;6975:169;6989:6;6986:1;6983:13;6975:169;;;7050:13;;7038:26;;7119:15;;;;7084:12;;;;7011:1;7004:9;6975:169;;;-1:-1:-1;7161:3:1;;6538:632;-1:-1:-1;;;;;;6538:632:1:o;7367:219::-;7516:2;7505:9;7498:21;7479:4;7536:44;7576:2;7565:9;7561:18;7553:6;7536:44;:::i;8003:414::-;8205:2;8187:21;;;8244:2;8224:18;;;8217:30;8283:34;8278:2;8263:18;;8256:62;-1:-1:-1;;;8349:2:1;8334:18;;8327:48;8407:3;8392:19;;8003:414::o;13220:356::-;13422:2;13404:21;;;13441:18;;;13434:30;13500:34;13495:2;13480:18;;13473:62;13567:2;13552:18;;13220:356::o;15619:413::-;15821:2;15803:21;;;15860:2;15840:18;;;15833:30;15899:34;15894:2;15879:18;;15872:62;-1:-1:-1;;;15965:2:1;15950:18;;15943:47;16022:3;16007:19;;15619:413::o;17118:128::-;17158:3;17189:1;17185:6;17182:1;17179:13;17176:39;;;17195:18;;:::i;:::-;-1:-1:-1;17231:9:1;;17118:128::o;17251:120::-;17291:1;17317;17307:35;;17322:18;;:::i;:::-;-1:-1:-1;17356:9:1;;17251:120::o;17376:125::-;17416:4;17444:1;17441;17438:8;17435:34;;;17449:18;;:::i;:::-;-1:-1:-1;17486:9:1;;17376:125::o;17506:258::-;17578:1;17588:113;17602:6;17599:1;17596:13;17588:113;;;17678:11;;;17672:18;17659:11;;;17652:39;17624:2;17617:10;17588:113;;;17719:6;17716:1;17713:13;17710:48;;;-1:-1:-1;;17754:1:1;17736:16;;17729:27;17506:258::o;17769:380::-;17848:1;17844:12;;;;17891;;;17912:61;;17966:4;17958:6;17954:17;17944:27;;17912:61;18019:2;18011:6;18008:14;17988:18;17985:38;17982:161;;;18065:10;18060:3;18056:20;18053:1;18046:31;18100:4;18097:1;18090:15;18128:4;18125:1;18118:15;17982:161;;17769:380;;;:::o;18154:135::-;18193:3;-1:-1:-1;;18214:17:1;;18211:43;;;18234:18;;:::i;:::-;-1:-1:-1;18281:1:1;18270:13;;18154:135::o;18294:112::-;18326:1;18352;18342:35;;18357:18;;:::i;:::-;-1:-1:-1;18391:9:1;;18294:112::o;18411:127::-;18472:10;18467:3;18463:20;18460:1;18453:31;18503:4;18500:1;18493:15;18527:4;18524:1;18517:15;18543:127;18604:10;18599:3;18595:20;18592:1;18585:31;18635:4;18632:1;18625:15;18659:4;18656:1;18649:15;18675:127;18736:10;18731:3;18727:20;18724:1;18717:31;18767:4;18764:1;18757:15;18791:4;18788:1;18781:15;18807:127;18868:10;18863:3;18859:20;18856:1;18849:31;18899:4;18896:1;18889:15;18923:4;18920:1;18913:15;18939:127;19000:10;18995:3;18991:20;18988:1;18981:31;19031:4;19028:1;19021:15;19055:4;19052:1;19045:15;19071:131;-1:-1:-1;;;;;;19145:32:1;;19135:43;;19125:71;;19192:1;19189;19182:12

Swarm Source

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