ETH Price: $3,501.96 (+0.62%)
Gas: 6 Gwei

Token

LFGLoot (LFG)
 

Overview

Max Total Supply

4,999 LFG

Holders

274

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tinchi.eth
Balance
1 LFG
0x7f957b7fe99dd0d515a2283420b6d8702be2ff18
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:
LFGLoot

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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


contract LFGLoot is ERC721 {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    address payable lfgLootAddr = payable(0x19E450E951067Fc3D43b346D099a84f69aE00c29);
    address constant teamNFTAddr = 0xC9EaBb1bf69543E4f5D681431B26032e0b778237;
    uint256 private whiteListNum = 1400;
    uint256 private commonUserNum = 3400;
    uint256 private teamUserNum = 199;
    mapping(address => uint256) private whiteListUser;
    string public baseUrl;
    address public owner;

    event TokenIDs(address to, uint256 token);

    constructor()
    ERC721("LFGLoot", "LFG")
    {
        // set owner
        owner = msg.sender;
        // initial base url
        baseUrl = "https://gateway.pinata.cloud/ipfs/QmPrfCwssXpEK3yDgiAYzFSyPWc5iqyrfj97SJbStkR3CJ/";
        // mint team NFT
        for (uint i = 0; i < teamUserNum; i++) {
            uint256 newItemId = genTokenId();
            _safeMint(teamNFTAddr, newItemId);
        }
    }

    modifier onlyOwner {
        require(msg.sender == owner, "msg.sender != owner");
        _;
    }

    function setBaseURI(string memory url)
    external
    onlyOwner
    {
        baseUrl = url;
    }

    function _baseURI()
    internal
    view
    virtual
    override
    returns (string memory)
    {
        return baseUrl;
    }

    function setWhiteListUser(address to, uint256 num)
    private
    {
        whiteListUser[to] = num;
    }

    function getWhiteMintedNum(address to)
    private
    view
    returns (uint256 num)
    {
        if (whiteListUser[to] <= 0) {
            return 0;
        }
        return whiteListUser[to];
    }

    function uint2bytes(uint256 _i)
    internal
    pure
    returns (bytes memory)
    {
        if (_i == 0)
        {
            return "0";
        }
        uint256 j = _i;
        uint256 length;
        while (j != 0)
        {
            length++;
            j /= 10;
        }
        bytes memory bstr = new bytes(length);
        uint256 k = length;
        j = _i;
        while (j != 0)
        {
            bstr[--k] = bytes1(uint8(48 + j % 10));
            j /= 10;
        }

        return bstr;
    }

    function recover(bytes32 hash, bytes memory sig)
    internal
    pure
    returns (address)
    {
        bytes32 r;
        bytes32 s;
        uint8 v;

        //Check the signature length
        if (sig.length != 65) {
            return (address(0));
        }

        // Divide the signature in r, s and v variables
        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }

        // Version of signature should be 27 or 28, but 0 and 1 are also possible versions
        if (v < 27) {
            v += 27;
        }

        // If the version is correct return the signer address
        if (v != 27 && v != 28) {
            return (address(0));
        } else {
            return ecrecover(hash, v, r, s);
        }
    }

    function mintedNumber()
    public
    view
    returns (uint256) {
        uint256 curMinted = _tokenIds.current();
        return curMinted;
    }

    function totalSupply()
    public
    pure
    returns (uint256)
    {
        return 4999;
    }

    function inWhiteList(uint256 num, uint256 timestamp, bytes32 hash, bytes memory sign)
    private
    view
    returns (bool)
    {
        address backendSignAddr = 0x9f7475A7A5b3f4441cce22f3A39213c7Da3B9445;
        
        require(timestamp + 300 > block.timestamp);

        bytes memory numByte = uint2bytes(num);
        bytes memory timeByte = uint2bytes(timestamp);
        address to = msg.sender;
        bytes memory s = abi.encodePacked(numByte, timeByte, to);

        bytes32 genHash = keccak256(s);
        if (genHash != hash) {
            return false;
        }
        address addr = recover(hash, sign);
        return addr == backendSignAddr;
    }

    function genTokenId()
    private
    returns (uint256)
    {
        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
        return newItemId;
    }

    function mintLFG(uint256 num, uint256 timestamp, bytes32 hash, bytes memory sign)
    // function mintLFG(uint256 num)
    public
    payable
    {
        uint256 commonPrice = 9 * (10 ** 16);
        uint256 whiteListPrice = 7 * (10 ** 16);
        
        require(mintedNumber() < totalSupply(), "mintedNumber < totalSupply");
        uint256 maxNum;
        uint256 amount;
        // current user
        address to = msg.sender;
        
        bool isWhiteListUser = inWhiteList(num, timestamp, hash, sign);
        // bool isWhiteListUser = false;
        if (isWhiteListUser) {
            maxNum = 2;
            
            require(getWhiteMintedNum(to) < maxNum, "getWhiteMintedNum < maxNum");
            
            require(whiteListNum > num, "whiteListNum > num");
            
            require(num <= maxNum, "num <= maxNum");
            amount = whiteListPrice * num;
            
            whiteListNum -= num;
            
            setWhiteListUser(to, num);
        } else {
            
            maxNum = 5;
            require(num < maxNum, "num < maxNum");
            amount = commonPrice * num;

            require(commonUserNum > num, "commonUserNum < num");
            
            commonUserNum -= num;
        }

        // require(msg.sender.balance > amount);
        require(msg.value >= amount, "msg.value > amount");
        // payable(lfgLootAddr).transfer(msg.value);
        lfgLootAddr.transfer(msg.value);

        for (uint i = 0; i < num; i++) {
            uint256 newItemId = genTokenId();
            _safeMint(to, newItemId);
            emit TokenIDs(to, newItemId);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

File 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"token","type":"uint256"}],"name":"TokenIDs","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":[],"name":"baseUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"num","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"sign","type":"bytes"}],"name":"mintLFG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"url","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":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"}]

