ETH Price: $2,782.46 (+5.45%)
 

Overview

Max Total Supply

0 PUPPEETH

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PUPPEETH
0xabba34f71f65b3715394a91bde5358bf2d7cdc75
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:
Puppeeth

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

//                                     _   _
//   _ __  _   _ _ __  _ __   ___  ___| |_| |__
//  | '_ \| | | | '_ \| '_ \ / _ \/ _ \ __| '_ \
//  | |_) | |_| | |_) | |_) |  __/  __/ |_| | | |
//  | .__/ \__,_| .__/| .__/ \___|\___|\__|_| |_|
//  |_|         |_|   |_|
//
//  web3 development by Decentralized Software Systems, LLC
//  Original artwork by Olivia Porter
//  https://puppeeth.art

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

/// @title puppeeth
/// @author Decentralized Software Systems, LLC
contract Puppeeth is ERC721, Ownable {
    // Counter.
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    // Base URI.
    string private _baseTokenURI;

    // Price.
    uint256 constant private TOKEN_PRICE = .015 ether;

    // Invalid token error.
    error InvalidTokenID();

    // Invalid payment error.
    error InvalidPayment();

    /// @notice Reserves some tokens for the authors.
    constructor() ERC721("puppeeth", "PUPPEETH") {
        uint16[11] memory reserved = [
            11111,
            22222,
            33333,
            44444,
            55555,
            11423,
            31314,
            31315,
            42142,
            11521,
            51111
        ];
        for (uint8 i = 0; i < reserved.length; i++) {
            _tokenIds.increment();
            _safeMint(_msgSender(), reserved[i]);
        }
    }

    /// @notice Public mint.
    function mint(uint16 tokenId) external payable {
        if (msg.value != TOKEN_PRICE)
            revert InvalidPayment();

        if (!validId(tokenId))
            revert InvalidTokenID();

        _tokenIds.increment();
        _safeMint(_msgSender(), tokenId);
    }

    /// @notice Returns token URI.
    /// @dev See {IERC721Metadata-tokenURI}.
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
    }

    /// @notice Check if ID is valid.
    function validId(uint16 tokenId) public pure returns (bool) {
        return tokenId >= 11111 && tokenId <= 55555
            && tokenId % 10 > 0 && tokenId % 10 <= 5
            && tokenId % 100 > 10 && tokenId % 100 <= 55
            && tokenId % 1000 > 100 && tokenId % 1000 <= 555
            && tokenId % 10000 > 1000 && tokenId % 10000 <= 5555;
    }

    /// @notice Withdrawl accrued balance.
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /// @notice Get total number of tokens.
    function totalTokens() external view returns (uint256) {
      return _tokenIds.current();
    }

    /// @notice Indicate if token is minted.
    function tokenMinted(uint16 tokenId) external view returns (bool) {
      return _exists(tokenId);
    }

    /// @notice Set base token URI.
    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    /// @notice Returns base token URI.
    /// @dev See {ERC721-_baseURI}.
    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

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 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

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 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidPayment","type":"error"},{"inputs":[],"name":"InvalidTokenID","type":"error"},{"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"uint16","name":"tokenId","type":"uint16"}],"name":"tokenMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"validId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f70757070656574680000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f505550504545544800000000000000000000000000000000000000000000000081525081600090805190602001906200009692919062000787565b508060019080519060200190620000af92919062000787565b505050620000d2620000c6620001eb60201b60201c565b620001f360201b60201c565b6000604051806101600160405280612b6761ffff1681526020016156ce61ffff16815260200161823561ffff16815260200161ad9c61ffff16815260200161d90361ffff168152602001612c9f61ffff168152602001617a5261ffff168152602001617a5361ffff16815260200161a49e61ffff168152602001612d0161ffff16815260200161c7a761ffff16815250905060005b600b8160ff161015620001e3576200018b6007620002b960201b6200124f1760201c565b620001cd6200019f620001eb60201b60201c565b838360ff16600b8110620001b857620001b762000837565b5b602002015161ffff16620002cf60201b60201c565b8080620001da90620008a2565b91505062000167565b505062000d0c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b620002f1828260405180602001604052806000815250620002f560201b60201c565b5050565b6200030783836200036360201b60201c565b6200031c60008484846200054960201b60201c565b6200035e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003559062000958565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cd90620009ca565b60405180910390fd5b620003e7816200070360201b60201c565b156200042a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004219062000a3c565b60405180910390fd5b6200043e600083836200076f60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000490919062000a68565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005778473ffffffffffffffffffffffffffffffffffffffff166200077460201b620012651760201c565b15620006f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005a9620001eb60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005cd949392919062000bbf565b602060405180830381600087803b158015620005e857600080fd5b505af19250505080156200061c57506040513d601f19601f8201168201806040525081019062000619919062000c75565b60015b620006a5573d80600081146200064f576040519150601f19603f3d011682016040523d82523d6000602084013e62000654565b606091505b506000815114156200069d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006949062000958565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006fb565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620007959062000cd6565b90600052602060002090601f016020900481019282620007b9576000855562000805565b82601f10620007d457805160ff191683800117855562000805565b8280016001018555821562000805579182015b8281111562000804578251825591602001919060010190620007e7565b5b50905062000814919062000818565b5090565b5b808211156200083357600081600090555060010162000819565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b6000620008af8262000895565b915060ff821415620008c657620008c562000866565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000940603283620008d1565b91506200094d82620008e2565b604082019050919050565b60006020820190508181036000830152620009738162000931565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000620009b2602083620008d1565b9150620009bf826200097a565b602082019050919050565b60006020820190508181036000830152620009e581620009a3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000a24601c83620008d1565b915062000a3182620009ec565b602082019050919050565b6000602082019050818103600083015262000a578162000a15565b9050919050565b6000819050919050565b600062000a758262000a5e565b915062000a828362000a5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000aba5762000ab962000866565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000af28262000ac5565b9050919050565b62000b048162000ae5565b82525050565b62000b158162000a5e565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000b5757808201518184015260208101905062000b3a565b8381111562000b67576000848401525b50505050565b6000601f19601f8301169050919050565b600062000b8b8262000b1b565b62000b97818562000b26565b935062000ba981856020860162000b37565b62000bb48162000b6d565b840191505092915050565b600060808201905062000bd6600083018762000af9565b62000be5602083018662000af9565b62000bf4604083018562000b0a565b818103606083015262000c08818462000b7e565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000c4f8162000c18565b811462000c5b57600080fd5b50565b60008151905062000c6f8162000c44565b92915050565b60006020828403121562000c8e5762000c8d62000c13565b5b600062000c9e8482850162000c5e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cef57607f821691505b6020821081141562000d065762000d0562000ca7565b5b50919050565b6133708062000d1c6000396000f3fe6080604052600436106101355760003560e01c8063715018a6116100ab57806395d89b411161006f57806395d89b4114610417578063a22cb46514610442578063b88d4fde1461046b578063c87b56dd14610494578063e985e9c5146104d1578063f2fde38b1461050e57610135565b8063715018a61461033057806379336baf146103475780637e1c0c09146103845780638ac47a61146103af5780638da5cb5b146103ec57610135565b806323cf0a22116100fd57806323cf0a22146102315780633ccfd60b1461024d57806342842e0e1461026457806355f804b31461028d5780636352211e146102b657806370a08231146102f357610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806323b872dd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190612005565b610537565b60405161016e919061204d565b60405180910390f35b34801561018357600080fd5b5061018c610619565b6040516101999190612101565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190612159565b6106ab565b6040516101d691906121c7565b60405180910390f35b3480156101eb57600080fd5b506102066004803603810190610201919061220e565b610730565b005b34801561021457600080fd5b5061022f600480360381019061022a919061224e565b610848565b005b61024b600480360381019061024691906122db565b6108a8565b005b34801561025957600080fd5b50610262610949565b005b34801561027057600080fd5b5061028b6004803603810190610286919061224e565b610a14565b005b34801561029957600080fd5b506102b460048036038101906102af919061243d565b610a34565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612159565b610aca565b6040516102ea91906121c7565b60405180910390f35b3480156102ff57600080fd5b5061031a60048036038101906103159190612486565b610b7c565b60405161032791906124c2565b60405180910390f35b34801561033c57600080fd5b50610345610c34565b005b34801561035357600080fd5b5061036e600480360381019061036991906122db565b610cbc565b60405161037b919061204d565b60405180910390f35b34801561039057600080fd5b50610399610dcc565b6040516103a691906124c2565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906122db565b610ddd565b6040516103e3919061204d565b60405180910390f35b3480156103f857600080fd5b50610401610df3565b60405161040e91906121c7565b60405180910390f35b34801561042357600080fd5b5061042c610e1d565b6040516104399190612101565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612509565b610eaf565b005b34801561047757600080fd5b50610492600480360381019061048d91906125ea565b611030565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612159565b611092565b6040516104c89190612101565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f3919061266d565b6110c3565b604051610505919061204d565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612486565b611157565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610612575061061182611278565b5b9050919050565b606060008054610628906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610654906126dc565b80156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b60006106b6826112e2565b6106f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ec90612780565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073b82610aca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a390612812565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107cb61134e565b73ffffffffffffffffffffffffffffffffffffffff1614806107fa57506107f9816107f461134e565b6110c3565b5b610839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610830906128a4565b60405180910390fd5b6108438383611356565b505050565b61085961085361134e565b8261140f565b610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90612936565b60405180910390fd5b6108a38383836114ed565b505050565b66354a6ba7a1800034146108e8576040517f3c6b4b2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108f181610cbc565b610927576040517f6aa2a93700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610931600761124f565b61094661093c61134e565b8261ffff16611749565b50565b61095161134e565b73ffffffffffffffffffffffffffffffffffffffff1661096f610df3565b73ffffffffffffffffffffffffffffffffffffffff16146109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc906129a2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a10573d6000803e3d6000fd5b5050565b610a2f83838360405180602001604052806000815250611030565b505050565b610a3c61134e565b73ffffffffffffffffffffffffffffffffffffffff16610a5a610df3565b73ffffffffffffffffffffffffffffffffffffffff1614610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa7906129a2565b60405180910390fd5b8060089080519060200190610ac6929190611ef6565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612a34565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490612ac6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3c61134e565b73ffffffffffffffffffffffffffffffffffffffff16610c5a610df3565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca7906129a2565b60405180910390fd5b610cba6000611767565b565b6000612b678261ffff1610158015610cda575061d9038261ffff1611155b8015610cf657506000600a83610cf09190612b15565b61ffff16115b8015610d1357506005600a83610d0c9190612b15565b61ffff1611155b8015610d2f5750600a606483610d299190612b15565b61ffff16115b8015610d4c57506037606483610d459190612b15565b61ffff1611155b8015610d69575060646103e883610d639190612b15565b61ffff16115b8015610d88575061022b6103e883610d819190612b15565b61ffff1611155b8015610da657506103e861271083610da09190612b15565b61ffff16115b8015610dc557506115b361271083610dbe9190612b15565b61ffff1611155b9050919050565b6000610dd8600761182d565b905090565b6000610dec8261ffff166112e2565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e2c906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610e58906126dc565b8015610ea55780601f10610e7a57610100808354040283529160200191610ea5565b820191906000526020600020905b815481529060010190602001808311610e8857829003601f168201915b5050505050905090565b610eb761134e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90612b92565b60405180910390fd5b8060056000610f3261134e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fdf61134e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611024919061204d565b60405180910390a35050565b61104161103b61134e565b8361140f565b611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612936565b60405180910390fd5b61108c8484848461183b565b50505050565b606061109d82611897565b6040516020016110ad9190612c3a565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115f61134e565b73ffffffffffffffffffffffffffffffffffffffff1661117d610df3565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906129a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612cce565b60405180910390fd5b61124c81611767565b50565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c983610aca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061141a826112e2565b611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090612d60565b60405180910390fd5b600061146483610aca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114d357508373ffffffffffffffffffffffffffffffffffffffff166114bb846106ab565b73ffffffffffffffffffffffffffffffffffffffff16145b806114e457506114e381856110c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661150d82610aca565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90612df2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90612e84565b60405180910390fd5b6115de83838361193e565b6115e9600082611356565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116399190612ed3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116909190612f07565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611763828260405180602001604052806000815250611943565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6118468484846114ed565b6118528484848461199e565b611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612fcf565b60405180910390fd5b50505050565b60606118a2826112e2565b6118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890613061565b60405180910390fd5b60006118eb611b35565b9050600081511161190b5760405180602001604052806000815250611936565b8061191584611bc7565b604051602001611926929190613081565b6040516020818303038152906040525b915050919050565b505050565b61194d8383611d28565b61195a600084848461199e565b611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090612fcf565b60405180910390fd5b505050565b60006119bf8473ffffffffffffffffffffffffffffffffffffffff16611265565b15611b28578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119e861134e565b8786866040518563ffffffff1660e01b8152600401611a0a94939291906130fa565b602060405180830381600087803b158015611a2457600080fd5b505af1925050508015611a5557506040513d601f19601f82011682018060405250810190611a52919061315b565b60015b611ad8573d8060008114611a85576040519150601f19603f3d011682016040523d82523d6000602084013e611a8a565b606091505b50600081511415611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790612fcf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b2d565b600190505b949350505050565b606060088054611b44906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611b70906126dc565b8015611bbd5780601f10611b9257610100808354040283529160200191611bbd565b820191906000526020600020905b815481529060010190602001808311611ba057829003601f168201915b5050505050905090565b60606000821415611c0f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d23565b600082905060005b60008214611c41578080611c2a90613188565b915050600a82611c3a91906131d1565b9150611c17565b60008167ffffffffffffffff811115611c5d57611c5c612312565b5b6040519080825280601f01601f191660200182016040528015611c8f5781602001600182028036833780820191505090505b5090505b60008514611d1c57600182611ca89190612ed3565b9150600a85611cb79190613202565b6030611cc39190612f07565b60f81b818381518110611cd957611cd8613233565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d1591906131d1565b9450611c93565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f906132ae565b60405180910390fd5b611da1816112e2565b15611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd89061331a565b60405180910390fd5b611ded6000838361193e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3d9190612f07565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054611f02906126dc565b90600052602060002090601f016020900481019282611f245760008555611f6b565b82601f10611f3d57805160ff1916838001178555611f6b565b82800160010185558215611f6b579182015b82811115611f6a578251825591602001919060010190611f4f565b5b509050611f789190611f7c565b5090565b5b80821115611f95576000816000905550600101611f7d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611fe281611fad565b8114611fed57600080fd5b50565b600081359050611fff81611fd9565b92915050565b60006020828403121561201b5761201a611fa3565b5b600061202984828501611ff0565b91505092915050565b60008115159050919050565b61204781612032565b82525050565b6000602082019050612062600083018461203e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120a2578082015181840152602081019050612087565b838111156120b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006120d382612068565b6120dd8185612073565b93506120ed818560208601612084565b6120f6816120b7565b840191505092915050565b6000602082019050818103600083015261211b81846120c8565b905092915050565b6000819050919050565b61213681612123565b811461214157600080fd5b50565b6000813590506121538161212d565b92915050565b60006020828403121561216f5761216e611fa3565b5b600061217d84828501612144565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121b182612186565b9050919050565b6121c1816121a6565b82525050565b60006020820190506121dc60008301846121b8565b92915050565b6121eb816121a6565b81146121f657600080fd5b50565b600081359050612208816121e2565b92915050565b6000806040838503121561222557612224611fa3565b5b6000612233858286016121f9565b925050602061224485828601612144565b9150509250929050565b60008060006060848603121561226757612266611fa3565b5b6000612275868287016121f9565b9350506020612286868287016121f9565b925050604061229786828701612144565b9150509250925092565b600061ffff82169050919050565b6122b8816122a1565b81146122c357600080fd5b50565b6000813590506122d5816122af565b92915050565b6000602082840312156122f1576122f0611fa3565b5b60006122ff848285016122c6565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61234a826120b7565b810181811067ffffffffffffffff8211171561236957612368612312565b5b80604052505050565b600061237c611f99565b90506123888282612341565b919050565b600067ffffffffffffffff8211156123a8576123a7612312565b5b6123b1826120b7565b9050602081019050919050565b82818337600083830152505050565b60006123e06123db8461238d565b612372565b9050828152602081018484840111156123fc576123fb61230d565b5b6124078482856123be565b509392505050565b600082601f83011261242457612423612308565b5b81356124348482602086016123cd565b91505092915050565b60006020828403121561245357612452611fa3565b5b600082013567ffffffffffffffff81111561247157612470611fa8565b5b61247d8482850161240f565b91505092915050565b60006020828403121561249c5761249b611fa3565b5b60006124aa848285016121f9565b91505092915050565b6124bc81612123565b82525050565b60006020820190506124d760008301846124b3565b92915050565b6124e681612032565b81146124f157600080fd5b50565b600081359050612503816124dd565b92915050565b600080604083850312156125205761251f611fa3565b5b600061252e858286016121f9565b925050602061253f858286016124f4565b9150509250929050565b600067ffffffffffffffff82111561256457612563612312565b5b61256d826120b7565b9050602081019050919050565b600061258d61258884612549565b612372565b9050828152602081018484840111156125a9576125a861230d565b5b6125b48482856123be565b509392505050565b600082601f8301126125d1576125d0612308565b5b81356125e184826020860161257a565b91505092915050565b6000806000806080858703121561260457612603611fa3565b5b6000612612878288016121f9565b9450506020612623878288016121f9565b935050604061263487828801612144565b925050606085013567ffffffffffffffff81111561265557612654611fa8565b5b612661878288016125bc565b91505092959194509250565b6000806040838503121561268457612683611fa3565b5b6000612692858286016121f9565b92505060206126a3858286016121f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126f457607f821691505b60208210811415612708576127076126ad565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061276a602c83612073565b91506127758261270e565b604082019050919050565b600060208201905081810360008301526127998161275d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006127fc602183612073565b9150612807826127a0565b604082019050919050565b6000602082019050818103600083015261282b816127ef565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061288e603883612073565b915061289982612832565b604082019050919050565b600060208201905081810360008301526128bd81612881565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612920603183612073565b915061292b826128c4565b604082019050919050565b6000602082019050818103600083015261294f81612913565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061298c602083612073565b915061299782612956565b602082019050919050565b600060208201905081810360008301526129bb8161297f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612a1e602983612073565b9150612a29826129c2565b604082019050919050565b60006020820190508181036000830152612a4d81612a11565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612ab0602a83612073565b9150612abb82612a54565b604082019050919050565b60006020820190508181036000830152612adf81612aa3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b20826122a1565b9150612b2b836122a1565b925082612b3b57612b3a612ae6565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612b7c601983612073565b9150612b8782612b46565b602082019050919050565b60006020820190508181036000830152612bab81612b6f565b9050919050565b600081905092915050565b6000612bc882612068565b612bd28185612bb2565b9350612be2818560208601612084565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612c24600583612bb2565b9150612c2f82612bee565b600582019050919050565b6000612c468284612bbd565b9150612c5182612c17565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cb8602683612073565b9150612cc382612c5c565b604082019050919050565b60006020820190508181036000830152612ce781612cab565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d4a602c83612073565b9150612d5582612cee565b604082019050919050565b60006020820190508181036000830152612d7981612d3d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000612ddc602983612073565b9150612de782612d80565b604082019050919050565b60006020820190508181036000830152612e0b81612dcf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e6e602483612073565b9150612e7982612e12565b604082019050919050565b60006020820190508181036000830152612e9d81612e61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ede82612123565b9150612ee983612123565b925082821015612efc57612efb612ea4565b5b828203905092915050565b6000612f1282612123565b9150612f1d83612123565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5257612f51612ea4565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612fb9603283612073565b9150612fc482612f5d565b604082019050919050565b60006020820190508181036000830152612fe881612fac565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061304b602f83612073565b915061305682612fef565b604082019050919050565b6000602082019050818103600083015261307a8161303e565b9050919050565b600061308d8285612bbd565b91506130998284612bbd565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006130cc826130a5565b6130d681856130b0565b93506130e6818560208601612084565b6130ef816120b7565b840191505092915050565b600060808201905061310f60008301876121b8565b61311c60208301866121b8565b61312960408301856124b3565b818103606083015261313b81846130c1565b905095945050505050565b60008151905061315581611fd9565b92915050565b60006020828403121561317157613170611fa3565b5b600061317f84828501613146565b91505092915050565b600061319382612123565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131c6576131c5612ea4565b5b600182019050919050565b60006131dc82612123565b91506131e783612123565b9250826131f7576131f6612ae6565b5b828204905092915050565b600061320d82612123565b915061321883612123565b92508261322857613227612ae6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613298602083612073565b91506132a382613262565b602082019050919050565b600060208201905081810360008301526132c78161328b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613304601c83612073565b915061330f826132ce565b602082019050919050565b60006020820190508181036000830152613333816132f7565b905091905056fea264697066735822122026da51a3f7103f70231f10941cecc55a88c69f17bc6aac1819be2785b6ba730164736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101355760003560e01c8063715018a6116100ab57806395d89b411161006f57806395d89b4114610417578063a22cb46514610442578063b88d4fde1461046b578063c87b56dd14610494578063e985e9c5146104d1578063f2fde38b1461050e57610135565b8063715018a61461033057806379336baf146103475780637e1c0c09146103845780638ac47a61146103af5780638da5cb5b146103ec57610135565b806323cf0a22116100fd57806323cf0a22146102315780633ccfd60b1461024d57806342842e0e1461026457806355f804b31461028d5780636352211e146102b657806370a08231146102f357610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806323b872dd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190612005565b610537565b60405161016e919061204d565b60405180910390f35b34801561018357600080fd5b5061018c610619565b6040516101999190612101565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190612159565b6106ab565b6040516101d691906121c7565b60405180910390f35b3480156101eb57600080fd5b506102066004803603810190610201919061220e565b610730565b005b34801561021457600080fd5b5061022f600480360381019061022a919061224e565b610848565b005b61024b600480360381019061024691906122db565b6108a8565b005b34801561025957600080fd5b50610262610949565b005b34801561027057600080fd5b5061028b6004803603810190610286919061224e565b610a14565b005b34801561029957600080fd5b506102b460048036038101906102af919061243d565b610a34565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612159565b610aca565b6040516102ea91906121c7565b60405180910390f35b3480156102ff57600080fd5b5061031a60048036038101906103159190612486565b610b7c565b60405161032791906124c2565b60405180910390f35b34801561033c57600080fd5b50610345610c34565b005b34801561035357600080fd5b5061036e600480360381019061036991906122db565b610cbc565b60405161037b919061204d565b60405180910390f35b34801561039057600080fd5b50610399610dcc565b6040516103a691906124c2565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906122db565b610ddd565b6040516103e3919061204d565b60405180910390f35b3480156103f857600080fd5b50610401610df3565b60405161040e91906121c7565b60405180910390f35b34801561042357600080fd5b5061042c610e1d565b6040516104399190612101565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612509565b610eaf565b005b34801561047757600080fd5b50610492600480360381019061048d91906125ea565b611030565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612159565b611092565b6040516104c89190612101565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f3919061266d565b6110c3565b604051610505919061204d565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612486565b611157565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610612575061061182611278565b5b9050919050565b606060008054610628906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610654906126dc565b80156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b60006106b6826112e2565b6106f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ec90612780565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073b82610aca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a390612812565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107cb61134e565b73ffffffffffffffffffffffffffffffffffffffff1614806107fa57506107f9816107f461134e565b6110c3565b5b610839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610830906128a4565b60405180910390fd5b6108438383611356565b505050565b61085961085361134e565b8261140f565b610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90612936565b60405180910390fd5b6108a38383836114ed565b505050565b66354a6ba7a1800034146108e8576040517f3c6b4b2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108f181610cbc565b610927576040517f6aa2a93700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610931600761124f565b61094661093c61134e565b8261ffff16611749565b50565b61095161134e565b73ffffffffffffffffffffffffffffffffffffffff1661096f610df3565b73ffffffffffffffffffffffffffffffffffffffff16146109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc906129a2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a10573d6000803e3d6000fd5b5050565b610a2f83838360405180602001604052806000815250611030565b505050565b610a3c61134e565b73ffffffffffffffffffffffffffffffffffffffff16610a5a610df3565b73ffffffffffffffffffffffffffffffffffffffff1614610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa7906129a2565b60405180910390fd5b8060089080519060200190610ac6929190611ef6565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612a34565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490612ac6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3c61134e565b73ffffffffffffffffffffffffffffffffffffffff16610c5a610df3565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca7906129a2565b60405180910390fd5b610cba6000611767565b565b6000612b678261ffff1610158015610cda575061d9038261ffff1611155b8015610cf657506000600a83610cf09190612b15565b61ffff16115b8015610d1357506005600a83610d0c9190612b15565b61ffff1611155b8015610d2f5750600a606483610d299190612b15565b61ffff16115b8015610d4c57506037606483610d459190612b15565b61ffff1611155b8015610d69575060646103e883610d639190612b15565b61ffff16115b8015610d88575061022b6103e883610d819190612b15565b61ffff1611155b8015610da657506103e861271083610da09190612b15565b61ffff16115b8015610dc557506115b361271083610dbe9190612b15565b61ffff1611155b9050919050565b6000610dd8600761182d565b905090565b6000610dec8261ffff166112e2565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e2c906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610e58906126dc565b8015610ea55780601f10610e7a57610100808354040283529160200191610ea5565b820191906000526020600020905b815481529060010190602001808311610e8857829003601f168201915b5050505050905090565b610eb761134e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90612b92565b60405180910390fd5b8060056000610f3261134e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fdf61134e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611024919061204d565b60405180910390a35050565b61104161103b61134e565b8361140f565b611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612936565b60405180910390fd5b61108c8484848461183b565b50505050565b606061109d82611897565b6040516020016110ad9190612c3a565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115f61134e565b73ffffffffffffffffffffffffffffffffffffffff1661117d610df3565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906129a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612cce565b60405180910390fd5b61124c81611767565b50565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c983610aca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061141a826112e2565b611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090612d60565b60405180910390fd5b600061146483610aca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114d357508373ffffffffffffffffffffffffffffffffffffffff166114bb846106ab565b73ffffffffffffffffffffffffffffffffffffffff16145b806114e457506114e381856110c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661150d82610aca565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90612df2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90612e84565b60405180910390fd5b6115de83838361193e565b6115e9600082611356565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116399190612ed3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116909190612f07565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611763828260405180602001604052806000815250611943565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6118468484846114ed565b6118528484848461199e565b611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612fcf565b60405180910390fd5b50505050565b60606118a2826112e2565b6118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890613061565b60405180910390fd5b60006118eb611b35565b9050600081511161190b5760405180602001604052806000815250611936565b8061191584611bc7565b604051602001611926929190613081565b6040516020818303038152906040525b915050919050565b505050565b61194d8383611d28565b61195a600084848461199e565b611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090612fcf565b60405180910390fd5b505050565b60006119bf8473ffffffffffffffffffffffffffffffffffffffff16611265565b15611b28578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119e861134e565b8786866040518563ffffffff1660e01b8152600401611a0a94939291906130fa565b602060405180830381600087803b158015611a2457600080fd5b505af1925050508015611a5557506040513d601f19601f82011682018060405250810190611a52919061315b565b60015b611ad8573d8060008114611a85576040519150601f19603f3d011682016040523d82523d6000602084013e611a8a565b606091505b50600081511415611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790612fcf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b2d565b600190505b949350505050565b606060088054611b44906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611b70906126dc565b8015611bbd5780601f10611b9257610100808354040283529160200191611bbd565b820191906000526020600020905b815481529060010190602001808311611ba057829003601f168201915b5050505050905090565b60606000821415611c0f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d23565b600082905060005b60008214611c41578080611c2a90613188565b915050600a82611c3a91906131d1565b9150611c17565b60008167ffffffffffffffff811115611c5d57611c5c612312565b5b6040519080825280601f01601f191660200182016040528015611c8f5781602001600182028036833780820191505090505b5090505b60008514611d1c57600182611ca89190612ed3565b9150600a85611cb79190613202565b6030611cc39190612f07565b60f81b818381518110611cd957611cd8613233565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d1591906131d1565b9450611c93565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f906132ae565b60405180910390fd5b611da1816112e2565b15611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd89061331a565b60405180910390fd5b611ded6000838361193e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3d9190612f07565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054611f02906126dc565b90600052602060002090601f016020900481019282611f245760008555611f6b565b82601f10611f3d57805160ff1916838001178555611f6b565b82800160010185558215611f6b579182015b82811115611f6a578251825591602001919060010190611f4f565b5b509050611f789190611f7c565b5090565b5b80821115611f95576000816000905550600101611f7d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611fe281611fad565b8114611fed57600080fd5b50565b600081359050611fff81611fd9565b92915050565b60006020828403121561201b5761201a611fa3565b5b600061202984828501611ff0565b91505092915050565b60008115159050919050565b61204781612032565b82525050565b6000602082019050612062600083018461203e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120a2578082015181840152602081019050612087565b838111156120b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006120d382612068565b6120dd8185612073565b93506120ed818560208601612084565b6120f6816120b7565b840191505092915050565b6000602082019050818103600083015261211b81846120c8565b905092915050565b6000819050919050565b61213681612123565b811461214157600080fd5b50565b6000813590506121538161212d565b92915050565b60006020828403121561216f5761216e611fa3565b5b600061217d84828501612144565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121b182612186565b9050919050565b6121c1816121a6565b82525050565b60006020820190506121dc60008301846121b8565b92915050565b6121eb816121a6565b81146121f657600080fd5b50565b600081359050612208816121e2565b92915050565b6000806040838503121561222557612224611fa3565b5b6000612233858286016121f9565b925050602061224485828601612144565b9150509250929050565b60008060006060848603121561226757612266611fa3565b5b6000612275868287016121f9565b9350506020612286868287016121f9565b925050604061229786828701612144565b9150509250925092565b600061ffff82169050919050565b6122b8816122a1565b81146122c357600080fd5b50565b6000813590506122d5816122af565b92915050565b6000602082840312156122f1576122f0611fa3565b5b60006122ff848285016122c6565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61234a826120b7565b810181811067ffffffffffffffff8211171561236957612368612312565b5b80604052505050565b600061237c611f99565b90506123888282612341565b919050565b600067ffffffffffffffff8211156123a8576123a7612312565b5b6123b1826120b7565b9050602081019050919050565b82818337600083830152505050565b60006123e06123db8461238d565b612372565b9050828152602081018484840111156123fc576123fb61230d565b5b6124078482856123be565b509392505050565b600082601f83011261242457612423612308565b5b81356124348482602086016123cd565b91505092915050565b60006020828403121561245357612452611fa3565b5b600082013567ffffffffffffffff81111561247157612470611fa8565b5b61247d8482850161240f565b91505092915050565b60006020828403121561249c5761249b611fa3565b5b60006124aa848285016121f9565b91505092915050565b6124bc81612123565b82525050565b60006020820190506124d760008301846124b3565b92915050565b6124e681612032565b81146124f157600080fd5b50565b600081359050612503816124dd565b92915050565b600080604083850312156125205761251f611fa3565b5b600061252e858286016121f9565b925050602061253f858286016124f4565b9150509250929050565b600067ffffffffffffffff82111561256457612563612312565b5b61256d826120b7565b9050602081019050919050565b600061258d61258884612549565b612372565b9050828152602081018484840111156125a9576125a861230d565b5b6125b48482856123be565b509392505050565b600082601f8301126125d1576125d0612308565b5b81356125e184826020860161257a565b91505092915050565b6000806000806080858703121561260457612603611fa3565b5b6000612612878288016121f9565b9450506020612623878288016121f9565b935050604061263487828801612144565b925050606085013567ffffffffffffffff81111561265557612654611fa8565b5b612661878288016125bc565b91505092959194509250565b6000806040838503121561268457612683611fa3565b5b6000612692858286016121f9565b92505060206126a3858286016121f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126f457607f821691505b60208210811415612708576127076126ad565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061276a602c83612073565b91506127758261270e565b604082019050919050565b600060208201905081810360008301526127998161275d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006127fc602183612073565b9150612807826127a0565b604082019050919050565b6000602082019050818103600083015261282b816127ef565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061288e603883612073565b915061289982612832565b604082019050919050565b600060208201905081810360008301526128bd81612881565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612920603183612073565b915061292b826128c4565b604082019050919050565b6000602082019050818103600083015261294f81612913565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061298c602083612073565b915061299782612956565b602082019050919050565b600060208201905081810360008301526129bb8161297f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612a1e602983612073565b9150612a29826129c2565b604082019050919050565b60006020820190508181036000830152612a4d81612a11565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612ab0602a83612073565b9150612abb82612a54565b604082019050919050565b60006020820190508181036000830152612adf81612aa3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b20826122a1565b9150612b2b836122a1565b925082612b3b57612b3a612ae6565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612b7c601983612073565b9150612b8782612b46565b602082019050919050565b60006020820190508181036000830152612bab81612b6f565b9050919050565b600081905092915050565b6000612bc882612068565b612bd28185612bb2565b9350612be2818560208601612084565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612c24600583612bb2565b9150612c2f82612bee565b600582019050919050565b6000612c468284612bbd565b9150612c5182612c17565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cb8602683612073565b9150612cc382612c5c565b604082019050919050565b60006020820190508181036000830152612ce781612cab565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d4a602c83612073565b9150612d5582612cee565b604082019050919050565b60006020820190508181036000830152612d7981612d3d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000612ddc602983612073565b9150612de782612d80565b604082019050919050565b60006020820190508181036000830152612e0b81612dcf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e6e602483612073565b9150612e7982612e12565b604082019050919050565b60006020820190508181036000830152612e9d81612e61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ede82612123565b9150612ee983612123565b925082821015612efc57612efb612ea4565b5b828203905092915050565b6000612f1282612123565b9150612f1d83612123565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5257612f51612ea4565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612fb9603283612073565b9150612fc482612f5d565b604082019050919050565b60006020820190508181036000830152612fe881612fac565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061304b602f83612073565b915061305682612fef565b604082019050919050565b6000602082019050818103600083015261307a8161303e565b9050919050565b600061308d8285612bbd565b91506130998284612bbd565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006130cc826130a5565b6130d681856130b0565b93506130e6818560208601612084565b6130ef816120b7565b840191505092915050565b600060808201905061310f60008301876121b8565b61311c60208301866121b8565b61312960408301856124b3565b818103606083015261313b81846130c1565b905095945050505050565b60008151905061315581611fd9565b92915050565b60006020828403121561317157613170611fa3565b5b600061317f84828501613146565b91505092915050565b600061319382612123565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131c6576131c5612ea4565b5b600182019050919050565b60006131dc82612123565b91506131e783612123565b9250826131f7576131f6612ae6565b5b828204905092915050565b600061320d82612123565b915061321883612123565b92508261322857613227612ae6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613298602083612073565b91506132a382613262565b602082019050919050565b600060208201905081810360008301526132c78161328b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613304601c83612073565b915061330f826132ce565b602082019050919050565b60006020820190508181036000830152613333816132f7565b905091905056fea264697066735822122026da51a3f7103f70231f10941cecc55a88c69f17bc6aac1819be2785b6ba730164736f6c63430008090033

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.