ETH Price: $2,480.89 (-19.85%)
 

Overview

Max Total Supply

40 VOTE

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vault.0xfff.eth
Balance
1 VOTE
0x3FbDd1A19745e11c10b28D612fa0a7A7E6e9Dfff
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Vote

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Vote.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "./IERC4906.sol";

contract Vote is ERC721("Vote", "VOTE"), IERC4906, Ownable {
	mapping(uint256 => bool) yesByTokenId;
	uint256 private id = 0;
	uint256 private yesNum = 0;

	function I_am_not_happy() public {
		_vote(false);
	}

	function I_am_Happy() public {
		_vote(true);
	}

	function _vote(bool yes) private {
		bool beforeMint = _yes();
		if (yes) yesNum++;
		uint256 tokenId = ++id;
		yesByTokenId[tokenId] = yes;
		_mint(_msgSender(), tokenId);
		if (beforeMint != _yes()) emit BatchMetadataUpdate(1, tokenId);
	}

	function _yes() private view returns (bool) {
		return yesNum >= id - yesNum;
	}

	function totalSupply() public view returns (uint256) {
		return id;
	}

	function tokenURI(uint256 tokenId) public view override returns (string memory) {
		require(_exists(tokenId), "nonexistent token");
		bool yes = yesByTokenId[tokenId];
		string memory iam = "I am happy.";
		string memory weare = "We are happy.";
		string
			memory typography = '<g class="a"><path d="M135.1 302.3c12.8 53.7 18.7 78.1 28.3 130.6 3.7-19.8 23.9-104.7 28.6-129.1 8.5 52.9 14.8 77.2 22.6 130.6 1.9-14 19.3-85.6 29.3-131.3M262.8 403.6c4.8-.1 22.3-5.2 32.4-16.9 12.4-14.2 2.1-42.9-20.4-33.6-14.3 5.9-22.3 21.4-22.3 38.6 0 16.1 8 34.5 24.5 34.5 7.4 0 14.9-2.2 20.3-4.8M383.7 356.1c-3.7-4.5-7.8-6.9-13-6.9-18.2 0-31.5 28.9-31.5 50.9 0 12.6 6 22.1 16.5 22.1 21.7 0 30.3-42.3 30-54.7.8 6.5-4.6 24.8 11.4 52.1M410.5 348.8c3.1 10.9 3.8 18.5 4.5 29.8 1 16.6 1.6 35.5 1.5 52.2.5-16.3 1-45 10.3-58.3 11.3-16.1 18.3-21.3 29.1-25.9M465.1 393.3c5.5-.4 11.1-.8 16.5-2.3 5.3-1.5 9.9-4.5 13.8-8.1 16.8-15.9 9.3-34.1-8.1-34.1-19 0-31.9 14-31.9 36.2 0 21.9 8.3 38.7 23.2 38.7 11.1 0 19.1-6.5 22-9M548.6 302.3c-1.7 37.9-2.5 116.7-4.2 133.3 0-56.2 38.5-93.6 38.5-93.6s14.5 15.1 14.5 84M663.1 357.6c-2.3-3.4-9-10.8-16.4-10.8-18 0-31.6 29.3-31.6 46.9 0 16.8 9 28.7 22.8 28.7 16.1 0 31.1-16.7 23.5-60.3 2.2 18.2 9.3 39.7 17 60.3M696.6 344.9c0 44.7.1 77.2-1.5 114.8"/><path d="M688.6 350.3c35.1-3.7 53.1 8.4 53.1 33 0 32-26.6 38.7-37.5 38.7M759.2 346.9c.3 43.1-1.2 67.5-2.3 112.8M759.9 349.4c38.5-2.6 49.7 20.5 49.7 37 0 24.2-24.8 36.7-45.4 36.7M817.7 348.8c12.1 25.3 22.5 46.2 35.6 71"/><path d="M880.6 349.5c-17.5 44.5-30.9 67.4-50.2 110.2M896.6 423.9 896.7 426.9"/></g>';

		if (!yes) iam = "I am not happy.";
		if (!_yes()) {
			weare = "We are not happy.";
			typography = '<g class="b"><path d="M80.5 311.5c6.6 30.4 18.9 94.4 23.1 124.4 8.7-54.9 18.6-69.7 29.5-124.2 2.4 13.2 19.2 84 24.8 124.4 10.6-56.1 18.7-81.9 32.5-127.4M203.4 399.9c14.3-1.9 30.5-11.7 30.5-25 0-8.4-6.9-16-16.8-16-13 0-19.4 12.1-21.2 17.6-3.1 9.4-4.2 20.2-2 29.8 2.2 9.7 10 18.7 20 19.3 5 .3 13.3-2.3 18.8-6.6M314.1 368.7c-3.7-12.2-11.7-12.8-14.3-12.8-11.2 0-29.2 17.1-29.2 47.4 0 12.2 6.4 21.2 15.7 21.2 26.7 0 26.1-35.7 26.1-48 .4 18.2 3.5 29 10.5 45.6M337.3 355.9c5.3 24.9 3.8 52.8 4 76.6 0-18.1 1.2-40.4 10-56.5 3.4-6.3 14.4-15.1 22.1-18.3M381.8 403.4c10-1.8 38-11.2 38-30 0-12.1-9.6-16-19.1-16-15.3 0-24.6 19.1-24.6 38 0 10.3 5.2 29.4 22.1 29.4 9.1 0 17.4-4.7 21.9-8.3M458.6 358c2.7 20.3 3.5 52.5 3.5 73.5 0-11-.3-23.9 1.9-34.9 3.8-19.2 21.2-40.7 21.2-40.7s13.5 16.4 13.5 66.1M532.8 365c-7.7 2.6-18.2 12-18.2 30.5 0 23.7 12.6 28.2 20.3 28 7.7-.2 20.5-6.2 20.5-30.6 0-18.8-14-23.4-20.9-23.4M562.7 359.5c14.1.5 27.9.7 42 .7"/><path d="M584.9 330.4c-1.7 32.5-1.5 64-2.5 96M639 310c-2.3 51.4-3.6 71.8-3.4 121.7-.1-28.3 15.5-61.7 32.4-81.8 12.3 23.8 17.1 46.2 16.2 73.1M743 364.7c-4-4.9-9.7-10.4-18.9-10.4-6.9 0-26.6 16.6-26.6 44.2 0 11.7 5.6 23.2 19.5 23.2 22.7 0 25.1-40 25.6-50.2 2 17 5.8 33.9 11.3 50.2M774.4 355.9c0 32.5-3.1 78.4-4.3 103.5"/><path d="M766 357.9c6.2-.9 19.6-2.7 29.7 1.4 11.2 4.5 21.4 18.3 16.1 37.8-4.5 16.3-23.6 22.4-37.4 22.4M828.3 357c5.9 29.4 4.8 91.4 4.6 102.4M830.7 360.1c8.4-1.7 24.7-3.4 33.5 4.2 11.6 9.9 11.1 31.9 4.9 40-6.4 8.2-15.2 15.1-33.9 15.1M881 358.7c10.3 22.6 24.4 46.4 34.3 63.4"/><path d="M934.7 360.2c-5.1 14.6-28.9 70.8-38.7 97.7M953.4 413.9 953.5 416.4"/></g>';
		}

		return
			string(
				abi.encodePacked(
					"data:application/json;base64,",
					Base64.encode(
						abi.encodePacked(
							'{"name": "#',
							Strings.toString(tokenId),
							" \u201C",
							iam,
							'\u201D", "image": "data:image/svg+xml;base64,',
							Base64.encode(
								abi.encodePacked(
									'<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1024 768" xml:space="preserve"><style type="text/css">svg{background-color:#17191e;}g{stroke-width:22;stroke-miterlimit:10;stroke-linecap:square;stroke-linejoin:bevel;fill:none;}.a{stroke:#ff006f;}.b{stroke:#05f68f;}</style>',
									typography,
									"</svg>"
								)
							),
							'","attributes":[{"trait_type":"Voted","value":"',
							iam,
							'"}]}'
						)
					)
				)
			);
	}
}