60806040527319e450e951067fc3d43b346d099a84f69ae00c29600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610578600855610d4860095560c7600a553480156200007757600080fd5b506040518060400160405280600781526020017f4c46474c6f6f74000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c464700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fc92919062000710565b5080600190805190602001906200011592919062000710565b50505033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806080016040528060518152602001620046b660519139600c90805190602001906200018a92919062000710565b5060005b600a54811015620001ea576000620001ab620001f160201b60201c565b9050620001d373c9eabb1bf69543e4f5d681431b26032e0b778237826200022c60201b60201c565b508080620001e19062000afb565b9150506200018e565b5062000c78565b60006200020a60066200025260201b620010c41760201c565b60006200022360066200026860201b620010da1760201c565b90508091505090565b6200024e8282604051806020016040528060008152506200027660201b60201c565b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b620002888383620002e460201b60201c565b6200029d6000848484620004ca60201b60201c565b620002df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d69062000935565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000357576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034e9062000979565b60405180910390fd5b62000368816200068460201b60201c565b15620003ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a29062000957565b60405180910390fd5b620003bf60008383620006f060201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004119190620009c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620004f88473ffffffffffffffffffffffffffffffffffffffff16620006f560201b620010e81760201c565b1562000677578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200052a6200070860201b60201c565b8786866040518563ffffffff1660e01b81526004016200054e9493929190620008e1565b602060405180830381600087803b1580156200056957600080fd5b505af19250505080156200059d57506040513d601f19601f820116820180604052508101906200059a9190620007d7565b60015b62000626573d8060008114620005d0576040519150601f19603f3d011682016040523d82523d6000602084013e620005d5565b606091505b506000815114156200061e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006159062000935565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200067c565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b600033905090565b8280546200071e9062000ac5565b90600052602060002090601f0160209004810192826200074257600085556200078e565b82601f106200075d57805160ff19168380011785556200078e565b828001600101855582156200078e579182015b828111156200078d57825182559160200191906001019062000770565b5b5090506200079d9190620007a1565b5090565b5b80821115620007bc576000816000905550600101620007a2565b5090565b600081519050620007d18162000c5e565b92915050565b600060208284031215620007f057620007ef62000ba7565b5b60006200080084828501620007c0565b91505092915050565b620008148162000a25565b82525050565b600062000827826200099b565b620008338185620009a6565b93506200084581856020860162000a8f565b620008508162000bac565b840191505092915050565b60006200086a603283620009b7565b9150620008778262000bbd565b604082019050919050565b600062000891601c83620009b7565b91506200089e8262000c0c565b602082019050919050565b6000620008b8602083620009b7565b9150620008c58262000c35565b602082019050919050565b620008db8162000a85565b82525050565b6000608082019050620008f8600083018762000809565b62000907602083018662000809565b620009166040830185620008d0565b81810360608301526200092a81846200081a565b905095945050505050565b6000602082019050818103600083015262000950816200085b565b9050919050565b60006020820190508181036000830152620009728162000882565b9050919050565b600060208201905081810360008301526200099481620008a9565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620009d58262000a85565b9150620009e28362000a85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a1a5762000a1962000b49565b5b828201905092915050565b600062000a328262000a65565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aaf57808201518184015260208101905062000a92565b8381111562000abf576000848401525b50505050565b6000600282049050600182168062000ade57607f821691505b6020821081141562000af55762000af462000b78565b5b50919050565b600062000b088262000a85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b3e5762000b3d62000b49565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000c698162000a39565b811462000c7557600080fd5b50565b613a2e8062000c886000396000f3fe6080604052600436106101145760003560e01c80635bcabf04116100a0578063a22cb46511610064578063a22cb465146103a4578063b88d4fde146103cd578063c87b56dd146103f6578063d4fa440f14610433578063e985e9c51461045e57610114565b80635bcabf04146102a95780636352211e146102d457806370a08231146103115780638da5cb5b1461034e57806395d89b411461037957610114565b806318160ddd116100e757806318160ddd146101e757806323b872dd1461021257806342842e0e1461023b578063505891861461026457806355f804b31461028057610114565b806301ffc9a71461011957806306fdde0314610156578063081812fc14610181578063095ea7b3146101be575b600080fd5b34801561012557600080fd5b50610140600480360381019061013b9190612556565b61049b565b60405161014d9190612bca565b60405180910390f35b34801561016257600080fd5b5061016b61057d565b6040516101789190612c2a565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a391906125f9565b61060f565b6040516101b59190612b3a565b60405180910390f35b3480156101ca57600080fd5b506101e560048036038101906101e09190612516565b610694565b005b3480156101f357600080fd5b506101fc6107ac565b6040516102099190612f0c565b60405180910390f35b34801561021e57600080fd5b5061023960048036038101906102349190612400565b6107b6565b005b34801561024757600080fd5b50610262600480360381019061025d9190612400565b610816565b005b61027e60048036038101906102799190612626565b610836565b005b34801561028c57600080fd5b506102a760048036038101906102a291906125b0565b610ba1565b005b3480156102b557600080fd5b506102be610c4b565b6040516102cb9190612c2a565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906125f9565b610cd9565b6040516103089190612b3a565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190612393565b610d8b565b6040516103459190612f0c565b60405180910390f35b34801561035a57600080fd5b50610363610e43565b6040516103709190612b3a565b60405180910390f35b34801561038557600080fd5b5061038e610e69565b60405161039b9190612c2a565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906124d6565b610efb565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190612453565b610f11565b005b34801561040257600080fd5b5061041d600480360381019061041891906125f9565b610f73565b60405161042a9190612c2a565b60405180910390f35b34801561043f57600080fd5b5061044861101a565b6040516104559190612f0c565b60405180910390f35b34801561046a57600080fd5b50610485600480360381019061048091906123c0565b611030565b6040516104929190612bca565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105765750610575826110fb565b5b9050919050565b60606000805461058c9061323f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b89061323f565b80156106055780601f106105da57610100808354040283529160200191610605565b820191906000526020600020905b8154815290600101906020018083116105e857829003601f168201915b5050505050905090565b600061061a82611165565b610659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065090612e2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061069f82610cd9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070790612eac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072f6111d1565b73ffffffffffffffffffffffffffffffffffffffff16148061075e575061075d816107586111d1565b611030565b5b61079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490612d4c565b60405180910390fd5b6107a783836111d9565b505050565b6000611387905090565b6107c76107c16111d1565b82611292565b610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90612ecc565b60405180910390fd5b610811838383611370565b505050565b61083183838360405180602001604052806000815250610f11565b505050565b600067013fbe85edc900009050600066f8b0a10e47000090506108576107ac565b61085f61101a565b1061089f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089690612dcc565b60405180910390fd5b600080600033905060006108b58a8a8a8a6115cc565b905080156109c85760029350836108cb836116b7565b1061090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290612dac565b60405180910390fd5b896008541161094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690612e6c565b60405180910390fd5b838a1115610992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098990612eec565b60405180910390fd5b898561099e91906130ba565b925089600860008282546109b29190613114565b925050819055506109c3828b611750565b610a7a565b60059350838a10610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612ccc565b60405180910390fd5b8986610a1a91906130ba565b92508960095411610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790612cac565b60405180910390fd5b8960096000828254610a729190613114565b925050819055505b82341015610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490612c4c565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610b25573d6000803e3d6000fd5b5060005b8a811015610b94576000610b3b611798565b9050610b4784826117b9565b7f3f4400176642827e148918ccbe41542bc1131c1b2891ada1c05ceb5b27ba745b8482604051610b78929190612ba1565b60405180910390a1508080610b8c906132a2565b915050610b29565b5050505050505050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890612e0c565b60405180910390fd5b80600c9080519060200190610c47929190612192565b5050565b600c8054610c589061323f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c849061323f565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990612d8c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390612d6c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610e789061323f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea49061323f565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b5050505050905090565b610f0d610f066111d1565b83836117d7565b5050565b610f22610f1c6111d1565b83611292565b610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890612ecc565b60405180910390fd5b610f6d84848484611944565b50505050565b6060610f7e82611165565b610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612e8c565b60405180910390fd5b6000610fc76119a0565b90506000815111610fe75760405180602001604052806000815250611012565b80610ff184611a32565b604051602001611002929190612b16565b6040516020818303038152906040525b915050919050565b60008061102760066110da565b90508091505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661124c83610cd9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061129d82611165565b6112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390612d2c565b60405180910390fd5b60006112e783610cd9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061135657508373ffffffffffffffffffffffffffffffffffffffff1661133e8461060f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061136757506113668185611030565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661139082610cd9565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90612e4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90612cec565b60405180910390fd5b611461838383611b93565b61146c6000826111d9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114bc9190613114565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115139190612ffc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080739f7475a7a5b3f4441cce22f3a39213c7da3b944590504261012c866115f59190612ffc565b116115ff57600080fd5b600061160a87611b98565b9050600061161787611b98565b90506000339050600083838360405160200161163593929190612ae1565b604051602081830303815290604052905060008180519060200120905088811461166857600096505050505050506116af565b60006116748a8a611cff565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16149750505050505050505b949350505050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611708576000905061174b565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b919050565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60006117a460066110c4565b60006117b060066110da565b90508091505090565b6117d3828260405180602001604052806000815250611dd2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90612d0c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119379190612bca565b60405180910390a3505050565b61194f848484611370565b61195b84848484611e2d565b61199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190612c6c565b60405180910390fd5b50505050565b6060600c80546119af9061323f565b80601f01602080910402602001604051908101604052809291908181526020018280546119db9061323f565b8015611a285780601f106119fd57610100808354040283529160200191611a28565b820191906000526020600020905b815481529060010190602001808311611a0b57829003601f168201915b5050505050905090565b60606000821415611a7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b8e565b600082905060005b60008214611aac578080611a95906132a2565b915050600a82611aa59190613089565b9150611a82565b60008167ffffffffffffffff811115611ac857611ac76133fc565b5b6040519080825280601f01601f191660200182016040528015611afa5781602001600182028036833780820191505090505b5090505b60008514611b8757600182611b139190613114565b9150600a85611b22919061330f565b6030611b2e9190612ffc565b60f81b818381518110611b4457611b436133cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b809190613089565b9450611afe565b8093505050505b919050565b505050565b60606000821415611be0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cfa565b600082905060005b60008214611c12578080611bfb906132a2565b915050600a82611c0b9190613089565b9150611be8565b60008167ffffffffffffffff811115611c2e57611c2d6133fc565b5b6040519080825280601f01601f191660200182016040528015611c605781602001600182028036833780820191505090505b50905060008290508593505b60008414611cf257600a84611c81919061330f565b6030611c8d9190612ffc565b60f81b8282611c9b90613215565b92508281518110611caf57611cae6133cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84611ceb9190613089565b9350611c6c565b819450505050505b919050565b6000806000806041855114611d1a5760009350505050611dcc565b6020850151925060408501519150606085015160001a9050601b8160ff161015611d4e57601b81611d4b9190613052565b90505b601b8160ff1614158015611d665750601c8160ff1614155b15611d775760009350505050611dcc565b60018682858560405160008152602001604052604051611d9a9493929190612be5565b6020604051602081039080840390855afa158015611dbc573d6000803e3d6000fd5b5050506020604051035193505050505b92915050565b611ddc8383611fc4565b611de96000848484611e2d565b611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90612c6c565b60405180910390fd5b505050565b6000611e4e8473ffffffffffffffffffffffffffffffffffffffff166110e8565b15611fb7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e776111d1565b8786866040518563ffffffff1660e01b8152600401611e999493929190612b55565b602060405180830381600087803b158015611eb357600080fd5b505af1925050508015611ee457506040513d601f19601f82011682018060405250810190611ee19190612583565b60015b611f67573d8060008114611f14576040519150601f19603f3d011682016040523d82523d6000602084013e611f19565b606091505b50600081511415611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690612c6c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fbc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b90612dec565b60405180910390fd5b61203d81611165565b1561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490612c8c565b60405180910390fd5b61208960008383611b93565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d99190612ffc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461219e9061323f565b90600052602060002090601f0160209004810192826121c05760008555612207565b82601f106121d957805160ff1916838001178555612207565b82800160010185558215612207579182015b828111156122065782518255916020019190600101906121eb565b5b5090506122149190612218565b5090565b5b80821115612231576000816000905550600101612219565b5090565b600061224861224384612f4c565b612f27565b90508281526020810184848401111561226457612263613430565b5b61226f8482856131d3565b509392505050565b600061228a61228584612f7d565b612f27565b9050828152602081018484840111156122a6576122a5613430565b5b6122b18482856131d3565b509392505050565b6000813590506122c881613985565b92915050565b6000813590506122dd8161399c565b92915050565b6000813590506122f2816139b3565b92915050565b600081359050612307816139ca565b92915050565b60008151905061231c816139ca565b92915050565b600082601f8301126123375761233661342b565b5b8135612347848260208601612235565b91505092915050565b600082601f8301126123655761236461342b565b5b8135612375848260208601612277565b91505092915050565b60008135905061238d816139e1565b92915050565b6000602082840312156123a9576123a861343a565b5b60006123b7848285016122b9565b91505092915050565b600080604083850312156123d7576123d661343a565b5b60006123e5858286016122b9565b92505060206123f6858286016122b9565b9150509250929050565b6000806000606084860312156124195761241861343a565b5b6000612427868287016122b9565b9350506020612438868287016122b9565b92505060406124498682870161237e565b9150509250925092565b6000806000806080858703121561246d5761246c61343a565b5b600061247b878288016122b9565b945050602061248c878288016122b9565b935050604061249d8782880161237e565b925050606085013567ffffffffffffffff8111156124be576124bd613435565b5b6124ca87828801612322565b91505092959194509250565b600080604083850312156124ed576124ec61343a565b5b60006124fb858286016122b9565b925050602061250c858286016122ce565b9150509250929050565b6000806040838503121561252d5761252c61343a565b5b600061253b858286016122b9565b925050602061254c8582860161237e565b9150509250929050565b60006020828403121561256c5761256b61343a565b5b600061257a848285016122f8565b91505092915050565b6000602082840312156125995761259861343a565b5b60006125a78482850161230d565b91505092915050565b6000602082840312156125c6576125c561343a565b5b600082013567ffffffffffffffff8111156125e4576125e3613435565b5b6125f084828501612350565b91505092915050565b60006020828403121561260f5761260e61343a565b5b600061261d8482850161237e565b91505092915050565b600080600080608085870312156126405761263f61343a565b5b600061264e8782880161237e565b945050602061265f8782880161237e565b9350506040612670878288016122e3565b925050606085013567ffffffffffffffff81111561269157612690613435565b5b61269d87828801612322565b91505092959194509250565b6126b281613148565b82525050565b6126c96126c482613148565b6132eb565b82525050565b6126d88161315a565b82525050565b6126e781613166565b82525050565b60006126f882612fae565b6127028185612fc4565b93506127128185602086016131e2565b61271b8161343f565b840191505092915050565b600061273182612fae565b61273b8185612fd5565b935061274b8185602086016131e2565b80840191505092915050565b600061276282612fb9565b61276c8185612fe0565b935061277c8185602086016131e2565b6127858161343f565b840191505092915050565b600061279b82612fb9565b6127a58185612ff1565b93506127b58185602086016131e2565b80840191505092915050565b60006127ce601283612fe0565b91506127d98261345d565b602082019050919050565b60006127f1603283612fe0565b91506127fc82613486565b604082019050919050565b6000612814601c83612fe0565b915061281f826134d5565b602082019050919050565b6000612837601383612fe0565b9150612842826134fe565b602082019050919050565b600061285a600c83612fe0565b915061286582613527565b602082019050919050565b600061287d602483612fe0565b915061288882613550565b604082019050919050565b60006128a0601983612fe0565b91506128ab8261359f565b602082019050919050565b60006128c3602c83612fe0565b91506128ce826135c8565b604082019050919050565b60006128e6603883612fe0565b91506128f182613617565b604082019050919050565b6000612909602a83612fe0565b915061291482613666565b604082019050919050565b600061292c602983612fe0565b9150612937826136b5565b604082019050919050565b600061294f601a83612fe0565b915061295a82613704565b602082019050919050565b6000612972601a83612fe0565b915061297d8261372d565b602082019050919050565b6000612995602083612fe0565b91506129a082613756565b602082019050919050565b60006129b8601383612fe0565b91506129c38261377f565b602082019050919050565b60006129db602c83612fe0565b91506129e6826137a8565b604082019050919050565b60006129fe602983612fe0565b9150612a09826137f7565b604082019050919050565b6000612a21601283612fe0565b9150612a2c82613846565b602082019050919050565b6000612a44602f83612fe0565b9150612a4f8261386f565b604082019050919050565b6000612a67602183612fe0565b9150612a72826138be565b604082019050919050565b6000612a8a603183612fe0565b9150612a958261390d565b604082019050919050565b6000612aad600d83612fe0565b9150612ab88261395c565b602082019050919050565b612acc816131bc565b82525050565b612adb816131c6565b82525050565b6000612aed8286612726565b9150612af98285612726565b9150612b0582846126b8565b601482019150819050949350505050565b6000612b228285612790565b9150612b2e8284612790565b91508190509392505050565b6000602082019050612b4f60008301846126a9565b92915050565b6000608082019050612b6a60008301876126a9565b612b7760208301866126a9565b612b846040830185612ac3565b8181036060830152612b9681846126ed565b905095945050505050565b6000604082019050612bb660008301856126a9565b612bc36020830184612ac3565b9392505050565b6000602082019050612bdf60008301846126cf565b92915050565b6000608082019050612bfa60008301876126de565b612c076020830186612ad2565b612c1460408301856126de565b612c2160608301846126de565b95945050505050565b60006020820190508181036000830152612c448184612757565b905092915050565b60006020820190508181036000830152612c65816127c1565b9050919050565b60006020820190508181036000830152612c85816127e4565b9050919050565b60006020820190508181036000830152612ca581612807565b9050919050565b60006020820190508181036000830152612cc58161282a565b9050919050565b60006020820190508181036000830152612ce58161284d565b9050919050565b60006020820190508181036000830152612d0581612870565b9050919050565b60006020820190508181036000830152612d2581612893565b9050919050565b60006020820190508181036000830152612d45816128b6565b9050919050565b60006020820190508181036000830152612d65816128d9565b9050919050565b60006020820190508181036000830152612d85816128fc565b9050919050565b60006020820190508181036000830152612da58161291f565b9050919050565b60006020820190508181036000830152612dc581612942565b9050919050565b60006020820190508181036000830152612de581612965565b9050919050565b60006020820190508181036000830152612e0581612988565b9050919050565b60006020820190508181036000830152612e25816129ab565b9050919050565b60006020820190508181036000830152612e45816129ce565b9050919050565b60006020820190508181036000830152612e65816129f1565b9050919050565b60006020820190508181036000830152612e8581612a14565b9050919050565b60006020820190508181036000830152612ea581612a37565b9050919050565b60006020820190508181036000830152612ec581612a5a565b9050919050565b60006020820190508181036000830152612ee581612a7d565b9050919050565b60006020820190508181036000830152612f0581612aa0565b9050919050565b6000602082019050612f216000830184612ac3565b92915050565b6000612f31612f42565b9050612f3d8282613271565b919050565b6000604051905090565b600067ffffffffffffffff821115612f6757612f666133fc565b5b612f708261343f565b9050602081019050919050565b600067ffffffffffffffff821115612f9857612f976133fc565b5b612fa18261343f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613007826131bc565b9150613012836131bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561304757613046613340565b5b828201905092915050565b600061305d826131c6565b9150613068836131c6565b92508260ff0382111561307e5761307d613340565b5b828201905092915050565b6000613094826131bc565b915061309f836131bc565b9250826130af576130ae61336f565b5b828204905092915050565b60006130c5826131bc565b91506130d0836131bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561310957613108613340565b5b828202905092915050565b600061311f826131bc565b915061312a836131bc565b92508282101561313d5761313c613340565b5b828203905092915050565b60006131538261319c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156132005780820151818401526020810190506131e5565b8381111561320f576000848401525b50505050565b6000613220826131bc565b9150600082141561323457613233613340565b5b600182039050919050565b6000600282049050600182168061325757607f821691505b6020821081141561326b5761326a61339e565b5b50919050565b61327a8261343f565b810181811067ffffffffffffffff82111715613299576132986133fc565b5b80604052505050565b60006132ad826131bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132e0576132df613340565b5b600182019050919050565b60006132f6826132fd565b9050919050565b600061330882613450565b9050919050565b600061331a826131bc565b9150613325836131bc565b9250826133355761333461336f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6d73672e76616c7565203e20616d6f756e740000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f636f6d6d6f6e557365724e756d203c206e756d00000000000000000000000000600082015250565b7f6e756d203c206d61784e756d0000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f67657457686974654d696e7465644e756d203c206d61784e756d000000000000600082015250565b7f6d696e7465644e756d626572203c20746f74616c537570706c79000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6d73672e73656e64657220213d206f776e657200000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f77686974654c6973744e756d203e206e756d0000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6e756d203c3d206d61784e756d00000000000000000000000000000000000000600082015250565b61398e81613148565b811461399957600080fd5b50565b6139a58161315a565b81146139b057600080fd5b50565b6139bc81613166565b81146139c757600080fd5b50565b6139d381613170565b81146139de57600080fd5b50565b6139ea816131bc565b81146139f557600080fd5b5056fea2646970667358221220e4aacc7c3ea85d9d7d737e834644c6fe9e1c5d98518196581a06965ee872b40d64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d507266437773735870454b337944676941597a4653795057633569717972666a3937534a6253746b5233434a2f

