Abstract Testnet

Token

TestNft (NFT)
ERC-721

Overview

Max Total Supply

0 NFT

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
1 NFT
0xaa7c6a2bb83cdd7f539f17c57409dcf8660b1356
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
TestNft

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 11 : TestNft.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";

contract TestNft is ERC721, ERC721Burnable {
    uint256 public nextTokenId;
    address public admin;

    constructor() ERC721("TestNft", "NFT") {
        admin = msg.sender;
    }

    function mint(address to) external {
        require(msg.sender == admin, "only admin can mint");
        _safeMint(to, nextTokenId);
        nextTokenId++;
    }
}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 11 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 4 of 11 : Address.sol
// SPDX-License-Identifier: 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);
            }
        }
    }
}

File 5 of 11 : Context.sol
// SPDX-License-Identifier: 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;
    }
}

File 6 of 11 : Strings.sol
// SPDX-License-Identifier: 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);
    }
}

File 7 of 11 : ERC165.sol
// SPDX-License-Identifier: 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;
    }
}

File 8 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 9 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: 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);
}

File 11 of 11 : IERC165.sol
// SPDX-License-Identifier: 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);
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002eba0b33e0210344cab814ccaf2c3af9c2e995b23152a481ba8195298ef00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000700000000000200010000000103550000000100200190000000220000c13d000000600210027000000289042001970000008003000039000000400030043f000000040040008c000005690000413d000000000201043b000000e002200270000002910020009c000000640000a13d000002920020009c000000830000a13d000002930020009c000000fb0000a13d000002940020009c000001c50000613d000002950020009c000001f00000613d000002960020009c000005690000c13d0000000001000416000000000001004b000005690000c13d0000000701000039000000000101041a000002a901100197000000800010043f000002aa0100004100000a1f0001042e0000000001000416000000000001004b000005690000c13d0000000706000039000000800060043f0000028a01000041000000a00010043f0000010001000039000000400010043f0000000301000039000000c00010043f0000028b01000041000000e00010043f000000000100041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b0000003e0000613d000002c801000041000000000010043f0000002201000039000000040010043f000002c90100004100000a2000010430000000200030008c000000570000413d000500000003001d000000000000043f0000000001000414000002890010009c0000028901008041000000c0011002100000028c011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b00000005020000290000001f0220003900000005022002700000000002210019000000000021004b0000000706000039000000570000813d000000000001041b0000000101100039000000000021004b000000530000413d000000a00100043d0000028d011001970000000e011001bf000000000010041b000000c00400043d0000028e0040009c000000b90000413d000002c801000041000000000010043f0000004101000039000000040010043f000002c90100004100000a20000104300000029e0020009c000000a00000213d000002a40020009c000001470000213d000002a70020009c0000020b0000613d000002a80020009c000005690000c13d0000000001000416000000000001004b000005690000c13d000000000200041a000000010420019000000001012002700000007f0310018f00000000010360190000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000380000c13d000000800010043f000000000004004b000002bc0000c13d000002dc01200197000000a00010043f000000000003004b00000020020000390000000002006039000002e10000013d000002990020009c000001740000213d0000029c0020009c0000019d0000613d0000029d0020009c000005690000c13d000000240040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000401100370000000000101043b000002a90010009c000005690000213d000000000001004b000002ca0000c13d000002b001000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f000002b801000041000000c40010043f000002b901000041000000e40010043f000002ba0100004100000a20000104300000029f0020009c000001900000213d000002a20020009c0000021f0000613d000002a30020009c000005690000c13d0000000001000416000000000001004b000005690000c13d00000000010400190a1e05c70000040f000500000001001d000400000002001d000300000003001d000000400100043d000200000001001d0a1e05d90000040f000000020400002900000000000404350000000501000029000000040200002900000003030000290a1e067d0000040f000000000100001900000a1f0001042e0000000107000039000000000107041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000380000c13d000000200030008c000000e60000413d000400000003001d000500000004001d0000000101000039000000000010043f0000000001000414000002890010009c0000028901008041000000c0011002100000028c011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d00000005040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000007060000390000000107000039000000e60000813d000000000002041b0000000102200039000000000012004b000000e20000413d0000001f0040008c000002810000a13d000500000004001d000000000070043f0000000001000414000002890010009c0000028901008041000000c0011002100000028c011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d0000000508000029000002dd02800198000000000101043b0000028b0000c13d000000e003000039000000070600003900000001070000390000029b0000013d000002970020009c000002310000613d000002980020009c000005690000c13d000000840040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000402100370000000000502043b000002a90050009c000005690000213d0000002402100370000000000202043b000002a90020009c000005690000213d0000006403100370000000000603043b000002b20060009c000005690000213d0000002303600039000000000043004b000005690000813d0000000407600039000000000371034f000000000303043b000002b20030009c0000005e0000213d0000001f09300039000002dd099001970000003f09900039000002dd09900197000002b30090009c0000005e0000213d0000008009900039000000400090043f000000800030043f00000000063600190000002406600039000000000046004b000005690000213d0000002004700039000000000641034f000002dd073001980000001f0830018f000000a004700039000001310000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b0000012d0000c13d000000000008004b0000013e0000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00330003900000000000304350000004401100370000000000301043b000000800400003900000000010500190a1e067d0000040f000000000100001900000a1f0001042e000002a50020009c000002500000613d000002a60020009c000005690000c13d000000440040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000402100370000000000202043b000500000002001d000002a90020009c000005690000213d0000002401100370000000000101043b000400000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000002a901100198000003110000613d000000050010006b000003820000c13d000000400100043d0000006402100039000002d40300004100000000003204350000004402100039000002d5030000410000000000320435000000240210003900000021030000390000031a0000013d0000029a0020009c000001bd0000613d0000029b0020009c000005690000c13d0000000001000416000000000001004b000005690000c13d0000000103000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000380000c13d000000800010043f000000000005004b000002d40000c13d000002dc01200197000000a00010043f000000000004004b00000020020000390000000002006039000002e10000013d000002a00020009c0000025f0000613d000002a10020009c000005690000c13d000000240040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000401100370000000000101043b0a1e06460000040f000002580000013d000000240040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000401100370000000000101043b000500000001001d000002a90010009c000005690000213d0000000701000039000000000101041a000002a9011001970000000002000411000000000012004b000002b20000c13d0000000601000039000000000201041a000000a001000039000000400010043f000000800000043f000000050000006b000003250000c13d000002b001000041000000a00010043f0000002001000039000000a40010043f000000c40010043f000002ca01000041000000e40010043f000002cb0100004100000a20000104300000000001000416000000000001004b000005690000c13d0000000601000039000000000101041a000000800010043f000002aa0100004100000a1f0001042e000000240040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000401100370000000000101043b000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000400200043d000000000101043b000000000101041a000002a900100198000002f20000c13d0000006401200039000002ae0300004100000000003104350000004401200039000002af03000041000000000031043500000024012000390000002f030000390000000000310435000002b0010000410000000000120435000000040120003900000020030000390000000000310435000002890020009c00000289020080410000004001200210000002b1011001c700000a2000010430000000440040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000402100370000000000202043b000002a90020009c000005690000213d0000002401100370000000000101043b000500000001001d000002a90010009c000005690000213d000000000020043f0000000501000039000000200010043f000000400200003900000000010000190a1e09ff0000040f00000005020000290a1e066d0000040f000000000101041a000000ff001001900000000001000039000000010100c039000002580000013d000000240040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000401100370000000000201043b000002c600200198000005690000c13d0000000101000039000002c702200197000002d90020009c000001c20000613d000002da0020009c000001c20000613d000002db0020009c000000000100c019000000800010043f000002aa0100004100000a1f0001042e0000000001000416000000000001004b000005690000c13d00000000010400190a1e05c70000040f000500000001001d000400000002001d0000000002030019000300000003001d00000000010004110a1e089c0000040f0a1e062f0000040f0000000501000029000000040200002900000003030000290a1e09310000040f000000000100001900000a1f0001042e000000440040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000402100370000000000202043b000500000002001d000002a90020009c000005690000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000400000002001d000000000012004b000005690000c13d0000000002000411000000050020006c0000034e0000c13d000002b001000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f000002b501000041000000c40010043f000002b60100004100000a2000010430000000240040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000401100370000000000101043b0a1e05f60000040f000000400200043d0000000000120435000002890020009c00000289020080410000004001200210000002ab011001c700000a1f0001042e000000240040008c000005690000413d0000000002000416000000000002004b000005690000c13d0000000401100370000000000101043b000500000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000002a900100198000003000000c13d000000400100043d0000006402100039000002ce0300004100000000003204350000004402100039000002d103000041000000000032043500000024021000390000002c030000390000031a0000013d000000000004004b0000000001000019000002850000613d000000e00100043d0000000302400210000002de0220027f000002de02200167000000000121016f0000000102400210000002a60000013d000000010320008a0000000503300270000000000331001900000020040000390000000103300039000000070600003900000001070000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000002920000c13d000000e003500039000000000082004b000002a40000813d0000000302800210000000f80220018f000002de0220027f000002de022001670000000003030433000000000223016f000000000021041b00000001018002100000000002070019000000000121019f000000000017041b000000000106041a0000028f011001970000000002000411000000000121019f000000000016041b000000200100003900000100001004430000012000000443000002900100004100000a1f0001042e000002b001000041000000800010043f0000002001000039000000840010043f0000001301000039000000a40010043f000002bb01000041000000c40010043f000002b60100004100000a2000010430000000000000043f000000020020008c0000000002000019000002e10000413d000002d8030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002c20000413d000002e10000013d000000000010043f0000000301000039000000200010043f000000400200003900000000010000190a1e09ff0000040f000000000101041a000000800010043f000002aa0100004100000a1f0001042e000000000030043f000000020020008c0000000002000019000002e10000413d000002b7030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002da0000413d000000200220003900000080010000390a1e05e40000040f000000400100043d000500000001001d00000080020000390a1e05b20000040f00000005020000290000000001210049000002890010009c00000289010080410000006001100210000002890020009c00000289020080410000004002200210000000000121019f00000a1f0001042e000002ad0020009c0000005e0000213d0000002001200039000000400010043f0000000000020435000000400200043d000002ad0020009c0000005e0000213d0000002001200039000000400010043f0000000000020435000000400100043d000500000001001d000002e70000013d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000002a901100198000003b30000c13d000000400100043d0000006402100039000002d60300004100000000003204350000004402100039000002d7030000410000000000320435000000240210003900000029030000390000000000320435000002b0020000410000000000210435000000040210003900000020030000390000000000320435000002890010009c00000289010080410000004001100210000002b1011001c700000a2000010430000400000002001d000000000020043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c70000801002000039000300000003001d0a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000002a900100198000004270000c13d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000201041a000000010220003a000004960000c13d000002c801000041000000000010043f0000001101000039000000040010043f000002c90100004100000a2000010430000000000020043f0000000501000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000201041a000002dc022001970000000403000029000000000232019f000000000021041b000000400100043d0000000000310435000002890010009c000002890100804100000040011002100000000002000414000002890020009c0000028902008041000000c002200210000000000112019f0000028c011001c70000800d020000390000000303000039000002b404000041000000000500041100000005060000290a1e0a140000040f0000000100200190000005690000613d000000000100001900000a1f0001042e0000000002000411000000000012004b000004380000c13d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000201041a0000028f0220019700000005022001af000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000002a905100198000003110000613d0000000001000414000002890010009c0000028901008041000000c001100210000002be011001c70000800d020000390000000403000039000002d004000041000000050600002900000004070000290000037d0000013d0000000002000411000002a902200197000000000012004b000004600000c13d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000402a90010019c000003110000613d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000201041a0000028f02200197000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000002a905100198000003110000613d0000000001000414000002890010009c0000028901008041000000c001100210000002be011001c70000800d020000390000000403000039000002d004000041000000000600001900000005070000290a1e0a140000040f0000000100200190000005690000613d0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000201041a000000000002004b000003480000613d000000010220008a000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000201041a0000028f02200197000000000021041b0000000001000414000002890010009c0000028901008041000000c001100210000002be011001c70000800d020000390000000403000039000002bf040000410000000405000029000000000600001900000005070000290000037d0000013d000000400100043d0000004402100039000002bc03000041000000000032043500000024021000390000001c030000390000000000320435000002b0020000410000000000210435000000040210003900000020030000390000000000320435000002890010009c00000289010080410000004001100210000002bd011001c700000a2000010430000000000010043f0000000501000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b0000000002000411000002a902200197000000000020043f000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000000ff00100190000003850000c13d000000400100043d0000006402100039000002d20300004100000000003204350000004402100039000002d3030000410000000000320435000000240210003900000038030000390000031a0000013d000400000002001d000000000010043f0000000501000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000000ff00100190000003b70000c13d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000002a900100198000004d50000c13d000000400100043d0000006402100039000002ce0300004100000000003204350000004402100039000002cf030000410000027d0000013d000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000201041a0000028f022001970000000506000029000000000262019f000000000021041b0000000001000414000002890010009c0000028901008041000000c001100210000002be011001c70000800d020000390000000403000039000002bf04000041000000000500001900000004070000290a1e0a140000040f0000000100200190000005690000613d0000000001000415000200000001001d000002c0010000410000000000100443000000050100002900000004001004430000000001000414000002890010009c0000028901008041000000c001100210000002c1011001c700008002020000390a1e0a190000040f0000000100200190000004d40000613d000000000101043b000000000001004b000004f10000c13d0000000001000415000000020110006900000000010000020000000601000039000000000101041a000000010110003a000003480000613d0000000602000039000000000012041b000000000100001900000a1f0001042e000000000001042f0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000005690000613d000000000101043b000000000101041a000002a901100197000000040010006c000003b70000613d000000400100043d0000006402100039000002cc0300004100000000003204350000004402100039000002cd030000410000000000320435000000240210003900000030030000390000031a0000013d000000400300043d000000640130003900000080020000390000000000210435000000440130003900000004020000290000000000210435000002c2010000410000000000130435000000040130003900000000020004110000000000210435000000240130003900000000000104350000008402300039000000800100043d0000000000120435000100000003001d000000a402300039000000000001004b0000050e0000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b000005070000413d0000000002210019000000000002043500000000020004140000000503000029000000040030008c0000051c0000c13d0000000005000415000000070550008a00000005055002100000000003000031000000200030008c000000200400003900000000040340190000054f0000013d0000001f01100039000002dd01100197000000a401100039000002890010009c000002890100804100000060011002100000000103000029000002890030009c00000289030080410000004003300210000000000131019f000002890020009c0000028902008041000000c002200210000000000112019f00000005020000290a1e0a140000040f00000060031002700000028903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000001057000290000053c0000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b000005380000c13d000000000006004b000005490000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000005000415000000060550008a000000050550021000000001002001900000056b0000613d0000001f01400039000000600210018f0000000101200029000000000021004b00000000020000390000000102004039000002b20010009c0000005e0000213d00000001002001900000005e0000c13d000000400010043f000000200030008c000005690000413d00000001010000290000000001010433000002c600100198000005690000c13d0000000502500270000000000201001f000000000200041500000002022000690000000002000002000002c701100197000002c20010009c000004cc0000613d000005990000013d000000000100001900000a2000010430000000000003004b0000056f0000c13d0000006002000039000005960000013d0000001f02300039000002c3022001970000003f02200039000002c404200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000002b20040009c0000005e0000213d00000001005001900000005e0000c13d000000400040043f0000001f0430018f0000000006320436000002c505300198000300000006001d0000000003560019000005890000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b000005850000c13d000000000004004b000005960000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000005a90000c13d000000400200043d000500000002001d000002b001000041000000000012043500000004012000390a1e09f10000040f00000005020000290000000001210049000002890010009c00000289010080410000006001100210000002890020009c00000289020080410000004002200210000000000121019f00000a20000104300000000302000029000002890020009c00000289020080410000004002200210000002890010009c00000289010080410000006001100210000000000121019f00000a200001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000005c10000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000005ba0000413d000000000312001900000000000304350000001f02200039000002dd022001970000000001120019000000000001042d000002df0010009c000005d70000213d000000630010008c000005d70000a13d00000001030003670000000401300370000000000101043b000002a90010009c000005d70000213d0000002402300370000000000202043b000002a90020009c000005d70000213d0000004403300370000000000303043b000000000001042d000000000100001900000a2000010430000002e00010009c000005de0000813d0000002001100039000000400010043f000000000001042d000002c801000041000000000010043f0000004101000039000000040010043f000002c90100004100000a20000104300000001f02200039000002dd022001970000000001120019000000000021004b00000000020000390000000102004039000002b20010009c000005f00000213d0000000100200190000005f00000c13d000000400010043f000000000001042d000002c801000041000000000010043f0000004101000039000000040010043f000002c90100004100000a20000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000006190000613d000000000101043b000000000101041a000002a9001001980000061b0000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000006190000613d000000000101043b000000000101041a000002a901100197000000000001042d000000000100001900000a2000010430000000400100043d0000006402100039000002ce0300004100000000003204350000004402100039000002cf03000041000000000032043500000024021000390000002c030000390000000000320435000002b0020000410000000000210435000000040210003900000020030000390000000000320435000002890010009c00000289010080410000004001100210000002b1011001c700000a2000010430000000000001004b000006320000613d000000000001042d000000400100043d0000006402100039000002e10300004100000000003204350000004402100039000002e2030000410000000000320435000000240210003900000031030000390000000000320435000002b0020000410000000000210435000000040210003900000020030000390000000000320435000002890010009c00000289010080410000004001100210000002b1011001c700000a2000010430000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000006570000613d000000000101043b000000000101041a000002a901100198000006590000613d000000000001042d000000000100001900000a2000010430000000400100043d0000006402100039000002d60300004100000000003204350000004402100039000002d7030000410000000000320435000000240210003900000029030000390000000000320435000002b0020000410000000000210435000000040210003900000020030000390000000000320435000002890010009c00000289010080410000004001100210000002b1011001c700000a2000010430000002a902200197000000000020043f000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f00000001002001900000067b0000613d000000000101043b000000000001042d000000000100001900000a20000104300009000000000002000100000004001d000400000002001d000500000001001d000700000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000101041a000002a900100198000008150000613d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000101041a000002a901100198000008050000613d0000000002000411000302a90020019b000000030010006b000006e70000613d000000000010043f0000000501000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000101041a000000ff00100190000006e70000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000101041a000002a900100198000008420000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000101041a000002a901100197000000030010006c000008490000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000101041a000602a90010019c000008050000613d0000000501000029000002a901100197000000060010006b0000081f0000c13d0000000401000029000502a90010019c000008290000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000201041a0000028f02200197000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000101041a000002a905100198000008050000613d0000000001000414000002890010009c0000028901008041000000c001100210000002be011001c70000800d020000390000000403000039000002d004000041000000000600001900000007070000290a1e0a140000040f0000000100200190000008030000613d0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000201041a000000000002004b0000080f0000613d000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000201041a000000010220003a0000080f0000613d000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000008030000613d000000000101043b000000000201041a0000028f022001970000000506000029000000000262019f000000000021041b0000000001000414000002890010009c0000028901008041000000c001100210000002be011001c70000800d020000390000000403000039000002bf04000041000000060500002900000007070000290a1e0a140000040f0000000100200190000008030000613d0000000001000415000200000001001d000002c0010000410000000000100443000000040100002900000004001004430000000001000414000002890010009c0000028901008041000000c001100210000002c1011001c700008002020000390a1e0a190000040f00000001002001900000083d0000613d000000000101043b000000000001004b000007b10000613d000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000006020000290000000000210435000002c20100004100000000001b04350000000401b00039000000030200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000007a30000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b0000079c0000413d0000000002310019000000000002043500000000040004140000000502000029000000040020008c000007b50000c13d0000000005000415000000090550008a00000005055002100000000003000031000000200030008c00000020040000390000000004034019000007ea0000013d000000000100041500000002011000690000000001000002000000000001042d000600000007001d0000001f01100039000002dd01100197000000a401100039000002890010009c000002890100804100000060011002100000028900b0009c000002890300004100000000030b40190000004003300210000000000131019f000002890040009c0000028904008041000000c003400210000000000113019f00070000000b001d0a1e0a140000040f000000070b00002900000060031002700000028903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000007d70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000007d30000c13d000000000006004b000007e40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000005000415000000080550008a000000050550021000000001002001900000083e0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000002b20010009c0000088d0000213d00000001002001900000088d0000c13d000000400010043f000000200030008c000008030000413d00000000010b0433000002c600100198000008030000c13d0000000502500270000000000201001f000000000200041500000002022000690000000002000002000002c701100197000002c20010009c0000087d0000c13d000000000001042d000000000100001900000a2000010430000000400100043d0000006402100039000002d60300004100000000003204350000004402100039000002d703000041000000000032043500000024021000390000002903000039000008320000013d000002c801000041000000000010043f0000001101000039000000040010043f000002c90100004100000a2000010430000000400100043d0000006402100039000002ce0300004100000000003204350000004402100039000002d103000041000000000032043500000024021000390000002c03000039000008320000013d000000400100043d0000006402100039000002e30300004100000000003204350000004402100039000002e403000041000000000032043500000024021000390000002503000039000008320000013d000000400100043d0000006402100039000002e50300004100000000003204350000004402100039000002e6030000410000000000320435000000240210003900000024030000390000000000320435000002b0020000410000000000210435000000040210003900000020030000390000000000320435000002890010009c00000289010080410000004001100210000002b1011001c700000a2000010430000000000001042f000000000003004b000008530000c13d00000060020000390000087a0000013d000000400100043d0000006402100039000002ce0300004100000000003204350000004402100039000002cf030000410000081b0000013d000000400100043d0000006402100039000002e10300004100000000003204350000004402100039000002e203000041000000000032043500000024021000390000003103000039000008320000013d0000001f02300039000002c3022001970000003f02200039000002c404200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000002b20040009c0000088d0000213d00000001005001900000088d0000c13d000000400040043f0000001f0430018f0000000006320436000002c505300198000600000006001d00000000035600190000086d0000613d000000000601034f0000000607000029000000006806043c0000000007870436000000000037004b000008690000c13d000000000004004b0000087a0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000008930000c13d000000400200043d000700000002001d000002b001000041000000000012043500000004012000390a1e09f10000040f00000007020000290000000001210049000002890010009c00000289010080410000006001100210000002890020009c00000289020080410000004002200210000000000121019f00000a2000010430000002c801000041000000000010043f0000004101000039000000040010043f000002c90100004100000a20000104300000000602000029000002890020009c00000289020080410000004002200210000002890010009c00000289010080410000006001100210000000000121019f00000a20000104300002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f00000001002001900000090a0000613d000000000101043b000000000101041a000002a9001001980000090c0000613d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f00000001002001900000090a0000613d000000000101043b000000000101041a000002a901100198000009160000613d0000000102000029000002a902200197000000000012004b000008c60000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f00000001002001900000090a0000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f00000001002001900000090a0000613d000000000101043b000000000101041a000000ff01100190000008e50000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f00000001002001900000090a0000613d000000000101043b000000000101041a000002a9001001980000092a0000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f00000001002001900000090a0000613d000000000101043b000000000101041a000002a901100197000000010010006c00000000010000390000000101006039000000000001042d000000000100001900000a2000010430000000400100043d0000006402100039000002ce0300004100000000003204350000004402100039000002d103000041000000000032043500000024021000390000002c030000390000091f0000013d000000400100043d0000006402100039000002d60300004100000000003204350000004402100039000002d7030000410000000000320435000000240210003900000029030000390000000000320435000002b0020000410000000000210435000000040210003900000020030000390000000000320435000002890010009c00000289010080410000004001100210000002b1011001c700000a2000010430000000400100043d0000006402100039000002ce0300004100000000003204350000004402100039000002cf03000041000009120000013d0004000000000002000100000002001d000200000001001d000400000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000009c10000613d000000000101043b000000000101041a000302a90010019c000009c30000613d0000000201000029000002a901100197000000030010006b000009d30000c13d0000000101000029000202a90010019c000009dd0000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000009c10000613d000000000101043b000000000201041a0000028f02200197000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000009c10000613d000000000101043b000000000101041a000002a905100198000009c30000613d0000000001000414000002890010009c0000028901008041000000c001100210000002be011001c70000800d020000390000000403000039000002d004000041000000000600001900000004070000290a1e0a140000040f0000000100200190000009c10000613d0000000301000029000000000010043f0000000301000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000009c10000613d000000000101043b000000000201041a000000000002004b000009cd0000613d000000010220008a000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000009c10000613d000000000101043b000000000201041a000000010220003a000009cd0000613d000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002890010009c0000028901008041000000c001100210000002ac011001c700008010020000390a1e0a190000040f0000000100200190000009c10000613d000000000101043b000000000201041a0000028f022001970000000206000029000000000262019f000000000021041b0000000001000414000002890010009c0000028901008041000000c001100210000002be011001c70000800d020000390000000403000039000002bf04000041000000030500002900000004070000290a1e0a140000040f0000000100200190000009c10000613d000000000001042d000000000100001900000a2000010430000000400100043d0000006402100039000002d60300004100000000003204350000004402100039000002d703000041000000000032043500000024021000390000002903000039000009e60000013d000002c801000041000000000010043f0000001101000039000000040010043f000002c90100004100000a2000010430000000400100043d0000006402100039000002e30300004100000000003204350000004402100039000002e403000041000000000032043500000024021000390000002503000039000009e60000013d000000400100043d0000006402100039000002e50300004100000000003204350000004402100039000002e6030000410000000000320435000000240210003900000024030000390000000000320435000002b0020000410000000000210435000000040210003900000020030000390000000000320435000002890010009c00000289010080410000004001100210000002b1011001c700000a20000104300000006002100039000002e70300004100000000003204350000004002100039000002e8030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000002890010009c00000289010080410000004001100210000002890020009c00000289020080410000006002200210000000000112019f0000000002000414000002890020009c0000028902008041000000c002200210000000000112019f000002be011001c700008010020000390a1e0a190000040f000000010020019000000a120000613d000000000101043b000000000001042d000000000100001900000a200001043000000a17002104210000000102000039000000000001042d0000000002000019000000000001042d00000a1c002104230000000102000039000000000001042d0000000002000019000000000001042d00000a1e0000043200000a1f0001042e00000a200001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff546573744e6674000000000000000000000000000000000000000000000000004e465400000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006a62784100000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f851a44000000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde0000000000000000000000000000000000000000000000000000000075794a3b0000000000000000000000000000000000000000000000000000000075794a3c0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000006a6278420000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6f08c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff7f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000006f6e6c792061646d696e2063616e206d696e74000000000000000000000000004552433732313a20746f6b656e20616c7265616479206d696e7465640000000000000000000000000000000000000000000000640000000000000000000000000200000000000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000004552433732313a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000064000000a000000000000000006e6572206e6f7220617070726f766564000000000000000000000000000000004552433732314275726e61626c653a2063616c6c6572206973206e6f74206f77697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e65788c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9254552433732313a206f70657261746f7220717565727920666f72206e6f6e65786e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f7772000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe0776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f6f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f2061646463656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000000543cd9d8bea0045dbba5b0b4f4ee5f471cc424367b5eddb4bf81371cccb5f46

[ 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.