File 2 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 3 of 16 : 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 4 of 16 : 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 5 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (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 6 of 16 : 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 7 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 8 of 16 : 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 9 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return 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 10 of 16 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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 10, 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 * 8) < value ? 1 : 0);
        }
    }
}

File 15 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.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 `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);
    }
}

File 16 of 16 : IERC4906.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/interfaces/IERC165.sol";
import "@openzeppelin/contracts/interfaces/IERC721.sol";

interface IERC4906 is IERC165, IERC721 {
	event MetadataUpdate(uint256 _tokenId);
	event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}

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

Contract Security Audit

Contract ABI

[{"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":[],"name":"I_am_Happy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"I_am_not_happy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

6080604052600060085560006009553480156200001b57600080fd5b506040518060400160405280600481526020017f566f7465000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f564f54450000000000000000000000000000000000000000000000000000000081525081600090816200009991906200041c565b508060019081620000ab91906200041c565b505050620000ce620000c2620000d460201b60201c565b620000dc60201b60201c565b62000503565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200022457607f821691505b6020821081036200023a5762000239620001dc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000265565b620002b0868362000265565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002fd620002f7620002f184620002c8565b620002d2565b620002c8565b9050919050565b6000819050919050565b6200031983620002dc565b62000331620003288262000304565b84845462000272565b825550505050565b600090565b6200034862000339565b620003558184846200030e565b505050565b5b818110156200037d57620003716000826200033e565b6001810190506200035b565b5050565b601f821115620003cc57620003968162000240565b620003a18462000255565b81016020851015620003b1578190505b620003c9620003c08562000255565b8301826200035a565b50505b505050565b600082821c905092915050565b6000620003f160001984600802620003d1565b1980831691505092915050565b60006200040c8383620003de565b9150826002028217905092915050565b6200042782620001a2565b67ffffffffffffffff811115620004435762000442620001ad565b5b6200044f82546200020b565b6200045c82828562000381565b600060209050601f8311600181146200049457600084156200047f578287015190505b6200048b8582620003fe565b865550620004fb565b601f198416620004a48662000240565b60005b82811015620004ce57848901518255600182019150602085019450602081019050620004a7565b86831015620004ee5784890151620004ea601f891682620003de565b8355505b6001600288020188555050505b505050505050565b613e7b80620005136000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063ba85ff7611610071578063ba85ff76146102f4578063c87b56dd146102fe578063e985e9c51461032e578063f2fde38b1461035e578063f5cd16a91461037a57610121565b8063715018a6146102765780638da5cb5b1461028057806395d89b411461029e578063a22cb465146102bc578063b88d4fde146102d857610121565b806318160ddd116100f457806318160ddd146101c057806323b872dd146101de57806342842e0e146101fa5780636352211e1461021657806370a082311461024657610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b9190611dfd565b610384565b60405161014d9190611e45565b60405180910390f35b61015e610466565b60405161016b9190611ef0565b60405180910390f35b61018e60048036038101906101899190611f48565b6104f8565b60405161019b9190611fb6565b60405180910390f35b6101be60048036038101906101b99190611ffd565b61053e565b005b6101c8610655565b6040516101d5919061204c565b60405180910390f35b6101f860048036038101906101f39190612067565b61065f565b005b610214600480360381019061020f9190612067565b6106bf565b005b610230600480360381019061022b9190611f48565b6106df565b60405161023d9190611fb6565b60405180910390f35b610260600480360381019061025b91906120ba565b610765565b60405161026d919061204c565b60405180910390f35b61027e61081c565b005b610288610830565b6040516102959190611fb6565b60405180910390f35b6102a661085a565b6040516102b39190611ef0565b60405180910390f35b6102d660048036038101906102d19190612113565b6108ec565b005b6102f260048036038101906102ed9190612288565b610902565b005b6102fc610964565b005b61031860048036038101906103139190611f48565b610970565b6040516103259190611ef0565b60405180910390f35b6103486004803603810190610343919061230b565b610b9b565b6040516103559190611e45565b60405180910390f35b610378600480360381019061037391906120ba565b610c2f565b005b610382610cb2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061044f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061045f575061045e82610cbe565b5b9050919050565b6060600080546104759061237a565b80601f01602080910402602001604051908101604052809291908181526020018280546104a19061237a565b80156104ee5780601f106104c3576101008083540402835291602001916104ee565b820191906000526020600020905b8154815290600101906020018083116104d157829003601f168201915b5050505050905090565b600061050382610d28565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610549826106df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b09061241d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105d8610d73565b73ffffffffffffffffffffffffffffffffffffffff161480610607575061060681610601610d73565b610b9b565b5b610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d906124af565b60405180910390fd5b6106508383610d7b565b505050565b6000600854905090565b61067061066a610d73565b82610e34565b6106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690612541565b60405180910390fd5b6106ba838383610ec9565b505050565b6106da83838360405180602001604052806000815250610902565b505050565b6000806106eb836111c2565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610753906125ad565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cc9061263f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108246111ff565b61082e600061127d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546108699061237a565b80601f01602080910402602001604051908101604052809291908181526020018280546108959061237a565b80156108e25780601f106108b7576101008083540402835291602001916108e2565b820191906000526020600020905b8154815290600101906020018083116108c557829003601f168201915b5050505050905090565b6108fe6108f7610d73565b8383611343565b5050565b61091361090d610d73565b83610e34565b610952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094990612541565b60405180910390fd5b61095e848484846114af565b50505050565b61096e600061150b565b565b606061097b826115dd565b6109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b1906126ab565b60405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900460ff16905060006040518060400160405280600b81526020017f4920616d2068617070792e000000000000000000000000000000000000000000815250905060006040518060400160405280600d81526020017f5765206172652068617070792e000000000000000000000000000000000000008152509050600060405180610520016040528061050081526020016132c36105009139905083610ab1576040518060400160405280600f81526020017f4920616d206e6f742068617070792e000000000000000000000000000000000081525092505b610ab961161e565b610b14576040518060400160405280601181526020017f576520617265206e6f742068617070792e00000000000000000000000000000081525091506040518061068001604052806106438152602001613803610643913990505b610b71610b208761163a565b84610b4984604051602001610b359190612920565b604051602081830303815290604052611708565b86604051602001610b5d9493929190612b15565b604051602081830303815290604052611708565b604051602001610b819190612bd6565b604051602081830303815290604052945050505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c376111ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90612c6a565b60405180910390fd5b610caf8161127d565b50565b610cbc600161150b565b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d31816115dd565b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d67906125ad565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610dee836106df565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e40836106df565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610e825750610e818185610b9b565b5b80610ec057508373ffffffffffffffffffffffffffffffffffffffff16610ea8846104f8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610ee9826106df565b73ffffffffffffffffffffffffffffffffffffffff1614610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690612cfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa590612d8e565b60405180910390fd5b610fbb838383600161186b565b8273ffffffffffffffffffffffffffffffffffffffff16610fdb826106df565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890612cfc565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111bd8383836001611871565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611207610d73565b73ffffffffffffffffffffffffffffffffffffffff16611225610830565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290612dfa565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890612e66565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a29190611e45565b60405180910390a3505050565b6114ba848484610ec9565b6114c684848484611877565b611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90612ef8565b60405180910390fd5b50505050565b600061151561161e565b90508115611536576009600081548092919061153090612f47565b91905055505b600060086000815461154790612f47565b9190508190559050826007600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061158b611585610d73565b826119fe565b61159361161e565b1515821515146115d8577f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c6001826040516115cf929190612fd4565b60405180910390a15b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166115ff836111c2565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006009546008546116309190612ffd565b6009541015905090565b60606000600161164984611c1b565b01905060008167ffffffffffffffff8111156116685761166761215d565b5b6040519080825280601f01601f19166020018201604052801561169a5781602001600182028036833780820191505090505b509050600082602001820190505b6001156116fd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816116f1576116f0613031565b5b049450600085036116a8575b819350505050919050565b6060600082510361172a57604051806020016040528060008152509050611866565b60006040518060600160405280604081526020016137c360409139905060006003600285516117599190613060565b6117639190613094565b600461176f91906130c5565b67ffffffffffffffff8111156117885761178761215d565b5b6040519080825280601f01601f1916602001820160405280156117ba5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611826576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506117cb565b505060038651066001811461184257600281146118555761185d565b603d6001830353603d600283035361185d565b603d60018303535b50505080925050505b919050565b50505050565b50505050565b60006118988473ffffffffffffffffffffffffffffffffffffffff16611d6e565b156119f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118c1610d73565b8786866040518563ffffffff1660e01b81526004016118e3949392919061315c565b6020604051808303816000875af192505050801561191f57506040513d601f19601f8201168201806040525081019061191c91906131bd565b60015b6119a1573d806000811461194f576040519150601f19603f3d011682016040523d82523d6000602084013e611954565b606091505b506000815103611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090612ef8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119f6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613236565b60405180910390fd5b611a76816115dd565b15611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad906132a2565b60405180910390fd5b611ac460008383600161186b565b611acd816115dd565b15611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b04906132a2565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c17600083836001611871565b5050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c79577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c6f57611c6e613031565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611cb6576d04ee2d6d415b85acef81000000008381611cac57611cab613031565b5b0492506020810190505b662386f26fc100008310611ce557662386f26fc100008381611cdb57611cda613031565b5b0492506010810190505b6305f5e1008310611d0e576305f5e1008381611d0457611d03613031565b5b0492506008810190505b6127108310611d33576127108381611d2957611d28613031565b5b0492506004810190505b60648310611d565760648381611d4c57611d4b613031565b5b0492506002810190505b600a8310611d65576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611dda81611da5565b8114611de557600080fd5b50565b600081359050611df781611dd1565b92915050565b600060208284031215611e1357611e12611d9b565b5b6000611e2184828501611de8565b91505092915050565b60008115159050919050565b611e3f81611e2a565b82525050565b6000602082019050611e5a6000830184611e36565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e9a578082015181840152602081019050611e7f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ec282611e60565b611ecc8185611e6b565b9350611edc818560208601611e7c565b611ee581611ea6565b840191505092915050565b60006020820190508181036000830152611f0a8184611eb7565b905092915050565b6000819050919050565b611f2581611f12565b8114611f3057600080fd5b50565b600081359050611f4281611f1c565b92915050565b600060208284031215611f5e57611f5d611d9b565b5b6000611f6c84828501611f33565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fa082611f75565b9050919050565b611fb081611f95565b82525050565b6000602082019050611fcb6000830184611fa7565b92915050565b611fda81611f95565b8114611fe557600080fd5b50565b600081359050611ff781611fd1565b92915050565b6000806040838503121561201457612013611d9b565b5b600061202285828601611fe8565b925050602061203385828601611f33565b9150509250929050565b61204681611f12565b82525050565b6000602082019050612061600083018461203d565b92915050565b6000806000606084860312156120805761207f611d9b565b5b600061208e86828701611fe8565b935050602061209f86828701611fe8565b92505060406120b086828701611f33565b9150509250925092565b6000602082840312156120d0576120cf611d9b565b5b60006120de84828501611fe8565b91505092915050565b6120f081611e2a565b81146120fb57600080fd5b50565b60008135905061210d816120e7565b92915050565b6000806040838503121561212a57612129611d9b565b5b600061213885828601611fe8565b9250506020612149858286016120fe565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61219582611ea6565b810181811067ffffffffffffffff821117156121b4576121b361215d565b5b80604052505050565b60006121c7611d91565b90506121d3828261218c565b919050565b600067ffffffffffffffff8211156121f3576121f261215d565b5b6121fc82611ea6565b9050602081019050919050565b82818337600083830152505050565b600061222b612226846121d8565b6121bd565b90508281526020810184848401111561224757612246612158565b5b612252848285612209565b509392505050565b600082601f83011261226f5761226e612153565b5b813561227f848260208601612218565b91505092915050565b600080600080608085870312156122a2576122a1611d9b565b5b60006122b087828801611fe8565b94505060206122c187828801611fe8565b93505060406122d287828801611f33565b925050606085013567ffffffffffffffff8111156122f3576122f2611da0565b5b6122ff8782880161225a565b91505092959194509250565b6000806040838503121561232257612321611d9b565b5b600061233085828601611fe8565b925050602061234185828601611fe8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061239257607f821691505b6020821081036123a5576123a461234b565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612407602183611e6b565b9150612412826123ab565b604082019050919050565b60006020820190508181036000830152612436816123fa565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612499603d83611e6b565b91506124a48261243d565b604082019050919050565b600060208201905081810360008301526124c88161248c565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061252b602d83611e6b565b9150612536826124cf565b604082019050919050565b6000602082019050818103600083015261255a8161251e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612597601883611e6b565b91506125a282612561565b602082019050919050565b600060208201905081810360008301526125c68161258a565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612629602983611e6b565b9150612634826125cd565b604082019050919050565b600060208201905081810360008301526126588161261c565b9050919050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b6000612695601183611e6b565b91506126a08261265f565b602082019050919050565b600060208201905081810360008301526126c481612688565b9050919050565b600081905092915050565b7f3c7376672076657273696f6e3d22312e312220786d6c6e733d22687474703a2f60008201527f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e60208201527f6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b2260408201527f2076696577426f783d223020302031303234203736382220786d6c3a7370616360608201527f653d227072657365727665223e3c7374796c6520747970653d22746578742f6360808201527f7373223e7376677b6261636b67726f756e642d636f6c6f723a2331373139316560a08201527f3b7d677b7374726f6b652d77696474683a32323b7374726f6b652d6d6974657260c08201527f6c696d69743a31303b7374726f6b652d6c696e656361703a7371756172653b7360e08201527f74726f6b652d6c696e656a6f696e3a626576656c3b66696c6c3a6e6f6e653b7d6101008201527f2e617b7374726f6b653a236666303036663b7d2e627b7374726f6b653a2330356101208201527f663638663b7d3c2f7374796c653e00000000000000000000000000000000000061014082015250565b600061288c61014e836126cb565b9150612897826126d6565b61014e82019050919050565b60006128ae82611e60565b6128b881856126cb565b93506128c8818560208601611e7c565b80840191505092915050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b600061290a6006836126cb565b9150612915826128d4565b600682019050919050565b600061292b8261287e565b915061293782846128a3565b9150612942826128fd565b915081905092915050565b7f7b226e616d65223a202223000000000000000000000000000000000000000000600082015250565b6000612983600b836126cb565b915061298e8261294d565b600b82019050919050565b7f20e2809c00000000000000000000000000000000000000000000000000000000600082015250565b60006129cf6004836126cb565b91506129da82612999565b600482019050919050565b7fe2809d222c2022696d616765223a2022646174613a696d6167652f7376672b7860008201527f6d6c3b6261736536342c00000000000000000000000000000000000000000000602082015250565b6000612a41602a836126cb565b9150612a4c826129e5565b602a82019050919050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a225660008201527f6f746564222c2276616c7565223a220000000000000000000000000000000000602082015250565b6000612ab3602f836126cb565b9150612abe82612a57565b602f82019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b6000612aff6004836126cb565b9150612b0a82612ac9565b600482019050919050565b6000612b2082612976565b9150612b2c82876128a3565b9150612b37826129c2565b9150612b4382866128a3565b9150612b4e82612a34565b9150612b5a82856128a3565b9150612b6582612aa6565b9150612b7182846128a3565b9150612b7c82612af2565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000612bc0601d836126cb565b9150612bcb82612b8a565b601d82019050919050565b6000612be182612bb3565b9150612bed82846128a3565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c54602683611e6b565b9150612c5f82612bf8565b604082019050919050565b60006020820190508181036000830152612c8381612c47565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612ce6602583611e6b565b9150612cf182612c8a565b604082019050919050565b60006020820190508181036000830152612d1581612cd9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d78602483611e6b565b9150612d8382612d1c565b604082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612de4602083611e6b565b9150612def82612dae565b602082019050919050565b60006020820190508181036000830152612e1381612dd7565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612e50601983611e6b565b9150612e5b82612e1a565b602082019050919050565b60006020820190508181036000830152612e7f81612e43565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612ee2603283611e6b565b9150612eed82612e86565b604082019050919050565b60006020820190508181036000830152612f1181612ed5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f5282611f12565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f8457612f83612f18565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000612fbe612fb9612fb484612f8f565b612f99565b611f12565b9050919050565b612fce81612fa3565b82525050565b6000604082019050612fe96000830185612fc5565b612ff6602083018461203d565b9392505050565b600061300882611f12565b915061301383611f12565b925082820390508181111561302b5761302a612f18565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061306b82611f12565b915061307683611f12565b925082820190508082111561308e5761308d612f18565b5b92915050565b600061309f82611f12565b91506130aa83611f12565b9250826130ba576130b9613031565b5b828204905092915050565b60006130d082611f12565b91506130db83611f12565b92508282026130e981611f12565b91508282048414831517613100576130ff612f18565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b600061312e82613107565b6131388185613112565b9350613148818560208601611e7c565b61315181611ea6565b840191505092915050565b60006080820190506131716000830187611fa7565b61317e6020830186611fa7565b61318b604083018561203d565b818103606083015261319d8184613123565b905095945050505050565b6000815190506131b781611dd1565b92915050565b6000602082840312156131d3576131d2611d9b565b5b60006131e1848285016131a8565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613220602083611e6b565b915061322b826131ea565b602082019050919050565b6000602082019050818103600083015261324f81613213565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061328c601c83611e6b565b915061329782613256565b602082019050919050565b600060208201905081810360008301526132bb8161327f565b905091905056fe3c6720636c6173733d2261223e3c7061746820643d224d3133352e31203330322e336331322e382035332e372031382e372037382e312032382e33203133302e3620332e372d31392e382032332e392d3130342e372032382e362d3132392e3120382e352035322e392031342e382037372e322032322e36203133302e3620312e392d31342031392e332d38352e362032392e332d3133312e334d3236322e38203430332e3663342e382d2e312032322e332d352e322033322e342d31362e392031322e342d31342e3220322e312d34322e392d32302e342d33332e362d31342e3320352e392d32322e332032312e342d32322e332033382e3620302031362e3120382033342e352032342e352033342e3520372e3420302031342e392d322e322032302e332d342e384d3338332e37203335362e31632d332e372d342e352d372e382d362e392d31332d362e392d31382e3220302d33312e352032382e392d33312e352035302e3920302031322e3620362032322e312031362e352032322e312032312e3720302033302e332d34322e332033302d35342e372e3820362e352d342e362032342e382031312e342035322e314d3431302e35203334382e3863332e312031302e3920332e382031382e3520342e352032392e3820312031362e3620312e362033352e3520312e352035322e322e352d31362e3320312d34352031302e332d35382e332031312e332d31362e312031382e332d32312e332032392e312d32352e394d3436352e31203339332e3363352e352d2e342031312e312d2e382031362e352d322e3320352e332d312e3520392e392d342e352031332e382d382e312031362e382d31352e3920392e332d33342e312d382e312d33342e312d313920302d33312e392031342d33312e392033362e3220302032312e3920382e332033382e372032332e322033382e372031312e3120302031392e312d362e352032322d394d3534382e36203330322e33632d312e372033372e392d322e35203131362e372d342e32203133332e3320302d35362e322033382e352d39332e362033382e352d39332e367331342e352031352e312031342e352038344d3636332e31203335372e36632d322e332d332e342d392d31302e382d31362e342d31302e382d313820302d33312e362032392e332d33312e362034362e3920302031362e3820392032382e372032322e382032382e372031362e3120302033312e312d31362e372032332e352d36302e3320322e322031382e3220392e332033392e372031372036302e334d3639362e36203334342e3963302034342e372e312037372e322d312e35203131342e38222f3e3c7061746820643d224d3638382e36203335302e336333352e312d332e372035332e3120382e342035332e3120333320302033322d32362e362033382e372d33372e352033382e374d3735392e32203334362e39632e332034332e312d312e322036372e352d322e33203131322e384d3735392e39203334392e346333382e352d322e362034392e372032302e352034392e3720333720302032342e322d32342e382033362e372d34352e342033362e374d3831372e37203334382e386331322e312032352e332032322e352034362e322033352e36203731222f3e3c7061746820643d224d3838302e36203334392e35632d31372e352034342e352d33302e392036372e342d35302e32203131302e324d3839362e36203432332e39203839362e37203432362e39222f3e3c2f673e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c6720636c6173733d2262223e3c7061746820643d224d38302e35203331312e3563362e362033302e342031382e392039342e342032332e31203132342e3420382e372d35342e392031382e362d36392e372032392e352d3132342e3220322e342031332e322031392e322038342032342e38203132342e342031302e362d35362e312031382e372d38312e392033322e352d3132372e344d3230332e34203339392e396331342e332d312e392033302e352d31312e372033302e352d323520302d382e342d362e392d31362d31362e382d31362d313320302d31392e342031322e312d32312e322031372e362d332e3120392e342d342e322032302e322d322032392e3820322e3220392e372031302031382e372032302031392e332035202e332031332e332d322e332031382e382d362e364d3331342e31203336382e37632d332e372d31322e322d31312e372d31322e382d31342e332d31322e382d31312e3220302d32392e322031372e312d32392e322034372e3420302031322e3220362e342032312e322031352e372032312e322032362e3720302032362e312d33352e372032362e312d3438202e342031382e3220332e352032392031302e352034352e364d3333372e33203335352e3963352e332032342e3920332e382035322e3820342037362e3620302d31382e3120312e322d34302e342031302d35362e3520332e342d362e332031342e342d31352e312032322e312d31382e334d3338312e38203430332e346331302d312e382033382d31312e322033382d333020302d31322e312d392e362d31362d31392e312d31362d31352e3320302d32342e362031392e312d32342e3620333820302031302e3320352e322032392e342032322e312032392e3420392e3120302031372e342d342e372032312e392d382e334d3435382e362033353863322e372032302e3320332e352035322e3520332e352037332e3520302d31312d2e332d32332e3920312e392d33342e3920332e382d31392e322032312e322d34302e372032312e322d34302e377331332e352031362e342031332e352036362e314d3533322e3820333635632d372e3720322e362d31382e322031322d31382e322033302e3520302032332e372031322e362032382e322032302e3320323820372e372d2e322032302e352d362e322032302e352d33302e3620302d31382e382d31342d32332e342d32302e392d32332e344d3536322e37203335392e356331342e312e352032372e392e37203432202e37222f3e3c7061746820643d224d3538342e39203333302e34632d312e372033322e352d312e352036342d322e352039364d36333920333130632d322e332035312e342d332e362037312e382d332e34203132312e372d2e312d32382e332031352e352d36312e372033322e342d38312e382031322e332032332e382031372e312034362e322031362e322037332e314d373433203336342e37632d342d342e392d392e372d31302e342d31382e392d31302e342d362e3920302d32362e362031362e362d32362e362034342e3220302031312e3720352e362032332e322031392e352032332e322032322e3720302032352e312d34302032352e362d35302e32203220313720352e382033332e392031312e332035302e324d3737342e34203335352e3963302033322e352d332e312037382e342d342e33203130332e35222f3e3c7061746820643d224d373636203335372e3963362e322d2e392031392e362d322e372032392e3720312e342031312e3220342e352032312e342031382e332031362e312033372e382d342e352031362e332d32332e362032322e342d33372e342032322e344d3832382e332033353763352e392032392e3420342e382039312e3420342e36203130322e344d3833302e37203336302e3163382e342d312e372032342e372d332e342033332e3520342e322031312e3620392e392031312e312033312e3920342e392034302d362e3420382e322d31352e322031352e312d33332e392031352e314d383831203335382e376331302e332032322e362032342e342034362e342033342e332036332e34222f3e3c7061746820643d224d3933342e37203336302e32632d352e312031342e362d32382e392037302e382d33382e372039372e374d3935332e34203431332e39203935332e35203431362e34222f3e3c2f673ea264697066735822122048c7c11580acb6c83c2fd48b4f68604cda61e3781e158fe5d221b15e92a41ab264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063ba85ff7611610071578063ba85ff76146102f4578063c87b56dd146102fe578063e985e9c51461032e578063f2fde38b1461035e578063f5cd16a91461037a57610121565b8063715018a6146102765780638da5cb5b1461028057806395d89b411461029e578063a22cb465146102bc578063b88d4fde146102d857610121565b806318160ddd116100f457806318160ddd146101c057806323b872dd146101de57806342842e0e146101fa5780636352211e1461021657806370a082311461024657610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b9190611dfd565b610384565b60405161014d9190611e45565b60405180910390f35b61015e610466565b60405161016b9190611ef0565b60405180910390f35b61018e60048036038101906101899190611f48565b6104f8565b60405161019b9190611fb6565b60405180910390f35b6101be60048036038101906101b99190611ffd565b61053e565b005b6101c8610655565b6040516101d5919061204c565b60405180910390f35b6101f860048036038101906101f39190612067565b61065f565b005b610214600480360381019061020f9190612067565b6106bf565b005b610230600480360381019061022b9190611f48565b6106df565b60405161023d9190611fb6565b60405180910390f35b610260600480360381019061025b91906120ba565b610765565b60405161026d919061204c565b60405180910390f35b61027e61081c565b005b610288610830565b6040516102959190611fb6565b60405180910390f35b6102a661085a565b6040516102b39190611ef0565b60405180910390f35b6102d660048036038101906102d19190612113565b6108ec565b005b6102f260048036038101906102ed9190612288565b610902565b005b6102fc610964565b005b61031860048036038101906103139190611f48565b610970565b6040516103259190611ef0565b60405180910390f35b6103486004803603810190610343919061230b565b610b9b565b6040516103559190611e45565b60405180910390f35b610378600480360381019061037391906120ba565b610c2f565b005b610382610cb2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061044f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061045f575061045e82610cbe565b5b9050919050565b6060600080546104759061237a565b80601f01602080910402602001604051908101604052809291908181526020018280546104a19061237a565b80156104ee5780601f106104c3576101008083540402835291602001916104ee565b820191906000526020600020905b8154815290600101906020018083116104d157829003601f168201915b5050505050905090565b600061050382610d28565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610549826106df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b09061241d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105d8610d73565b73ffffffffffffffffffffffffffffffffffffffff161480610607575061060681610601610d73565b610b9b565b5b610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d906124af565b60405180910390fd5b6106508383610d7b565b505050565b6000600854905090565b61067061066a610d73565b82610e34565b6106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690612541565b60405180910390fd5b6106ba838383610ec9565b505050565b6106da83838360405180602001604052806000815250610902565b505050565b6000806106eb836111c2565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610753906125ad565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cc9061263f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108246111ff565b61082e600061127d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546108699061237a565b80601f01602080910402602001604051908101604052809291908181526020018280546108959061237a565b80156108e25780601f106108b7576101008083540402835291602001916108e2565b820191906000526020600020905b8154815290600101906020018083116108c557829003601f168201915b5050505050905090565b6108fe6108f7610d73565b8383611343565b5050565b61091361090d610d73565b83610e34565b610952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094990612541565b60405180910390fd5b61095e848484846114af565b50505050565b61096e600061150b565b565b606061097b826115dd565b6109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b1906126ab565b60405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900460ff16905060006040518060400160405280600b81526020017f4920616d2068617070792e000000000000000000000000000000000000000000815250905060006040518060400160405280600d81526020017f5765206172652068617070792e000000000000000000000000000000000000008152509050600060405180610520016040528061050081526020016132c36105009139905083610ab1576040518060400160405280600f81526020017f4920616d206e6f742068617070792e000000000000000000000000000000000081525092505b610ab961161e565b610b14576040518060400160405280601181526020017f576520617265206e6f742068617070792e00000000000000000000000000000081525091506040518061068001604052806106438152602001613803610643913990505b610b71610b208761163a565b84610b4984604051602001610b359190612920565b604051602081830303815290604052611708565b86604051602001610b5d9493929190612b15565b604051602081830303815290604052611708565b604051602001610b819190612bd6565b604051602081830303815290604052945050505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c376111ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90612c6a565b60405180910390fd5b610caf8161127d565b50565b610cbc600161150b565b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d31816115dd565b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d67906125ad565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610dee836106df565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e40836106df565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610e825750610e818185610b9b565b5b80610ec057508373ffffffffffffffffffffffffffffffffffffffff16610ea8846104f8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610ee9826106df565b73ffffffffffffffffffffffffffffffffffffffff1614610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690612cfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa590612d8e565b60405180910390fd5b610fbb838383600161186b565b8273ffffffffffffffffffffffffffffffffffffffff16610fdb826106df565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890612cfc565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111bd8383836001611871565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611207610d73565b73ffffffffffffffffffffffffffffffffffffffff16611225610830565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290612dfa565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890612e66565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a29190611e45565b60405180910390a3505050565b6114ba848484610ec9565b6114c684848484611877565b611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90612ef8565b60405180910390fd5b50505050565b600061151561161e565b90508115611536576009600081548092919061153090612f47565b91905055505b600060086000815461154790612f47565b9190508190559050826007600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061158b611585610d73565b826119fe565b61159361161e565b1515821515146115d8577f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c6001826040516115cf929190612fd4565b60405180910390a15b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166115ff836111c2565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006009546008546116309190612ffd565b6009541015905090565b60606000600161164984611c1b565b01905060008167ffffffffffffffff8111156116685761166761215d565b5b6040519080825280601f01601f19166020018201604052801561169a5781602001600182028036833780820191505090505b509050600082602001820190505b6001156116fd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816116f1576116f0613031565b5b049450600085036116a8575b819350505050919050565b6060600082510361172a57604051806020016040528060008152509050611866565b60006040518060600160405280604081526020016137c360409139905060006003600285516117599190613060565b6117639190613094565b600461176f91906130c5565b67ffffffffffffffff8111156117885761178761215d565b5b6040519080825280601f01601f1916602001820160405280156117ba5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611826576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506117cb565b505060038651066001811461184257600281146118555761185d565b603d6001830353603d600283035361185d565b603d60018303535b50505080925050505b919050565b50505050565b50505050565b60006118988473ffffffffffffffffffffffffffffffffffffffff16611d6e565b156119f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118c1610d73565b8786866040518563ffffffff1660e01b81526004016118e3949392919061315c565b6020604051808303816000875af192505050801561191f57506040513d601f19601f8201168201806040525081019061191c91906131bd565b60015b6119a1573d806000811461194f576040519150601f19603f3d011682016040523d82523d6000602084013e611954565b606091505b506000815103611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090612ef8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119f6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613236565b60405180910390fd5b611a76816115dd565b15611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad906132a2565b60405180910390fd5b611ac460008383600161186b565b611acd816115dd565b15611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b04906132a2565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c17600083836001611871565b5050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c79577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c6f57611c6e613031565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611cb6576d04ee2d6d415b85acef81000000008381611cac57611cab613031565b5b0492506020810190505b662386f26fc100008310611ce557662386f26fc100008381611cdb57611cda613031565b5b0492506010810190505b6305f5e1008310611d0e576305f5e1008381611d0457611d03613031565b5b0492506008810190505b6127108310611d33576127108381611d2957611d28613031565b5b0492506004810190505b60648310611d565760648381611d4c57611d4b613031565b5b0492506002810190505b600a8310611d65576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611dda81611da5565b8114611de557600080fd5b50565b600081359050611df781611dd1565b92915050565b600060208284031215611e1357611e12611d9b565b5b6000611e2184828501611de8565b91505092915050565b60008115159050919050565b611e3f81611e2a565b82525050565b6000602082019050611e5a6000830184611e36565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e9a578082015181840152602081019050611e7f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ec282611e60565b611ecc8185611e6b565b9350611edc818560208601611e7c565b611ee581611ea6565b840191505092915050565b60006020820190508181036000830152611f0a8184611eb7565b905092915050565b6000819050919050565b611f2581611f12565b8114611f3057600080fd5b50565b600081359050611f4281611f1c565b92915050565b600060208284031215611f5e57611f5d611d9b565b5b6000611f6c84828501611f33565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fa082611f75565b9050919050565b611fb081611f95565b82525050565b6000602082019050611fcb6000830184611fa7565b92915050565b611fda81611f95565b8114611fe557600080fd5b50565b600081359050611ff781611fd1565b92915050565b6000806040838503121561201457612013611d9b565b5b600061202285828601611fe8565b925050602061203385828601611f33565b9150509250929050565b61204681611f12565b82525050565b6000602082019050612061600083018461203d565b92915050565b6000806000606084860312156120805761207f611d9b565b5b600061208e86828701611fe8565b935050602061209f86828701611fe8565b92505060406120b086828701611f33565b9150509250925092565b6000602082840312156120d0576120cf611d9b565b5b60006120de84828501611fe8565b91505092915050565b6120f081611e2a565b81146120fb57600080fd5b50565b60008135905061210d816120e7565b92915050565b6000806040838503121561212a57612129611d9b565b5b600061213885828601611fe8565b9250506020612149858286016120fe565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61219582611ea6565b810181811067ffffffffffffffff821117156121b4576121b361215d565b5b80604052505050565b60006121c7611d91565b90506121d3828261218c565b919050565b600067ffffffffffffffff8211156121f3576121f261215d565b5b6121fc82611ea6565b9050602081019050919050565b82818337600083830152505050565b600061222b612226846121d8565b6121bd565b90508281526020810184848401111561224757612246612158565b5b612252848285612209565b509392505050565b600082601f83011261226f5761226e612153565b5b813561227f848260208601612218565b91505092915050565b600080600080608085870312156122a2576122a1611d9b565b5b60006122b087828801611fe8565b94505060206122c187828801611fe8565b93505060406122d287828801611f33565b925050606085013567ffffffffffffffff8111156122f3576122f2611da0565b5b6122ff8782880161225a565b91505092959194509250565b6000806040838503121561232257612321611d9b565b5b600061233085828601611fe8565b925050602061234185828601611fe8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061239257607f821691505b6020821081036123a5576123a461234b565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612407602183611e6b565b9150612412826123ab565b604082019050919050565b60006020820190508181036000830152612436816123fa565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612499603d83611e6b565b91506124a48261243d565b604082019050919050565b600060208201905081810360008301526124c88161248c565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061252b602d83611e6b565b9150612536826124cf565b604082019050919050565b6000602082019050818103600083015261255a8161251e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612597601883611e6b565b91506125a282612561565b602082019050919050565b600060208201905081810360008301526125c68161258a565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612629602983611e6b565b9150612634826125cd565b604082019050919050565b600060208201905081810360008301526126588161261c565b9050919050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b6000612695601183611e6b565b91506126a08261265f565b602082019050919050565b600060208201905081810360008301526126c481612688565b9050919050565b600081905092915050565b7f3c7376672076657273696f6e3d22312e312220786d6c6e733d22687474703a2f60008201527f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e60208201527f6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b2260408201527f2076696577426f783d223020302031303234203736382220786d6c3a7370616360608201527f653d227072657365727665223e3c7374796c6520747970653d22746578742f6360808201527f7373223e7376677b6261636b67726f756e642d636f6c6f723a2331373139316560a08201527f3b7d677b7374726f6b652d77696474683a32323b7374726f6b652d6d6974657260c08201527f6c696d69743a31303b7374726f6b652d6c696e656361703a7371756172653b7360e08201527f74726f6b652d6c696e656a6f696e3a626576656c3b66696c6c3a6e6f6e653b7d6101008201527f2e617b7374726f6b653a236666303036663b7d2e627b7374726f6b653a2330356101208201527f663638663b7d3c2f7374796c653e00000000000000000000000000000000000061014082015250565b600061288c61014e836126cb565b9150612897826126d6565b61014e82019050919050565b60006128ae82611e60565b6128b881856126cb565b93506128c8818560208601611e7c565b80840191505092915050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b600061290a6006836126cb565b9150612915826128d4565b600682019050919050565b600061292b8261287e565b915061293782846128a3565b9150612942826128fd565b915081905092915050565b7f7b226e616d65223a202223000000000000000000000000000000000000000000600082015250565b6000612983600b836126cb565b915061298e8261294d565b600b82019050919050565b7f20e2809c00000000000000000000000000000000000000000000000000000000600082015250565b60006129cf6004836126cb565b91506129da82612999565b600482019050919050565b7fe2809d222c2022696d616765223a2022646174613a696d6167652f7376672b7860008201527f6d6c3b6261736536342c00000000000000000000000000000000000000000000602082015250565b6000612a41602a836126cb565b9150612a4c826129e5565b602a82019050919050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a225660008201527f6f746564222c2276616c7565223a220000000000000000000000000000000000602082015250565b6000612ab3602f836126cb565b9150612abe82612a57565b602f82019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b6000612aff6004836126cb565b9150612b0a82612ac9565b600482019050919050565b6000612b2082612976565b9150612b2c82876128a3565b9150612b37826129c2565b9150612b4382866128a3565b9150612b4e82612a34565b9150612b5a82856128a3565b9150612b6582612aa6565b9150612b7182846128a3565b9150612b7c82612af2565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000612bc0601d836126cb565b9150612bcb82612b8a565b601d82019050919050565b6000612be182612bb3565b9150612bed82846128a3565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c54602683611e6b565b9150612c5f82612bf8565b604082019050919050565b60006020820190508181036000830152612c8381612c47565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612ce6602583611e6b565b9150612cf182612c8a565b604082019050919050565b60006020820190508181036000830152612d1581612cd9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d78602483611e6b565b9150612d8382612d1c565b604082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612de4602083611e6b565b9150612def82612dae565b602082019050919050565b60006020820190508181036000830152612e1381612dd7565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612e50601983611e6b565b9150612e5b82612e1a565b602082019050919050565b60006020820190508181036000830152612e7f81612e43565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612ee2603283611e6b565b9150612eed82612e86565b604082019050919050565b60006020820190508181036000830152612f1181612ed5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f5282611f12565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f8457612f83612f18565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000612fbe612fb9612fb484612f8f565b612f99565b611f12565b9050919050565b612fce81612fa3565b82525050565b6000604082019050612fe96000830185612fc5565b612ff6602083018461203d565b9392505050565b600061300882611f12565b915061301383611f12565b925082820390508181111561302b5761302a612f18565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061306b82611f12565b915061307683611f12565b925082820190508082111561308e5761308d612f18565b5b92915050565b600061309f82611f12565b91506130aa83611f12565b9250826130ba576130b9613031565b5b828204905092915050565b60006130d082611f12565b91506130db83611f12565b92508282026130e981611f12565b91508282048414831517613100576130ff612f18565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b600061312e82613107565b6131388185613112565b9350613148818560208601611e7c565b61315181611ea6565b840191505092915050565b60006080820190506131716000830187611fa7565b61317e6020830186611fa7565b61318b604083018561203d565b818103606083015261319d8184613123565b905095945050505050565b6000815190506131b781611dd1565b92915050565b6000602082840312156131d3576131d2611d9b565b5b60006131e1848285016131a8565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613220602083611e6b565b915061322b826131ea565b602082019050919050565b6000602082019050818103600083015261324f81613213565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061328c601c83611e6b565b915061329782613256565b602082019050919050565b600060208201905081810360008301526132bb8161327f565b905091905056fe3c6720636c6173733d2261223e3c7061746820643d224d3133352e31203330322e336331322e382035332e372031382e372037382e312032382e33203133302e3620332e372d31392e382032332e392d3130342e372032382e362d3132392e3120382e352035322e392031342e382037372e322032322e36203133302e3620312e392d31342031392e332d38352e362032392e332d3133312e334d3236322e38203430332e3663342e382d2e312032322e332d352e322033322e342d31362e392031322e342d31342e3220322e312d34322e392d32302e342d33332e362d31342e3320352e392d32322e332032312e342d32322e332033382e3620302031362e3120382033342e352032342e352033342e3520372e3420302031342e392d322e322032302e332d342e384d3338332e37203335362e31632d332e372d342e352d372e382d362e392d31332d362e392d31382e3220302d33312e352032382e392d33312e352035302e3920302031322e3620362032322e312031362e352032322e312032312e3720302033302e332d34322e332033302d35342e372e3820362e352d342e362032342e382031312e342035322e314d3431302e35203334382e3863332e312031302e3920332e382031382e3520342e352032392e3820312031362e3620312e362033352e3520312e352035322e322e352d31362e3320312d34352031302e332d35382e332031312e332d31362e312031382e332d32312e332032392e312d32352e394d3436352e31203339332e3363352e352d2e342031312e312d2e382031362e352d322e3320352e332d312e3520392e392d342e352031332e382d382e312031362e382d31352e3920392e332d33342e312d382e312d33342e312d313920302d33312e392031342d33312e392033362e3220302032312e3920382e332033382e372032332e322033382e372031312e3120302031392e312d362e352032322d394d3534382e36203330322e33632d312e372033372e392d322e35203131362e372d342e32203133332e3320302d35362e322033382e352d39332e362033382e352d39332e367331342e352031352e312031342e352038344d3636332e31203335372e36632d322e332d332e342d392d31302e382d31362e342d31302e382d313820302d33312e362032392e332d33312e362034362e3920302031362e3820392032382e372032322e382032382e372031362e3120302033312e312d31362e372032332e352d36302e3320322e322031382e3220392e332033392e372031372036302e334d3639362e36203334342e3963302034342e372e312037372e322d312e35203131342e38222f3e3c7061746820643d224d3638382e36203335302e336333352e312d332e372035332e3120382e342035332e3120333320302033322d32362e362033382e372d33372e352033382e374d3735392e32203334362e39632e332034332e312d312e322036372e352d322e33203131322e384d3735392e39203334392e346333382e352d322e362034392e372032302e352034392e3720333720302032342e322d32342e382033362e372d34352e342033362e374d3831372e37203334382e386331322e312032352e332032322e352034362e322033352e36203731222f3e3c7061746820643d224d3838302e36203334392e35632d31372e352034342e352d33302e392036372e342d35302e32203131302e324d3839362e36203432332e39203839362e37203432362e39222f3e3c2f673e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c6720636c6173733d2262223e3c7061746820643d224d38302e35203331312e3563362e362033302e342031382e392039342e342032332e31203132342e3420382e372d35342e392031382e362d36392e372032392e352d3132342e3220322e342031332e322031392e322038342032342e38203132342e342031302e362d35362e312031382e372d38312e392033322e352d3132372e344d3230332e34203339392e396331342e332d312e392033302e352d31312e372033302e352d323520302d382e342d362e392d31362d31362e382d31362d313320302d31392e342031322e312d32312e322031372e362d332e3120392e342d342e322032302e322d322032392e3820322e3220392e372031302031382e372032302031392e332035202e332031332e332d322e332031382e382d362e364d3331342e31203336382e37632d332e372d31322e322d31312e372d31322e382d31342e332d31322e382d31312e3220302d32392e322031372e312d32392e322034372e3420302031322e3220362e342032312e322031352e372032312e322032362e3720302032362e312d33352e372032362e312d3438202e342031382e3220332e352032392031302e352034352e364d3333372e33203335352e3963352e332032342e3920332e382035322e3820342037362e3620302d31382e3120312e322d34302e342031302d35362e3520332e342d362e332031342e342d31352e312032322e312d31382e334d3338312e38203430332e346331302d312e382033382d31312e322033382d333020302d31322e312d392e362d31362d31392e312d31362d31352e3320302d32342e362031392e312d32342e3620333820302031302e3320352e322032392e342032322e312032392e3420392e3120302031372e342d342e372032312e392d382e334d3435382e362033353863322e372032302e3320332e352035322e3520332e352037332e3520302d31312d2e332d32332e3920312e392d33342e3920332e382d31392e322032312e322d34302e372032312e322d34302e377331332e352031362e342031332e352036362e314d3533322e3820333635632d372e3720322e362d31382e322031322d31382e322033302e3520302032332e372031322e362032382e322032302e3320323820372e372d2e322032302e352d362e322032302e352d33302e3620302d31382e382d31342d32332e342d32302e392d32332e344d3536322e37203335392e356331342e312e352032372e392e37203432202e37222f3e3c7061746820643d224d3538342e39203333302e34632d312e372033322e352d312e352036342d322e352039364d36333920333130632d322e332035312e342d332e362037312e382d332e34203132312e372d2e312d32382e332031352e352d36312e372033322e342d38312e382031322e332032332e382031372e312034362e322031362e322037332e314d373433203336342e37632d342d342e392d392e372d31302e342d31382e392d31302e342d362e3920302d32362e362031362e362d32362e362034342e3220302031312e3720352e362032332e322031392e352032332e322032322e3720302032352e312d34302032352e362d35302e32203220313720352e382033332e392031312e332035302e324d3737342e34203335352e3963302033322e352d332e312037382e342d342e33203130332e35222f3e3c7061746820643d224d373636203335372e3963362e322d2e392031392e362d322e372032392e3720312e342031312e3220342e352032312e342031382e332031362e312033372e382d342e352031362e332d32332e362032322e342d33372e342032322e344d3832382e332033353763352e392032392e3420342e382039312e3420342e36203130322e344d3833302e37203336302e3163382e342d312e372032342e372d332e342033332e3520342e322031312e3620392e392031312e312033312e3920342e392034302d362e3420382e322d31352e322031352e312d33332e392031352e314d383831203335382e376331302e332032322e362032342e342034362e342033342e332036332e34222f3e3c7061746820643d224d3933342e37203336302e32632d352e312031342e362d32382e392037302e382d33382e372039372e374d3935332e34203431332e39203935332e35203431362e34222f3e3c2f673ea264697066735822122048c7c11580acb6c83c2fd48b4f68604cda61e3781e158fe5d221b15e92a41ab264736f6c63430008120033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.