ETH Price: $2,632.44 (+1.67%)
Gas: 1.3 Gwei

Token

furusatocnp (fcnp)
 

Overview

Max Total Supply

0 fcnp

Holders

900

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 fcnp
0x74433ede05e90b31d2c36cfd0be51921b438e500
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:
furusatocnp

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : furusatocnp.sol
pragma solidity ^0.8.13;

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

contract furusatocnp is ERC721, Ownable {
    using Strings for uint256;
    using Strings for string;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint256 thtime;
    mapping (uint256 => uint256) level;
    mapping (uint256 => string) token;
    mapping (uint256 => uint256)  transtime;
    address[] allowaddress;
    constructor(string memory name_, string memory symbol_) ERC721(name_,symbol_) {
        thtime = 365 * 3600 * 24;
    }
    function tokenURI(uint256 tokenId) public view virtual override returns  (string memory)  {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return token[tokenId];
    }
    function createToken(string[] memory metas) public onlyOwner payable returns (string memory) {
        for(uint ins; ins<metas.length; ins++) {
            _tokenIds.increment();
            uint256 newItemId = _tokenIds.current();
            token[newItemId] = metas[ins];
            level[newItemId] = 0;
            _mint(owner(), newItemId);
        }
    }
    function isTime(uint256 _lastTransferredAt, uint256 _now) public view returns (bool) {
        return (_now - _lastTransferredAt) >= thtime;
    }
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override {
        if (from == address(0) || from == owner()) {
            transtime[tokenId] = block.timestamp;
        } else {
            require(isTime(transtime[tokenId], block.timestamp),"ERC721Transfer: This NFT is currently locked");
        }
        super._beforeTokenTransfer(from, to, tokenId);
    }
    function upgrade(uint256 tokenId,string memory meta) public onlyOwner returns (string memory) {
        require(level[tokenId] < 2, "ERC721Upgrade: This NFT has been max level");
        token[tokenId] = meta;
        level[tokenId] = level[tokenId] + 1;
        return "end";
    }
    function setApprovalForAll(address ope,bool approved) public virtual override {
        require(list(ope) == true, "ERC721Approve: This contract is not authorized");
        super.setApprovalForAll(ope, approved);
    }
    function approve(address to,uint256 tokenId) public virtual override {
        require(list(to) == true, "ERC721Approve: This contract is not authorized");
        super.approve(to, tokenId);
    }
    function list(address to) public view returns (bool) {
        for (uint ins;ins<allowaddress.length; ins++) {
            if (allowaddress[ins] == to) {
                return true;
            }
        }
        return false;
    }
    function _ViewList() public view returns (address[] memory) {
        return allowaddress;
    }
    function _SetList(address to) public onlyOwner returns (string memory) {
        allowaddress.push(to);
    }
    function _DelList(uint256 id) public onlyOwner returns (string memory) {
        delete allowaddress[id];
    }
    function _ViewLevel(uint256 tokenId) public view returns (uint256) {
        return level[tokenId];
    }
    function _ViewTime(uint256 tokenId) public view returns (uint256) {
        return block.timestamp - transtime[tokenId];
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 13 : 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 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 5 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 6 of 13 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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));

        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 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 13 : 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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 12 of 13 : 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 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"_DelList","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"_SetList","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"_ViewLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ViewList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"_ViewTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"metas","type":"string[]"}],"name":"createToken","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lastTransferredAt","type":"uint256"},{"internalType":"uint256","name":"_now","type":"uint256"}],"name":"isTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"list","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":"ope","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"meta","type":"string"}],"name":"upgrade","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003d9138038062003d918339818101604052810190620000379190620003bb565b81818160009080519060200190620000519291906200016e565b5080600190805190602001906200006a9291906200016e565b5050506200008d62000081620000a060201b60201c565b620000a860201b60201c565b6301e133806008819055505050620004a4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017c906200046f565b90600052602060002090601f016020900481019282620001a05760008555620001ec565b82601f10620001bb57805160ff1916838001178555620001ec565b82800160010185558215620001ec579182015b82811115620001eb578251825591602001919060010190620001ce565b5b509050620001fb9190620001ff565b5090565b5b808211156200021a57600081600090555060010162000200565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000287826200023c565b810181811067ffffffffffffffff82111715620002a957620002a86200024d565b5b80604052505050565b6000620002be6200021e565b9050620002cc82826200027c565b919050565b600067ffffffffffffffff821115620002ef57620002ee6200024d565b5b620002fa826200023c565b9050602081019050919050565b60005b83811015620003275780820151818401526020810190506200030a565b8381111562000337576000848401525b50505050565b6000620003546200034e84620002d1565b620002b2565b90508281526020810184848401111562000373576200037262000237565b5b6200038084828562000307565b509392505050565b600082601f830112620003a0576200039f62000232565b5b8151620003b28482602086016200033d565b91505092915050565b60008060408385031215620003d557620003d462000228565b5b600083015167ffffffffffffffff811115620003f657620003f56200022d565b5b620004048582860162000388565b925050602083015167ffffffffffffffff8111156200042857620004276200022d565b5b620004368582860162000388565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048857607f821691505b6020821081036200049e576200049d62000440565b5b50919050565b6138dd80620004b46000396000f3fe6080604052600436106101665760003560e01c80638bf9d2c2116100d1578063bb032a661161008a578063d3f4a02a11610064578063d3f4a02a1461059a578063dd01b233146105d7578063e985e9c514610607578063f2fde38b1461064457610166565b8063bb032a66146104f5578063bd704fbc14610532578063c87b56dd1461055d57610166565b80638bf9d2c2146103d35780638da5cb5b1461041057806395d89b411461043b578063a22cb46514610466578063b095a3821461048f578063b88d4fde146104cc57610166565b80634d3158d4116101235780634d3158d41461028b5780636352211e146102c857806370a0823114610305578063715018a6146103425780637accc8f5146103595780637cf199081461039657610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806323b872dd1461023957806342842e0e14610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612353565b61066d565b60405161019f919061239b565b60405180910390f35b3480156101b457600080fd5b506101bd61074f565b6040516101ca919061244f565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906124a7565b6107e1565b6040516102079190612515565b60405180910390f35b34801561021c57600080fd5b506102376004803603810190610232919061255c565b610866565b005b34801561024557600080fd5b50610260600480360381019061025b919061259c565b6108c3565b005b34801561026e57600080fd5b506102896004803603810190610284919061259c565b610923565b005b34801561029757600080fd5b506102b260048036038101906102ad91906124a7565b610943565b6040516102bf91906125fe565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea91906124a7565b610960565b6040516102fc9190612515565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190612619565b610a11565b60405161033991906125fe565b60405180910390f35b34801561034e57600080fd5b50610357610ac8565b005b34801561036557600080fd5b50610380600480360381019061037b91906124a7565b610b50565b60405161038d919061244f565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190612619565b610c14565b6040516103ca919061244f565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f591906124a7565b610cfa565b60405161040791906125fe565b60405180910390f35b34801561041c57600080fd5b50610425610d22565b6040516104329190612515565b60405180910390f35b34801561044757600080fd5b50610450610d4c565b60405161045d919061244f565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612672565b610dde565b005b34801561049b57600080fd5b506104b660048036038101906104b191906127e7565b610e3b565b6040516104c3919061244f565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906128e4565b610fac565b005b34801561050157600080fd5b5061051c60048036038101906105179190612619565b61100e565b604051610529919061239b565b60405180910390f35b34801561053e57600080fd5b506105476110b8565b6040516105549190612a25565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906124a7565b611146565b604051610591919061244f565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190612a47565b611233565b6040516105ce919061239b565b60405180910390f35b6105f160048036038101906105ec9190612b6d565b61124e565b6040516105fe919061244f565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190612bb6565b611376565b60405161063b919061239b565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612619565b61140a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610748575061074782611501565b5b9050919050565b60606000805461075e90612c25565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90612c25565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b60006107ec8261156b565b61082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290612cc8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600115156108738361100e565b1515146108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac90612d5a565b60405180910390fd5b6108bf82826115d7565b5050565b6108d46108ce6116ee565b826116f6565b610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a90612dec565b60405180910390fd5b61091e8383836117d4565b505050565b61093e83838360405180602001604052806000815250610fac565b505050565b600060096000838152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff90612e7e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612f10565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ad06116ee565b73ffffffffffffffffffffffffffffffffffffffff16610aee610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90612f7c565b60405180910390fd5b610b4e6000611a3a565b565b6060610b5a6116ee565b73ffffffffffffffffffffffffffffffffffffffff16610b78610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590612f7c565b60405180910390fd5b600c8281548110610be257610be1612f9c565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055919050565b6060610c1e6116ee565b73ffffffffffffffffffffffffffffffffffffffff16610c3c610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990612f7c565b60405180910390fd5b600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b6000600b60008381526020019081526020016000205442610d1b9190612ffa565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d5b90612c25565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8790612c25565b8015610dd45780601f10610da957610100808354040283529160200191610dd4565b820191906000526020600020905b815481529060010190602001808311610db757829003601f168201915b5050505050905090565b60011515610deb8361100e565b151514610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490612d5a565b60405180910390fd5b610e378282611b00565b5050565b6060610e456116ee565b73ffffffffffffffffffffffffffffffffffffffff16610e63610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090612f7c565b60405180910390fd5b6002600960008581526020019081526020016000205410610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f06906130a0565b60405180910390fd5b81600a60008581526020019081526020016000209080519060200190610f36929190612244565b5060016009600085815260200190815260200160002054610f5791906130c0565b60096000858152602001908152602001600020819055506040518060400160405280600381526020017f656e640000000000000000000000000000000000000000000000000000000000815250905092915050565b610fbd610fb76116ee565b836116f6565b610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390612dec565b60405180910390fd5b61100884848484611b16565b50505050565b6000805b600c805490508110156110ad578273ffffffffffffffffffffffffffffffffffffffff16600c828154811061104a57611049612f9c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361109a5760019150506110b3565b80806110a590613116565b915050611012565b50600090505b919050565b6060600c80548060200260200160405190810160405280929190818152602001828054801561113c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116110f2575b5050505050905090565b60606111518261156b565b611190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611187906131d0565b60405180910390fd5b600a600083815260200190815260200160002080546111ae90612c25565b80601f01602080910402602001604051908101604052809291908181526020018280546111da90612c25565b80156112275780601f106111fc57610100808354040283529160200191611227565b820191906000526020600020905b81548152906001019060200180831161120a57829003601f168201915b50505050509050919050565b600060085483836112449190612ffa565b1015905092915050565b60606112586116ee565b73ffffffffffffffffffffffffffffffffffffffff16611276610d22565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390612f7c565b60405180910390fd5b60005b8251811015611370576112e26007611b72565b60006112ee6007611b88565b905083828151811061130357611302612f9c565b5b6020026020010151600a60008381526020019081526020016000209080519060200190611331929190612244565b506000600960008381526020019081526020016000208190555061135c611356610d22565b82611b96565b50808061136890613116565b9150506112cf565b50919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114126116ee565b73ffffffffffffffffffffffffffffffffffffffff16611430610d22565b73ffffffffffffffffffffffffffffffffffffffff1614611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90612f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90613262565b60405180910390fd5b6114fe81611a3a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006115e282610960565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906132f4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166116716116ee565b73ffffffffffffffffffffffffffffffffffffffff1614806116a0575061169f8161169a6116ee565b611376565b5b6116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690613386565b60405180910390fd5b6116e98383611d6f565b505050565b600033905090565b60006117018261156b565b611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613418565b60405180910390fd5b600061174b83610960565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117ba57508373ffffffffffffffffffffffffffffffffffffffff166117a2846107e1565b73ffffffffffffffffffffffffffffffffffffffff16145b806117cb57506117ca8185611376565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117f482610960565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611841906134aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061353c565b60405180910390fd5b6118c4838383611e28565b6118cf600082611d6f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461191f9190612ffa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461197691906130c0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a35838383611f24565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b12611b0b6116ee565b8383611f29565b5050565b611b218484846117d4565b611b2d84848484612095565b611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b63906135ce565b60405180910390fd5b50505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc9061363a565b60405180910390fd5b611c0e8161156b565b15611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c45906136a6565b60405180910390fd5b611c5a60008383611e28565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611caa91906130c0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d6b60008383611f24565b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611de283610960565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611e955750611e66610d22565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611eb75742600b600083815260200190815260200160002081905550611f14565b611ed4600b60008381526020019081526020016000205442611233565b611f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0a90613738565b60405180910390fd5b5b611f1f83838361221c565b505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906137a4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612088919061239b565b60405180910390a3505050565b60006120b68473ffffffffffffffffffffffffffffffffffffffff16612221565b1561220f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120df6116ee565b8786866040518563ffffffff1660e01b81526004016121019493929190613819565b6020604051808303816000875af192505050801561213d57506040513d601f19601f8201168201806040525081019061213a919061387a565b60015b6121bf573d806000811461216d576040519150601f19603f3d011682016040523d82523d6000602084013e612172565b606091505b5060008151036121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae906135ce565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612214565b600190505b949350505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461225090612c25565b90600052602060002090601f01602090048101928261227257600085556122b9565b82601f1061228b57805160ff19168380011785556122b9565b828001600101855582156122b9579182015b828111156122b857825182559160200191906001019061229d565b5b5090506122c691906122ca565b5090565b5b808211156122e35760008160009055506001016122cb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612330816122fb565b811461233b57600080fd5b50565b60008135905061234d81612327565b92915050565b600060208284031215612369576123686122f1565b5b60006123778482850161233e565b91505092915050565b60008115159050919050565b61239581612380565b82525050565b60006020820190506123b0600083018461238c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f05780820151818401526020810190506123d5565b838111156123ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000612421826123b6565b61242b81856123c1565b935061243b8185602086016123d2565b61244481612405565b840191505092915050565b600060208201905081810360008301526124698184612416565b905092915050565b6000819050919050565b61248481612471565b811461248f57600080fd5b50565b6000813590506124a18161247b565b92915050565b6000602082840312156124bd576124bc6122f1565b5b60006124cb84828501612492565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124ff826124d4565b9050919050565b61250f816124f4565b82525050565b600060208201905061252a6000830184612506565b92915050565b612539816124f4565b811461254457600080fd5b50565b60008135905061255681612530565b92915050565b60008060408385031215612573576125726122f1565b5b600061258185828601612547565b925050602061259285828601612492565b9150509250929050565b6000806000606084860312156125b5576125b46122f1565b5b60006125c386828701612547565b93505060206125d486828701612547565b92505060406125e586828701612492565b9150509250925092565b6125f881612471565b82525050565b600060208201905061261360008301846125ef565b92915050565b60006020828403121561262f5761262e6122f1565b5b600061263d84828501612547565b91505092915050565b61264f81612380565b811461265a57600080fd5b50565b60008135905061266c81612646565b92915050565b60008060408385031215612689576126886122f1565b5b600061269785828601612547565b92505060206126a88582860161265d565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126f482612405565b810181811067ffffffffffffffff82111715612713576127126126bc565b5b80604052505050565b60006127266122e7565b905061273282826126eb565b919050565b600067ffffffffffffffff821115612752576127516126bc565b5b61275b82612405565b9050602081019050919050565b82818337600083830152505050565b600061278a61278584612737565b61271c565b9050828152602081018484840111156127a6576127a56126b7565b5b6127b1848285612768565b509392505050565b600082601f8301126127ce576127cd6126b2565b5b81356127de848260208601612777565b91505092915050565b600080604083850312156127fe576127fd6122f1565b5b600061280c85828601612492565b925050602083013567ffffffffffffffff81111561282d5761282c6122f6565b5b612839858286016127b9565b9150509250929050565b600067ffffffffffffffff82111561285e5761285d6126bc565b5b61286782612405565b9050602081019050919050565b600061288761288284612843565b61271c565b9050828152602081018484840111156128a3576128a26126b7565b5b6128ae848285612768565b509392505050565b600082601f8301126128cb576128ca6126b2565b5b81356128db848260208601612874565b91505092915050565b600080600080608085870312156128fe576128fd6122f1565b5b600061290c87828801612547565b945050602061291d87828801612547565b935050604061292e87828801612492565b925050606085013567ffffffffffffffff81111561294f5761294e6122f6565b5b61295b878288016128b6565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61299c816124f4565b82525050565b60006129ae8383612993565b60208301905092915050565b6000602082019050919050565b60006129d282612967565b6129dc8185612972565b93506129e783612983565b8060005b83811015612a185781516129ff88826129a2565b9750612a0a836129ba565b9250506001810190506129eb565b5085935050505092915050565b60006020820190508181036000830152612a3f81846129c7565b905092915050565b60008060408385031215612a5e57612a5d6122f1565b5b6000612a6c85828601612492565b9250506020612a7d85828601612492565b9150509250929050565b600067ffffffffffffffff821115612aa257612aa16126bc565b5b602082029050602081019050919050565b600080fd5b6000612acb612ac684612a87565b61271c565b90508083825260208201905060208402830185811115612aee57612aed612ab3565b5b835b81811015612b3557803567ffffffffffffffff811115612b1357612b126126b2565b5b808601612b2089826127b9565b85526020850194505050602081019050612af0565b5050509392505050565b600082601f830112612b5457612b536126b2565b5b8135612b64848260208601612ab8565b91505092915050565b600060208284031215612b8357612b826122f1565b5b600082013567ffffffffffffffff811115612ba157612ba06122f6565b5b612bad84828501612b3f565b91505092915050565b60008060408385031215612bcd57612bcc6122f1565b5b6000612bdb85828601612547565b9250506020612bec85828601612547565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c3d57607f821691505b602082108103612c5057612c4f612bf6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612cb2602c836123c1565b9150612cbd82612c56565b604082019050919050565b60006020820190508181036000830152612ce181612ca5565b9050919050565b7f455243373231417070726f76653a205468697320636f6e74726163742069732060008201527f6e6f7420617574686f72697a6564000000000000000000000000000000000000602082015250565b6000612d44602e836123c1565b9150612d4f82612ce8565b604082019050919050565b60006020820190508181036000830152612d7381612d37565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612dd66031836123c1565b9150612de182612d7a565b604082019050919050565b60006020820190508181036000830152612e0581612dc9565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612e686029836123c1565b9150612e7382612e0c565b604082019050919050565b60006020820190508181036000830152612e9781612e5b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612efa602a836123c1565b9150612f0582612e9e565b604082019050919050565b60006020820190508181036000830152612f2981612eed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f666020836123c1565b9150612f7182612f30565b602082019050919050565b60006020820190508181036000830152612f9581612f59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061300582612471565b915061301083612471565b92508282101561302357613022612fcb565b5b828203905092915050565b7f455243373231557067726164653a2054686973204e465420686173206265656e60008201527f206d6178206c6576656c00000000000000000000000000000000000000000000602082015250565b600061308a602a836123c1565b91506130958261302e565b604082019050919050565b600060208201905081810360008301526130b98161307d565b9050919050565b60006130cb82612471565b91506130d683612471565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310b5761310a612fcb565b5b828201905092915050565b600061312182612471565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361315357613152612fcb565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131ba602f836123c1565b91506131c58261315e565b604082019050919050565b600060208201905081810360008301526131e9816131ad565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061324c6026836123c1565b9150613257826131f0565b604082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006132de6021836123c1565b91506132e982613282565b604082019050919050565b6000602082019050818103600083015261330d816132d1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006133706038836123c1565b915061337b82613314565b604082019050919050565b6000602082019050818103600083015261339f81613363565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613402602c836123c1565b915061340d826133a6565b604082019050919050565b60006020820190508181036000830152613431816133f5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006134946025836123c1565b915061349f82613438565b604082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135266024836123c1565b9150613531826134ca565b604082019050919050565b6000602082019050818103600083015261355581613519565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006135b86032836123c1565b91506135c38261355c565b604082019050919050565b600060208201905081810360008301526135e7816135ab565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006136246020836123c1565b915061362f826135ee565b602082019050919050565b6000602082019050818103600083015261365381613617565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613690601c836123c1565b915061369b8261365a565b602082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f4552433732315472616e736665723a2054686973204e4654206973206375727260008201527f656e746c79206c6f636b65640000000000000000000000000000000000000000602082015250565b6000613722602c836123c1565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061378e6019836123c1565b915061379982613758565b602082019050919050565b600060208201905081810360008301526137bd81613781565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137eb826137c4565b6137f581856137cf565b93506138058185602086016123d2565b61380e81612405565b840191505092915050565b600060808201905061382e6000830187612506565b61383b6020830186612506565b61384860408301856125ef565b818103606083015261385a81846137e0565b905095945050505050565b60008151905061387481612327565b92915050565b6000602082840312156138905761388f6122f1565b5b600061389e84828501613865565b9150509291505056fea26469706673582212204a52f8deac913b5a003ee9a6f5a1fa87afab2a785f80e47961cb977227270c0d64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b667572757361746f636e70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000466636e7000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c80638bf9d2c2116100d1578063bb032a661161008a578063d3f4a02a11610064578063d3f4a02a1461059a578063dd01b233146105d7578063e985e9c514610607578063f2fde38b1461064457610166565b8063bb032a66146104f5578063bd704fbc14610532578063c87b56dd1461055d57610166565b80638bf9d2c2146103d35780638da5cb5b1461041057806395d89b411461043b578063a22cb46514610466578063b095a3821461048f578063b88d4fde146104cc57610166565b80634d3158d4116101235780634d3158d41461028b5780636352211e146102c857806370a0823114610305578063715018a6146103425780637accc8f5146103595780637cf199081461039657610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806323b872dd1461023957806342842e0e14610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612353565b61066d565b60405161019f919061239b565b60405180910390f35b3480156101b457600080fd5b506101bd61074f565b6040516101ca919061244f565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906124a7565b6107e1565b6040516102079190612515565b60405180910390f35b34801561021c57600080fd5b506102376004803603810190610232919061255c565b610866565b005b34801561024557600080fd5b50610260600480360381019061025b919061259c565b6108c3565b005b34801561026e57600080fd5b506102896004803603810190610284919061259c565b610923565b005b34801561029757600080fd5b506102b260048036038101906102ad91906124a7565b610943565b6040516102bf91906125fe565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea91906124a7565b610960565b6040516102fc9190612515565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190612619565b610a11565b60405161033991906125fe565b60405180910390f35b34801561034e57600080fd5b50610357610ac8565b005b34801561036557600080fd5b50610380600480360381019061037b91906124a7565b610b50565b60405161038d919061244f565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190612619565b610c14565b6040516103ca919061244f565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f591906124a7565b610cfa565b60405161040791906125fe565b60405180910390f35b34801561041c57600080fd5b50610425610d22565b6040516104329190612515565b60405180910390f35b34801561044757600080fd5b50610450610d4c565b60405161045d919061244f565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612672565b610dde565b005b34801561049b57600080fd5b506104b660048036038101906104b191906127e7565b610e3b565b6040516104c3919061244f565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906128e4565b610fac565b005b34801561050157600080fd5b5061051c60048036038101906105179190612619565b61100e565b604051610529919061239b565b60405180910390f35b34801561053e57600080fd5b506105476110b8565b6040516105549190612a25565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906124a7565b611146565b604051610591919061244f565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190612a47565b611233565b6040516105ce919061239b565b60405180910390f35b6105f160048036038101906105ec9190612b6d565b61124e565b6040516105fe919061244f565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190612bb6565b611376565b60405161063b919061239b565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612619565b61140a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610748575061074782611501565b5b9050919050565b60606000805461075e90612c25565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90612c25565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b60006107ec8261156b565b61082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290612cc8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600115156108738361100e565b1515146108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac90612d5a565b60405180910390fd5b6108bf82826115d7565b5050565b6108d46108ce6116ee565b826116f6565b610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a90612dec565b60405180910390fd5b61091e8383836117d4565b505050565b61093e83838360405180602001604052806000815250610fac565b505050565b600060096000838152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff90612e7e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612f10565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ad06116ee565b73ffffffffffffffffffffffffffffffffffffffff16610aee610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90612f7c565b60405180910390fd5b610b4e6000611a3a565b565b6060610b5a6116ee565b73ffffffffffffffffffffffffffffffffffffffff16610b78610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590612f7c565b60405180910390fd5b600c8281548110610be257610be1612f9c565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055919050565b6060610c1e6116ee565b73ffffffffffffffffffffffffffffffffffffffff16610c3c610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990612f7c565b60405180910390fd5b600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b6000600b60008381526020019081526020016000205442610d1b9190612ffa565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d5b90612c25565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8790612c25565b8015610dd45780601f10610da957610100808354040283529160200191610dd4565b820191906000526020600020905b815481529060010190602001808311610db757829003601f168201915b5050505050905090565b60011515610deb8361100e565b151514610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490612d5a565b60405180910390fd5b610e378282611b00565b5050565b6060610e456116ee565b73ffffffffffffffffffffffffffffffffffffffff16610e63610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090612f7c565b60405180910390fd5b6002600960008581526020019081526020016000205410610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f06906130a0565b60405180910390fd5b81600a60008581526020019081526020016000209080519060200190610f36929190612244565b5060016009600085815260200190815260200160002054610f5791906130c0565b60096000858152602001908152602001600020819055506040518060400160405280600381526020017f656e640000000000000000000000000000000000000000000000000000000000815250905092915050565b610fbd610fb76116ee565b836116f6565b610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390612dec565b60405180910390fd5b61100884848484611b16565b50505050565b6000805b600c805490508110156110ad578273ffffffffffffffffffffffffffffffffffffffff16600c828154811061104a57611049612f9c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361109a5760019150506110b3565b80806110a590613116565b915050611012565b50600090505b919050565b6060600c80548060200260200160405190810160405280929190818152602001828054801561113c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116110f2575b5050505050905090565b60606111518261156b565b611190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611187906131d0565b60405180910390fd5b600a600083815260200190815260200160002080546111ae90612c25565b80601f01602080910402602001604051908101604052809291908181526020018280546111da90612c25565b80156112275780601f106111fc57610100808354040283529160200191611227565b820191906000526020600020905b81548152906001019060200180831161120a57829003601f168201915b50505050509050919050565b600060085483836112449190612ffa565b1015905092915050565b60606112586116ee565b73ffffffffffffffffffffffffffffffffffffffff16611276610d22565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390612f7c565b60405180910390fd5b60005b8251811015611370576112e26007611b72565b60006112ee6007611b88565b905083828151811061130357611302612f9c565b5b6020026020010151600a60008381526020019081526020016000209080519060200190611331929190612244565b506000600960008381526020019081526020016000208190555061135c611356610d22565b82611b96565b50808061136890613116565b9150506112cf565b50919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114126116ee565b73ffffffffffffffffffffffffffffffffffffffff16611430610d22565b73ffffffffffffffffffffffffffffffffffffffff1614611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90612f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90613262565b60405180910390fd5b6114fe81611a3a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006115e282610960565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906132f4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166116716116ee565b73ffffffffffffffffffffffffffffffffffffffff1614806116a0575061169f8161169a6116ee565b611376565b5b6116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690613386565b60405180910390fd5b6116e98383611d6f565b505050565b600033905090565b60006117018261156b565b611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613418565b60405180910390fd5b600061174b83610960565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117ba57508373ffffffffffffffffffffffffffffffffffffffff166117a2846107e1565b73ffffffffffffffffffffffffffffffffffffffff16145b806117cb57506117ca8185611376565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117f482610960565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611841906134aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061353c565b60405180910390fd5b6118c4838383611e28565b6118cf600082611d6f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461191f9190612ffa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461197691906130c0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a35838383611f24565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b12611b0b6116ee565b8383611f29565b5050565b611b218484846117d4565b611b2d84848484612095565b611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b63906135ce565b60405180910390fd5b50505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc9061363a565b60405180910390fd5b611c0e8161156b565b15611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c45906136a6565b60405180910390fd5b611c5a60008383611e28565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611caa91906130c0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d6b60008383611f24565b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611de283610960565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611e955750611e66610d22565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611eb75742600b600083815260200190815260200160002081905550611f14565b611ed4600b60008381526020019081526020016000205442611233565b611f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0a90613738565b60405180910390fd5b5b611f1f83838361221c565b505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906137a4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612088919061239b565b60405180910390a3505050565b60006120b68473ffffffffffffffffffffffffffffffffffffffff16612221565b1561220f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120df6116ee565b8786866040518563ffffffff1660e01b81526004016121019493929190613819565b6020604051808303816000875af192505050801561213d57506040513d601f19601f8201168201806040525081019061213a919061387a565b60015b6121bf573d806000811461216d576040519150601f19603f3d011682016040523d82523d6000602084013e612172565b606091505b5060008151036121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae906135ce565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612214565b600190505b949350505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461225090612c25565b90600052602060002090601f01602090048101928261227257600085556122b9565b82601f1061228b57805160ff19168380011785556122b9565b828001600101855582156122b9579182015b828111156122b857825182559160200191906001019061229d565b5b5090506122c691906122ca565b5090565b5b808211156122e35760008160009055506001016122cb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612330816122fb565b811461233b57600080fd5b50565b60008135905061234d81612327565b92915050565b600060208284031215612369576123686122f1565b5b60006123778482850161233e565b91505092915050565b60008115159050919050565b61239581612380565b82525050565b60006020820190506123b0600083018461238c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f05780820151818401526020810190506123d5565b838111156123ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000612421826123b6565b61242b81856123c1565b935061243b8185602086016123d2565b61244481612405565b840191505092915050565b600060208201905081810360008301526124698184612416565b905092915050565b6000819050919050565b61248481612471565b811461248f57600080fd5b50565b6000813590506124a18161247b565b92915050565b6000602082840312156124bd576124bc6122f1565b5b60006124cb84828501612492565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124ff826124d4565b9050919050565b61250f816124f4565b82525050565b600060208201905061252a6000830184612506565b92915050565b612539816124f4565b811461254457600080fd5b50565b60008135905061255681612530565b92915050565b60008060408385031215612573576125726122f1565b5b600061258185828601612547565b925050602061259285828601612492565b9150509250929050565b6000806000606084860312156125b5576125b46122f1565b5b60006125c386828701612547565b93505060206125d486828701612547565b92505060406125e586828701612492565b9150509250925092565b6125f881612471565b82525050565b600060208201905061261360008301846125ef565b92915050565b60006020828403121561262f5761262e6122f1565b5b600061263d84828501612547565b91505092915050565b61264f81612380565b811461265a57600080fd5b50565b60008135905061266c81612646565b92915050565b60008060408385031215612689576126886122f1565b5b600061269785828601612547565b92505060206126a88582860161265d565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126f482612405565b810181811067ffffffffffffffff82111715612713576127126126bc565b5b80604052505050565b60006127266122e7565b905061273282826126eb565b919050565b600067ffffffffffffffff821115612752576127516126bc565b5b61275b82612405565b9050602081019050919050565b82818337600083830152505050565b600061278a61278584612737565b61271c565b9050828152602081018484840111156127a6576127a56126b7565b5b6127b1848285612768565b509392505050565b600082601f8301126127ce576127cd6126b2565b5b81356127de848260208601612777565b91505092915050565b600080604083850312156127fe576127fd6122f1565b5b600061280c85828601612492565b925050602083013567ffffffffffffffff81111561282d5761282c6122f6565b5b612839858286016127b9565b9150509250929050565b600067ffffffffffffffff82111561285e5761285d6126bc565b5b61286782612405565b9050602081019050919050565b600061288761288284612843565b61271c565b9050828152602081018484840111156128a3576128a26126b7565b5b6128ae848285612768565b509392505050565b600082601f8301126128cb576128ca6126b2565b5b81356128db848260208601612874565b91505092915050565b600080600080608085870312156128fe576128fd6122f1565b5b600061290c87828801612547565b945050602061291d87828801612547565b935050604061292e87828801612492565b925050606085013567ffffffffffffffff81111561294f5761294e6122f6565b5b61295b878288016128b6565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61299c816124f4565b82525050565b60006129ae8383612993565b60208301905092915050565b6000602082019050919050565b60006129d282612967565b6129dc8185612972565b93506129e783612983565b8060005b83811015612a185781516129ff88826129a2565b9750612a0a836129ba565b9250506001810190506129eb565b5085935050505092915050565b60006020820190508181036000830152612a3f81846129c7565b905092915050565b60008060408385031215612a5e57612a5d6122f1565b5b6000612a6c85828601612492565b9250506020612a7d85828601612492565b9150509250929050565b600067ffffffffffffffff821115612aa257612aa16126bc565b5b602082029050602081019050919050565b600080fd5b6000612acb612ac684612a87565b61271c565b90508083825260208201905060208402830185811115612aee57612aed612ab3565b5b835b81811015612b3557803567ffffffffffffffff811115612b1357612b126126b2565b5b808601612b2089826127b9565b85526020850194505050602081019050612af0565b5050509392505050565b600082601f830112612b5457612b536126b2565b5b8135612b64848260208601612ab8565b91505092915050565b600060208284031215612b8357612b826122f1565b5b600082013567ffffffffffffffff811115612ba157612ba06122f6565b5b612bad84828501612b3f565b91505092915050565b60008060408385031215612bcd57612bcc6122f1565b5b6000612bdb85828601612547565b9250506020612bec85828601612547565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c3d57607f821691505b602082108103612c5057612c4f612bf6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612cb2602c836123c1565b9150612cbd82612c56565b604082019050919050565b60006020820190508181036000830152612ce181612ca5565b9050919050565b7f455243373231417070726f76653a205468697320636f6e74726163742069732060008201527f6e6f7420617574686f72697a6564000000000000000000000000000000000000602082015250565b6000612d44602e836123c1565b9150612d4f82612ce8565b604082019050919050565b60006020820190508181036000830152612d7381612d37565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612dd66031836123c1565b9150612de182612d7a565b604082019050919050565b60006020820190508181036000830152612e0581612dc9565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612e686029836123c1565b9150612e7382612e0c565b604082019050919050565b60006020820190508181036000830152612e9781612e5b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612efa602a836123c1565b9150612f0582612e9e565b604082019050919050565b60006020820190508181036000830152612f2981612eed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f666020836123c1565b9150612f7182612f30565b602082019050919050565b60006020820190508181036000830152612f9581612f59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061300582612471565b915061301083612471565b92508282101561302357613022612fcb565b5b828203905092915050565b7f455243373231557067726164653a2054686973204e465420686173206265656e60008201527f206d6178206c6576656c00000000000000000000000000000000000000000000602082015250565b600061308a602a836123c1565b91506130958261302e565b604082019050919050565b600060208201905081810360008301526130b98161307d565b9050919050565b60006130cb82612471565b91506130d683612471565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310b5761310a612fcb565b5b828201905092915050565b600061312182612471565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361315357613152612fcb565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131ba602f836123c1565b91506131c58261315e565b604082019050919050565b600060208201905081810360008301526131e9816131ad565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061324c6026836123c1565b9150613257826131f0565b604082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006132de6021836123c1565b91506132e982613282565b604082019050919050565b6000602082019050818103600083015261330d816132d1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006133706038836123c1565b915061337b82613314565b604082019050919050565b6000602082019050818103600083015261339f81613363565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613402602c836123c1565b915061340d826133a6565b604082019050919050565b60006020820190508181036000830152613431816133f5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006134946025836123c1565b915061349f82613438565b604082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135266024836123c1565b9150613531826134ca565b604082019050919050565b6000602082019050818103600083015261355581613519565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006135b86032836123c1565b91506135c38261355c565b604082019050919050565b600060208201905081810360008301526135e7816135ab565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006136246020836123c1565b915061362f826135ee565b602082019050919050565b6000602082019050818103600083015261365381613617565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613690601c836123c1565b915061369b8261365a565b602082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f4552433732315472616e736665723a2054686973204e4654206973206375727260008201527f656e746c79206c6f636b65640000000000000000000000000000000000000000602082015250565b6000613722602c836123c1565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061378e6019836123c1565b915061379982613758565b602082019050919050565b600060208201905081810360008301526137bd81613781565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137eb826137c4565b6137f581856137cf565b93506138058185602086016123d2565b61380e81612405565b840191505092915050565b600060808201905061382e6000830187612506565b61383b6020830186612506565b61384860408301856125ef565b818103606083015261385a81846137e0565b905095945050505050565b60008151905061387481612327565b92915050565b6000602082840312156138905761388f6122f1565b5b600061389e84828501613865565b9150509291505056fea26469706673582212204a52f8deac913b5a003ee9a6f5a1fa87afab2a785f80e47961cb977227270c0d64736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b667572757361746f636e70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000466636e7000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): furusatocnp
Arg [1] : symbol_ (string): fcnp

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 667572757361746f636e70000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 66636e7000000000000000000000000000000000000000000000000000000000


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.