Abstract Testnet

Token

ERC-1155

Overview

Max Total Supply

0

Holders

1,001

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
0x745a55dd36d792d47db33ac9fe4219537299f878
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:
SimpleERC1155NFT

Compiler Version
v0.8.22-1.0.1

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at sepolia.abscan.org on 2025-01-27
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0 ^0.8.1 ^0.8.22;

// lib/openzeppelin-contracts/contracts/utils/Address.sol

// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

/**
 * @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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// lib/openzeppelin-contracts/contracts/utils/Context.sol

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

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

// lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol

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

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

// lib/openzeppelin-contracts/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

// lib/openzeppelin-contracts/contracts/token/ERC1155/IERC1155.sol

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// lib/openzeppelin-contracts/contracts/token/ERC1155/IERC1155Receiver.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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;
    }
}

// lib/openzeppelin-contracts/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// lib/openzeppelin-contracts/contracts/token/ERC1155/ERC1155.sol

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol)

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// src/nft/SimpleERC1155NFT.sol

contract SimpleERC1155NFT is ERC1155, Ownable {
    uint256 public constant TOKEN_ID = 1; // Example token ID

    constructor() ERC1155("https://api.example.com/metadata/{id}.json") {
        // Optionally mint an initial supply to the deployer
        _mint(msg.sender, TOKEN_ID, 100, "");
    }

    /// @notice Mints new tokens to a specified address
    /// @param to The address to receive the tokens
    /// @param id The ID of the token to mint
    /// @param amount The number of tokens to mint
    /// @param data Additional data (optional)
    function mint(address to, uint256 id, uint256 amount, bytes memory data) public {
        _mint(to, id, amount, data);
    }
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"TOKEN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002d73797f7c15abf50936f183500d87cb9f7b0a2ead13f7d6bb8213586ea00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x000100000000000200130000000000020000000100200190000000350000c13d000000600210027000000283022001970000008004000039000000400040043f000000040020008c000009360000413d000000000301043b000000e0033002700000029f0030009c000000980000a13d000002a00030009c000000ba0000a13d000002a10030009c000000e60000213d000002a40030009c000001070000613d000002a50030009c000009360000c13d000000440020008c000009360000413d0000000002000416000000000002004b000009360000c13d0000000402100370000000000202043b000002890020009c000009360000213d0000002401100370000000000101043b000b00000001001d000002890010009c000009360000213d000000000020043f0000000101000039000000200010043f00000040010000390a0709ec0000040f0000000b02000029000000000020043f000000200010043f00000040010000390a0709ec0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000002b40100004100000a080001042e0000000001000416000000000001004b000009360000c13d000000e001000039000000400010043f0000002a01000039000000800010043f0000028401000041000000a00010043f0000028501000041000000c00010043f0000000203000039000000000103041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000000500000613d000002c501000041000000000010043f0000002201000039000000040010043f000002c60100004100000a0900010430000000200040008c0000006a0000413d000b00000004001d000000000030043f0000000001000414000002830010009c0000028301008041000000c00110021000000286011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000201043b0000000b010000290000001f01100039000000050110027000000000011200190000000202200039000000000012004b00000002030000390000006a0000813d000000000002041b0000000102200039000000000012004b000000660000413d000000000030043f0000000001000414000002830010009c0000028301008041000000c00110021000000286011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000a00200043d000000000021041b0000000101100039000000c00200043d0000028702200197000000000021041b00000055010000390000000202000039000000000012041b00000000060004110000000303000039000000000103041a0000028802100197000000000262019f000000000023041b00000000020004140000028905100197000002830020009c0000028302008041000000c0012002100000028a011001c70000800d020000390000028b040000410a0709fd0000040f0000000100200190000009360000613d000000400400043d0000028c0040009c000004220000413d000002c501000041000000000010043f0000004101000039000000040010043f000002c60100004100000a0900010430000002a90030009c000000c90000213d000002ad0030009c000001800000613d000002ae0030009c000001940000613d000002af0030009c000009360000c13d000000240020008c000009360000413d0000000001000416000000000001004b000009360000c13d0000000203000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000004a0000c13d000000800010043f000000000005004b0000047a0000c13d000002d201200197000000a00010043f000000000004004b000000c001000039000000a001006039000004cc0000013d000002a60030009c000001a70000613d000002a70030009c000002750000613d000002a80030009c000009360000c13d0000000001000416000000000001004b000009360000c13d0000000301000039000000000101041a0000028901100197000000800010043f000002b40100004100000a080001042e000002aa0030009c0000027c0000613d000002ab0030009c000003c90000613d000002ac0030009c000009360000c13d0000000001000416000000000001004b000009360000c13d0000000303000039000000000103041a00000289021001970000000005000411000000000052004b0000043c0000c13d0000028801100197000000000013041b0000000001000414000002830010009c0000028301008041000000c0011002100000028a011001c70000800d020000390000028b0400004100000000060000190a0709fd0000040f00000001002001900000048c0000c13d000009360000013d000002a20030009c000001280000613d000002a30030009c000009360000c13d000000240020008c000009360000413d0000000002000416000000000002004b000009360000c13d0000000401100370000000000601043b000002890060009c000009360000213d0000000303000039000000000103041a00000289021001970000000005000411000000000052004b0000043c0000c13d000000000006004b0000047f0000c13d0000029501000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000002b001000041000000c40010043f000002b101000041000000e40010043f000002b20100004100000a0900010430000000440020008c000009360000413d0000000002000416000000000002004b000009360000c13d0000000402100370000000000202043b000b00000002001d000002890020009c000009360000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b000009360000c13d00000000020004110000000b0020006c0000048e0000c13d0000029501000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f000002b601000041000000c40010043f000002b701000041000000e40010043f000002b20100004100000a0900010430000000a40020008c000009360000413d0000000003000416000000000003004b000009360000c13d0000000403100370000000000303043b000b00000003001d000002890030009c000009360000213d0000002403100370000000000303043b000a00000003001d000002890030009c000009360000213d0000006403100370000000000303043b000800000003001d0000004403100370000000000303043b000900000003001d0000008403100370000000000403043b000002960040009c000009360000213d0000002303400039000000000023004b000009360000813d0000000405400039000000000351034f000000000303043b000002960030009c000000920000213d0000001f06300039000002d3066001970000003f06600039000002d306600197000002b30060009c000000920000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b000009360000213d0000002002500039000000000221034f000002d3043001980000001f0530018f000000a001400039000001620000613d000000a006000039000000000702034f000000007807043c0000000006860436000000000016004b0000015e0000c13d000000000005004b0000016f0000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000a001300039000000000001043500000000020004110000000b0020006b0000050e0000c13d0000000a0000006b000005360000c13d000000400100043d0000006402100039000002cb0300004100000000003204350000004402100039000002cc03000041000000000032043500000024021000390000002503000039000004310000013d000000440020008c000009360000413d0000000002000416000000000002004b000009360000c13d0000000402100370000000000302043b000002890030009c000009360000213d0000002401100370000000000201043b00000000010300190a07099d0000040f000000400200043d0000000000120435000002830020009c00000283020080410000004001200210000002d1011001c700000a080001042e000000240020008c000009360000413d0000000002000416000000000002004b000009360000c13d0000000401100370000000000201043b0000029300200198000009360000c13d0000000101000039000002ce0020009c000002790000613d000002cf0020009c000002790000613d000002d00020009c000000000100c019000000800010043f000002b40100004100000a080001042e000000840020008c000009360000413d0000000003000416000000000003004b000009360000c13d0000000403100370000000000303043b000b00000003001d000002890030009c000009360000213d0000004403100370000000000303043b000900000003001d0000002403100370000000000303043b000a00000003001d0000006403100370000000000403043b000002960040009c000009360000213d0000002303400039000000000023004b000009360000813d0000000405400039000000000351034f000000000303043b000002960030009c000000920000213d0000001f06300039000002d3066001970000003f06600039000002d306600197000002b30060009c000000920000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b000009360000213d0000002002500039000000000221034f000002d3043001980000001f0530018f000000a001400039000001dc0000613d000000a006000039000000000702034f000000007807043c0000000006860436000000000016004b000001d80000c13d000000000005004b000001e90000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000a0013000390000000000010435000000400100043d0000000b0000006b000004290000613d0000028d0010009c000000920000213d0000004002100039000000400020043f00000020021000390000000a03000029000000000032043500000001020000390000000000210435000000400100043d0000028d0010009c000000920000213d0000004003100039000000400030043f00000020031000390000000904000029000000000043043500000000002104350000000a01000029000000000010043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000201041a000000090020002a000004740000413d00000009030000290000000002320019000000000021041b000000400100043d000000200210003900000000003204350000000a020000290000000000210435000002830010009c000002830100804100000040011002100000000002000414000002830020009c0000028302008041000000c002200210000000000112019f0000028e011001c70000800d02000039000000040300003900000000050004110000028f0400004100000000060000190000000b070000290a0709fd0000040f0000000100200190000009360000613d000002900100004100000000001004430000000b0100002900000004001004430000000001000414000002830010009c0000028301008041000000c00110021000000291011001c700008002020000390a070a020000040f0000000100200190000007340000613d000000000101043b000000000001004b0000048c0000613d000000400300043d0000008401300039000000a002000039000000000021043500000064013000390000000902000029000000000021043500000044013000390000000a0200002900000000002104350000029201000041000000000013043500000004013000390000000002000411000000000021043500000024013000390000000000010435000000a402300039000000800100043d0000000000120435000800000003001d000000c402300039000000000001004b000002670000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b000002600000413d0000000002210019000000000002043500000000020004140000000b03000029000000040030008c000007350000c13d00000000050004150000000f0550008a00000005055002100000000003000031000000200030008c00000020040000390000000004034019000007680000013d0000000001000416000000000001004b000009360000c13d0000000101000039000000800010043f000002b40100004100000a080001042e000000a40020008c000009360000413d0000000003000416000000000003004b000009360000c13d0000000403100370000000000303043b000002890030009c000009360000213d0000002405100370000000000505043b000400000005001d000002890050009c000009360000213d0000004405100370000000000505043b000002960050009c000009360000213d0000002306500039000000000026004b000009360000813d0000000406500039000000000661034f000000000706043b000002960070009c000000920000213d00000005067002100000003f08600039000002ba08800197000002b30080009c000000920000213d0000008008800039000000400080043f000000800070043f00000024055000390000000006560019000000000026004b000009360000213d000000000007004b000002ab0000613d000000000751034f000000000707043b000000200440003900000000007404350000002005500039000000000065004b000002a40000413d0000006404100370000000000404043b000002960040009c000009360000213d0000002305400039000000000025004b0000000006000019000002bb06008041000002bb05500197000000000005004b0000000007000019000002bb07004041000002bb0050009c000000000706c019000000000007004b000009360000c13d0000000405400039000000000551034f000000000505043b000002960050009c000000920000213d00000005065002100000003f07600039000002ba07700197000000400800043d0000000007780019000600000008001d000000000087004b00000000080000390000000108004039000002960070009c000000920000213d0000000100800190000000920000c13d000000400070043f00000006070000290000000007570436000500000007001d00000024044000390000000006460019000000000026004b000009360000213d000000000005004b000002df0000613d0000000605000029000000000741034f000000000707043b000000200550003900000000007504350000002004400039000000000064004b000002d80000413d0000008404100370000000000504043b000002960050009c000009360000213d0000002304500039000000000024004b0000000006000019000002bb06008041000002bb04400197000000000004004b0000000007000019000002bb07004041000002bb0040009c000000000706c019000000000007004b000009360000c13d0000000406500039000000000461034f000000000404043b000002960040009c000000920000213d0000001f07400039000002d3077001970000003f07700039000002d307700197000000400800043d0000000007780019000200000008001d000000000087004b00000000080000390000000108004039000002960070009c000000920000213d0000000100800190000000920000c13d000000400070043f00000002070000290000000007470436000100000007001d00000000054500190000002405500039000000000025004b000009360000213d0000002002600039000000000221034f000002d3054001980000001f0640018f0000000101500029000003160000613d000000000702034f0000000108000029000000007907043c0000000008980436000000000018004b000003120000c13d000000000006004b000003230000613d000000000252034f0000000305600210000000000601043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f000000000021043500000001014000290000000000010435000902890030019b0000000001000411000000090010006b0000078f0000c13d00000006010000290000000002010433000000800100043d000000000021004b000008150000c13d0000000402000029000302890020019c000001760000613d000000000001004b00000006010000290000081c0000c13d000000400100043d000000400200003900000000022104360000004003100039000000800400043d00000000004304350000006003100039000000000004004b000003450000613d000000800500003900000000060000190000002005500039000000000705043300000000037304360000000106600039000000000046004b0000033f0000413d00000000041300490000000000420435000000060200002900000000040204330000000002430436000000000004004b000003540000613d000000000300001900000006050000290000002005500039000000000605043300000000026204360000000103300039000000000043004b0000034e0000413d0000000002120049000002830020009c00000283020080410000006002200210000002830010009c00000283010080410000004001100210000000000112019f0000000002000414000002830020009c0000028302008041000000c002200210000000000121019f0000028a011001c70000800d020000390000000403000039000002c9040000410000000005000411000000090600002900000003070000290a0709fd0000040f0000000100200190000009360000613d00000290010000410000000000100443000000040100002900000004001004430000000001000414000002830010009c0000028301008041000000c00110021000000291011001c700008002020000390a070a020000040f0000000100200190000007340000613d000000000101043b000000000001004b0000048c0000613d000000400300043d0000004401300039000000a0020000390000000000210435000000240130003900000009020000290000000000210435000002ca010000410000000000130435000000040130003900000000020004110000000000210435000000a401300039000000800200043d0000000000210435000b00000003001d000000c401300039000000000002004b000003960000613d000000800300003900000000040000190000002003300039000000000503043300000000015104360000000104400039000000000024004b000003900000413d0000000b030000290000000002310049000000040220008a00000064033000390000000000230435000000060200002900000000020204330000000001210436000000000002004b000003a80000613d000000000300001900000006050000290000002005500039000000000405043300000000014104360000000103300039000000000023004b000003a20000413d0000000b030000290000000002310049000000040220008a00000084033000390000000000230435000000020200002900000000020204330000000001210436000000000002004b0000000106000029000003bb0000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b000003b40000413d0000000003120019000000000003043500000000030004140000000304000029000000040040008c000008e30000c13d0000000005000415000000110550008a00000005055002100000000003000031000000200030008c00000020040000390000000004034019000009180000013d000000440020008c000009360000413d0000000003000416000000000003004b000009360000c13d0000000403100370000000000303043b000002960030009c000009360000213d0000002304300039000000000024004b000009360000813d0000000404300039000000000441034f000000000504043b000002960050009c000000920000213d00000005045002100000003f06400039000002ba06600197000002b30060009c000000920000213d0000008006600039000000400060043f000000800050043f00000024033000390000000004340019000000000024004b000009360000213d000000000005004b000003f10000613d000000a005000039000000000631034f000000000606043b000002890060009c000009360000213d00000000056504360000002003300039000000000043004b000003e90000413d0000002403100370000000000303043b000002960030009c000009360000213d0000002304300039000000000024004b0000000005000019000002bb05004041000002bb04400197000000000004004b0000000006000019000002bb06002041000002bb0040009c000000000605c019000000000006004b000009360000613d0000000404300039000000000441034f000000000404043b000002960040009c000000920000213d00000005054002100000003f06500039000002ba06600197000000400700043d0000000006670019000800000007001d000000000076004b00000000070000390000000107004039000002960060009c000000920000213d0000000100700190000000920000c13d000000400060043f00000008060000290000000006460436000700000006001d00000024033000390000000005350019000000000025004b000009360000213d000000000004004b0000059d0000c13d000000800300043d000000000003004b0000000003000019000005ac0000613d000005d20000013d0000002003400039000000400030043f0000000000040435000000400100043d0000000002000411000000000002004b000004450000c13d00000064021000390000029d03000041000000000032043500000044021000390000029e03000041000000000032043500000024021000390000002103000039000000000032043500000295020000410000000000210435000000040210003900000020030000390000000000320435000002830010009c0000028301008041000000400110021000000299011001c700000a09000104300000029501000041000000800010043f0000002001000039000000840010043f000000a40010043f000002b801000041000000c40010043f000002b90100004100000a09000104300000028d0010009c000000920000213d0000004002100039000000400020043f0000002002100039000000010500003900000000005204350000000000510435000000400100043d0000028d0010009c000000920000213d000a00000004001d000b00000003001d0000004002100039000000400020043f0000002002100039000000640300003900000000003204350000000000510435000000000050043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000201041a000002d40020009c000004df0000413d000002c501000041000000000010043f0000001101000039000000040010043f000002c60100004100000a0900010430000000000030043f000000020020008c000004c10000813d000000a001000039000004cc0000013d0000028801100197000000000161019f000000000013041b0000000001000414000002830010009c0000028301008041000000c0011002100000028a011001c70000800d020000390000028b040000410a0709fd0000040f0000000100200190000009360000613d000000000100001900000a080001042e000000000020043f0000000101000039000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000201041a000002d2022001970000000a03000029000000000232019f000000000021041b000000400100043d0000000000310435000002830010009c000002830100804100000040011002100000000002000414000002830020009c0000028302008041000000c002200210000000000112019f00000286011001c70000800d020000390000000303000039000002b50400004100000000050004110000000b060000290a0709fd0000040f00000001002001900000048c0000c13d000009360000013d000002cd0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000004c30000413d000000c001300039000000800210008a00000080010000390a07097e0000040f0000002001000039000000400200043d000b00000002001d000000000212043600000080010000390a07096c0000040f0000000b020000290000000001210049000002830010009c00000283010080410000006001100210000002830020009c00000283020080410000004002200210000000000121019f00000a080001042e0000006402200039000000000021041b000000400100043d00000020021000390000006403000039000000000032043500000001020000390000000000210435000002830010009c000002830100804100000040011002100000000002000414000002830020009c0000028302008041000000c002200210000000000112019f0000028e011001c70000800d0200003900000004030000390000028f040000410000000005000411000000000600001900000000070500190a0709fd0000040f0000000100200190000009360000613d00000290010000410000000000100443000000000100041100000004001004430000000001000414000002830010009c0000028301008041000000c00110021000000291011001c700008002020000390a070a020000040f0000000100200190000007340000613d000000000101043b000000000001004b0000056d0000c13d0000002001000039000001000010044300000120000004430000029c0100004100000a080001042e0000000b01000029000000000010043f0000000101000039000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000101041a000000ff00100190000001740000c13d000000400100043d0000006402100039000002c10300004100000000003204350000004402100039000002c203000041000000000032043500000024021000390000002e03000039000004310000013d000000400200043d0000028d0020009c000000920000213d0000004001200039000000400010043f00000020012000390000000903000029000000000031043500000001010000390000000000120435000000400200043d0000028d0020009c000000920000213d0000004003200039000000400030043f00000020032000390000000804000029000000000043043500000000001204350000000901000029000000000010043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000101041a0007000800100074000006a20000813d000000400100043d0000006402100039000002c70300004100000000003204350000004402100039000002c8030000410000078b0000013d000000400300043d0000008401300039000000a002000039000000000021043500000064013000390000006402000039000000000021043500000044013000390000000102000039000000000021043500000292010000410000000000130435000000040130003900000000020004110000000000210435000000240130003900000000000104350000000a010000290000000001010433000000a4023000390000000000120435000900000003001d000000c402300039000000000001004b0000000b060000290000058f0000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000005880000413d0000000002210019000000000002043500000000020004140000000003000411000000040030008c000005dc0000c13d0000000005000415000000130550008a00000005055002100000000003000031000000200030008c000000200400003900000000040340190000060f0000013d0000000804000029000000000631034f000000000606043b000000200440003900000000006404350000002003300039000000000053004b0000059e0000413d00000008030000290000000003030433000000800400043d000000000034004b000005d20000c13d000002960030009c000000920000213d00000005043002100000003f05400039000002be06500197000000400500043d000600000005001d0000000005560019000000000065004b00000000060000390000000106004039000002960050009c000000920000213d0000000100600190000000920000c13d000000400050043f00000006050000290000000003350436000500000003001d0000001f0340018f000000000004004b000005c70000613d000000000121034f00000005024000290000000504000029000000001501043c0000000004540436000000000024004b000005c30000c13d000000000003004b000000800100043d000000000001004b0000066d0000c13d000000400200043d000b00000002001d0000002001000039000000000212043600000006010000290a0709900000040f000004d50000013d000000400100043d0000006402100039000002bc0300004100000000003204350000004402100039000002bd03000041000000000032043500000024021000390000002903000039000004310000013d0000001f01100039000002d301100197000000c401100039000002830010009c000002830100804100000060011002100000000903000029000002830030009c00000283030080410000004003300210000000000131019f000002830020009c0000028302008041000000c002200210000000000112019f00000000020004110a0709fd0000040f00000060031002700000028303300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000005fc0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000005f80000c13d000000000006004b000006090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000005000415000000120550008a000000050550021000000001002001900000062e0000613d0000001f01400039000000600210018f0000000901200029000000000021004b00000000020000390000000102004039000002960010009c000000920000213d0000000100200190000000920000c13d000000400010043f000000200030008c000009360000413d000000090200002900000000020204330000029300200198000009360000c13d0000000503500270000000000302001f0000029402200197000002920020009c000005090000613d00000064021000390000029a03000041000000000032043500000044021000390000029b03000041000000000032043500000024021000390000002803000039000004310000013d000000040230008c000006630000413d000000000400043d0000029304400197000000000501043b0000029405500197000000000445019f000000000040043f000000440030008c000006630000413d0000029404400197000002950040009c000006630000c13d0000000405100370000002d3062001980000001f0720018f000000400400043d0000000001640019000006470000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000006430000c13d000000000007004b000006540000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005104350000000005040433000002960050009c000006630000213d0000002401500039000000000031004b000006630000213d00000000014500190000000003010433000002960030009c000006630000213d000000000224001900000000063100190000002006600039000000000026004b000007f30000a13d000000400100043d00000064021000390000029703000041000000000032043500000044021000390000029803000041000000000032043500000024021000390000003403000039000004310000013d000000000300001900000008010000290000000001010433000000000031004b000008870000a13d000a00000003001d0000000503300210000000a0013000390000000001010433000b02890010019c0000801002000039000007850000613d000900000003001d00000007013000290000000001010433000000000010043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c70a070a020000040f0000000100200190000009360000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000060200002900000000020204330000000a03000029000000000032004b000008870000a13d00000009040000290000000502400029000000000101043b000000000101041a00000000001204350000000103300039000000800100043d000000000013004b0000066e0000413d000005cb0000013d0000000901000029000000000010043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000702000029000000000021041b0000000901000029000000000010043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000201041a000000080020002a000004740000413d00000008030000290000000002320019000000000021041b000000400100043d0000002002100039000000000032043500000009020000290000000000210435000002830010009c000002830100804100000040011002100000000002000414000002830020009c0000028302008041000000c002200210000000000112019f0000028e011001c70000800d0200003900000004030000390000028f0400004100000000050004110000000b060000290000000a070000290a0709fd0000040f0000000100200190000009360000613d000002900100004100000000001004430000000a0100002900000004001004430000000001000414000002830010009c0000028301008041000000c00110021000000291011001c700008002020000390a070a020000040f0000000100200190000007340000613d000000000101043b000000000001004b0000048c0000613d000000400300043d0000008401300039000000a002000039000000000021043500000064013000390000000802000029000000000021043500000044013000390000000902000029000000000021043500000024013000390000000b02000029000000000021043500000292010000410000000000130435000000040130003900000000020004110000000000210435000000a402300039000000800100043d0000000000120435000700000003001d000000c402300039000000000001004b000007260000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b0000071f0000413d0000000002210019000000000002043500000000020004140000000a03000029000000040030008c0000089d0000c13d00000000050004150000000d0550008a00000005055002100000000003000031000000200030008c00000020040000390000000004034019000008d00000013d000000000001042f0000001f01100039000002d301100197000000c401100039000002830010009c000002830100804100000060011002100000000803000029000002830030009c00000283030080410000004003300210000000000131019f000002830020009c0000028302008041000000c002200210000000000112019f0000000b020000290a0709fd0000040f00000060031002700000028303300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000007550000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000007510000c13d000000000006004b000007620000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000000050004150000000e0550008a00000005055002100000000100200190000007ae0000613d0000001f01400039000000600110018f0000000802100029000000000012004b00000000010000390000000101004039000002960020009c000000920000213d0000000100100190000000920000c13d0000000004020019000000400020043f000000200030008c000009360000413d000000080100002900000000010104330000029300100198000009360000c13d0000000502500270000000000201001f0000029401100197000002920010009c0000048c0000613d0000029501000041000b00000004001d000000000014043500000004014000390a0709d10000040f000007e90000013d000000400100043d0000006402100039000002bf0300004100000000003204350000004402100039000002c003000041000000000032043500000024021000390000002a03000039000004310000013d0000000901000029000000000010043f0000000101000039000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000101041a000000ff00100190000003290000c13d0000052c0000013d000000040230008c000007e30000413d000000000400043d0000029304400197000000000501043b0000029405500197000000000445019f000000000040043f000000440030008c000007e30000413d0000029404400197000002950040009c000007e30000c13d0000000405100370000002d3062001980000001f0720018f000000400400043d0000000001640019000007c70000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000007c30000c13d000000000007004b000007d40000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005104350000000005040433000002960050009c000007e30000213d0000002401500039000000000031004b000007e30000213d00000000014500190000000003010433000002960030009c000007e30000213d000000000224001900000000063100190000002006600039000000000026004b0000088d0000a13d000000400200043d000b00000002001d0000029501000041000000000012043500000004012000390a0709de0000040f0000000b020000290000000001210049000002830010009c00000283010080410000006001100210000002830020009c00000283020080410000004002200210000000000121019f00000a090001043000000000023500190000003f02200039000002d3022001970000000004420019000000000024004b00000000020000390000000102004039000002960040009c000000920000213d0000000100200190000000920000c13d0000000003040019000000400040043f000000000001004b000006630000613d00000295020000410000000004030019000b00000003001d000000000023043500000004023000390000002003000039000000000032043500000024024000390a07096c0000040f0000000b020000290000000001210049000002830010009c0000028301008041000002830020009c000002830200804100000060011002100000004002200210000000000121019f00000a0900010430000000400100043d0000006402100039000002c30300004100000000003204350000004402100039000002c4030000410000062a0000013d00000000020000190000000001010433000000000021004b000008870000a13d000800000002001d0000000501200210000000a002100039000000000302043300000005011000290000000001010433000a00000001001d000b00000003001d000000000030043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000101041a0007000a00100074000005660000413d0000000b01000029000000000010043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000702000029000000000021041b0000000b01000029000000000010043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009360000613d000000000101043b000000000201041a0000000a03000029000000000032001a000004740000413d0000000002320019000000000021041b00000008020000290000000102200039000000800100043d000000000012004b00000006010000290000081d0000413d000003340000013d000002c501000041000000000010043f0000003201000039000000040010043f000002c60100004100000a090001043000000000023500190000003f02200039000002d3022001970000000004420019000000000024004b00000000020000390000000102004039000002960040009c000000920000213d0000000100200190000000920000c13d0000000003040019000000400040043f000000000001004b000007e30000613d000008020000013d0000001f01100039000002d301100197000000c401100039000002830010009c000002830100804100000060011002100000000703000029000002830030009c00000283030080410000004003300210000000000131019f000002830020009c0000028302008041000000c002200210000000000112019f0000000a020000290a0709fd0000040f00000060031002700000028303300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000008bd0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000008b90000c13d000000000006004b000008ca0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000000050004150000000c0550008a00000005055002100000000100200190000009380000613d0000001f01400039000000600110018f0000000702100029000000000012004b00000000010000390000000101004039000002960020009c000000920000213d0000000100100190000000920000c13d0000000004020019000000400020043f000000200030008c000009360000413d0000000701000029000000000101043300000293001001980000077a0000613d000009360000013d0000001f02200039000002d3022001970000000b0400002900000000014100490000000001210019000002830010009c00000283010080410000006001100210000002830040009c000002830200004100000000020440190000004002200210000000000121019f000002830030009c0000028303008041000000c002300210000000000112019f00000003020000290a0709fd0000040f00000060031002700000028303300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b05700029000009050000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b000009010000c13d000000000006004b000009120000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000005000415000000100550008a00000005055002100000000100200190000009520000613d0000001f01400039000000600110018f0000000b02100029000000000012004b00000000010000390000000101004039000002960020009c000000920000213d0000000100100190000000920000c13d0000000004020019000000400020043f000000200030008c000009360000413d0000000b0100002900000000010104330000029300100198000009360000c13d0000000502500270000000000201001f0000029401100197000002ca0010009c0000048c0000613d0000029501000041000a00000004001d000000000014043500000004014000390a0709d10000040f0000000a02000029000007ea0000013d000000000100001900000a0900010430000000040230008c000007e30000413d000000000400043d0000029304400197000000000501043b0000029405500197000000000445019f000000000040043f000000440030008c000007e30000413d0000029404400197000002950040009c000007e30000c13d0000000405100370000002d3062001980000001f0720018f000000400400043d0000000001640019000007c70000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b0000094d0000c13d000007c70000013d000000040230008c000007e30000413d000000000400043d0000029304400197000000000501043b0000029405500197000000000445019f000000000040043f000000440030008c000007e30000413d0000029404400197000002950040009c000007e30000c13d0000000405100370000002d3062001980000001f0720018f000000400400043d0000000001640019000007c70000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000009670000c13d000007c70000013d00000000430104340000000001320436000000000003004b000009780000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000009710000413d000000000231001900000000000204350000001f02300039000002d3022001970000000001210019000000000001042d0000001f02200039000002d3022001970000000001120019000000000021004b00000000020000390000000102004039000002960010009c0000098a0000213d00000001002001900000098a0000c13d000000400010043f000000000001042d000002c501000041000000000010043f0000004101000039000000040010043f000002c60100004100000a0900010430000000000301001900000000040104330000000001420436000000000004004b0000099c0000613d00000000020000190000002003300039000000000503043300000000015104360000000102200039000000000042004b000009960000413d000000000001042d0001000000000002000102890010019c000009bd0000613d000000000020043f000000200000043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009bb0000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000002830010009c0000028301008041000000c0011002100000028e011001c700008010020000390a070a020000040f0000000100200190000009bb0000613d000000000101043b000000000101041a000000000001042d000000000100001900000a0900010430000000400100043d0000006402100039000002bf0300004100000000003204350000004402100039000002c003000041000000000032043500000024021000390000002a03000039000000000032043500000295020000410000000000210435000000040210003900000020030000390000000000320435000002830010009c0000028301008041000000400110021000000299011001c700000a090001043000000060021000390000029a03000041000000000032043500000040021000390000029b030000410000000000320435000000200210003900000028030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000297030000410000000000320435000000400210003900000298030000410000000000320435000000200210003900000034030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000002830010009c000002830100804100000060011002100000000002000414000002830020009c0000028302008041000000c002200210000000000112019f0000028a011001c700008010020000390a070a020000040f0000000100200190000009fb0000613d000000000101043b000000000001042d000000000100001900000a090001043000000a00002104210000000102000039000000000001042d0000000002000019000000000001042d00000a05002104230000000102000039000000000001042d0000000002000019000000000001042d00000a070000043200000a080001042e00000a09000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff68747470733a2f2f6170692e6578616d706c652e636f6d2f6d657461646174612f7b69647d2e6a736f6e000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffff00000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffffbf0200000000000000000000000000000000000040000000000000000000000000c3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f621806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000f23a6e610000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff526563656976657220696d706c656d656e746572000000000000000000000000455243313135353a207472616e7366657220746f206e6f6e2d4552433131353500000000000000000000000000000000000000840000000000000000000000006420746f6b656e73000000000000000000000000000000000000000000000000455243313135353a204552433131353552656365697665722072656a6563746500000002000000000000000000000000000000400000010000000000000000007300000000000000000000000000000000000000000000000000000000000000455243313135353a206d696e7420746f20746865207a65726f2061646472657300000000000000000000000000000000000000000000000000000000731133e800000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000f242432900000000000000000000000000000000000000000000000000000000f242432a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000731133e90000000000000000000000000000000000000000000000000000000089a89002000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000002eb2c2d5000000000000000000000000000000000000000000000000000000002eb2c2d6000000000000000000000000000000000000000000000000000000004e1273f400000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000000fdd58e0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000e89341c4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f000000000000000000000000000000000000002000000080000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c6600000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08000000000000000000000000000000000000000000000000000000000000000206d69736d617463680000000000000000000000000000000000000000000000455243313135353a206163636f756e747320616e6420696473206c656e67746800000000000000000000000000000000000000000000003fffffffffffffffe0616c6964206f776e657200000000000000000000000000000000000000000000455243313135353a2061646472657373207a65726f206973206e6f74206120766572206f7220617070726f766564000000000000000000000000000000000000455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e6d69736d61746368000000000000000000000000000000000000000000000000455243313135353a2069647320616e6420616d6f756e7473206c656e677468204e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000072207472616e7366657200000000000000000000000000000000000000000000455243313135353a20696e73756666696369656e742062616c616e636520666f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fbbc197c81000000000000000000000000000000000000000000000000000000006472657373000000000000000000000000000000000000000000000000000000455243313135353a207472616e7366657220746f20746865207a65726f206164405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01ffc9a7000000000000000000000000000000000000000000000000000000000e89341c00000000000000000000000000000000000000000000000000000000d9b67a26000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9c000000000000000000000000000000000000000000000000000000000000000069e42d5218520811af26cd88b866f6ba85275fde8f6b30333290a6c367719750

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