POL Price: $0.455363 (+3.16%)
 

Overview

TokenID

96055

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
VOICE_NFT

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 22 : voice_nft.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// 引入OpenZeppelin库的ERC721相关合约和工具
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol"; // ERC2981接口
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";


// NFT合约继承ERC721Enumerable, ERC721URIStorage, Ownable, IERC2981
contract VOICE_NFT is ERC721Enumerable, ERC721URIStorage, Ownable, IERC2981, ReentrancyGuard {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    // tokenId到价格的映射
    mapping(uint256 => uint256) public tokenPrices;

    // 默认铸造费用
    uint256 public defaultMintFee = 3 * (10 ** 18);

    // 地址到其是否支付了铸造费的映射
    mapping(address => bool) public mint_fee;

     // tokenId到其推荐人的映射
    mapping(uint256 => address) public recommender;

    // tokenId到其拥有者的映射
    mapping(uint256 => address) public token_owner;

    // 定义版税信息结构和映射
    struct RoyaltyInfo {
        address recipient;
        uint256 royaltyFraction;
    }
    mapping(uint256 => RoyaltyInfo) private _royalties;

    // 构造函数设置NFT的名称和符号
    constructor() ERC721("Voice NFT", "Voice NFT") {}

    // 在代币转移前的内部函数,重写以清除价格
    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) 
        internal override(ERC721, ERC721Enumerable) 
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
        tokenPrices[tokenId] = 0;
    }

    // 重写supportsInterface函数以支持ERC2981
    function supportsInterface(bytes4 interfaceId)
        public view virtual override(ERC721Enumerable, ERC721URIStorage, IERC165)
        returns (bool)
    {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    // 重写tokenURI函数以支持URI存储
    function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    // 重写_burn函数以支持销毁逻辑
    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    // 允许代币所有者设置代币售价
    function setTokenPrice(uint256 tokenId, uint256 price) external {
        require(ownerOf(tokenId) == msg.sender, "Not the owner");
        tokenPrices[tokenId] = price;
    }

    // 允许合约所有者将代币转移给用户,并设置版税信息
    function transferToUser(uint256 tokenId, address to, address _recommender, uint256 royaltyFraction) external onlyOwner {
        require(ownerOf(tokenId) == msg.sender, "Not the owner");
        require(mint_fee[to], "Mint fee not paid");
        require(to != address(0), "Invalid address");

        _transfer(ownerOf(tokenId), to, tokenId);

        token_owner[tokenId] = to;

        // 设置推荐人
        recommender[tokenId] = _recommender;

        //操作成功以后, 清除用户的手续费
        mint_fee[to] = false;

        // 设置版税接收者和比例
        _royalties[tokenId] = RoyaltyInfo({
            recipient: to,
            royaltyFraction: royaltyFraction
        });
    }

    // 实现ERC2981标准的版税信息查询
    function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) {
        RoyaltyInfo memory royalties = _royalties[tokenId];
        return (royalties.recipient, (salePrice * royalties.royaltyFraction) / 10000);
    }

    // 允许合约所有者批量铸造NFT
    function batchMint(uint256 amount) external onlyOwner {
        require(amount > 0, "Invalid amount");
        for (uint256 i = 0; i < amount; i++) {
            _tokenIdCounter.increment();
            uint256 newTokenId = _tokenIdCounter.current();

            // 为新NFT生成URI
            string memory uri = string(abi.encodePacked("https://vcity.app/voice_nft/", Strings.toString(newTokenId), ".json"));

            // 铸造新的NFT并设置其URI
            _safeMint(owner(), newTokenId);
            _setTokenURI(newTokenId, uri);

            // 初始化新NFT的价格为0, 下架状态,其他用户不可以进行购买
            tokenPrices[newTokenId] = 0;
        }
    }

    // 允许用户支付铸造费,并将费用转发给合约所有者
    function pay_mint_fee(address user) external payable {
        require(msg.value == defaultMintFee, "Incorrect fee");
        payable(owner()).transfer(msg.value);
        mint_fee[user] = true;
    }

    // 允许合约所有者设置铸造费用
    function setMintFee(uint256 fee) external onlyOwner {
        require(fee > 0, "Invalid fee");
        defaultMintFee = fee;
    }


    // 允许用户购买代币,并处理收益分配
    function buyToken(uint256 tokenId) external payable nonReentrant {
        uint256 price = tokenPrices[tokenId];
        require(price > 0, "Token not for sale");
        require(msg.value == price, "Incorrect payment value");

        // 更新合约状态
        tokenPrices[tokenId] = 0;  // 清除价格
        address seller = ownerOf(tokenId);
        _transfer(seller, msg.sender, tokenId);  // 转让NFT

        // 计算收益
        uint256 token_owner_Amount = price * 5 / 100;
        uint256 platformAmount = price / 100;
        uint256 recommenderAmount = recommender[tokenId] != address(0) ? price / 100 : 0;
        uint256 ownerAmount = price - token_owner_Amount - recommenderAmount - platformAmount;

        // 发送收益
        if (recommenderAmount > 0) {
            payable(recommender[tokenId]).transfer(recommenderAmount);
        }
        payable(token_owner[tokenId]).transfer(token_owner_Amount);
        payable(owner()).transfer(platformAmount);
        payable(seller).transfer(ownerAmount);
    }

    // 平台可销毁NFT,通过凭据来制造分贝
    function burnToken(uint256 tokenId) public onlyOwner {
        _burn(tokenId);
    }

}

File 2 of 22 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 3 of 22 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

File 4 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 5 of 22 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 22 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../interfaces/IERC4906.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is IERC4906, ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Emits {MetadataUpdate}.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;

        emit MetadataUpdate(tokenId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 7 of 22 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 22 : IERC4906.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol)

pragma solidity ^0.8.0;

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

/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
    /// @dev This event emits when the metadata of a token is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFT.
    event MetadataUpdate(uint256 _tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFTs.
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}

File 9 of 22 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 10 of 22 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 22 : 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);
}

File 12 of 22 : 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 13 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 14 of 22 : 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 15 of 22 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 16 of 22 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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);
        }
    }
}

File 17 of 22 : 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 18 of 22 : 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 19 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721.sol";

