ETH Price: $2,428.40 (+0.18%)
 

Overview

Max Total Supply

0 tsapp

Holders

280

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 tsapp
0x1715a215123C0E013406642D74Ee4fd6C9409e30
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:
tabisuruaopanda

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : tabisuruaopanda.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 tabisuruaopanda is ERC721, Ownable {
    using Strings for uint256;
    using Strings for string;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint256 thtime;
    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];
            _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 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 _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":[],"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"}]

60806040523480156200001157600080fd5b5060405162003a5c38038062003a5c8339818101604052810190620000379190620003bb565b81818160009080519060200190620000519291906200016e565b5080600190805190602001906200006a9291906200016e565b5050506200008d62000081620000a060201b60201c565b620000a860201b60201c565b6301e133806008819055505050620004a4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017c906200046f565b90600052602060002090601f016020900481019282620001a05760008555620001ec565b82601f10620001bb57805160ff1916838001178555620001ec565b82800160010185558215620001ec579182015b82811115620001eb578251825591602001919060010190620001ce565b5b509050620001fb9190620001ff565b5090565b5b808211156200021a57600081600090555060010162000200565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000287826200023c565b810181811067ffffffffffffffff82111715620002a957620002a86200024d565b5b80604052505050565b6000620002be6200021e565b9050620002cc82826200027c565b919050565b600067ffffffffffffffff821115620002ef57620002ee6200024d565b5b620002fa826200023c565b9050602081019050919050565b60005b83811015620003275780820151818401526020810190506200030a565b8381111562000337576000848401525b50505050565b6000620003546200034e84620002d1565b620002b2565b90508281526020810184848401111562000373576200037262000237565b5b6200038084828562000307565b509392505050565b600082601f830112620003a0576200039f62000232565b5b8151620003b28482602086016200033d565b91505092915050565b60008060408385031215620003d557620003d462000228565b5b600083015167ffffffffffffffff811115620003f657620003f56200022d565b5b620004048582860162000388565b925050602083015167ffffffffffffffff8111156200042857620004276200022d565b5b620004368582860162000388565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048857607f821691505b6020821081036200049e576200049d62000440565b5b50919050565b6135a880620004b46000396000f3fe6080604052600436106101405760003560e01c80638bf9d2c2116100b6578063bd704fbc1161006f578063bd704fbc14610492578063c87b56dd146104bd578063d3f4a02a146104fa578063dd01b23314610537578063e985e9c514610567578063f2fde38b146105a457610140565b80638bf9d2c2146103705780638da5cb5b146103ad57806395d89b41146103d8578063a22cb46514610403578063b88d4fde1461042c578063bb032a661461045557610140565b806342842e0e1161010857806342842e0e1461023c5780636352211e1461026557806370a08231146102a2578063715018a6146102df5780637accc8f5146102f65780637cf199081461033357610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806323b872dd14610213575b600080fd5b34801561015157600080fd5b5061016c6004803603810190610167919061210c565b6105cd565b6040516101799190612154565b60405180910390f35b34801561018e57600080fd5b506101976106af565b6040516101a49190612208565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190612260565b610741565b6040516101e191906122ce565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612315565b6107c6565b005b34801561021f57600080fd5b5061023a60048036038101906102359190612355565b610823565b005b34801561024857600080fd5b50610263600480360381019061025e9190612355565b610883565b005b34801561027157600080fd5b5061028c60048036038101906102879190612260565b6108a3565b60405161029991906122ce565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906123a8565b610954565b6040516102d691906123e4565b60405180910390f35b3480156102eb57600080fd5b506102f4610a0b565b005b34801561030257600080fd5b5061031d60048036038101906103189190612260565b610a93565b60405161032a9190612208565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906123a8565b610b57565b6040516103679190612208565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612260565b610c3d565b6040516103a491906123e4565b60405180910390f35b3480156103b957600080fd5b506103c2610c65565b6040516103cf91906122ce565b60405180910390f35b3480156103e457600080fd5b506103ed610c8f565b6040516103fa9190612208565b60405180910390f35b34801561040f57600080fd5b5061042a6004803603810190610425919061242b565b610d21565b005b34801561043857600080fd5b50610453600480360381019061044e91906125a0565b610d7e565b005b34801561046157600080fd5b5061047c600480360381019061047791906123a8565b610de0565b6040516104899190612154565b60405180910390f35b34801561049e57600080fd5b506104a7610e8a565b6040516104b491906126e1565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190612260565b610f18565b6040516104f19190612208565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612703565b611005565b60405161052e9190612154565b60405180910390f35b610551600480360381019061054c91906128ca565b611020565b60405161055e9190612208565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190612913565b61112f565b60405161059b9190612154565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906123a8565b6111c3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a857506106a7826112ba565b5b9050919050565b6060600080546106be90612982565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612982565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c82611324565b61078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290612a25565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600115156107d383610de0565b151514610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90612ab7565b60405180910390fd5b61081f8282611390565b5050565b61083461082e6114a7565b826114af565b610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612b49565b60405180910390fd5b61087e83838361158d565b505050565b61089e83838360405180602001604052806000815250610d7e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290612bdb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90612c6d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a136114a7565b73ffffffffffffffffffffffffffffffffffffffff16610a31610c65565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612cd9565b60405180910390fd5b610a9160006117f3565b565b6060610a9d6114a7565b73ffffffffffffffffffffffffffffffffffffffff16610abb610c65565b73ffffffffffffffffffffffffffffffffffffffff1614610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0890612cd9565b60405180910390fd5b600b8281548110610b2557610b24612cf9565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055919050565b6060610b616114a7565b73ffffffffffffffffffffffffffffffffffffffff16610b7f610c65565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90612cd9565b60405180910390fd5b600b829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b6000600a60008381526020019081526020016000205442610c5e9190612d57565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c9e90612982565b80601f0160208091040260200160405190810160405280929190818152602001828054610cca90612982565b8015610d175780601f10610cec57610100808354040283529160200191610d17565b820191906000526020600020905b815481529060010190602001808311610cfa57829003601f168201915b5050505050905090565b60011515610d2e83610de0565b151514610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790612ab7565b60405180910390fd5b610d7a82826118b9565b5050565b610d8f610d896114a7565b836114af565b610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590612b49565b60405180910390fd5b610dda848484846118cf565b50505050565b6000805b600b80549050811015610e7f578273ffffffffffffffffffffffffffffffffffffffff16600b8281548110610e1c57610e1b612cf9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e6c576001915050610e85565b8080610e7790612d8b565b915050610de4565b50600090505b919050565b6060600b805480602002602001604051908101604052809291908181526020018280548015610f0e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610ec4575b5050505050905090565b6060610f2382611324565b610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990612e45565b60405180910390fd5b600960008381526020019081526020016000208054610f8090612982565b80601f0160208091040260200160405190810160405280929190818152602001828054610fac90612982565b8015610ff95780601f10610fce57610100808354040283529160200191610ff9565b820191906000526020600020905b815481529060010190602001808311610fdc57829003601f168201915b50505050509050919050565b600060085483836110169190612d57565b1015905092915050565b606061102a6114a7565b73ffffffffffffffffffffffffffffffffffffffff16611048610c65565b73ffffffffffffffffffffffffffffffffffffffff161461109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612cd9565b60405180910390fd5b60005b8251811015611129576110b4600761192b565b60006110c06007611941565b90508382815181106110d5576110d4612cf9565b5b6020026020010151600960008381526020019081526020016000209080519060200190611103929190611ffd565b5061111561110f610c65565b8261194f565b50808061112190612d8b565b9150506110a1565b50919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111cb6114a7565b73ffffffffffffffffffffffffffffffffffffffff166111e9610c65565b73ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690612cd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590612ed7565b60405180910390fd5b6112b7816117f3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600061139b826108a3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290612f69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661142a6114a7565b73ffffffffffffffffffffffffffffffffffffffff1614806114595750611458816114536114a7565b61112f565b5b611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90612ffb565b60405180910390fd5b6114a28383611b28565b505050565b600033905090565b60006114ba82611324565b6114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f09061308d565b60405180910390fd5b6000611504836108a3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061157357508373ffffffffffffffffffffffffffffffffffffffff1661155b84610741565b73ffffffffffffffffffffffffffffffffffffffff16145b806115845750611583818561112f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115ad826108a3565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061311f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906131b1565b60405180910390fd5b61167d838383611be1565b611688600082611b28565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d89190612d57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461172f91906131d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117ee838383611cdd565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118cb6118c46114a7565b8383611ce2565b5050565b6118da84848461158d565b6118e684848484611e4e565b611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90613299565b60405180910390fd5b50505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590613305565b60405180910390fd5b6119c781611324565b15611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90613371565b60405180910390fd5b611a1360008383611be1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6391906131d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b2460008383611cdd565b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b9b836108a3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611c4e5750611c1f610c65565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611c705742600a600083815260200190815260200160002081905550611ccd565b611c8d600a60008381526020019081526020016000205442611005565b611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613403565b60405180910390fd5b5b611cd8838383611fd5565b505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d479061346f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e419190612154565b60405180910390a3505050565b6000611e6f8473ffffffffffffffffffffffffffffffffffffffff16611fda565b15611fc8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e986114a7565b8786866040518563ffffffff1660e01b8152600401611eba94939291906134e4565b6020604051808303816000875af1925050508015611ef657506040513d601f19601f82011682018060405250810190611ef39190613545565b60015b611f78573d8060008114611f26576040519150601f19603f3d011682016040523d82523d6000602084013e611f2b565b606091505b506000815103611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6790613299565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fcd565b600190505b949350505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461200990612982565b90600052602060002090601f01602090048101928261202b5760008555612072565b82601f1061204457805160ff1916838001178555612072565b82800160010185558215612072579182015b82811115612071578251825591602001919060010190612056565b5b50905061207f9190612083565b5090565b5b8082111561209c576000816000905550600101612084565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e9816120b4565b81146120f457600080fd5b50565b600081359050612106816120e0565b92915050565b600060208284031215612122576121216120aa565b5b6000612130848285016120f7565b91505092915050565b60008115159050919050565b61214e81612139565b82525050565b60006020820190506121696000830184612145565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a957808201518184015260208101905061218e565b838111156121b8576000848401525b50505050565b6000601f19601f8301169050919050565b60006121da8261216f565b6121e4818561217a565b93506121f481856020860161218b565b6121fd816121be565b840191505092915050565b6000602082019050818103600083015261222281846121cf565b905092915050565b6000819050919050565b61223d8161222a565b811461224857600080fd5b50565b60008135905061225a81612234565b92915050565b600060208284031215612276576122756120aa565b5b60006122848482850161224b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122b88261228d565b9050919050565b6122c8816122ad565b82525050565b60006020820190506122e360008301846122bf565b92915050565b6122f2816122ad565b81146122fd57600080fd5b50565b60008135905061230f816122e9565b92915050565b6000806040838503121561232c5761232b6120aa565b5b600061233a85828601612300565b925050602061234b8582860161224b565b9150509250929050565b60008060006060848603121561236e5761236d6120aa565b5b600061237c86828701612300565b935050602061238d86828701612300565b925050604061239e8682870161224b565b9150509250925092565b6000602082840312156123be576123bd6120aa565b5b60006123cc84828501612300565b91505092915050565b6123de8161222a565b82525050565b60006020820190506123f960008301846123d5565b92915050565b61240881612139565b811461241357600080fd5b50565b600081359050612425816123ff565b92915050565b60008060408385031215612442576124416120aa565b5b600061245085828601612300565b925050602061246185828601612416565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124ad826121be565b810181811067ffffffffffffffff821117156124cc576124cb612475565b5b80604052505050565b60006124df6120a0565b90506124eb82826124a4565b919050565b600067ffffffffffffffff82111561250b5761250a612475565b5b612514826121be565b9050602081019050919050565b82818337600083830152505050565b600061254361253e846124f0565b6124d5565b90508281526020810184848401111561255f5761255e612470565b5b61256a848285612521565b509392505050565b600082601f8301126125875761258661246b565b5b8135612597848260208601612530565b91505092915050565b600080600080608085870312156125ba576125b96120aa565b5b60006125c887828801612300565b94505060206125d987828801612300565b93505060406125ea8782880161224b565b925050606085013567ffffffffffffffff81111561260b5761260a6120af565b5b61261787828801612572565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612658816122ad565b82525050565b600061266a838361264f565b60208301905092915050565b6000602082019050919050565b600061268e82612623565b612698818561262e565b93506126a38361263f565b8060005b838110156126d45781516126bb888261265e565b97506126c683612676565b9250506001810190506126a7565b5085935050505092915050565b600060208201905081810360008301526126fb8184612683565b905092915050565b6000806040838503121561271a576127196120aa565b5b60006127288582860161224b565b92505060206127398582860161224b565b9150509250929050565b600067ffffffffffffffff82111561275e5761275d612475565b5b602082029050602081019050919050565b600080fd5b600067ffffffffffffffff82111561278f5761278e612475565b5b612798826121be565b9050602081019050919050565b60006127b86127b384612774565b6124d5565b9050828152602081018484840111156127d4576127d3612470565b5b6127df848285612521565b509392505050565b600082601f8301126127fc576127fb61246b565b5b813561280c8482602086016127a5565b91505092915050565b600061282861282384612743565b6124d5565b9050808382526020820190506020840283018581111561284b5761284a61276f565b5b835b8181101561289257803567ffffffffffffffff8111156128705761286f61246b565b5b80860161287d89826127e7565b8552602085019450505060208101905061284d565b5050509392505050565b600082601f8301126128b1576128b061246b565b5b81356128c1848260208601612815565b91505092915050565b6000602082840312156128e0576128df6120aa565b5b600082013567ffffffffffffffff8111156128fe576128fd6120af565b5b61290a8482850161289c565b91505092915050565b6000806040838503121561292a576129296120aa565b5b600061293885828601612300565b925050602061294985828601612300565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061299a57607f821691505b6020821081036129ad576129ac612953565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612a0f602c8361217a565b9150612a1a826129b3565b604082019050919050565b60006020820190508181036000830152612a3e81612a02565b9050919050565b7f455243373231417070726f76653a205468697320636f6e74726163742069732060008201527f6e6f7420617574686f72697a6564000000000000000000000000000000000000602082015250565b6000612aa1602e8361217a565b9150612aac82612a45565b604082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612b3360318361217a565b9150612b3e82612ad7565b604082019050919050565b60006020820190508181036000830152612b6281612b26565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612bc560298361217a565b9150612bd082612b69565b604082019050919050565b60006020820190508181036000830152612bf481612bb8565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612c57602a8361217a565b9150612c6282612bfb565b604082019050919050565b60006020820190508181036000830152612c8681612c4a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612cc360208361217a565b9150612cce82612c8d565b602082019050919050565b60006020820190508181036000830152612cf281612cb6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d628261222a565b9150612d6d8361222a565b925082821015612d8057612d7f612d28565b5b828203905092915050565b6000612d968261222a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612dc857612dc7612d28565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612e2f602f8361217a565b9150612e3a82612dd3565b604082019050919050565b60006020820190508181036000830152612e5e81612e22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ec160268361217a565b9150612ecc82612e65565b604082019050919050565b60006020820190508181036000830152612ef081612eb4565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f5360218361217a565b9150612f5e82612ef7565b604082019050919050565b60006020820190508181036000830152612f8281612f46565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612fe560388361217a565b9150612ff082612f89565b604082019050919050565b6000602082019050818103600083015261301481612fd8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613077602c8361217a565b91506130828261301b565b604082019050919050565b600060208201905081810360008301526130a68161306a565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061310960258361217a565b9150613114826130ad565b604082019050919050565b60006020820190508181036000830152613138816130fc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061319b60248361217a565b91506131a68261313f565b604082019050919050565b600060208201905081810360008301526131ca8161318e565b9050919050565b60006131dc8261222a565b91506131e78361222a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561321c5761321b612d28565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061328360328361217a565b915061328e82613227565b604082019050919050565b600060208201905081810360008301526132b281613276565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006132ef60208361217a565b91506132fa826132b9565b602082019050919050565b6000602082019050818103600083015261331e816132e2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061335b601c8361217a565b915061336682613325565b602082019050919050565b6000602082019050818103600083015261338a8161334e565b9050919050565b7f4552433732315472616e736665723a2054686973204e4654206973206375727260008201527f656e746c79206c6f636b65640000000000000000000000000000000000000000602082015250565b60006133ed602c8361217a565b91506133f882613391565b604082019050919050565b6000602082019050818103600083015261341c816133e0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061345960198361217a565b915061346482613423565b602082019050919050565b600060208201905081810360008301526134888161344c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134b68261348f565b6134c0818561349a565b93506134d081856020860161218b565b6134d9816121be565b840191505092915050565b60006080820190506134f960008301876122bf565b61350660208301866122bf565b61351360408301856123d5565b818103606083015261352581846134ab565b905095945050505050565b60008151905061353f816120e0565b92915050565b60006020828403121561355b5761355a6120aa565b5b600061356984828501613530565b9150509291505056fea2646970667358221220f91892df4d7780a377e19d6ab766bdc825f12814ba341d58a5c26d14ffe1abe664736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f7461626973757275616f70616e6461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057473617070000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101405760003560e01c80638bf9d2c2116100b6578063bd704fbc1161006f578063bd704fbc14610492578063c87b56dd146104bd578063d3f4a02a146104fa578063dd01b23314610537578063e985e9c514610567578063f2fde38b146105a457610140565b80638bf9d2c2146103705780638da5cb5b146103ad57806395d89b41146103d8578063a22cb46514610403578063b88d4fde1461042c578063bb032a661461045557610140565b806342842e0e1161010857806342842e0e1461023c5780636352211e1461026557806370a08231146102a2578063715018a6146102df5780637accc8f5146102f65780637cf199081461033357610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806323b872dd14610213575b600080fd5b34801561015157600080fd5b5061016c6004803603810190610167919061210c565b6105cd565b6040516101799190612154565b60405180910390f35b34801561018e57600080fd5b506101976106af565b6040516101a49190612208565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190612260565b610741565b6040516101e191906122ce565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612315565b6107c6565b005b34801561021f57600080fd5b5061023a60048036038101906102359190612355565b610823565b005b34801561024857600080fd5b50610263600480360381019061025e9190612355565b610883565b005b34801561027157600080fd5b5061028c60048036038101906102879190612260565b6108a3565b60405161029991906122ce565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906123a8565b610954565b6040516102d691906123e4565b60405180910390f35b3480156102eb57600080fd5b506102f4610a0b565b005b34801561030257600080fd5b5061031d60048036038101906103189190612260565b610a93565b60405161032a9190612208565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906123a8565b610b57565b6040516103679190612208565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612260565b610c3d565b6040516103a491906123e4565b60405180910390f35b3480156103b957600080fd5b506103c2610c65565b6040516103cf91906122ce565b60405180910390f35b3480156103e457600080fd5b506103ed610c8f565b6040516103fa9190612208565b60405180910390f35b34801561040f57600080fd5b5061042a6004803603810190610425919061242b565b610d21565b005b34801561043857600080fd5b50610453600480360381019061044e91906125a0565b610d7e565b005b34801561046157600080fd5b5061047c600480360381019061047791906123a8565b610de0565b6040516104899190612154565b60405180910390f35b34801561049e57600080fd5b506104a7610e8a565b6040516104b491906126e1565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190612260565b610f18565b6040516104f19190612208565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612703565b611005565b60405161052e9190612154565b60405180910390f35b610551600480360381019061054c91906128ca565b611020565b60405161055e9190612208565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190612913565b61112f565b60405161059b9190612154565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906123a8565b6111c3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a857506106a7826112ba565b5b9050919050565b6060600080546106be90612982565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612982565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c82611324565b61078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290612a25565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600115156107d383610de0565b151514610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90612ab7565b60405180910390fd5b61081f8282611390565b5050565b61083461082e6114a7565b826114af565b610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612b49565b60405180910390fd5b61087e83838361158d565b505050565b61089e83838360405180602001604052806000815250610d7e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290612bdb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90612c6d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a136114a7565b73ffffffffffffffffffffffffffffffffffffffff16610a31610c65565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612cd9565b60405180910390fd5b610a9160006117f3565b565b6060610a9d6114a7565b73ffffffffffffffffffffffffffffffffffffffff16610abb610c65565b73ffffffffffffffffffffffffffffffffffffffff1614610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0890612cd9565b60405180910390fd5b600b8281548110610b2557610b24612cf9565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055919050565b6060610b616114a7565b73ffffffffffffffffffffffffffffffffffffffff16610b7f610c65565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90612cd9565b60405180910390fd5b600b829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b6000600a60008381526020019081526020016000205442610c5e9190612d57565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c9e90612982565b80601f0160208091040260200160405190810160405280929190818152602001828054610cca90612982565b8015610d175780601f10610cec57610100808354040283529160200191610d17565b820191906000526020600020905b815481529060010190602001808311610cfa57829003601f168201915b5050505050905090565b60011515610d2e83610de0565b151514610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790612ab7565b60405180910390fd5b610d7a82826118b9565b5050565b610d8f610d896114a7565b836114af565b610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590612b49565b60405180910390fd5b610dda848484846118cf565b50505050565b6000805b600b80549050811015610e7f578273ffffffffffffffffffffffffffffffffffffffff16600b8281548110610e1c57610e1b612cf9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e6c576001915050610e85565b8080610e7790612d8b565b915050610de4565b50600090505b919050565b6060600b805480602002602001604051908101604052809291908181526020018280548015610f0e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610ec4575b5050505050905090565b6060610f2382611324565b610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990612e45565b60405180910390fd5b600960008381526020019081526020016000208054610f8090612982565b80601f0160208091040260200160405190810160405280929190818152602001828054610fac90612982565b8015610ff95780601f10610fce57610100808354040283529160200191610ff9565b820191906000526020600020905b815481529060010190602001808311610fdc57829003601f168201915b50505050509050919050565b600060085483836110169190612d57565b1015905092915050565b606061102a6114a7565b73ffffffffffffffffffffffffffffffffffffffff16611048610c65565b73ffffffffffffffffffffffffffffffffffffffff161461109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612cd9565b60405180910390fd5b60005b8251811015611129576110b4600761192b565b60006110c06007611941565b90508382815181106110d5576110d4612cf9565b5b6020026020010151600960008381526020019081526020016000209080519060200190611103929190611ffd565b5061111561110f610c65565b8261194f565b50808061112190612d8b565b9150506110a1565b50919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111cb6114a7565b73ffffffffffffffffffffffffffffffffffffffff166111e9610c65565b73ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690612cd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590612ed7565b60405180910390fd5b6112b7816117f3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600061139b826108a3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290612f69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661142a6114a7565b73ffffffffffffffffffffffffffffffffffffffff1614806114595750611458816114536114a7565b61112f565b5b611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90612ffb565b60405180910390fd5b6114a28383611b28565b505050565b600033905090565b60006114ba82611324565b6114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f09061308d565b60405180910390fd5b6000611504836108a3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061157357508373ffffffffffffffffffffffffffffffffffffffff1661155b84610741565b73ffffffffffffffffffffffffffffffffffffffff16145b806115845750611583818561112f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115ad826108a3565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061311f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906131b1565b60405180910390fd5b61167d838383611be1565b611688600082611b28565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d89190612d57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461172f91906131d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117ee838383611cdd565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118cb6118c46114a7565b8383611ce2565b5050565b6118da84848461158d565b6118e684848484611e4e565b611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90613299565b60405180910390fd5b50505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590613305565b60405180910390fd5b6119c781611324565b15611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90613371565b60405180910390fd5b611a1360008383611be1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6391906131d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b2460008383611cdd565b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b9b836108a3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611c4e5750611c1f610c65565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611c705742600a600083815260200190815260200160002081905550611ccd565b611c8d600a60008381526020019081526020016000205442611005565b611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613403565b60405180910390fd5b5b611cd8838383611fd5565b505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d479061346f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e419190612154565b60405180910390a3505050565b6000611e6f8473ffffffffffffffffffffffffffffffffffffffff16611fda565b15611fc8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e986114a7565b8786866040518563ffffffff1660e01b8152600401611eba94939291906134e4565b6020604051808303816000875af1925050508015611ef657506040513d601f19601f82011682018060405250810190611ef39190613545565b60015b611f78573d8060008114611f26576040519150601f19603f3d011682016040523d82523d6000602084013e611f2b565b606091505b506000815103611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6790613299565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fcd565b600190505b949350505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461200990612982565b90600052602060002090601f01602090048101928261202b5760008555612072565b82601f1061204457805160ff1916838001178555612072565b82800160010185558215612072579182015b82811115612071578251825591602001919060010190612056565b5b50905061207f9190612083565b5090565b5b8082111561209c576000816000905550600101612084565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e9816120b4565b81146120f457600080fd5b50565b600081359050612106816120e0565b92915050565b600060208284031215612122576121216120aa565b5b6000612130848285016120f7565b91505092915050565b60008115159050919050565b61214e81612139565b82525050565b60006020820190506121696000830184612145565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a957808201518184015260208101905061218e565b838111156121b8576000848401525b50505050565b6000601f19601f8301169050919050565b60006121da8261216f565b6121e4818561217a565b93506121f481856020860161218b565b6121fd816121be565b840191505092915050565b6000602082019050818103600083015261222281846121cf565b905092915050565b6000819050919050565b61223d8161222a565b811461224857600080fd5b50565b60008135905061225a81612234565b92915050565b600060208284031215612276576122756120aa565b5b60006122848482850161224b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122b88261228d565b9050919050565b6122c8816122ad565b82525050565b60006020820190506122e360008301846122bf565b92915050565b6122f2816122ad565b81146122fd57600080fd5b50565b60008135905061230f816122e9565b92915050565b6000806040838503121561232c5761232b6120aa565b5b600061233a85828601612300565b925050602061234b8582860161224b565b9150509250929050565b60008060006060848603121561236e5761236d6120aa565b5b600061237c86828701612300565b935050602061238d86828701612300565b925050604061239e8682870161224b565b9150509250925092565b6000602082840312156123be576123bd6120aa565b5b60006123cc84828501612300565b91505092915050565b6123de8161222a565b82525050565b60006020820190506123f960008301846123d5565b92915050565b61240881612139565b811461241357600080fd5b50565b600081359050612425816123ff565b92915050565b60008060408385031215612442576124416120aa565b5b600061245085828601612300565b925050602061246185828601612416565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124ad826121be565b810181811067ffffffffffffffff821117156124cc576124cb612475565b5b80604052505050565b60006124df6120a0565b90506124eb82826124a4565b919050565b600067ffffffffffffffff82111561250b5761250a612475565b5b612514826121be565b9050602081019050919050565b82818337600083830152505050565b600061254361253e846124f0565b6124d5565b90508281526020810184848401111561255f5761255e612470565b5b61256a848285612521565b509392505050565b600082601f8301126125875761258661246b565b5b8135612597848260208601612530565b91505092915050565b600080600080608085870312156125ba576125b96120aa565b5b60006125c887828801612300565b94505060206125d987828801612300565b93505060406125ea8782880161224b565b925050606085013567ffffffffffffffff81111561260b5761260a6120af565b5b61261787828801612572565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612658816122ad565b82525050565b600061266a838361264f565b60208301905092915050565b6000602082019050919050565b600061268e82612623565b612698818561262e565b93506126a38361263f565b8060005b838110156126d45781516126bb888261265e565b97506126c683612676565b9250506001810190506126a7565b5085935050505092915050565b600060208201905081810360008301526126fb8184612683565b905092915050565b6000806040838503121561271a576127196120aa565b5b60006127288582860161224b565b92505060206127398582860161224b565b9150509250929050565b600067ffffffffffffffff82111561275e5761275d612475565b5b602082029050602081019050919050565b600080fd5b600067ffffffffffffffff82111561278f5761278e612475565b5b612798826121be565b9050602081019050919050565b60006127b86127b384612774565b6124d5565b9050828152602081018484840111156127d4576127d3612470565b5b6127df848285612521565b509392505050565b600082601f8301126127fc576127fb61246b565b5b813561280c8482602086016127a5565b91505092915050565b600061282861282384612743565b6124d5565b9050808382526020820190506020840283018581111561284b5761284a61276f565b5b835b8181101561289257803567ffffffffffffffff8111156128705761286f61246b565b5b80860161287d89826127e7565b8552602085019450505060208101905061284d565b5050509392505050565b600082601f8301126128b1576128b061246b565b5b81356128c1848260208601612815565b91505092915050565b6000602082840312156128e0576128df6120aa565b5b600082013567ffffffffffffffff8111156128fe576128fd6120af565b5b61290a8482850161289c565b91505092915050565b6000806040838503121561292a576129296120aa565b5b600061293885828601612300565b925050602061294985828601612300565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061299a57607f821691505b6020821081036129ad576129ac612953565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612a0f602c8361217a565b9150612a1a826129b3565b604082019050919050565b60006020820190508181036000830152612a3e81612a02565b9050919050565b7f455243373231417070726f76653a205468697320636f6e74726163742069732060008201527f6e6f7420617574686f72697a6564000000000000000000000000000000000000602082015250565b6000612aa1602e8361217a565b9150612aac82612a45565b604082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612b3360318361217a565b9150612b3e82612ad7565b604082019050919050565b60006020820190508181036000830152612b6281612b26565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612bc560298361217a565b9150612bd082612b69565b604082019050919050565b60006020820190508181036000830152612bf481612bb8565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612c57602a8361217a565b9150612c6282612bfb565b604082019050919050565b60006020820190508181036000830152612c8681612c4a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612cc360208361217a565b9150612cce82612c8d565b602082019050919050565b60006020820190508181036000830152612cf281612cb6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d628261222a565b9150612d6d8361222a565b925082821015612d8057612d7f612d28565b5b828203905092915050565b6000612d968261222a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612dc857612dc7612d28565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612e2f602f8361217a565b9150612e3a82612dd3565b604082019050919050565b60006020820190508181036000830152612e5e81612e22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ec160268361217a565b9150612ecc82612e65565b604082019050919050565b60006020820190508181036000830152612ef081612eb4565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f5360218361217a565b9150612f5e82612ef7565b604082019050919050565b60006020820190508181036000830152612f8281612f46565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612fe560388361217a565b9150612ff082612f89565b604082019050919050565b6000602082019050818103600083015261301481612fd8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613077602c8361217a565b91506130828261301b565b604082019050919050565b600060208201905081810360008301526130a68161306a565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061310960258361217a565b9150613114826130ad565b604082019050919050565b60006020820190508181036000830152613138816130fc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061319b60248361217a565b91506131a68261313f565b604082019050919050565b600060208201905081810360008301526131ca8161318e565b9050919050565b60006131dc8261222a565b91506131e78361222a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561321c5761321b612d28565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061328360328361217a565b915061328e82613227565b604082019050919050565b600060208201905081810360008301526132b281613276565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006132ef60208361217a565b91506132fa826132b9565b602082019050919050565b6000602082019050818103600083015261331e816132e2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061335b601c8361217a565b915061336682613325565b602082019050919050565b6000602082019050818103600083015261338a8161334e565b9050919050565b7f4552433732315472616e736665723a2054686973204e4654206973206375727260008201527f656e746c79206c6f636b65640000000000000000000000000000000000000000602082015250565b60006133ed602c8361217a565b91506133f882613391565b604082019050919050565b6000602082019050818103600083015261341c816133e0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061345960198361217a565b915061346482613423565b602082019050919050565b600060208201905081810360008301526134888161344c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134b68261348f565b6134c0818561349a565b93506134d081856020860161218b565b6134d9816121be565b840191505092915050565b60006080820190506134f960008301876122bf565b61350660208301866122bf565b61351360408301856123d5565b818103606083015261352581846134ab565b905095945050505050565b60008151905061353f816120e0565b92915050565b60006020828403121561355b5761355a6120aa565b5b600061356984828501613530565b9150509291505056fea2646970667358221220f91892df4d7780a377e19d6ab766bdc825f12814ba341d58a5c26d14ffe1abe664736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f7461626973757275616f70616e6461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057473617070000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): tabisuruaopanda
Arg [1] : symbol_ (string): tsapp

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 7461626973757275616f70616e64610000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 7473617070000000000000000000000000000000000000000000000000000000


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.