Deployed Bytecode

0x6080604052600436106101145760003560e01c80635bcabf04116100a0578063a22cb46511610064578063a22cb465146103a4578063b88d4fde146103cd578063c87b56dd146103f6578063d4fa440f14610433578063e985e9c51461045e57610114565b80635bcabf04146102a95780636352211e146102d457806370a08231146103115780638da5cb5b1461034e57806395d89b411461037957610114565b806318160ddd116100e757806318160ddd146101e757806323b872dd1461021257806342842e0e1461023b578063505891861461026457806355f804b31461028057610114565b806301ffc9a71461011957806306fdde0314610156578063081812fc14610181578063095ea7b3146101be575b600080fd5b34801561012557600080fd5b50610140600480360381019061013b9190612556565b61049b565b60405161014d9190612bca565b60405180910390f35b34801561016257600080fd5b5061016b61057d565b6040516101789190612c2a565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a391906125f9565b61060f565b6040516101b59190612b3a565b60405180910390f35b3480156101ca57600080fd5b506101e560048036038101906101e09190612516565b610694565b005b3480156101f357600080fd5b506101fc6107ac565b6040516102099190612f0c565b60405180910390f35b34801561021e57600080fd5b5061023960048036038101906102349190612400565b6107b6565b005b34801561024757600080fd5b50610262600480360381019061025d9190612400565b610816565b005b61027e60048036038101906102799190612626565b610836565b005b34801561028c57600080fd5b506102a760048036038101906102a291906125b0565b610ba1565b005b3480156102b557600080fd5b506102be610c4b565b6040516102cb9190612c2a565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906125f9565b610cd9565b6040516103089190612b3a565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190612393565b610d8b565b6040516103459190612f0c565b60405180910390f35b34801561035a57600080fd5b50610363610e43565b6040516103709190612b3a565b60405180910390f35b34801561038557600080fd5b5061038e610e69565b60405161039b9190612c2a565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906124d6565b610efb565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190612453565b610f11565b005b34801561040257600080fd5b5061041d600480360381019061041891906125f9565b610f73565b60405161042a9190612c2a565b60405180910390f35b34801561043f57600080fd5b5061044861101a565b6040516104559190612f0c565b60405180910390f35b34801561046a57600080fd5b50610485600480360381019061048091906123c0565b611030565b6040516104929190612bca565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105765750610575826110fb565b5b9050919050565b60606000805461058c9061323f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b89061323f565b80156106055780601f106105da57610100808354040283529160200191610605565b820191906000526020600020905b8154815290600101906020018083116105e857829003601f168201915b5050505050905090565b600061061a82611165565b610659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065090612e2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061069f82610cd9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070790612eac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072f6111d1565b73ffffffffffffffffffffffffffffffffffffffff16148061075e575061075d816107586111d1565b611030565b5b61079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490612d4c565b60405180910390fd5b6107a783836111d9565b505050565b6000611387905090565b6107c76107c16111d1565b82611292565b610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90612ecc565b60405180910390fd5b610811838383611370565b505050565b61083183838360405180602001604052806000815250610f11565b505050565b600067013fbe85edc900009050600066f8b0a10e47000090506108576107ac565b61085f61101a565b1061089f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089690612dcc565b60405180910390fd5b600080600033905060006108b58a8a8a8a6115cc565b905080156109c85760029350836108cb836116b7565b1061090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290612dac565b60405180910390fd5b896008541161094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690612e6c565b60405180910390fd5b838a1115610992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098990612eec565b60405180910390fd5b898561099e91906130ba565b925089600860008282546109b29190613114565b925050819055506109c3828b611750565b610a7a565b60059350838a10610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612ccc565b60405180910390fd5b8986610a1a91906130ba565b92508960095411610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790612cac565b60405180910390fd5b8960096000828254610a729190613114565b925050819055505b82341015610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490612c4c565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610b25573d6000803e3d6000fd5b5060005b8a811015610b94576000610b3b611798565b9050610b4784826117b9565b7f3f4400176642827e148918ccbe41542bc1131c1b2891ada1c05ceb5b27ba745b8482604051610b78929190612ba1565b60405180910390a1508080610b8c906132a2565b915050610b29565b5050505050505050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890612e0c565b60405180910390fd5b80600c9080519060200190610c47929190612192565b5050565b600c8054610c589061323f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c849061323f565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990612d8c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390612d6c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610e789061323f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea49061323f565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b5050505050905090565b610f0d610f066111d1565b83836117d7565b5050565b610f22610f1c6111d1565b83611292565b610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890612ecc565b60405180910390fd5b610f6d84848484611944565b50505050565b6060610f7e82611165565b610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612e8c565b60405180910390fd5b6000610fc76119a0565b90506000815111610fe75760405180602001604052806000815250611012565b80610ff184611a32565b604051602001611002929190612b16565b6040516020818303038152906040525b915050919050565b60008061102760066110da565b90508091505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661124c83610cd9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061129d82611165565b6112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390612d2c565b60405180910390fd5b60006112e783610cd9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061135657508373ffffffffffffffffffffffffffffffffffffffff1661133e8461060f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061136757506113668185611030565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661139082610cd9565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90612e4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90612cec565b60405180910390fd5b611461838383611b93565b61146c6000826111d9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114bc9190613114565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115139190612ffc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080739f7475a7a5b3f4441cce22f3a39213c7da3b944590504261012c866115f59190612ffc565b116115ff57600080fd5b600061160a87611b98565b9050600061161787611b98565b90506000339050600083838360405160200161163593929190612ae1565b604051602081830303815290604052905060008180519060200120905088811461166857600096505050505050506116af565b60006116748a8a611cff565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16149750505050505050505b949350505050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611708576000905061174b565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b919050565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60006117a460066110c4565b60006117b060066110da565b90508091505090565b6117d3828260405180602001604052806000815250611dd2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90612d0c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119379190612bca565b60405180910390a3505050565b61194f848484611370565b61195b84848484611e2d565b61199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190612c6c565b60405180910390fd5b50505050565b6060600c80546119af9061323f565b80601f01602080910402602001604051908101604052809291908181526020018280546119db9061323f565b8015611a285780601f106119fd57610100808354040283529160200191611a28565b820191906000526020600020905b815481529060010190602001808311611a0b57829003601f168201915b5050505050905090565b60606000821415611a7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b8e565b600082905060005b60008214611aac578080611a95906132a2565b915050600a82611aa59190613089565b9150611a82565b60008167ffffffffffffffff811115611ac857611ac76133fc565b5b6040519080825280601f01601f191660200182016040528015611afa5781602001600182028036833780820191505090505b5090505b60008514611b8757600182611b139190613114565b9150600a85611b22919061330f565b6030611b2e9190612ffc565b60f81b818381518110611b4457611b436133cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b809190613089565b9450611afe565b8093505050505b919050565b505050565b60606000821415611be0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cfa565b600082905060005b60008214611c12578080611bfb906132a2565b915050600a82611c0b9190613089565b9150611be8565b60008167ffffffffffffffff811115611c2e57611c2d6133fc565b5b6040519080825280601f01601f191660200182016040528015611c605781602001600182028036833780820191505090505b50905060008290508593505b60008414611cf257600a84611c81919061330f565b6030611c8d9190612ffc565b60f81b8282611c9b90613215565b92508281518110611caf57611cae6133cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84611ceb9190613089565b9350611c6c565b819450505050505b919050565b6000806000806041855114611d1a5760009350505050611dcc565b6020850151925060408501519150606085015160001a9050601b8160ff161015611d4e57601b81611d4b9190613052565b90505b601b8160ff1614158015611d665750601c8160ff1614155b15611d775760009350505050611dcc565b60018682858560405160008152602001604052604051611d9a9493929190612be5565b6020604051602081039080840390855afa158015611dbc573d6000803e3d6000fd5b5050506020604051035193505050505b92915050565b611ddc8383611fc4565b611de96000848484611e2d565b611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90612c6c565b60405180910390fd5b505050565b6000611e4e8473ffffffffffffffffffffffffffffffffffffffff166110e8565b15611fb7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e776111d1565b8786866040518563ffffffff1660e01b8152600401611e999493929190612b55565b602060405180830381600087803b158015611eb357600080fd5b505af1925050508015611ee457506040513d601f19601f82011682018060405250810190611ee19190612583565b60015b611f67573d8060008114611f14576040519150601f19603f3d011682016040523d82523d6000602084013e611f19565b606091505b50600081511415611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690612c6c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fbc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b90612dec565b60405180910390fd5b61203d81611165565b1561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490612c8c565b60405180910390fd5b61208960008383611b93565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d99190612ffc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461219e9061323f565b90600052602060002090601f0160209004810192826121c05760008555612207565b82601f106121d957805160ff1916838001178555612207565b82800160010185558215612207579182015b828111156122065782518255916020019190600101906121eb565b5b5090506122149190612218565b5090565b5b80821115612231576000816000905550600101612219565b5090565b600061224861224384612f4c565b612f27565b90508281526020810184848401111561226457612263613430565b5b61226f8482856131d3565b509392505050565b600061228a61228584612f7d565b612f27565b9050828152602081018484840111156122a6576122a5613430565b5b6122b18482856131d3565b509392505050565b6000813590506122c881613985565b92915050565b6000813590506122dd8161399c565b92915050565b6000813590506122f2816139b3565b92915050565b600081359050612307816139ca565b92915050565b60008151905061231c816139ca565b92915050565b600082601f8301126123375761233661342b565b5b8135612347848260208601612235565b91505092915050565b600082601f8301126123655761236461342b565b5b8135612375848260208601612277565b91505092915050565b60008135905061238d816139e1565b92915050565b6000602082840312156123a9576123a861343a565b5b60006123b7848285016122b9565b91505092915050565b600080604083850312156123d7576123d661343a565b5b60006123e5858286016122b9565b92505060206123f6858286016122b9565b9150509250929050565b6000806000606084860312156124195761241861343a565b5b6000612427868287016122b9565b9350506020612438868287016122b9565b92505060406124498682870161237e565b9150509250925092565b6000806000806080858703121561246d5761246c61343a565b5b600061247b878288016122b9565b945050602061248c878288016122b9565b935050604061249d8782880161237e565b925050606085013567ffffffffffffffff8111156124be576124bd613435565b5b6124ca87828801612322565b91505092959194509250565b600080604083850312156124ed576124ec61343a565b5b60006124fb858286016122b9565b925050602061250c858286016122ce565b9150509250929050565b6000806040838503121561252d5761252c61343a565b5b600061253b858286016122b9565b925050602061254c8582860161237e565b9150509250929050565b60006020828403121561256c5761256b61343a565b5b600061257a848285016122f8565b91505092915050565b6000602082840312156125995761259861343a565b5b60006125a78482850161230d565b91505092915050565b6000602082840312156125c6576125c561343a565b5b600082013567ffffffffffffffff8111156125e4576125e3613435565b5b6125f084828501612350565b91505092915050565b60006020828403121561260f5761260e61343a565b5b600061261d8482850161237e565b91505092915050565b600080600080608085870312156126405761263f61343a565b5b600061264e8782880161237e565b945050602061265f8782880161237e565b9350506040612670878288016122e3565b925050606085013567ffffffffffffffff81111561269157612690613435565b5b61269d87828801612322565b91505092959194509250565b6126b281613148565b82525050565b6126c96126c482613148565b6132eb565b82525050565b6126d88161315a565b82525050565b6126e781613166565b82525050565b60006126f882612fae565b6127028185612fc4565b93506127128185602086016131e2565b61271b8161343f565b840191505092915050565b600061273182612fae565b61273b8185612fd5565b935061274b8185602086016131e2565b80840191505092915050565b600061276282612fb9565b61276c8185612fe0565b935061277c8185602086016131e2565b6127858161343f565b840191505092915050565b600061279b82612fb9565b6127a58185612ff1565b93506127b58185602086016131e2565b80840191505092915050565b60006127ce601283612fe0565b91506127d98261345d565b602082019050919050565b60006127f1603283612fe0565b91506127fc82613486565b604082019050919050565b6000612814601c83612fe0565b915061281f826134d5565b602082019050919050565b6000612837601383612fe0565b9150612842826134fe565b602082019050919050565b600061285a600c83612fe0565b915061286582613527565b602082019050919050565b600061287d602483612fe0565b915061288882613550565b604082019050919050565b60006128a0601983612fe0565b91506128ab8261359f565b602082019050919050565b60006128c3602c83612fe0565b91506128ce826135c8565b604082019050919050565b60006128e6603883612fe0565b91506128f182613617565b604082019050919050565b6000612909602a83612fe0565b915061291482613666565b604082019050919050565b600061292c602983612fe0565b9150612937826136b5565b604082019050919050565b600061294f601a83612fe0565b915061295a82613704565b602082019050919050565b6000612972601a83612fe0565b915061297d8261372d565b602082019050919050565b6000612995602083612fe0565b91506129a082613756565b602082019050919050565b60006129b8601383612fe0565b91506129c38261377f565b602082019050919050565b60006129db602c83612fe0565b91506129e6826137a8565b604082019050919050565b60006129fe602983612fe0565b9150612a09826137f7565b604082019050919050565b6000612a21601283612fe0565b9150612a2c82613846565b602082019050919050565b6000612a44602f83612fe0565b9150612a4f8261386f565b604082019050919050565b6000612a67602183612fe0565b9150612a72826138be565b604082019050919050565b6000612a8a603183612fe0565b9150612a958261390d565b604082019050919050565b6000612aad600d83612fe0565b9150612ab88261395c565b602082019050919050565b612acc816131bc565b82525050565b612adb816131c6565b82525050565b6000612aed8286612726565b9150612af98285612726565b9150612b0582846126b8565b601482019150819050949350505050565b6000612b228285612790565b9150612b2e8284612790565b91508190509392505050565b6000602082019050612b4f60008301846126a9565b92915050565b6000608082019050612b6a60008301876126a9565b612b7760208301866126a9565b612b846040830185612ac3565b8181036060830152612b9681846126ed565b905095945050505050565b6000604082019050612bb660008301856126a9565b612bc36020830184612ac3565b9392505050565b6000602082019050612bdf60008301846126cf565b92915050565b6000608082019050612bfa60008301876126de565b612c076020830186612ad2565b612c1460408301856126de565b612c2160608301846126de565b95945050505050565b60006020820190508181036000830152612c448184612757565b905092915050565b60006020820190508181036000830152612c65816127c1565b9050919050565b60006020820190508181036000830152612c85816127e4565b9050919050565b60006020820190508181036000830152612ca581612807565b9050919050565b60006020820190508181036000830152612cc58161282a565b9050919050565b60006020820190508181036000830152612ce58161284d565b9050919050565b60006020820190508181036000830152612d0581612870565b9050919050565b60006020820190508181036000830152612d2581612893565b9050919050565b60006020820190508181036000830152612d45816128b6565b9050919050565b60006020820190508181036000830152612d65816128d9565b9050919050565b60006020820190508181036000830152612d85816128fc565b9050919050565b60006020820190508181036000830152612da58161291f565b9050919050565b60006020820190508181036000830152612dc581612942565b9050919050565b60006020820190508181036000830152612de581612965565b9050919050565b60006020820190508181036000830152612e0581612988565b9050919050565b60006020820190508181036000830152612e25816129ab565b9050919050565b60006020820190508181036000830152612e45816129ce565b9050919050565b60006020820190508181036000830152612e65816129f1565b9050919050565b60006020820190508181036000830152612e8581612a14565b9050919050565b60006020820190508181036000830152612ea581612a37565b9050919050565b60006020820190508181036000830152612ec581612a5a565b9050919050565b60006020820190508181036000830152612ee581612a7d565b9050919050565b60006020820190508181036000830152612f0581612aa0565b9050919050565b6000602082019050612f216000830184612ac3565b92915050565b6000612f31612f42565b9050612f3d8282613271565b919050565b6000604051905090565b600067ffffffffffffffff821115612f6757612f666133fc565b5b612f708261343f565b9050602081019050919050565b600067ffffffffffffffff821115612f9857612f976133fc565b5b612fa18261343f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613007826131bc565b9150613012836131bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561304757613046613340565b5b828201905092915050565b600061305d826131c6565b9150613068836131c6565b92508260ff0382111561307e5761307d613340565b5b828201905092915050565b6000613094826131bc565b915061309f836131bc565b9250826130af576130ae61336f565b5b828204905092915050565b60006130c5826131bc565b91506130d0836131bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561310957613108613340565b5b828202905092915050565b600061311f826131bc565b915061312a836131bc565b92508282101561313d5761313c613340565b5b828203905092915050565b60006131538261319c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156132005780820151818401526020810190506131e5565b8381111561320f576000848401525b50505050565b6000613220826131bc565b9150600082141561323457613233613340565b5b600182039050919050565b6000600282049050600182168061325757607f821691505b6020821081141561326b5761326a61339e565b5b50919050565b61327a8261343f565b810181811067ffffffffffffffff82111715613299576132986133fc565b5b80604052505050565b60006132ad826131bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132e0576132df613340565b5b600182019050919050565b60006132f6826132fd565b9050919050565b600061330882613450565b9050919050565b600061331a826131bc565b9150613325836131bc565b9250826133355761333461336f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6d73672e76616c7565203e20616d6f756e740000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f636f6d6d6f6e557365724e756d203c206e756d00000000000000000000000000600082015250565b7f6e756d203c206d61784e756d0000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f67657457686974654d696e7465644e756d203c206d61784e756d000000000000600082015250565b7f6d696e7465644e756d626572203c20746f74616c537570706c79000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6d73672e73656e64657220213d206f776e657200000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f77686974654c6973744e756d203e206e756d0000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6e756d203c3d206d61784e756d00000000000000000000000000000000000000600082015250565b61398e81613148565b811461399957600080fd5b50565b6139a58161315a565b81146139b057600080fd5b50565b6139bc81613166565b81146139c757600080fd5b50565b6139d381613170565b81146139de57600080fd5b50565b6139ea816131bc565b81146139f557600080fd5b5056fea2646970667358221220e4aacc7c3ea85d9d7d737e834644c6fe9e1c5d98518196581a06965ee872b40d64736f6c63430008070033

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.