File 20 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 21 of 22 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 22 of 22 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buyToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"defaultMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mint_fee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"pay_mint_fee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"recommender","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"uint256","name":"fee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"token_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"_recommender","type":"address"},{"internalType":"uint256","name":"royaltyFraction","type":"uint256"}],"name":"transferToUser","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526729a2241af62c0000600f553480156200001c575f80fd5b506040518060400160405280600981526020017f566f696365204e465400000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f566f696365204e46540000000000000000000000000000000000000000000000815250815f90816200009991906200040a565b508060019081620000ab91906200040a565b505050620000ce620000c2620000dc60201b60201c565b620000e360201b60201c565b6001600c81905550620004ee565b5f33905090565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200022257607f821691505b602082108103620002385762000237620001dd565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200029c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025f565b620002a886836200025f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620002f2620002ec620002e684620002c0565b620002c9565b620002c0565b9050919050565b5f819050919050565b6200030d83620002d2565b620003256200031c82620002f9565b8484546200026b565b825550505050565b5f90565b6200033b6200032d565b6200034881848462000302565b505050565b5b818110156200036f57620003635f8262000331565b6001810190506200034e565b5050565b601f821115620003be5762000388816200023e565b620003938462000250565b81016020851015620003a3578190505b620003bb620003b28562000250565b8301826200034d565b50505b505050565b5f82821c905092915050565b5f620003e05f1984600802620003c3565b1980831691505092915050565b5f620003fa8383620003cf565b9150826002028217905092915050565b6200041582620001a6565b67ffffffffffffffff811115620004315762000430620001b0565b5b6200043d82546200020a565b6200044a82828562000373565b5f60209050601f83116001811462000480575f84156200046b578287015190505b620004778582620003ed565b865550620004e6565b601f19841662000490866200023e565b5f5b82811015620004b95784890151825560018201915060208501945060208101905062000492565b86831015620004d95784890151620004d5601f891682620003cf565b8355505b6001600288020188555050505b505050505050565b614bea80620004fc5f395ff3fe6080604052600436106101e2575f3560e01c80638467be0d11610101578063c87b56dd11610094578063e985e9c511610063578063e985e9c514610717578063eb685c4714610753578063eddd0d9c1461077b578063f2fde38b146107a3576101e2565b8063c87b56dd14610647578063cc63067714610683578063cfcd42901461069f578063e5afe3e6146106db576101e2565b8063a22cb465116100d0578063a22cb46514610593578063b50720e0146105bb578063b88d4fde146105e3578063bb7597611461060b576101e2565b80638467be0d146104ed5780638da5cb5b1461051557806395d89b411461053f5780639992e9f114610569576101e2565b80632d296bf1116101795780636352211e116101485780636352211e1461043757806370a0823114610473578063715018a6146104af5780637b47ec1a146104c5576101e2565b80632d296bf11461037b5780632f745c591461039757806342842e0e146103d35780634f6ccce7146103fb576101e2565b806318160ddd116101b557806318160ddd146102b05780631c5701b5146102da57806323b872dd146103165780632a55205a1461033e576101e2565b806301ffc9a7146101e657806306fdde0314610222578063081812fc1461024c578063095ea7b314610288575b5f80fd5b3480156101f1575f80fd5b5061020c6004803603810190610207919061335f565b6107cb565b60405161021991906133a4565b60405180910390f35b34801561022d575f80fd5b50610236610844565b6040516102439190613447565b60405180910390f35b348015610257575f80fd5b50610272600480360381019061026d919061349a565b6108d3565b60405161027f9190613504565b60405180910390f35b348015610293575f80fd5b506102ae60048036038101906102a99190613547565b610915565b005b3480156102bb575f80fd5b506102c4610a2b565b6040516102d19190613594565b60405180910390f35b3480156102e5575f80fd5b5061030060048036038101906102fb919061349a565b610a37565b60405161030d9190613504565b60405180910390f35b348015610321575f80fd5b5061033c600480360381019061033791906135ad565b610a67565b005b348015610349575f80fd5b50610364600480360381019061035f91906135fd565b610ac7565b60405161037292919061363b565b60405180910390f35b6103956004803603810190610390919061349a565b610b73565b005b3480156103a2575f80fd5b506103bd60048036038101906103b89190613547565b610e9d565b6040516103ca9190613594565b60405180910390f35b3480156103de575f80fd5b506103f960048036038101906103f491906135ad565b610f3d565b005b348015610406575f80fd5b50610421600480360381019061041c919061349a565b610f5c565b60405161042e9190613594565b60405180910390f35b348015610442575f80fd5b5061045d6004803603810190610458919061349a565b610fca565b60405161046a9190613504565b60405180910390f35b34801561047e575f80fd5b5061049960048036038101906104949190613662565b61104e565b6040516104a69190613594565b60405180910390f35b3480156104ba575f80fd5b506104c3611102565b005b3480156104d0575f80fd5b506104eb60048036038101906104e6919061349a565b611115565b005b3480156104f8575f80fd5b50610513600480360381019061050e919061349a565b611129565b005b348015610520575f80fd5b50610529611203565b6040516105369190613504565b60405180910390f35b34801561054a575f80fd5b5061055361122b565b6040516105609190613447565b60405180910390f35b348015610574575f80fd5b5061057d6112bb565b60405161058a9190613594565b60405180910390f35b34801561059e575f80fd5b506105b960048036038101906105b491906136b7565b6112c1565b005b3480156105c6575f80fd5b506105e160048036038101906105dc91906136f5565b6112d7565b005b3480156105ee575f80fd5b5061060960048036038101906106049190613885565b6115e4565b005b348015610616575f80fd5b50610631600480360381019061062c9190613662565b611646565b60405161063e91906133a4565b60405180910390f35b348015610652575f80fd5b5061066d6004803603810190610668919061349a565b611663565b60405161067a9190613447565b60405180910390f35b61069d60048036038101906106989190613662565b611675565b005b3480156106aa575f80fd5b506106c560048036038101906106c0919061349a565b61175c565b6040516106d29190613504565b60405180910390f35b3480156106e6575f80fd5b5061070160048036038101906106fc919061349a565b61178c565b60405161070e9190613594565b60405180910390f35b348015610722575f80fd5b5061073d60048036038101906107389190613905565b6117a1565b60405161074a91906133a4565b60405180910390f35b34801561075e575f80fd5b50610779600480360381019061077491906135fd565b61182f565b005b348015610786575f80fd5b506107a1600480360381019061079c919061349a565b6118bf565b005b3480156107ae575f80fd5b506107c960048036038101906107c49190613662565b611913565b005b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083d575061083c82611995565b5b9050919050565b60605f805461085290613970565b80601f016020809104026020016040519081016040528092919081815260200182805461087e90613970565b80156108c95780601f106108a0576101008083540402835291602001916108c9565b820191905f5260205f20905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b5f6108dd826119f5565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61091f82610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613a10565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ae611a40565b73ffffffffffffffffffffffffffffffffffffffff1614806109dd57506109dc816109d7611a40565b6117a1565b5b610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613a9e565b60405180910390fd5b610a268383611a47565b505050565b5f600880549050905090565b6011602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a78610a72611a40565b82611afd565b610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90613b2c565b60405180910390fd5b610ac2838383611b91565b505050565b5f805f60135f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815250509050805f0151612710826020015186610b5d9190613b77565b610b679190613be5565b92509250509250929050565b610b7b611e7d565b5f600e5f8381526020019081526020015f205490505f8111610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990613c5f565b60405180910390fd5b803414610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613cc7565b60405180910390fd5b5f600e5f8481526020019081526020015f20819055505f610c3483610fca565b9050610c41813385611b91565b5f6064600584610c519190613b77565b610c5b9190613be5565b90505f606484610c6b9190613be5565b90505f8073ffffffffffffffffffffffffffffffffffffffff1660115f8881526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610cd7575f610ce5565b606485610ce49190613be5565b5b90505f82828588610cf69190613ce5565b610d009190613ce5565b610d0a9190613ce5565b90505f821115610d895760115f8881526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f19350505050158015610d87573d5f803e3d5ffd5b505b60125f8881526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8590811502906040515f60405180830381858888f19350505050158015610dfc573d5f803e3d5ffd5b50610e05611203565b73ffffffffffffffffffffffffffffffffffffffff166108fc8490811502906040515f60405180830381858888f19350505050158015610e47573d5f803e3d5ffd5b508473ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610e8b573d5f803e3d5ffd5b50505050505050610e9a611ecc565b50565b5f610ea78361104e565b8210610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613d88565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610f5783838360405180602001604052805f8152506115e4565b505050565b5f610f65610a2b565b8210610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90613e16565b60405180910390fd5b60088281548110610fba57610fb9613e34565b5b905f5260205f2001549050919050565b5f80610fd583611ed6565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90613eab565b60405180910390fd5b80915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490613f39565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61110a611f0f565b6111135f611f8d565b565b61111d611f0f565b61112681612050565b50565b611131611f0f565b5f8111611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90613fa1565b60405180910390fd5b5f5b818110156111ff57611187600d61205c565b5f611192600d612070565b90505f61119e8261207c565b6040516020016111ae919061408d565b60405160208183030381529060405290506111d06111ca611203565b83612146565b6111da8282612163565b5f600e5f8481526020019081526020015f208190555050508080600101915050611175565b5050565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461123a90613970565b80601f016020809104026020016040519081016040528092919081815260200182805461126690613970565b80156112b15780601f10611288576101008083540402835291602001916112b1565b820191905f5260205f20905b81548152906001019060200180831161129457829003601f168201915b5050505050905090565b600f5481565b6112d36112cc611a40565b8383612205565b5050565b6112df611f0f565b3373ffffffffffffffffffffffffffffffffffffffff166112ff85610fca565b73ffffffffffffffffffffffffffffffffffffffff1614611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90614103565b60405180910390fd5b60105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d59061416b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906141d3565b60405180910390fd5b61145f61145885610fca565b8486611b91565b8260125f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160115f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060405180604001604052808473ffffffffffffffffffffffffffffffffffffffff1681526020018281525060135f8681526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015590505050505050565b6115f56115ef611a40565b83611afd565b611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b90613b2c565b60405180910390fd5b6116408484848461236c565b50505050565b6010602052805f5260405f205f915054906101000a900460ff1681565b606061166e826123c8565b9050919050565b600f5434146116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b09061423b565b60405180910390fd5b6116c1611203565b73ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015611703573d5f803e3d5ffd5b50600160105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6012602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e602052805f5260405f205f915090505481565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661184f83610fca565b73ffffffffffffffffffffffffffffffffffffffff16146118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90614103565b60405180910390fd5b80600e5f8481526020019081526020015f20819055505050565b6118c7611f0f565b5f8111611909576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611900906142a3565b60405180910390fd5b80600f8190555050565b61191b611f0f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090614331565b60405180910390fd5b61199281611f8d565b50565b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119ee57506119ed826124d2565b5b9050919050565b6119fe8161254b565b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613eab565b60405180910390fd5b50565b5f33905090565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ab783610fca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f80611b0883610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b4a5750611b4981856117a1565b5b80611b8857508373ffffffffffffffffffffffffffffffffffffffff16611b70846108d3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bb182610fca565b73ffffffffffffffffffffffffffffffffffffffff1614611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe906143bf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c9061444d565b60405180910390fd5b611c82838383600161258b565b8273ffffffffffffffffffffffffffffffffffffffff16611ca282610fca565b73ffffffffffffffffffffffffffffffffffffffff1614611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef906143bf565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e7883838360016125b3565b505050565b6002600c5403611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb9906144b5565b60405180910390fd5b6002600c81905550565b6001600c81905550565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611f17611a40565b73ffffffffffffffffffffffffffffffffffffffff16611f35611203565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f829061451d565b60405180910390fd5b565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612059816125b9565b50565b6001815f015f828254019250508190555050565b5f815f01549050919050565b60605f600161208a84612606565b0190505f8167ffffffffffffffff8111156120a8576120a7613761565b5b6040519080825280601f01601f1916602001820160405280156120da5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561213b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121305761212f613bb8565b5b0494505f85036120e7575b819350505050919050565b61215f828260405180602001604052805f815250612757565b5050565b61216c8261254b565b6121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a2906145ab565b60405180910390fd5b80600a5f8481526020019081526020015f2090816121c99190614766565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7826040516121f99190613594565b60405180910390a15050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a9061487f565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161235f91906133a4565b60405180910390a3505050565b612377848484611b91565b612383848484846127b1565b6123c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b99061490d565b60405180910390fd5b50505050565b60606123d3826119f5565b5f600a5f8481526020019081526020015f2080546123f090613970565b80601f016020809104026020016040519081016040528092919081815260200182805461241c90613970565b80156124675780601f1061243e57610100808354040283529160200191612467565b820191905f5260205f20905b81548152906001019060200180831161244a57829003601f168201915b505050505090505f612477612933565b90505f81510361248b5781925050506124cd565b5f825111156124bf5780826040516020016124a792919061492b565b604051602081830303815290604052925050506124cd565b6124c884612949565b925050505b919050565b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125445750612543826129ae565b5b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff1661256c83611ed6565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61259784848484612a8f565b5f600e5f8481526020019081526020015f208190555050505050565b50505050565b6125c281612bea565b5f600a5f8381526020019081526020015f2080546125df90613970565b90501461260357600a5f8281526020019081526020015f205f61260291906132a1565b5b50565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612662577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161265857612657613bb8565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061269f576d04ee2d6d415b85acef8100000000838161269557612694613bb8565b5b0492506020810190505b662386f26fc1000083106126ce57662386f26fc1000083816126c4576126c3613bb8565b5b0492506010810190505b6305f5e10083106126f7576305f5e10083816126ed576126ec613bb8565b5b0492506008810190505b612710831061271c57612710838161271257612711613bb8565b5b0492506004810190505b6064831061273f576064838161273557612734613bb8565b5b0492506002810190505b600a831061274e576001810190505b80915050919050565b6127618383612d2b565b61276d5f8484846127b1565b6127ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a39061490d565b60405180910390fd5b505050565b5f6127d18473ffffffffffffffffffffffffffffffffffffffff16612f3e565b15612926578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fa611a40565b8786866040518563ffffffff1660e01b815260040161281c94939291906149a0565b6020604051808303815f875af192505050801561285757506040513d601f19601f8201168201806040525081019061285491906149fe565b60015b6128d6573d805f8114612885576040519150601f19603f3d011682016040523d82523d5f602084013e61288a565b606091505b505f8151036128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c59061490d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061292b565b600190505b949350505050565b606060405180602001604052805f815250905090565b6060612954826119f5565b5f61295d612933565b90505f81511161297b5760405180602001604052805f8152506129a6565b806129858461207c565b60405160200161299692919061492b565b6040516020818303038152906040525b915050919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a7857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a885750612a8782612f60565b5b9050919050565b612a9b84848484612fc9565b6001811115612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad690614a99565b60405180910390fd5b5f8290505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612b2457612b1f81612fcf565b612b63565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612b6257612b618582613013565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ba457612b9f81613169565b612be3565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612be257612be18482613229565b5b5b5050505050565b5f612bf482610fca565b9050612c03815f84600161258b565b612c0c82610fca565b905060045f8381526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254039250508190555060025f8381526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055815f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d27815f8460016125b3565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9090614b01565b60405180910390fd5b612da28161254b565b15612de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd990614b69565b60405180910390fd5b612def5f8383600161258b565b612df88161254b565b15612e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2f90614b69565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f3a5f838360016125b3565b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f600161301f8461104e565b6130299190613ce5565b90505f60075f8481526020019081526020015f20549050818114613100575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f600160088054905061317c9190613ce5565b90505f60095f8481526020019081526020015f205490505f600883815481106131a8576131a7613e34565b5b905f5260205f200154905080600883815481106131c8576131c7613e34565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f905560088054806132105761320f614b87565b5b600190038181905f5260205f20015f9055905550505050565b5f6132338361104e565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b5080546132ad90613970565b5f825580601f106132be57506132db565b601f0160209004905f5260205f20908101906132da91906132de565b5b50565b5b808211156132f5575f815f9055506001016132df565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61333e8161330a565b8114613348575f80fd5b50565b5f8135905061335981613335565b92915050565b5f6020828403121561337457613373613302565b5b5f6133818482850161334b565b91505092915050565b5f8115159050919050565b61339e8161338a565b82525050565b5f6020820190506133b75f830184613395565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156133f45780820151818401526020810190506133d9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613419826133bd565b61342381856133c7565b93506134338185602086016133d7565b61343c816133ff565b840191505092915050565b5f6020820190508181035f83015261345f818461340f565b905092915050565b5f819050919050565b61347981613467565b8114613483575f80fd5b50565b5f8135905061349481613470565b92915050565b5f602082840312156134af576134ae613302565b5b5f6134bc84828501613486565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6134ee826134c5565b9050919050565b6134fe816134e4565b82525050565b5f6020820190506135175f8301846134f5565b92915050565b613526816134e4565b8114613530575f80fd5b50565b5f813590506135418161351d565b92915050565b5f806040838503121561355d5761355c613302565b5b5f61356a85828601613533565b925050602061357b85828601613486565b9150509250929050565b61358e81613467565b82525050565b5f6020820190506135a75f830184613585565b92915050565b5f805f606084860312156135c4576135c3613302565b5b5f6135d186828701613533565b93505060206135e286828701613533565b92505060406135f386828701613486565b9150509250925092565b5f806040838503121561361357613612613302565b5b5f61362085828601613486565b925050602061363185828601613486565b9150509250929050565b5f60408201905061364e5f8301856134f5565b61365b6020830184613585565b9392505050565b5f6020828403121561367757613676613302565b5b5f61368484828501613533565b91505092915050565b6136968161338a565b81146136a0575f80fd5b50565b5f813590506136b18161368d565b92915050565b5f80604083850312156136cd576136cc613302565b5b5f6136da85828601613533565b92505060206136eb858286016136a3565b9150509250929050565b5f805f806080858703121561370d5761370c613302565b5b5f61371a87828801613486565b945050602061372b87828801613533565b935050604061373c87828801613533565b925050606061374d87828801613486565b91505092959194509250565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613797826133ff565b810181811067ffffffffffffffff821117156137b6576137b5613761565b5b80604052505050565b5f6137c86132f9565b90506137d4828261378e565b919050565b5f67ffffffffffffffff8211156137f3576137f2613761565b5b6137fc826133ff565b9050602081019050919050565b828183375f83830152505050565b5f613829613824846137d9565b6137bf565b9050828152602081018484840111156138455761384461375d565b5b613850848285613809565b509392505050565b5f82601f83011261386c5761386b613759565b5b813561387c848260208601613817565b91505092915050565b5f805f806080858703121561389d5761389c613302565b5b5f6138aa87828801613533565b94505060206138bb87828801613533565b93505060406138cc87828801613486565b925050606085013567ffffffffffffffff8111156138ed576138ec613306565b5b6138f987828801613858565b91505092959194509250565b5f806040838503121561391b5761391a613302565b5b5f61392885828601613533565b925050602061393985828601613533565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061398757607f821691505b60208210810361399a57613999613943565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f6139fa6021836133c7565b9150613a05826139a0565b604082019050919050565b5f6020820190508181035f830152613a27816139ee565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f5f8201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b5f613a88603d836133c7565b9150613a9382613a2e565b604082019050919050565b5f6020820190508181035f830152613ab581613a7c565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f613b16602d836133c7565b9150613b2182613abc565b604082019050919050565b5f6020820190508181035f830152613b4381613b0a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b8182613467565b9150613b8c83613467565b9250828202613b9a81613467565b91508282048414831517613bb157613bb0613b4a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613bef82613467565b9150613bfa83613467565b925082613c0a57613c09613bb8565b5b828204905092915050565b7f546f6b656e206e6f7420666f722073616c6500000000000000000000000000005f82015250565b5f613c496012836133c7565b9150613c5482613c15565b602082019050919050565b5f6020820190508181035f830152613c7681613c3d565b9050919050565b7f496e636f7272656374207061796d656e742076616c75650000000000000000005f82015250565b5f613cb16017836133c7565b9150613cbc82613c7d565b602082019050919050565b5f6020820190508181035f830152613cde81613ca5565b9050919050565b5f613cef82613467565b9150613cfa83613467565b9250828203905081811115613d1257613d11613b4a565b5b92915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f755f8201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b5f613d72602b836133c7565b9150613d7d82613d18565b604082019050919050565b5f6020820190508181035f830152613d9f81613d66565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f5f8201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b5f613e00602c836133c7565b9150613e0b82613da6565b604082019050919050565b5f6020820190508181035f830152613e2d81613df4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f613e956018836133c7565b9150613ea082613e61565b602082019050919050565b5f6020820190508181035f830152613ec281613e89565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613f236029836133c7565b9150613f2e82613ec9565b604082019050919050565b5f6020820190508181035f830152613f5081613f17565b9050919050565b7f496e76616c696420616d6f756e740000000000000000000000000000000000005f82015250565b5f613f8b600e836133c7565b9150613f9682613f57565b602082019050919050565b5f6020820190508181035f830152613fb881613f7f565b9050919050565b5f81905092915050565b7f68747470733a2f2f76636974792e6170702f766f6963655f6e66742f000000005f82015250565b5f613ffd601c83613fbf565b915061400882613fc9565b601c82019050919050565b5f61401d826133bd565b6140278185613fbf565b93506140378185602086016133d7565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f614077600583613fbf565b915061408282614043565b600582019050919050565b5f61409782613ff1565b91506140a38284614013565b91506140ae8261406b565b915081905092915050565b7f4e6f7420746865206f776e6572000000000000000000000000000000000000005f82015250565b5f6140ed600d836133c7565b91506140f8826140b9565b602082019050919050565b5f6020820190508181035f83015261411a816140e1565b9050919050565b7f4d696e7420666565206e6f7420706169640000000000000000000000000000005f82015250565b5f6141556011836133c7565b915061416082614121565b602082019050919050565b5f6020820190508181035f83015261418281614149565b9050919050565b7f496e76616c6964206164647265737300000000000000000000000000000000005f82015250565b5f6141bd600f836133c7565b91506141c882614189565b602082019050919050565b5f6020820190508181035f8301526141ea816141b1565b9050919050565b7f496e636f727265637420666565000000000000000000000000000000000000005f82015250565b5f614225600d836133c7565b9150614230826141f1565b602082019050919050565b5f6020820190508181035f83015261425281614219565b9050919050565b7f496e76616c6964206665650000000000000000000000000000000000000000005f82015250565b5f61428d600b836133c7565b915061429882614259565b602082019050919050565b5f6020820190508181035f8301526142ba81614281565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61431b6026836133c7565b9150614326826142c1565b604082019050919050565b5f6020820190508181035f8301526143488161430f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f6143a96025836133c7565b91506143b48261434f565b604082019050919050565b5f6020820190508181035f8301526143d68161439d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6144376024836133c7565b9150614442826143dd565b604082019050919050565b5f6020820190508181035f8301526144648161442b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f61449f601f836133c7565b91506144aa8261446b565b602082019050919050565b5f6020820190508181035f8301526144cc81614493565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6145076020836133c7565b9150614512826144d3565b602082019050919050565b5f6020820190508181035f830152614534816144fb565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e5f8201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b5f614595602e836133c7565b91506145a08261453b565b604082019050919050565b5f6020820190508181035f8301526145c281614589565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026146257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145ea565b61462f86836145ea565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61466a61466561466084613467565b614647565b613467565b9050919050565b5f819050919050565b61468383614650565b61469761468f82614671565b8484546145f6565b825550505050565b5f90565b6146ab61469f565b6146b681848461467a565b505050565b5b818110156146d9576146ce5f826146a3565b6001810190506146bc565b5050565b601f82111561471e576146ef816145c9565b6146f8846145db565b81016020851015614707578190505b61471b614713856145db565b8301826146bb565b50505b505050565b5f82821c905092915050565b5f61473e5f1984600802614723565b1980831691505092915050565b5f614756838361472f565b9150826002028217905092915050565b61476f826133bd565b67ffffffffffffffff81111561478857614787613761565b5b6147928254613970565b61479d8282856146dd565b5f60209050601f8311600181146147ce575f84156147bc578287015190505b6147c6858261474b565b86555061482d565b601f1984166147dc866145c9565b5f5b82811015614803578489015182556001820191506020850194506020810190506147de565b86831015614820578489015161481c601f89168261472f565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f6148696019836133c7565b915061487482614835565b602082019050919050565b5f6020820190508181035f8301526148968161485d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f6148f76032836133c7565b91506149028261489d565b604082019050919050565b5f6020820190508181035f830152614924816148eb565b9050919050565b5f6149368285614013565b91506149428284614013565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f6149728261494e565b61497c8185614958565b935061498c8185602086016133d7565b614995816133ff565b840191505092915050565b5f6080820190506149b35f8301876134f5565b6149c060208301866134f5565b6149cd6040830185613585565b81810360608301526149df8184614968565b905095945050505050565b5f815190506149f881613335565b92915050565b5f60208284031215614a1357614a12613302565b5b5f614a20848285016149ea565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e73656375746976652074725f8201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b5f614a836035836133c7565b9150614a8e82614a29565b604082019050919050565b5f6020820190508181035f830152614ab081614a77565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f614aeb6020836133c7565b9150614af682614ab7565b602082019050919050565b5f6020820190508181035f830152614b1881614adf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f614b53601c836133c7565b9150614b5e82614b1f565b602082019050919050565b5f6020820190508181035f830152614b8081614b47565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220aadcb1626b730da0fb483638eb6bbdfde66c1b970a31b671fb80c50198fb58d364736f6c63430008160033

