ETH Price: $3,340.86 (-8.96%)
 

Overview

Max Total Supply

120 KiwamiX

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
00000011.eth
Balance
2 KiwamiX
0x65822BD55311722118Fd49c2BF255dFebf6a8574
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:
KiwamiX

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-05-16
*/

////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// 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);
}


            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

////import "../../utils/introspection/IERC165.sol";

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



            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

////import "./IERC165.sol";

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



            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// 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);
    }
}


            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// 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;
    }
}



        
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [////IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



         
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

////import "../IERC721.sol";

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

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

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

          
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

////import "../IERC721.sol";

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

        
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// 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);
}




            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

////import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
////import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
////import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
////import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
////import '@openzeppelin/contracts/utils/Address.sol';
////import '@openzeppelin/contracts/utils/Context.sol';
////import '@openzeppelin/contracts/utils/Strings.sol';
////import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}



       
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

////import "../utils/Context.sol";

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


//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

////import "node_modules/@openzeppelin/contracts/access/Ownable.sol";
////import "node_modules/erc721a/contracts/ERC721A.sol";
////import "node_modules/@openzeppelin/contracts/utils/Strings.sol";


contract KiwamiX is Ownable, ERC721A {

    string public BASE_URI;

    constructor() ERC721A("KiwamiX", "KiwamiX") {}

    function mint(address receiver, uint256 quantity) public onlyOwner {
        //Mint the quantity
        _safeMint(receiver, quantity);
    }

    function setBaseURI(string memory baseURI_) public onlyOwner {
        BASE_URI = baseURI_;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return string(abi.encodePacked(BASE_URI, Strings.toString(_tokenId)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60806040523480156200001157600080fd5b5060405180604001604052806007815260200166096d2eec2dad2b60cb1b81525060405180604001604052806007815260200166096d2eec2dad2b60cb1b8152506200006c62000066620000a060201b60201c565b620000a4565b815162000081906002906020850190620000f4565b50805162000097906003906020840190620000f4565b505050620001d7565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000102906200019a565b90600052602060002090601f01602090048101928262000126576000855562000171565b82601f106200014157805160ff191683800117855562000171565b8280016001018555821562000171579182015b828111156200017157825182559160200191906001019062000154565b506200017f92915062000183565b5090565b5b808211156200017f576000815560010162000184565b600181811c90821680620001af57607f821691505b60208210811415620001d157634e487b7160e01b600052602260045260246000fd5b50919050565b61183880620001e76000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb465146102ad578063b88d4fde146102c0578063c87b56dd146102d3578063dbddb26a146102e6578063e985e9c5146102ee578063f2fde38b1461032a57600080fd5b80636352211e1461026657806370a0823114610279578063715018a61461028c5780638da5cb5b1461029457806395d89b41146102a557600080fd5b806323b872dd1161010a57806323b872dd146101f45780632f745c591461020757806340c10f191461021a57806342842e0e1461022d5780634f6ccce71461024057806355f804b31461025357600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a6101553660046114ab565b61033d565b60405190151581526020015b60405180910390f35b6101776103aa565b6040516101669190611673565b61019761019236600461152e565b61043c565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611481565b610480565b005b6101e66001546001600160801b03600160801b82048116918116919091031690565b604051908152602001610166565b6101c261020236600461138d565b61050e565b6101e6610215366004611481565b610519565b6101c2610228366004611481565b610616565b6101c261023b36600461138d565b610657565b6101e661024e36600461152e565b610672565b6101c26102613660046114e5565b61071f565b61019761027436600461152e565b61075c565b6101e6610287366004611338565b61076e565b6101c26107bd565b6000546001600160a01b0316610197565b6101776107f3565b6101c26102bb366004611445565b610802565b6101c26102ce3660046113c9565b610898565b6101776102e136600461152e565b6108d2565b610177610906565b61015a6102fc36600461135a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101c2610338366004611338565b610994565b60006001600160e01b031982166380ac58cd60e01b148061036e57506001600160e01b03198216635b5e139f60e01b145b8061038957506001600160e01b0319821663780e9d6360e01b145b806103a457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103b99061172a565b80601f01602080910402602001604051908101604052809291908181526020018280546103e59061172a565b80156104325780601f1061040757610100808354040283529160200191610432565b820191906000526020600020905b81548152906001019060200180831161041557829003601f168201915b5050505050905090565b600061044782610a2f565b610464576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061048b8261075c565b9050806001600160a01b0316836001600160a01b031614156104c05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104e057506104de81336102fc565b155b156104fe576040516367d9dca160e11b815260040160405180910390fd5b610509838383610a65565b505050565b610509838383610ac1565b60006105248361076e565b8210610543576040516306ed618760e11b815260040160405180910390fd5b6001546001600160801b0316600080805b8381101561061057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906105bc5750610608565b80516001600160a01b0316156105d157805192505b876001600160a01b0316836001600160a01b0316141561060657868414156105ff575093506103a492505050565b6001909301925b505b600101610554565b50600080fd5b6000546001600160a01b031633146106495760405162461bcd60e51b815260040161064090611686565b60405180910390fd5b6106538282610ce0565b5050565b61050983838360405180602001604052806000815250610898565b6001546000906001600160801b031681805b8281101561070557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906106fc57858314156106f55750949350505050565b6001909201915b50600101610684565b506040516329c8c00760e21b815260040160405180910390fd5b6000546001600160a01b031633146107495760405162461bcd60e51b815260040161064090611686565b805161065390600890602084019061120d565b600061076782610cfa565b5192915050565b60006001600160a01b038216610797576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146107e75760405162461bcd60e51b815260040161064090611686565b6107f16000610e20565b565b6060600380546103b99061172a565b6001600160a01b03821633141561082c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108a3848484610ac1565b6108af84848484610e70565b6108cc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606060086108df83610f7f565b6040516020016108f092919061158f565b6040516020818303038152906040529050919050565b600880546109139061172a565b80601f016020809104026020016040519081016040528092919081815260200182805461093f9061172a565b801561098c5780601f106109615761010080835404028352916020019161098c565b820191906000526020600020905b81548152906001019060200180831161096f57829003601f168201915b505050505081565b6000546001600160a01b031633146109be5760405162461bcd60e51b815260040161064090611686565b6001600160a01b038116610a235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610640565b610a2c81610e20565b50565b6001546000906001600160801b0316821080156103a4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610acc82610cfa565b80519091506000906001600160a01b0316336001600160a01b03161480610afa57508151610afa90336102fc565b80610b15575033610b0a8461043c565b6001600160a01b0316145b905080610b3557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610b6a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610b9157604051633a954ecd60e21b815260040160405180910390fd5b610ba16000848460000151610a65565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610c96576001546001600160801b0316811015610c96578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61065382826040518060200160405280600081525061107d565b604080516060810182526000808252602082018190529181019190915260015482906001600160801b0316811015610e0757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610e055780516001600160a01b031615610d9b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610e00579392505050565b610d9b565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15610f7357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610eb4903390899088908890600401611636565b602060405180830381600087803b158015610ece57600080fd5b505af1925050508015610efe575060408051601f3d908101601f19168201909252610efb918101906114c8565b60015b610f59573d808015610f2c576040519150601f19603f3d011682016040523d82523d6000602084013e610f31565b606091505b508051610f51576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f77565b5060015b949350505050565b606081610fa35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fcd5780610fb781611765565b9150610fc69050600a836116d3565b9150610fa7565b60008167ffffffffffffffff811115610fe857610fe86117d6565b6040519080825280601f01601f191660200182016040528015611012576020820181803683370190505b5090505b8415610f77576110276001836116e7565b9150611034600a86611780565b61103f9060306116bb565b60f81b818381518110611054576110546117c0565b60200101906001600160f81b031916908160001a905350611076600a866116d3565b9450611016565b610509838383600180546001600160801b03166001600160a01b0385166110b657604051622e076360e81b815260040160405180910390fd5b836110d45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156111e75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156111bd57506111bb6000888488610e70565b155b156111db576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611166565b50600180546001600160801b0319166001600160801b0392909216919091179055610cd9565b8280546112199061172a565b90600052602060002090601f01602090048101928261123b5760008555611281565b82601f1061125457805160ff1916838001178555611281565b82800160010185558215611281579182015b82811115611281578251825591602001919060010190611266565b5061128d929150611291565b5090565b5b8082111561128d5760008155600101611292565b600067ffffffffffffffff808411156112c1576112c16117d6565b604051601f8501601f19908116603f011681019082821181831017156112e9576112e96117d6565b8160405280935085815286868601111561130257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461133357600080fd5b919050565b60006020828403121561134a57600080fd5b6113538261131c565b9392505050565b6000806040838503121561136d57600080fd5b6113768361131c565b91506113846020840161131c565b90509250929050565b6000806000606084860312156113a257600080fd5b6113ab8461131c565b92506113b96020850161131c565b9150604084013590509250925092565b600080600080608085870312156113df57600080fd5b6113e88561131c565b93506113f66020860161131c565b925060408501359150606085013567ffffffffffffffff81111561141957600080fd5b8501601f8101871361142a57600080fd5b611439878235602084016112a6565b91505092959194509250565b6000806040838503121561145857600080fd5b6114618361131c565b91506020830135801515811461147657600080fd5b809150509250929050565b6000806040838503121561149457600080fd5b61149d8361131c565b946020939093013593505050565b6000602082840312156114bd57600080fd5b8135611353816117ec565b6000602082840312156114da57600080fd5b8151611353816117ec565b6000602082840312156114f757600080fd5b813567ffffffffffffffff81111561150e57600080fd5b8201601f8101841361151f57600080fd5b610f77848235602084016112a6565b60006020828403121561154057600080fd5b5035919050565b6000815180845261155f8160208601602086016116fe565b601f01601f19169290920160200192915050565b600081516115858185602086016116fe565b9290920192915050565b600080845481600182811c9150808316806115ab57607f831692505b60208084108214156115cb57634e487b7160e01b86526022600452602486fd5b8180156115df57600181146115f05761161d565b60ff1986168952848901965061161d565b60008b81526020902060005b868110156116155781548b8201529085019083016115fc565b505084890196505b50505050505061162d8185611573565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061166990830184611547565b9695505050505050565b6020815260006113536020830184611547565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156116ce576116ce611794565b500190565b6000826116e2576116e26117aa565b500490565b6000828210156116f9576116f9611794565b500390565b60005b83811015611719578181015183820152602001611701565b838111156108cc5750506000910152565b600181811c9082168061173e57607f821691505b6020821081141561175f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561177957611779611794565b5060010190565b60008261178f5761178f6117aa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2c57600080fdfea2646970667358221220fe6780744b206a5a5e1266e3729d8150b28d6621558340567b044a77e8bb68bd64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb465146102ad578063b88d4fde146102c0578063c87b56dd146102d3578063dbddb26a146102e6578063e985e9c5146102ee578063f2fde38b1461032a57600080fd5b80636352211e1461026657806370a0823114610279578063715018a61461028c5780638da5cb5b1461029457806395d89b41146102a557600080fd5b806323b872dd1161010a57806323b872dd146101f45780632f745c591461020757806340c10f191461021a57806342842e0e1461022d5780634f6ccce71461024057806355f804b31461025357600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a6101553660046114ab565b61033d565b60405190151581526020015b60405180910390f35b6101776103aa565b6040516101669190611673565b61019761019236600461152e565b61043c565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611481565b610480565b005b6101e66001546001600160801b03600160801b82048116918116919091031690565b604051908152602001610166565b6101c261020236600461138d565b61050e565b6101e6610215366004611481565b610519565b6101c2610228366004611481565b610616565b6101c261023b36600461138d565b610657565b6101e661024e36600461152e565b610672565b6101c26102613660046114e5565b61071f565b61019761027436600461152e565b61075c565b6101e6610287366004611338565b61076e565b6101c26107bd565b6000546001600160a01b0316610197565b6101776107f3565b6101c26102bb366004611445565b610802565b6101c26102ce3660046113c9565b610898565b6101776102e136600461152e565b6108d2565b610177610906565b61015a6102fc36600461135a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101c2610338366004611338565b610994565b60006001600160e01b031982166380ac58cd60e01b148061036e57506001600160e01b03198216635b5e139f60e01b145b8061038957506001600160e01b0319821663780e9d6360e01b145b806103a457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103b99061172a565b80601f01602080910402602001604051908101604052809291908181526020018280546103e59061172a565b80156104325780601f1061040757610100808354040283529160200191610432565b820191906000526020600020905b81548152906001019060200180831161041557829003601f168201915b5050505050905090565b600061044782610a2f565b610464576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061048b8261075c565b9050806001600160a01b0316836001600160a01b031614156104c05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104e057506104de81336102fc565b155b156104fe576040516367d9dca160e11b815260040160405180910390fd5b610509838383610a65565b505050565b610509838383610ac1565b60006105248361076e565b8210610543576040516306ed618760e11b815260040160405180910390fd5b6001546001600160801b0316600080805b8381101561061057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906105bc5750610608565b80516001600160a01b0316156105d157805192505b876001600160a01b0316836001600160a01b0316141561060657868414156105ff575093506103a492505050565b6001909301925b505b600101610554565b50600080fd5b6000546001600160a01b031633146106495760405162461bcd60e51b815260040161064090611686565b60405180910390fd5b6106538282610ce0565b5050565b61050983838360405180602001604052806000815250610898565b6001546000906001600160801b031681805b8281101561070557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906106fc57858314156106f55750949350505050565b6001909201915b50600101610684565b506040516329c8c00760e21b815260040160405180910390fd5b6000546001600160a01b031633146107495760405162461bcd60e51b815260040161064090611686565b805161065390600890602084019061120d565b600061076782610cfa565b5192915050565b60006001600160a01b038216610797576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146107e75760405162461bcd60e51b815260040161064090611686565b6107f16000610e20565b565b6060600380546103b99061172a565b6001600160a01b03821633141561082c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108a3848484610ac1565b6108af84848484610e70565b6108cc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606060086108df83610f7f565b6040516020016108f092919061158f565b6040516020818303038152906040529050919050565b600880546109139061172a565b80601f016020809104026020016040519081016040528092919081815260200182805461093f9061172a565b801561098c5780601f106109615761010080835404028352916020019161098c565b820191906000526020600020905b81548152906001019060200180831161096f57829003601f168201915b505050505081565b6000546001600160a01b031633146109be5760405162461bcd60e51b815260040161064090611686565b6001600160a01b038116610a235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610640565b610a2c81610e20565b50565b6001546000906001600160801b0316821080156103a4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610acc82610cfa565b80519091506000906001600160a01b0316336001600160a01b03161480610afa57508151610afa90336102fc565b80610b15575033610b0a8461043c565b6001600160a01b0316145b905080610b3557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610b6a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610b9157604051633a954ecd60e21b815260040160405180910390fd5b610ba16000848460000151610a65565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610c96576001546001600160801b0316811015610c96578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61065382826040518060200160405280600081525061107d565b604080516060810182526000808252602082018190529181019190915260015482906001600160801b0316811015610e0757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610e055780516001600160a01b031615610d9b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610e00579392505050565b610d9b565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15610f7357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610eb4903390899088908890600401611636565b602060405180830381600087803b158015610ece57600080fd5b505af1925050508015610efe575060408051601f3d908101601f19168201909252610efb918101906114c8565b60015b610f59573d808015610f2c576040519150601f19603f3d011682016040523d82523d6000602084013e610f31565b606091505b508051610f51576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f77565b5060015b949350505050565b606081610fa35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fcd5780610fb781611765565b9150610fc69050600a836116d3565b9150610fa7565b60008167ffffffffffffffff811115610fe857610fe86117d6565b6040519080825280601f01601f191660200182016040528015611012576020820181803683370190505b5090505b8415610f77576110276001836116e7565b9150611034600a86611780565b61103f9060306116bb565b60f81b818381518110611054576110546117c0565b60200101906001600160f81b031916908160001a905350611076600a866116d3565b9450611016565b610509838383600180546001600160801b03166001600160a01b0385166110b657604051622e076360e81b815260040160405180910390fd5b836110d45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156111e75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156111bd57506111bb6000888488610e70565b155b156111db576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611166565b50600180546001600160801b0319166001600160801b0392909216919091179055610cd9565b8280546112199061172a565b90600052602060002090601f01602090048101928261123b5760008555611281565b82601f1061125457805160ff1916838001178555611281565b82800160010185558215611281579182015b82811115611281578251825591602001919060010190611266565b5061128d929150611291565b5090565b5b8082111561128d5760008155600101611292565b600067ffffffffffffffff808411156112c1576112c16117d6565b604051601f8501601f19908116603f011681019082821181831017156112e9576112e96117d6565b8160405280935085815286868601111561130257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461133357600080fd5b919050565b60006020828403121561134a57600080fd5b6113538261131c565b9392505050565b6000806040838503121561136d57600080fd5b6113768361131c565b91506113846020840161131c565b90509250929050565b6000806000606084860312156113a257600080fd5b6113ab8461131c565b92506113b96020850161131c565b9150604084013590509250925092565b600080600080608085870312156113df57600080fd5b6113e88561131c565b93506113f66020860161131c565b925060408501359150606085013567ffffffffffffffff81111561141957600080fd5b8501601f8101871361142a57600080fd5b611439878235602084016112a6565b91505092959194509250565b6000806040838503121561145857600080fd5b6114618361131c565b91506020830135801515811461147657600080fd5b809150509250929050565b6000806040838503121561149457600080fd5b61149d8361131c565b946020939093013593505050565b6000602082840312156114bd57600080fd5b8135611353816117ec565b6000602082840312156114da57600080fd5b8151611353816117ec565b6000602082840312156114f757600080fd5b813567ffffffffffffffff81111561150e57600080fd5b8201601f8101841361151f57600080fd5b610f77848235602084016112a6565b60006020828403121561154057600080fd5b5035919050565b6000815180845261155f8160208601602086016116fe565b601f01601f19169290920160200192915050565b600081516115858185602086016116fe565b9290920192915050565b600080845481600182811c9150808316806115ab57607f831692505b60208084108214156115cb57634e487b7160e01b86526022600452602486fd5b8180156115df57600181146115f05761161d565b60ff1986168952848901965061161d565b60008b81526020902060005b868110156116155781548b8201529085019083016115fc565b505084890196505b50505050505061162d8185611573565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061166990830184611547565b9695505050505050565b6020815260006113536020830184611547565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156116ce576116ce611794565b500190565b6000826116e2576116e26117aa565b500490565b6000828210156116f9576116f9611794565b500390565b60005b83811015611719578181015183820152602001611701565b838111156108cc5750506000910152565b600181811c9082168061173e57607f821691505b6020821081141561175f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561177957611779611794565b5060010190565b60008261178f5761178f6117aa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2c57600080fdfea2646970667358221220fe6780744b206a5a5e1266e3729d8150b28d6621558340567b044a77e8bb68bd64736f6c63430008070033

Deployed Bytecode Sourcemap

47378:603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28068:372;;;;;;:::i;:::-;;:::i;:::-;;;6540:14:1;;6533:22;6515:41;;6503:2;6488:18;28068:372:0;;;;;;;;30678:100;;;:::i;:::-;;;;;;;:::i;32181:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5838:32:1;;;5820:51;;5808:2;5793:18;32181:204:0;5674:203:1;31744:371:0;;;;;;:::i;:::-;;:::i;:::-;;25305:280;;25550:12;;-1:-1:-1;;;;;;;;25550:12:0;;;;25534:13;;;:28;;;;25527:35;;25305:280;;;;7705:25:1;;;7693:2;7678:18;25305:280:0;7559:177:1;33038:170:0;;;;;;:::i;:::-;;:::i;26891:1105::-;;;;;;:::i;:::-;;:::i;47509:144::-;;;;;;:::i;:::-;;:::i;33279:185::-;;;;;;:::i;:::-;;:::i;25878:713::-;;;;;;:::i;:::-;;:::i;47661:99::-;;;;;;:::i;:::-;;:::i;30487:124::-;;;;;;:::i;:::-;;:::i;28504:206::-;;;;;;:::i;:::-;;:::i;46297:103::-;;;:::i;45646:87::-;45692:7;45719:6;-1:-1:-1;;;;;45719:6:0;45646:87;;30847:104;;;:::i;32457:279::-;;;;;;:::i;:::-;;:::i;33535:342::-;;;;;;:::i;:::-;;:::i;47768:210::-;;;;;;:::i;:::-;;:::i;47424:22::-;;;:::i;32807:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;32928:25:0;;;32904:4;32928:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32807:164;46555:201;;;;;;:::i;:::-;;:::i;28068:372::-;28170:4;-1:-1:-1;;;;;;28207:40:0;;-1:-1:-1;;;28207:40:0;;:105;;-1:-1:-1;;;;;;;28264:48:0;;-1:-1:-1;;;28264:48:0;28207:105;:172;;;-1:-1:-1;;;;;;;28329:50:0;;-1:-1:-1;;;28329:50:0;28207:172;:225;;;-1:-1:-1;;;;;;;;;;6853:40:0;;;28396:36;28187:245;28068:372;-1:-1:-1;;28068:372:0:o;30678:100::-;30732:13;30765:5;30758:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30678:100;:::o;32181:204::-;32249:7;32274:16;32282:7;32274;:16::i;:::-;32269:64;;32299:34;;-1:-1:-1;;;32299:34:0;;;;;;;;;;;32269:64;-1:-1:-1;32353:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32353:24:0;;32181:204::o;31744:371::-;31817:13;31833:24;31849:7;31833:15;:24::i;:::-;31817:40;;31878:5;-1:-1:-1;;;;;31872:11:0;:2;-1:-1:-1;;;;;31872:11:0;;31868:48;;;31892:24;;-1:-1:-1;;;31892:24:0;;;;;;;;;;;31868:48;9837:10;-1:-1:-1;;;;;31933:21:0;;;;;;:63;;-1:-1:-1;31959:37:0;31976:5;9837:10;32807:164;:::i;31959:37::-;31958:38;31933:63;31929:138;;;32020:35;;-1:-1:-1;;;32020:35:0;;;;;;;;;;;31929:138;32079:28;32088:2;32092:7;32101:5;32079:8;:28::i;:::-;31806:309;31744:371;;:::o;33038:170::-;33172:28;33182:4;33188:2;33192:7;33172:9;:28::i;26891:1105::-;26980:7;27013:16;27023:5;27013:9;:16::i;:::-;27004:5;:25;27000:61;;27038:23;;-1:-1:-1;;;27038:23:0;;;;;;;;;;;27000:61;27097:13;;-1:-1:-1;;;;;27097:13:0;27072:22;;;27347:557;27367:14;27363:1;:18;27347:557;;;27407:31;27441:14;;;:11;:14;;;;;;;;;27407:48;;;;;;;;;-1:-1:-1;;;;;27407:48:0;;;;-1:-1:-1;;;27407:48:0;;;;;;;;;;;-1:-1:-1;;;27407:48:0;;;;;;;;;;;;;;;;27474:73;;27519:8;;;27474:73;27569:14;;-1:-1:-1;;;;;27569:28:0;;27565:111;;27642:14;;;-1:-1:-1;27565:111:0;27719:5;-1:-1:-1;;;;;27698:26:0;:17;-1:-1:-1;;;;;27698:26:0;;27694:195;;;27768:5;27753:11;:20;27749:85;;;-1:-1:-1;27809:1:0;-1:-1:-1;27802:8:0;;-1:-1:-1;;;27802:8:0;27749:85;27856:13;;;;;27694:195;27388:516;27347:557;27383:3;;27347:557;;;;27980:8;;;47509:144;45692:7;45719:6;-1:-1:-1;;;;;45719:6:0;9837:10;45866:23;45858:68;;;;-1:-1:-1;;;45858:68:0;;;;;;;:::i;:::-;;;;;;;;;47616:29:::1;47626:8;47636;47616:9;:29::i;:::-;47509:144:::0;;:::o;33279:185::-;33417:39;33434:4;33440:2;33444:7;33417:39;;;;;;;;;;;;:16;:39::i;25878:713::-;25990:13;;25945:7;;-1:-1:-1;;;;;25990:13:0;25945:7;;26204:328;26224:14;26220:1;:18;26204:328;;;26264:31;26298:14;;;:11;:14;;;;;;;;;26264:48;;;;;;;;;-1:-1:-1;;;;;26264:48:0;;;;-1:-1:-1;;;26264:48:0;;;;;;;;;;;-1:-1:-1;;;26264:48:0;;;;;;;;;;;;;;26331:186;;26396:5;26381:11;:20;26377:85;;;-1:-1:-1;26437:1:0;25878:713;-1:-1:-1;;;;25878:713:0:o;26377:85::-;26484:13;;;;;26331:186;-1:-1:-1;26240:3:0;;26204:328;;;;26560:23;;-1:-1:-1;;;26560:23:0;;;;;;;;;;;47661:99;45692:7;45719:6;-1:-1:-1;;;;;45719:6:0;9837:10;45866:23;45858:68;;;;-1:-1:-1;;;45858:68:0;;;;;;;:::i;:::-;47733:19;;::::1;::::0;:8:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;30487:124::-:0;30551:7;30578:20;30590:7;30578:11;:20::i;:::-;:25;;30487:124;-1:-1:-1;;30487:124:0:o;28504:206::-;28568:7;-1:-1:-1;;;;;28592:19:0;;28588:60;;28620:28;;-1:-1:-1;;;28620:28:0;;;;;;;;;;;28588:60;-1:-1:-1;;;;;;28674:19:0;;;;;:12;:19;;;;;:27;;;;28504:206::o;46297:103::-;45692:7;45719:6;-1:-1:-1;;;;;45719:6:0;9837:10;45866:23;45858:68;;;;-1:-1:-1;;;45858:68:0;;;;;;;:::i;:::-;46362:30:::1;46389:1;46362:18;:30::i;:::-;46297:103::o:0;30847:104::-;30903:13;30936:7;30929:14;;;;;:::i;32457:279::-;-1:-1:-1;;;;;32548:24:0;;9837:10;32548:24;32544:54;;;32581:17;;-1:-1:-1;;;32581:17:0;;;;;;;;;;;32544:54;9837:10;32611:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32611:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32611:53:0;;;;;;;;;;32680:48;;6515:41:1;;;32611:42:0;;9837:10;32680:48;;6488:18:1;32680:48:0;;;;;;;32457:279;;:::o;33535:342::-;33702:28;33712:4;33718:2;33722:7;33702:9;:28::i;:::-;33746:48;33769:4;33775:2;33779:7;33788:5;33746:22;:48::i;:::-;33741:129;;33818:40;;-1:-1:-1;;;33818:40:0;;;;;;;;;;;33741:129;33535:342;;;;:::o;47768:210::-;47870:13;47932:8;47942:26;47959:8;47942:16;:26::i;:::-;47915:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47901:69;;47768:210;;;:::o;47424:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46555:201::-;45692:7;45719:6;-1:-1:-1;;;;;45719:6:0;9837:10;45866:23;45858:68;;;;-1:-1:-1;;;45858:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46644:22:0;::::1;46636:73;;;::::0;-1:-1:-1;;;46636:73:0;;6993:2:1;46636:73:0::1;::::0;::::1;6975:21:1::0;7032:2;7012:18;;;7005:30;7071:34;7051:18;;;7044:62;-1:-1:-1;;;7122:18:1;;;7115:36;7168:19;;46636:73:0::1;6791:402:1::0;46636:73:0::1;46720:28;46739:8;46720:18;:28::i;:::-;46555:201:::0;:::o;34132:144::-;34223:13;;34189:4;;-1:-1:-1;;;;;34223:13:0;34213:23;;:55;;;;-1:-1:-1;;34241:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34241:27:0;;;;34240:28;;34132:144::o;41348:196::-;41463:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41463:29:0;-1:-1:-1;;;;;41463:29:0;;;;;;;;;41508:28;;41463:24;;41508:28;;;;;;;41348:196;;;:::o;36849:2112::-;36964:35;37002:20;37014:7;37002:11;:20::i;:::-;37077:18;;36964:58;;-1:-1:-1;37035:22:0;;-1:-1:-1;;;;;37061:34:0;9837:10;-1:-1:-1;;;;;37061:34:0;;:101;;;-1:-1:-1;37129:18:0;;37112:50;;9837:10;32807:164;:::i;37112:50::-;37061:154;;;-1:-1:-1;9837:10:0;37179:20;37191:7;37179:11;:20::i;:::-;-1:-1:-1;;;;;37179:36:0;;37061:154;37035:181;;37234:17;37229:66;;37260:35;;-1:-1:-1;;;37260:35:0;;;;;;;;;;;37229:66;37332:4;-1:-1:-1;;;;;37310:26:0;:13;:18;;;-1:-1:-1;;;;;37310:26:0;;37306:67;;37345:28;;-1:-1:-1;;;37345:28:0;;;;;;;;;;;37306:67;-1:-1:-1;;;;;37388:16:0;;37384:52;;37413:23;;-1:-1:-1;;;37413:23:0;;;;;;;;;;;37384:52;37557:49;37574:1;37578:7;37587:13;:18;;;37557:8;:49::i;:::-;-1:-1:-1;;;;;37902:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37902:31:0;;;;;;;-1:-1:-1;;37902:31:0;;;;;;;37948:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37948:29:0;;;;;;;;;;;37994:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38039:61:0;;;;-1:-1:-1;;;38084:15:0;38039:61;;;;;;;;;;;38374:11;;;38404:24;;;;;:29;38374:11;;38404:29;38400:445;;38629:13;;-1:-1:-1;;;;;38629:13:0;38615:27;;38611:219;;;38699:18;;;38667:24;;;:11;:24;;;;;;;;:50;;38782:28;;;;38740:70;;-1:-1:-1;;;38740:70:0;-1:-1:-1;;;;;;38740:70:0;;;-1:-1:-1;;;;;38667:50:0;;;38740:70;;;;;;;38611:219;37877:979;38892:7;38888:2;-1:-1:-1;;;;;38873:27:0;38882:4;-1:-1:-1;;;;;38873:27:0;;;;;;;;;;;38911:42;36953:2008;;36849:2112;;;:::o;34284:104::-;34353:27;34363:2;34367:8;34353:27;;;;;;;;;;;;:9;:27::i;29342:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29508:13:0;;29452:7;;-1:-1:-1;;;;;29508:13:0;29501:20;;29497:861;;;29542:31;29576:17;;;:11;:17;;;;;;;;;29542:51;;;;;;;;;-1:-1:-1;;;;;29542:51:0;;;;-1:-1:-1;;;29542:51:0;;;;;;;;;;;-1:-1:-1;;;29542:51:0;;;;;;;;;;;;;;29612:731;;29662:14;;-1:-1:-1;;;;;29662:28:0;;29658:101;;29726:9;29342:1083;-1:-1:-1;;;29342:1083:0:o;29658:101::-;-1:-1:-1;;;30103:6:0;30148:17;;;;:11;:17;;;;;;;;;30136:29;;;;;;;;;-1:-1:-1;;;;;30136:29:0;;;;;-1:-1:-1;;;30136:29:0;;;;;;;;;;;-1:-1:-1;;;30136:29:0;;;;;;;;;;;;;30196:28;30192:109;;30264:9;29342:1083;-1:-1:-1;;;29342:1083:0:o;30192:109::-;30063:261;;;29523:835;29497:861;30386:31;;-1:-1:-1;;;30386:31:0;;;;;;;;;;;46916:191;46990:16;47009:6;;-1:-1:-1;;;;;47026:17:0;;;-1:-1:-1;;;;;;47026:17:0;;;;;;47059:40;;47009:6;;;;;;;47059:40;;46990:16;47059:40;46979:128;46916:191;:::o;42109:790::-;42264:4;-1:-1:-1;;;;;42285:13:0;;11523:19;:23;42281:611;;42321:72;;-1:-1:-1;;;42321:72:0;;-1:-1:-1;;;;;42321:36:0;;;;;:72;;9837:10;;42372:4;;42378:7;;42387:5;;42321:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42321:72:0;;;;;;;;-1:-1:-1;;42321:72:0;;;;;;;;;;;;:::i;:::-;;;42317:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42567:13:0;;42563:259;;42617:40;;-1:-1:-1;;;42617:40:0;;;;;;;;;;;42563:259;42772:6;42766:13;42757:6;42753:2;42749:15;42742:38;42317:520;-1:-1:-1;;;;;;42444:55:0;-1:-1:-1;;;42444:55:0;;-1:-1:-1;42437:62:0;;42281:611;-1:-1:-1;42876:4:0;42281:611;42109:790;;;;;;:::o;7297:723::-;7353:13;7574:10;7570:53;;-1:-1:-1;;7601:10:0;;;;;;;;;;;;-1:-1:-1;;;7601:10:0;;;;;7297:723::o;7570:53::-;7648:5;7633:12;7689:78;7696:9;;7689:78;;7722:8;;;;:::i;:::-;;-1:-1:-1;7745:10:0;;-1:-1:-1;7753:2:0;7745:10;;:::i;:::-;;;7689:78;;;7777:19;7809:6;7799:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7799:17:0;;7777:39;;7827:154;7834:10;;7827:154;;7861:11;7871:1;7861:11;;:::i;:::-;;-1:-1:-1;7930:10:0;7938:2;7930:5;:10;:::i;:::-;7917:24;;:2;:24;:::i;:::-;7904:39;;7887:6;7894;7887:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7887:56:0;;;;;;;;-1:-1:-1;7958:11:0;7967:2;7958:11;;:::i;:::-;;;7827:154;;34751:163;34874:32;34880:2;34884:8;34894:5;34901:4;35335:13;;-1:-1:-1;;;;;35335:13:0;-1:-1:-1;;;;;35363:16:0;;35359:48;;35388:19;;-1:-1:-1;;;35388:19:0;;;;;;;;;;;35359:48;35422:13;35418:44;;35444:18;;-1:-1:-1;;;35444:18:0;;;;;;;;;;;35418:44;-1:-1:-1;;;;;35814:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;35873:49:0;;35814:44;;;;;;;;35873:49;;;;-1:-1:-1;;35814:44:0;;;;;;35873:49;;;;;;;;;;;;;;;;35939:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;35989:66:0;;;;-1:-1:-1;;;36039:15:0;35989:66;;;;;;;;;;;35939:25;;36124:328;36144:8;36140:1;:12;36124:328;;;36183:38;;36208:12;;-1:-1:-1;;;;;36183:38:0;;;36200:1;;36183:38;;36200:1;;36183:38;36244:4;:68;;;;;36253:59;36284:1;36288:2;36292:12;36306:5;36253:22;:59::i;:::-;36252:60;36244:68;36240:164;;;36344:40;;-1:-1:-1;;;36344:40:0;;;;;;;;;;;36240:164;36422:14;;;;;36154:3;36124:328;;;-1:-1:-1;36468:13:0;:37;;-1:-1:-1;;;;;;36468:37:0;-1:-1:-1;;;;;36468:37:0;;;;;;;;;;36527:60;33535:342;-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;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;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:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4495:1174::-;4671:3;4700:1;4733:6;4727:13;4763:3;4785:1;4813:9;4809:2;4805:18;4795:28;;4873:2;4862:9;4858:18;4895;4885:61;;4939:4;4931:6;4927:17;4917:27;;4885:61;4965:2;5013;5005:6;5002:14;4982:18;4979:38;4976:165;;;-1:-1:-1;;;5040:33:1;;5096:4;5093:1;5086:15;5126:4;5047:3;5114:17;4976:165;5157:18;5184:104;;;;5302:1;5297:320;;;;5150:467;;5184:104;-1:-1:-1;;5217:24:1;;5205:37;;5262:16;;;;-1:-1:-1;5184:104:1;;5297:320;7814:1;7807:14;;;7851:4;7838:18;;5392:1;5406:165;5420:6;5417:1;5414:13;5406:165;;;5498:14;;5485:11;;;5478:35;5541:16;;;;5435:10;;5406:165;;;5410:3;;5600:6;5595:3;5591:16;5584:23;;5150:467;;;;;;;5633:30;5659:3;5651:6;5633:30;:::i;:::-;5626:37;4495:1174;-1:-1:-1;;;;;4495:1174:1:o;5882:488::-;-1:-1:-1;;;;;6151:15:1;;;6133:34;;6203:15;;6198:2;6183:18;;6176:43;6250:2;6235:18;;6228:34;;;6298:3;6293:2;6278:18;;6271:31;;;6076:4;;6319:45;;6344:19;;6336:6;6319:45;:::i;:::-;6311:53;5882:488;-1:-1:-1;;;;;;5882:488:1:o;6567:219::-;6716:2;6705:9;6698:21;6679:4;6736:44;6776:2;6765:9;6761:18;6753:6;6736:44;:::i;7198:356::-;7400:2;7382:21;;;7419:18;;;7412:30;7478:34;7473:2;7458:18;;7451:62;7545:2;7530:18;;7198:356::o;7867:128::-;7907:3;7938:1;7934:6;7931:1;7928:13;7925:39;;;7944:18;;:::i;:::-;-1:-1:-1;7980:9:1;;7867:128::o;8000:120::-;8040:1;8066;8056:35;;8071:18;;:::i;:::-;-1:-1:-1;8105:9:1;;8000:120::o;8125:125::-;8165:4;8193:1;8190;8187:8;8184:34;;;8198:18;;:::i;:::-;-1:-1:-1;8235:9:1;;8125:125::o;8255:258::-;8327:1;8337:113;8351:6;8348:1;8345:13;8337:113;;;8427:11;;;8421:18;8408:11;;;8401:39;8373:2;8366:10;8337:113;;;8468:6;8465:1;8462:13;8459:48;;;-1:-1:-1;;8503:1:1;8485:16;;8478:27;8255:258::o;8518:380::-;8597:1;8593:12;;;;8640;;;8661:61;;8715:4;8707:6;8703:17;8693:27;;8661:61;8768:2;8760:6;8757:14;8737:18;8734:38;8731:161;;;8814:10;8809:3;8805:20;8802:1;8795:31;8849:4;8846:1;8839:15;8877:4;8874:1;8867:15;8731:161;;8518:380;;;:::o;8903:135::-;8942:3;-1:-1:-1;;8963:17:1;;8960:43;;;8983:18;;:::i;:::-;-1:-1:-1;9030:1:1;9019:13;;8903:135::o;9043:112::-;9075:1;9101;9091:35;;9106:18;;:::i;:::-;-1:-1:-1;9140:9:1;;9043:112::o;9160:127::-;9221:10;9216:3;9212:20;9209:1;9202:31;9252:4;9249:1;9242:15;9276:4;9273:1;9266:15;9292:127;9353:10;9348:3;9344:20;9341:1;9334:31;9384:4;9381:1;9374:15;9408:4;9405:1;9398:15;9424:127;9485:10;9480:3;9476:20;9473:1;9466:31;9516:4;9513:1;9506:15;9540:4;9537:1;9530:15;9556:127;9617:10;9612:3;9608:20;9605:1;9598:31;9648:4;9645:1;9638:15;9672:4;9669:1;9662:15;9688:131;-1:-1:-1;;;;;;9762:32:1;;9752:43;;9742:71;;9809:1;9806;9799:12

Swarm Source

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