Deployed Bytecode

0x6080604052600436106101e2575f3560e01c80638467be0d11610101578063c87b56dd11610094578063e985e9c511610063578063e985e9c514610717578063eb685c4714610753578063eddd0d9c1461077b578063f2fde38b146107a3576101e2565b8063c87b56dd14610647578063cc63067714610683578063cfcd42901461069f578063e5afe3e6146106db576101e2565b8063a22cb465116100d0578063a22cb46514610593578063b50720e0146105bb578063b88d4fde146105e3578063bb7597611461060b576101e2565b80638467be0d146104ed5780638da5cb5b1461051557806395d89b411461053f5780639992e9f114610569576101e2565b80632d296bf1116101795780636352211e116101485780636352211e1461043757806370a0823114610473578063715018a6146104af5780637b47ec1a146104c5576101e2565b80632d296bf11461037b5780632f745c591461039757806342842e0e146103d35780634f6ccce7146103fb576101e2565b806318160ddd116101b557806318160ddd146102b05780631c5701b5146102da57806323b872dd146103165780632a55205a1461033e576101e2565b806301ffc9a7146101e657806306fdde0314610222578063081812fc1461024c578063095ea7b314610288575b5f80fd5b3480156101f1575f80fd5b5061020c6004803603810190610207919061335f565b6107cb565b60405161021991906133a4565b60405180910390f35b34801561022d575f80fd5b50610236610844565b6040516102439190613447565b60405180910390f35b348015610257575f80fd5b50610272600480360381019061026d919061349a565b6108d3565b60405161027f9190613504565b60405180910390f35b348015610293575f80fd5b506102ae60048036038101906102a99190613547565b610915565b005b3480156102bb575f80fd5b506102c4610a2b565b6040516102d19190613594565b60405180910390f35b3480156102e5575f80fd5b5061030060048036038101906102fb919061349a565b610a37565b60405161030d9190613504565b60405180910390f35b348015610321575f80fd5b5061033c600480360381019061033791906135ad565b610a67565b005b348015610349575f80fd5b50610364600480360381019061035f91906135fd565b610ac7565b60405161037292919061363b565b60405180910390f35b6103956004803603810190610390919061349a565b610b73565b005b3480156103a2575f80fd5b506103bd60048036038101906103b89190613547565b610e9d565b6040516103ca9190613594565b60405180910390f35b3480156103de575f80fd5b506103f960048036038101906103f491906135ad565b610f3d565b005b348015610406575f80fd5b50610421600480360381019061041c919061349a565b610f5c565b60405161042e9190613594565b60405180910390f35b348015610442575f80fd5b5061045d6004803603810190610458919061349a565b610fca565b60405161046a9190613504565b60405180910390f35b34801561047e575f80fd5b5061049960048036038101906104949190613662565b61104e565b6040516104a69190613594565b60405180910390f35b3480156104ba575f80fd5b506104c3611102565b005b3480156104d0575f80fd5b506104eb60048036038101906104e6919061349a565b611115565b005b3480156104f8575f80fd5b50610513600480360381019061050e919061349a565b611129565b005b348015610520575f80fd5b50610529611203565b6040516105369190613504565b60405180910390f35b34801561054a575f80fd5b5061055361122b565b6040516105609190613447565b60405180910390f35b348015610574575f80fd5b5061057d6112bb565b60405161058a9190613594565b60405180910390f35b34801561059e575f80fd5b506105b960048036038101906105b491906136b7565b6112c1565b005b3480156105c6575f80fd5b506105e160048036038101906105dc91906136f5565b6112d7565b005b3480156105ee575f80fd5b5061060960048036038101906106049190613885565b6115e4565b005b348015610616575f80fd5b50610631600480360381019061062c9190613662565b611646565b60405161063e91906133a4565b60405180910390f35b348015610652575f80fd5b5061066d6004803603810190610668919061349a565b611663565b60405161067a9190613447565b60405180910390f35b61069d60048036038101906106989190613662565b611675565b005b3480156106aa575f80fd5b506106c560048036038101906106c0919061349a565b61175c565b6040516106d29190613504565b60405180910390f35b3480156106e6575f80fd5b5061070160048036038101906106fc919061349a565b61178c565b60405161070e9190613594565b60405180910390f35b348015610722575f80fd5b5061073d60048036038101906107389190613905565b6117a1565b60405161074a91906133a4565b60405180910390f35b34801561075e575f80fd5b50610779600480360381019061077491906135fd565b61182f565b005b348015610786575f80fd5b506107a1600480360381019061079c919061349a565b6118bf565b005b3480156107ae575f80fd5b506107c960048036038101906107c49190613662565b611913565b005b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083d575061083c82611995565b5b9050919050565b60605f805461085290613970565b80601f016020809104026020016040519081016040528092919081815260200182805461087e90613970565b80156108c95780601f106108a0576101008083540402835291602001916108c9565b820191905f5260205f20905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b5f6108dd826119f5565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61091f82610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613a10565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ae611a40565b73ffffffffffffffffffffffffffffffffffffffff1614806109dd57506109dc816109d7611a40565b6117a1565b5b610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613a9e565b60405180910390fd5b610a268383611a47565b505050565b5f600880549050905090565b6011602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a78610a72611a40565b82611afd565b610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90613b2c565b60405180910390fd5b610ac2838383611b91565b505050565b5f805f60135f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815250509050805f0151612710826020015186610b5d9190613b77565b610b679190613be5565b92509250509250929050565b610b7b611e7d565b5f600e5f8381526020019081526020015f205490505f8111610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990613c5f565b60405180910390fd5b803414610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613cc7565b60405180910390fd5b5f600e5f8481526020019081526020015f20819055505f610c3483610fca565b9050610c41813385611b91565b5f6064600584610c519190613b77565b610c5b9190613be5565b90505f606484610c6b9190613be5565b90505f8073ffffffffffffffffffffffffffffffffffffffff1660115f8881526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610cd7575f610ce5565b606485610ce49190613be5565b5b90505f82828588610cf69190613ce5565b610d009190613ce5565b610d0a9190613ce5565b90505f821115610d895760115f8881526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f19350505050158015610d87573d5f803e3d5ffd5b505b60125f8881526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8590811502906040515f60405180830381858888f19350505050158015610dfc573d5f803e3d5ffd5b50610e05611203565b73ffffffffffffffffffffffffffffffffffffffff166108fc8490811502906040515f60405180830381858888f19350505050158015610e47573d5f803e3d5ffd5b508473ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610e8b573d5f803e3d5ffd5b50505050505050610e9a611ecc565b50565b5f610ea78361104e565b8210610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613d88565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610f5783838360405180602001604052805f8152506115e4565b505050565b5f610f65610a2b565b8210610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90613e16565b60405180910390fd5b60088281548110610fba57610fb9613e34565b5b905f5260205f2001549050919050565b5f80610fd583611ed6565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90613eab565b60405180910390fd5b80915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490613f39565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61110a611f0f565b6111135f611f8d565b565b61111d611f0f565b61112681612050565b50565b611131611f0f565b5f8111611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90613fa1565b60405180910390fd5b5f5b818110156111ff57611187600d61205c565b5f611192600d612070565b90505f61119e8261207c565b6040516020016111ae919061408d565b60405160208183030381529060405290506111d06111ca611203565b83612146565b6111da8282612163565b5f600e5f8481526020019081526020015f208190555050508080600101915050611175565b5050565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461123a90613970565b80601f016020809104026020016040519081016040528092919081815260200182805461126690613970565b80156112b15780601f10611288576101008083540402835291602001916112b1565b820191905f5260205f20905b81548152906001019060200180831161129457829003601f168201915b5050505050905090565b600f5481565b6112d36112cc611a40565b8383612205565b5050565b6112df611f0f565b3373ffffffffffffffffffffffffffffffffffffffff166112ff85610fca565b73ffffffffffffffffffffffffffffffffffffffff1614611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90614103565b60405180910390fd5b60105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d59061416b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906141d3565b60405180910390fd5b61145f61145885610fca565b8486611b91565b8260125f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160115f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060405180604001604052808473ffffffffffffffffffffffffffffffffffffffff1681526020018281525060135f8681526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015590505050505050565b6115f56115ef611a40565b83611afd565b611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b90613b2c565b60405180910390fd5b6116408484848461236c565b50505050565b6010602052805f5260405f205f915054906101000a900460ff1681565b606061166e826123c8565b9050919050565b600f5434146116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b09061423b565b60405180910390fd5b6116c1611203565b73ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015611703573d5f803e3d5ffd5b50600160105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6012602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e602052805f5260405f205f915090505481565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661184f83610fca565b73ffffffffffffffffffffffffffffffffffffffff16146118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90614103565b60405180910390fd5b80600e5f8481526020019081526020015f20819055505050565b6118c7611f0f565b5f8111611909576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611900906142a3565b60405180910390fd5b80600f8190555050565b61191b611f0f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090614331565b60405180910390fd5b61199281611f8d565b50565b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119ee57506119ed826124d2565b5b9050919050565b6119fe8161254b565b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613eab565b60405180910390fd5b50565b5f33905090565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ab783610fca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f80611b0883610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b4a5750611b4981856117a1565b5b80611b8857508373ffffffffffffffffffffffffffffffffffffffff16611b70846108d3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bb182610fca565b73ffffffffffffffffffffffffffffffffffffffff1614611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe906143bf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c9061444d565b60405180910390fd5b611c82838383600161258b565b8273ffffffffffffffffffffffffffffffffffffffff16611ca282610fca565b73ffffffffffffffffffffffffffffffffffffffff1614611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef906143bf565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e7883838360016125b3565b505050565b6002600c5403611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb9906144b5565b60405180910390fd5b6002600c81905550565b6001600c81905550565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611f17611a40565b73ffffffffffffffffffffffffffffffffffffffff16611f35611203565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f829061451d565b60405180910390fd5b565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612059816125b9565b50565b6001815f015f828254019250508190555050565b5f815f01549050919050565b60605f600161208a84612606565b0190505f8167ffffffffffffffff8111156120a8576120a7613761565b5b6040519080825280601f01601f1916602001820160405280156120da5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561213b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121305761212f613bb8565b5b0494505f85036120e7575b819350505050919050565b61215f828260405180602001604052805f815250612757565b5050565b61216c8261254b565b6121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a2906145ab565b60405180910390fd5b80600a5f8481526020019081526020015f2090816121c99190614766565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7826040516121f99190613594565b60405180910390a15050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a9061487f565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161235f91906133a4565b60405180910390a3505050565b612377848484611b91565b612383848484846127b1565b6123c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b99061490d565b60405180910390fd5b50505050565b60606123d3826119f5565b5f600a5f8481526020019081526020015f2080546123f090613970565b80601f016020809104026020016040519081016040528092919081815260200182805461241c90613970565b80156124675780601f1061243e57610100808354040283529160200191612467565b820191905f5260205f20905b81548152906001019060200180831161244a57829003601f168201915b505050505090505f612477612933565b90505f81510361248b5781925050506124cd565b5f825111156124bf5780826040516020016124a792919061492b565b604051602081830303815290604052925050506124cd565b6124c884612949565b925050505b919050565b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125445750612543826129ae565b5b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff1661256c83611ed6565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61259784848484612a8f565b5f600e5f8481526020019081526020015f208190555050505050565b50505050565b6125c281612bea565b5f600a5f8381526020019081526020015f2080546125df90613970565b90501461260357600a5f8281526020019081526020015f205f61260291906132a1565b5b50565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612662577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161265857612657613bb8565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061269f576d04ee2d6d415b85acef8100000000838161269557612694613bb8565b5b0492506020810190505b662386f26fc1000083106126ce57662386f26fc1000083816126c4576126c3613bb8565b5b0492506010810190505b6305f5e10083106126f7576305f5e10083816126ed576126ec613bb8565b5b0492506008810190505b612710831061271c57612710838161271257612711613bb8565b5b0492506004810190505b6064831061273f576064838161273557612734613bb8565b5b0492506002810190505b600a831061274e576001810190505b80915050919050565b6127618383612d2b565b61276d5f8484846127b1565b6127ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a39061490d565b60405180910390fd5b505050565b5f6127d18473ffffffffffffffffffffffffffffffffffffffff16612f3e565b15612926578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fa611a40565b8786866040518563ffffffff1660e01b815260040161281c94939291906149a0565b6020604051808303815f875af192505050801561285757506040513d601f19601f8201168201806040525081019061285491906149fe565b60015b6128d6573d805f8114612885576040519150601f19603f3d011682016040523d82523d5f602084013e61288a565b606091505b505f8151036128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c59061490d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061292b565b600190505b949350505050565b606060405180602001604052805f815250905090565b6060612954826119f5565b5f61295d612933565b90505f81511161297b5760405180602001604052805f8152506129a6565b806129858461207c565b60405160200161299692919061492b565b6040516020818303038152906040525b915050919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a7857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a885750612a8782612f60565b5b9050919050565b612a9b84848484612fc9565b6001811115612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad690614a99565b60405180910390fd5b5f8290505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612b2457612b1f81612fcf565b612b63565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612b6257612b618582613013565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ba457612b9f81613169565b612be3565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612be257612be18482613229565b5b5b5050505050565b5f612bf482610fca565b9050612c03815f84600161258b565b612c0c82610fca565b905060045f8381526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254039250508190555060025f8381526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055815f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d27815f8460016125b3565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9090614b01565b60405180910390fd5b612da28161254b565b15612de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd990614b69565b60405180910390fd5b612def5f8383600161258b565b612df88161254b565b15612e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2f90614b69565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f3a5f838360016125b3565b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f600161301f8461104e565b6130299190613ce5565b90505f60075f8481526020019081526020015f20549050818114613100575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f600160088054905061317c9190613ce5565b90505f60095f8481526020019081526020015f205490505f600883815481106131a8576131a7613e34565b5b905f5260205f200154905080600883815481106131c8576131c7613e34565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f905560088054806132105761320f614b87565b5b600190038181905f5260205f20015f9055905550505050565b5f6132338361104e565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b5080546132ad90613970565b5f825580601f106132be57506132db565b601f0160209004905f5260205f20908101906132da91906132de565b5b50565b5b808211156132f5575f815f9055506001016132df565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61333e8161330a565b8114613348575f80fd5b50565b5f8135905061335981613335565b92915050565b5f6020828403121561337457613373613302565b5b5f6133818482850161334b565b91505092915050565b5f8115159050919050565b61339e8161338a565b82525050565b5f6020820190506133b75f830184613395565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156133f45780820151818401526020810190506133d9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613419826133bd565b61342381856133c7565b93506134338185602086016133d7565b61343c816133ff565b840191505092915050565b5f6020820190508181035f83015261345f818461340f565b905092915050565b5f819050919050565b61347981613467565b8114613483575f80fd5b50565b5f8135905061349481613470565b92915050565b5f602082840312156134af576134ae613302565b5b5f6134bc84828501613486565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6134ee826134c5565b9050919050565b6134fe816134e4565b82525050565b5f6020820190506135175f8301846134f5565b92915050565b613526816134e4565b8114613530575f80fd5b50565b5f813590506135418161351d565b92915050565b5f806040838503121561355d5761355c613302565b5b5f61356a85828601613533565b925050602061357b85828601613486565b9150509250929050565b61358e81613467565b82525050565b5f6020820190506135a75f830184613585565b92915050565b5f805f606084860312156135c4576135c3613302565b5b5f6135d186828701613533565b93505060206135e286828701613533565b92505060406135f386828701613486565b9150509250925092565b5f806040838503121561361357613612613302565b5b5f61362085828601613486565b925050602061363185828601613486565b9150509250929050565b5f60408201905061364e5f8301856134f5565b61365b6020830184613585565b9392505050565b5f6020828403121561367757613676613302565b5b5f61368484828501613533565b91505092915050565b6136968161338a565b81146136a0575f80fd5b50565b5f813590506136b18161368d565b92915050565b5f80604083850312156136cd576136cc613302565b5b5f6136da85828601613533565b92505060206136eb858286016136a3565b9150509250929050565b5f805f806080858703121561370d5761370c613302565b5b5f61371a87828801613486565b945050602061372b87828801613533565b935050604061373c87828801613533565b925050606061374d87828801613486565b91505092959194509250565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613797826133ff565b810181811067ffffffffffffffff821117156137b6576137b5613761565b5b80604052505050565b5f6137c86132f9565b90506137d4828261378e565b919050565b5f67ffffffffffffffff8211156137f3576137f2613761565b5b6137fc826133ff565b9050602081019050919050565b828183375f83830152505050565b5f613829613824846137d9565b6137bf565b9050828152602081018484840111156138455761384461375d565b5b613850848285613809565b509392505050565b5f82601f83011261386c5761386b613759565b5b813561387c848260208601613817565b91505092915050565b5f805f806080858703121561389d5761389c613302565b5b5f6138aa87828801613533565b94505060206138bb87828801613533565b93505060406138cc87828801613486565b925050606085013567ffffffffffffffff8111156138ed576138ec613306565b5b6138f987828801613858565b91505092959194509250565b5f806040838503121561391b5761391a613302565b5b5f61392885828601613533565b925050602061393985828601613533565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061398757607f821691505b60208210810361399a57613999613943565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f6139fa6021836133c7565b9150613a05826139a0565b604082019050919050565b5f6020820190508181035f830152613a27816139ee565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f5f8201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b5f613a88603d836133c7565b9150613a9382613a2e565b604082019050919050565b5f6020820190508181035f830152613ab581613a7c565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f613b16602d836133c7565b9150613b2182613abc565b604082019050919050565b5f6020820190508181035f830152613b4381613b0a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b8182613467565b9150613b8c83613467565b9250828202613b9a81613467565b91508282048414831517613bb157613bb0613b4a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613bef82613467565b9150613bfa83613467565b925082613c0a57613c09613bb8565b5b828204905092915050565b7f546f6b656e206e6f7420666f722073616c6500000000000000000000000000005f82015250565b5f613c496012836133c7565b9150613c5482613c15565b602082019050919050565b5f6020820190508181035f830152613c7681613c3d565b9050919050565b7f496e636f7272656374207061796d656e742076616c75650000000000000000005f82015250565b5f613cb16017836133c7565b9150613cbc82613c7d565b602082019050919050565b5f6020820190508181035f830152613cde81613ca5565b9050919050565b5f613cef82613467565b9150613cfa83613467565b9250828203905081811115613d1257613d11613b4a565b5b92915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f755f8201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b5f613d72602b836133c7565b9150613d7d82613d18565b604082019050919050565b5f6020820190508181035f830152613d9f81613d66565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f5f8201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b5f613e00602c836133c7565b9150613e0b82613da6565b604082019050919050565b5f6020820190508181035f830152613e2d81613df4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f613e956018836133c7565b9150613ea082613e61565b602082019050919050565b5f6020820190508181035f830152613ec281613e89565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613f236029836133c7565b9150613f2e82613ec9565b604082019050919050565b5f6020820190508181035f830152613f5081613f17565b9050919050565b7f496e76616c696420616d6f756e740000000000000000000000000000000000005f82015250565b5f613f8b600e836133c7565b9150613f9682613f57565b602082019050919050565b5f6020820190508181035f830152613fb881613f7f565b9050919050565b5f81905092915050565b7f68747470733a2f2f76636974792e6170702f766f6963655f6e66742f000000005f82015250565b5f613ffd601c83613fbf565b915061400882613fc9565b601c82019050919050565b5f61401d826133bd565b6140278185613fbf565b93506140378185602086016133d7565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f614077600583613fbf565b915061408282614043565b600582019050919050565b5f61409782613ff1565b91506140a38284614013565b91506140ae8261406b565b915081905092915050565b7f4e6f7420746865206f776e6572000000000000000000000000000000000000005f82015250565b5f6140ed600d836133c7565b91506140f8826140b9565b602082019050919050565b5f6020820190508181035f83015261411a816140e1565b9050919050565b7f4d696e7420666565206e6f7420706169640000000000000000000000000000005f82015250565b5f6141556011836133c7565b915061416082614121565b602082019050919050565b5f6020820190508181035f83015261418281614149565b9050919050565b7f496e76616c6964206164647265737300000000000000000000000000000000005f82015250565b5f6141bd600f836133c7565b91506141c882614189565b602082019050919050565b5f6020820190508181035f8301526141ea816141b1565b9050919050565b7f496e636f727265637420666565000000000000000000000000000000000000005f82015250565b5f614225600d836133c7565b9150614230826141f1565b602082019050919050565b5f6020820190508181035f83015261425281614219565b9050919050565b7f496e76616c6964206665650000000000000000000000000000000000000000005f82015250565b5f61428d600b836133c7565b915061429882614259565b602082019050919050565b5f6020820190508181035f8301526142ba81614281565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61431b6026836133c7565b9150614326826142c1565b604082019050919050565b5f6020820190508181035f8301526143488161430f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f6143a96025836133c7565b91506143b48261434f565b604082019050919050565b5f6020820190508181035f8301526143d68161439d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6144376024836133c7565b9150614442826143dd565b604082019050919050565b5f6020820190508181035f8301526144648161442b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f61449f601f836133c7565b91506144aa8261446b565b602082019050919050565b5f6020820190508181035f8301526144cc81614493565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6145076020836133c7565b9150614512826144d3565b602082019050919050565b5f6020820190508181035f830152614534816144fb565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e5f8201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b5f614595602e836133c7565b91506145a08261453b565b604082019050919050565b5f6020820190508181035f8301526145c281614589565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026146257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145ea565b61462f86836145ea565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61466a61466561466084613467565b614647565b613467565b9050919050565b5f819050919050565b61468383614650565b61469761468f82614671565b8484546145f6565b825550505050565b5f90565b6146ab61469f565b6146b681848461467a565b505050565b5b818110156146d9576146ce5f826146a3565b6001810190506146bc565b5050565b601f82111561471e576146ef816145c9565b6146f8846145db565b81016020851015614707578190505b61471b614713856145db565b8301826146bb565b50505b505050565b5f82821c905092915050565b5f61473e5f1984600802614723565b1980831691505092915050565b5f614756838361472f565b9150826002028217905092915050565b61476f826133bd565b67ffffffffffffffff81111561478857614787613761565b5b6147928254613970565b61479d8282856146dd565b5f60209050601f8311600181146147ce575f84156147bc578287015190505b6147c6858261474b565b86555061482d565b601f1984166147dc866145c9565b5f5b82811015614803578489015182556001820191506020850194506020810190506147de565b86831015614820578489015161481c601f89168261472f565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f6148696019836133c7565b915061487482614835565b602082019050919050565b5f6020820190508181035f8301526148968161485d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f6148f76032836133c7565b91506149028261489d565b604082019050919050565b5f6020820190508181035f830152614924816148eb565b9050919050565b5f6149368285614013565b91506149428284614013565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f6149728261494e565b61497c8185614958565b935061498c8185602086016133d7565b614995816133ff565b840191505092915050565b5f6080820190506149b35f8301876134f5565b6149c060208301866134f5565b6149cd6040830185613585565b81810360608301526149df8184614968565b905095945050505050565b5f815190506149f881613335565b92915050565b5f60208284031215614a1357614a12613302565b5b5f614a20848285016149ea565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e73656375746976652074725f8201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b5f614a836035836133c7565b9150614a8e82614a29565b604082019050919050565b5f6020820190508181035f830152614ab081614a77565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f614aeb6020836133c7565b9150614af682614ab7565b602082019050919050565b5f6020820190508181035f830152614b1881614adf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f614b53601c836133c7565b9150614b5e82614b1f565b602082019050919050565b5f6020820190508181035f830152614b8081614b47565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220aadcb1626b730da0fb483638eb6bbdfde66c1b970a31b671fb80c50198fb58d364736f6c63430008160033

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