ETH Price: $2,637.96 (+2.03%)

Cheers Pals (CP)
 

Overview

TokenID

119

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
CheersPals

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : cheersPals.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract CheersPals is ERC721URIStorage {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    address owner;

    uint MintMaxTotal = 10000;
    uint MintMaxCount = 5;
    uint MintMinCount = 1;
    uint MintOneCost = 0.0088 ether;

    bytes32 public root =
        0x22a78412de840ca168e177307c7391e7c97825f46dd2161c88a7f6fd3703676e;

    bool IsMinting = true;

    constructor() ERC721("Cheers Pals", "CP") {
        owner = msg.sender;
        _tokenIds.increment();
    }

    function mint(address player) private returns (uint256) {
        require(IsMinting);
        uint256 newItemId = _tokenIds.current();
        string memory tokenURI = getTokenURI(newItemId);
        require(MintMaxTotal >= newItemId);
        _mint(player, newItemId);
        _setTokenURI(newItemId, tokenURI);
        _tokenIds.increment();
        return newItemId;
    }

    function mintGuest(address player, uint times) external payable {
        require(msg.value >= MintOneCost * times);
        require(times <= MintMaxCount && times >= MintMinCount);
        for (uint key = 0; key < times; key++) {
            mint(player);
        }
    }

    function mintWhiteLists(address player, bytes32[] memory proof) external {
        require(isWhiteLists(proof, keccak256(abi.encodePacked(player))));
        for (uint key = 0; key < MintMaxCount; key++) {
            mint(player);
        }
    }

    function setMintTotal(uint count) external byOwner {
        MintMaxTotal = count;
    }

    function checkoutMintState(bool state) external byOwner {
        IsMinting = state;
    }

    function setMerkleTreeRoot(bytes32 _root) external byOwner {
        root = _root;
    }

    function isWhiteLists(bytes32[] memory proof, bytes32 leaf)
        private
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, root, leaf);
    }

    function contractURI() public pure returns (string memory) {
        return
            "https://raw.githubusercontent.com/CheersPals/cheerspalsofficial/main/json/collection.json";
    }

    function getTokenURI(uint256 index) private pure returns (string memory) {
        uint256 randomIndex = index;
        string memory randomIndexString = Strings.toString(randomIndex);
        string
            memory headerString = "https://raw.githubusercontent.com/CheersPals/cheerspalsofficial/main/json/";
        string memory footerString = ".json";
        string memory tokenURI = string.concat(
            headerString,
            randomIndexString,
            footerString
        );
        return tokenURI;
    }

    function withdraw() public payable byOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    modifier byOwner() {
        require(msg.sender == owner);
        _;
    }
}

File 2 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 6 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

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

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

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"checkoutMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"address","name":"player","type":"address"},{"internalType":"uint256","name":"times","type":"uint256"}],"name":"mintGuest","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhiteLists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setMintTotal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526127106009556005600a556001600b55661f438daa060000600c557f22a78412de840ca168e177307c7391e7c97825f46dd2161c88a7f6fd3703676e60001b600d556001600e60006101000a81548160ff0219169083151502179055503480156200006e57600080fd5b506040518060400160405280600b81526020017f4368656572732050616c730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f43500000000000000000000000000000000000000000000000000000000000008152508160009081620000ec9190620003ef565b508060019081620000fe9190620003ef565b50505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200015960076200015f60201b62000fcb1760201c565b620004d6565b6001816000016000828254019250508190555050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001f757607f821691505b6020821081036200020d576200020c620001af565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000238565b62000283868362000238565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002d0620002ca620002c4846200029b565b620002a5565b6200029b565b9050919050565b6000819050919050565b620002ec83620002af565b62000304620002fb82620002d7565b84845462000245565b825550505050565b600090565b6200031b6200030c565b62000328818484620002e1565b505050565b5b8181101562000350576200034460008262000311565b6001810190506200032e565b5050565b601f8211156200039f57620003698162000213565b620003748462000228565b8101602085101562000384578190505b6200039c620003938562000228565b8301826200032d565b50505b505050565b600082821c905092915050565b6000620003c460001984600802620003a4565b1980831691505092915050565b6000620003df8383620003b1565b9150826002028217905092915050565b620003fa8262000175565b67ffffffffffffffff81111562000416576200041562000180565b5b620004228254620001de565b6200042f82828562000354565b600060209050601f83116001811462000467576000841562000452578287015190505b6200045e8582620003d1565b865550620004ce565b601f198416620004778662000213565b60005b82811015620004a1578489015182556001820191506020850194506020810190506200047a565b86831015620004c15784890151620004bd601f891682620003b1565b8355505b6001600288020188555050505b505050505050565b6136af80620004e66000396000f3fe60806040526004361061012a5760003560e01c80635dd34c4c116100ab578063b88d4fde1161006f578063b88d4fde146103be578063c85d88ec146103e7578063c87b56dd14610410578063e8a3d4851461044d578063e985e9c514610478578063ebf0c717146104b55761012a565b80635dd34c4c146102c75780636352211e146102f057806370a082311461032d57806395d89b411461036a578063a22cb465146103955761012a565b806323b872dd116100f257806323b872dd146102195780633ccfd60b1461024257806342842e0e1461024c5780634918eaa61461027557806350dc46561461029e5761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d4578063232cb9ba146101fd575b600080fd5b34801561013b57600080fd5b5061015660048036038101906101519190611edd565b6104e0565b6040516101639190611f25565b60405180910390f35b34801561017857600080fd5b506101816105c2565b60405161018e9190611fd9565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b99190612031565b610654565b6040516101cb919061209f565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f691906120e6565b6106d9565b005b610217600480360381019061021291906120e6565b6107f0565b005b34801561022557600080fd5b50610240600480360381019061023b9190612126565b610854565b005b61024a6108b4565b005b34801561025857600080fd5b50610273600480360381019061026e9190612126565b610987565b005b34801561028157600080fd5b5061029c60048036038101906102979190612031565b6109a7565b005b3480156102aa57600080fd5b506102c560048036038101906102c091906121af565b610a0b565b005b3480156102d357600080fd5b506102ee60048036038101906102e99190612324565b610a6f565b005b3480156102fc57600080fd5b5061031760048036038101906103129190612031565b610ad7565b604051610324919061209f565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612380565b610b88565b60405161036191906123bc565b60405180910390f35b34801561037657600080fd5b5061037f610c3f565b60405161038c9190611fd9565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190612403565b610cd1565b005b3480156103ca57600080fd5b506103e560048036038101906103e091906124f8565b610ce7565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061257b565b610d49565b005b34801561041c57600080fd5b5061043760048036038101906104329190612031565b610dc0565b6040516104449190611fd9565b60405180910390f35b34801561045957600080fd5b50610462610f11565b60405161046f9190611fd9565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a91906125a8565b610f31565b6040516104ac9190611f25565b60405180910390f35b3480156104c157600080fd5b506104ca610fc5565b6040516104d791906125f7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bb57506105ba82610fe1565b5b9050919050565b6060600080546105d190612641565b80601f01602080910402602001604051908101604052809291908181526020018280546105fd90612641565b801561064a5780601f1061061f5761010080835404028352916020019161064a565b820191906000526020600020905b81548152906001019060200180831161062d57829003601f168201915b5050505050905090565b600061065f8261104b565b61069e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610695906126e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e482610ad7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90612776565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107736110b7565b73ffffffffffffffffffffffffffffffffffffffff1614806107a257506107a18161079c6110b7565b610f31565b5b6107e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d890612808565b60405180910390fd5b6107eb83836110bf565b505050565b80600c546107fe9190612857565b34101561080a57600080fd5b600a54811115801561081e5750600b548110155b61082757600080fd5b60005b8181101561084f5761083b83611178565b508080610847906128b1565b91505061082a565b505050565b61086561085f6110b7565b826111e5565b6108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b9061296b565b60405180910390fd5b6108af8383836112c3565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461090e57600080fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610934906129bc565b60006040518083038185875af1925050503d8060008114610971576040519150601f19603f3d011682016040523d82523d6000602084013e610976565b606091505b505090508061098457600080fd5b50565b6109a283838360405180602001604052806000815250610ce7565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a0157600080fd5b8060098190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a6557600080fd5b80600d8190555050565b610a9f8183604051602001610a849190612a19565b60405160208183030381529060405280519060200120611529565b610aa857600080fd5b60005b600a54811015610ad257610abe83611178565b508080610aca906128b1565b915050610aab565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690612aa6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90612b38565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610c4e90612641565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7a90612641565b8015610cc75780601f10610c9c57610100808354040283529160200191610cc7565b820191906000526020600020905b815481529060010190602001808311610caa57829003601f168201915b5050505050905090565b610ce3610cdc6110b7565b8383611540565b5050565b610cf8610cf26110b7565b836111e5565b610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e9061296b565b60405180910390fd5b610d43848484846116ac565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da357600080fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060610dcb8261104b565b610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190612bca565b60405180910390fd5b6000600660008481526020019081526020016000208054610e2a90612641565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5690612641565b8015610ea35780601f10610e7857610100808354040283529160200191610ea3565b820191906000526020600020905b815481529060010190602001808311610e8657829003601f168201915b505050505090506000610eb4611708565b90506000815103610ec9578192505050610f0c565b600082511115610efe578082604051602001610ee6929190612c26565b60405160208183030381529060405292505050610f0c565b610f078461171f565b925050505b919050565b606060405180608001604052806059815260200161362160599139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661113283610ad7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600e60009054906101000a900460ff1661119357600080fd5b600061119f60076117c6565b905060006111ac826117d4565b90508160095410156111bd57600080fd5b6111c78483611874565b6111d18282611a4d565b6111db6007610fcb565b8192505050919050565b60006111f08261104b565b61122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690612cbc565b60405180910390fd5b600061123a83610ad7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061127c575061127b8185610f31565b5b806112ba57508373ffffffffffffffffffffffffffffffffffffffff166112a284610654565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112e382610ad7565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090612d4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90612de0565b60405180910390fd5b6113b3838383611aba565b6113be6000826110bf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140e9190612e00565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114659190612e34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611524838383611abf565b505050565b600061153883600d5484611ac4565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590612ed6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169f9190611f25565b60405180910390a3505050565b6116b78484846112c3565b6116c384848484611adb565b611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990612f68565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061172a8261104b565b611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090612ffa565b60405180910390fd5b6000611773611708565b9050600081511161179357604051806020016040528060008152506117be565b8061179d84611c62565b6040516020016117ae929190612c26565b6040516020818303038152906040525b915050919050565b600081600001549050919050565b6060600082905060006117e682611c62565b905060006040518060800160405280604a81526020016135d7604a9139905060006040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250905060008284836040516020016118569392919061301a565b60405160208183030381529060405290508095505050505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613097565b60405180910390fd5b6118ec8161104b565b1561192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613103565b60405180910390fd5b61193860008383611aba565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119889190612e34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a4960008383611abf565b5050565b611a568261104b565b611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90613195565b60405180910390fd5b80600660008481526020019081526020016000209081611ab59190613361565b505050565b505050565b505050565b600082611ad18584611dc2565b1490509392505050565b6000611afc8473ffffffffffffffffffffffffffffffffffffffff16611e37565b15611c55578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b256110b7565b8786866040518563ffffffff1660e01b8152600401611b479493929190613488565b6020604051808303816000875af1925050508015611b8357506040513d601f19601f82011682018060405250810190611b8091906134e9565b60015b611c05573d8060008114611bb3576040519150601f19603f3d011682016040523d82523d6000602084013e611bb8565b606091505b506000815103611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490612f68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c5a565b600190505b949350505050565b606060008203611ca9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dbd565b600082905060005b60008214611cdb578080611cc4906128b1565b915050600a82611cd49190613545565b9150611cb1565b60008167ffffffffffffffff811115611cf757611cf66121e1565b5b6040519080825280601f01601f191660200182016040528015611d295781602001600182028036833780820191505090505b5090505b60008514611db657600182611d429190612e00565b9150600a85611d519190613576565b6030611d5d9190612e34565b60f81b818381518110611d7357611d726135a7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611daf9190613545565b9450611d2d565b8093505050505b919050565b60008082905060005b8451811015611e2c576000858281518110611de957611de86135a7565b5b60200260200101519050808311611e0b57611e048382611e5a565b9250611e18565b611e158184611e5a565b92505b508080611e24906128b1565b915050611dcb565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611eba81611e85565b8114611ec557600080fd5b50565b600081359050611ed781611eb1565b92915050565b600060208284031215611ef357611ef2611e7b565b5b6000611f0184828501611ec8565b91505092915050565b60008115159050919050565b611f1f81611f0a565b82525050565b6000602082019050611f3a6000830184611f16565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f7a578082015181840152602081019050611f5f565b83811115611f89576000848401525b50505050565b6000601f19601f8301169050919050565b6000611fab82611f40565b611fb58185611f4b565b9350611fc5818560208601611f5c565b611fce81611f8f565b840191505092915050565b60006020820190508181036000830152611ff38184611fa0565b905092915050565b6000819050919050565b61200e81611ffb565b811461201957600080fd5b50565b60008135905061202b81612005565b92915050565b60006020828403121561204757612046611e7b565b5b60006120558482850161201c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120898261205e565b9050919050565b6120998161207e565b82525050565b60006020820190506120b46000830184612090565b92915050565b6120c38161207e565b81146120ce57600080fd5b50565b6000813590506120e0816120ba565b92915050565b600080604083850312156120fd576120fc611e7b565b5b600061210b858286016120d1565b925050602061211c8582860161201c565b9150509250929050565b60008060006060848603121561213f5761213e611e7b565b5b600061214d868287016120d1565b935050602061215e868287016120d1565b925050604061216f8682870161201c565b9150509250925092565b6000819050919050565b61218c81612179565b811461219757600080fd5b50565b6000813590506121a981612183565b92915050565b6000602082840312156121c5576121c4611e7b565b5b60006121d38482850161219a565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61221982611f8f565b810181811067ffffffffffffffff82111715612238576122376121e1565b5b80604052505050565b600061224b611e71565b90506122578282612210565b919050565b600067ffffffffffffffff821115612277576122766121e1565b5b602082029050602081019050919050565b600080fd5b60006122a061229b8461225c565b612241565b905080838252602082019050602084028301858111156122c3576122c2612288565b5b835b818110156122ec57806122d8888261219a565b8452602084019350506020810190506122c5565b5050509392505050565b600082601f83011261230b5761230a6121dc565b5b813561231b84826020860161228d565b91505092915050565b6000806040838503121561233b5761233a611e7b565b5b6000612349858286016120d1565b925050602083013567ffffffffffffffff81111561236a57612369611e80565b5b612376858286016122f6565b9150509250929050565b60006020828403121561239657612395611e7b565b5b60006123a4848285016120d1565b91505092915050565b6123b681611ffb565b82525050565b60006020820190506123d160008301846123ad565b92915050565b6123e081611f0a565b81146123eb57600080fd5b50565b6000813590506123fd816123d7565b92915050565b6000806040838503121561241a57612419611e7b565b5b6000612428858286016120d1565b9250506020612439858286016123ee565b9150509250929050565b600080fd5b600067ffffffffffffffff821115612463576124626121e1565b5b61246c82611f8f565b9050602081019050919050565b82818337600083830152505050565b600061249b61249684612448565b612241565b9050828152602081018484840111156124b7576124b6612443565b5b6124c2848285612479565b509392505050565b600082601f8301126124df576124de6121dc565b5b81356124ef848260208601612488565b91505092915050565b6000806000806080858703121561251257612511611e7b565b5b6000612520878288016120d1565b9450506020612531878288016120d1565b93505060406125428782880161201c565b925050606085013567ffffffffffffffff81111561256357612562611e80565b5b61256f878288016124ca565b91505092959194509250565b60006020828403121561259157612590611e7b565b5b600061259f848285016123ee565b91505092915050565b600080604083850312156125bf576125be611e7b565b5b60006125cd858286016120d1565b92505060206125de858286016120d1565b9150509250929050565b6125f181612179565b82525050565b600060208201905061260c60008301846125e8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061265957607f821691505b60208210810361266c5761266b612612565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006126ce602c83611f4b565b91506126d982612672565b604082019050919050565b600060208201905081810360008301526126fd816126c1565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612760602183611f4b565b915061276b82612704565b604082019050919050565b6000602082019050818103600083015261278f81612753565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006127f2603883611f4b565b91506127fd82612796565b604082019050919050565b60006020820190508181036000830152612821816127e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061286282611ffb565b915061286d83611ffb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128a6576128a5612828565b5b828202905092915050565b60006128bc82611ffb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128ee576128ed612828565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612955603183611f4b565b9150612960826128f9565b604082019050919050565b6000602082019050818103600083015261298481612948565b9050919050565b600081905092915050565b50565b60006129a660008361298b565b91506129b182612996565b600082019050919050565b60006129c782612999565b9150819050919050565b60008160601b9050919050565b60006129e9826129d1565b9050919050565b60006129fb826129de565b9050919050565b612a13612a0e8261207e565b6129f0565b82525050565b6000612a258284612a02565b60148201915081905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612a90602983611f4b565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612b22602a83611f4b565b9150612b2d82612ac6565b604082019050919050565b60006020820190508181036000830152612b5181612b15565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000612bb4603183611f4b565b9150612bbf82612b58565b604082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b600081905092915050565b6000612c0082611f40565b612c0a8185612bea565b9350612c1a818560208601611f5c565b80840191505092915050565b6000612c328285612bf5565b9150612c3e8284612bf5565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612ca6602c83611f4b565b9150612cb182612c4a565b604082019050919050565b60006020820190508181036000830152612cd581612c99565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612d38602583611f4b565b9150612d4382612cdc565b604082019050919050565b60006020820190508181036000830152612d6781612d2b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612dca602483611f4b565b9150612dd582612d6e565b604082019050919050565b60006020820190508181036000830152612df981612dbd565b9050919050565b6000612e0b82611ffb565b9150612e1683611ffb565b925082821015612e2957612e28612828565b5b828203905092915050565b6000612e3f82611ffb565b9150612e4a83611ffb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e7f57612e7e612828565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612ec0601983611f4b565b9150612ecb82612e8a565b602082019050919050565b60006020820190508181036000830152612eef81612eb3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612f52603283611f4b565b9150612f5d82612ef6565b604082019050919050565b60006020820190508181036000830152612f8181612f45565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fe4602f83611f4b565b9150612fef82612f88565b604082019050919050565b6000602082019050818103600083015261301381612fd7565b9050919050565b60006130268286612bf5565b91506130328285612bf5565b915061303e8284612bf5565b9150819050949350505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613081602083611f4b565b915061308c8261304b565b602082019050919050565b600060208201905081810360008301526130b081613074565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006130ed601c83611f4b565b91506130f8826130b7565b602082019050919050565b6000602082019050818103600083015261311c816130e0565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061317f602e83611f4b565b915061318a82613123565b604082019050919050565b600060208201905081810360008301526131ae81613172565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131da565b61322186836131da565b95508019841693508086168417925050509392505050565b6000819050919050565b600061325e61325961325484611ffb565b613239565b611ffb565b9050919050565b6000819050919050565b61327883613243565b61328c61328482613265565b8484546131e7565b825550505050565b600090565b6132a1613294565b6132ac81848461326f565b505050565b5b818110156132d0576132c5600082613299565b6001810190506132b2565b5050565b601f821115613315576132e6816131b5565b6132ef846131ca565b810160208510156132fe578190505b61331261330a856131ca565b8301826132b1565b50505b505050565b600082821c905092915050565b60006133386000198460080261331a565b1980831691505092915050565b60006133518383613327565b9150826002028217905092915050565b61336a82611f40565b67ffffffffffffffff811115613383576133826121e1565b5b61338d8254612641565b6133988282856132d4565b600060209050601f8311600181146133cb57600084156133b9578287015190505b6133c38582613345565b86555061342b565b601f1984166133d9866131b5565b60005b82811015613401578489015182556001820191506020850194506020810190506133dc565b8683101561341e578489015161341a601f891682613327565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b600061345a82613433565b613464818561343e565b9350613474818560208601611f5c565b61347d81611f8f565b840191505092915050565b600060808201905061349d6000830187612090565b6134aa6020830186612090565b6134b760408301856123ad565b81810360608301526134c9818461344f565b905095945050505050565b6000815190506134e381611eb1565b92915050565b6000602082840312156134ff576134fe611e7b565b5b600061350d848285016134d4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061355082611ffb565b915061355b83611ffb565b92508261356b5761356a613516565b5b828204905092915050565b600061358182611ffb565b915061358c83611ffb565b92508261359c5761359b613516565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f43686565727350616c732f63686565727370616c736f6666696369616c2f6d61696e2f6a736f6e2f68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f43686565727350616c732f63686565727370616c736f6666696369616c2f6d61696e2f6a736f6e2f636f6c6c656374696f6e2e6a736f6ea26469706673582212201884d676731f1903314c2250cb98bdcdc622cf26e7a1a349d16aa35e718111c464736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061012a5760003560e01c80635dd34c4c116100ab578063b88d4fde1161006f578063b88d4fde146103be578063c85d88ec146103e7578063c87b56dd14610410578063e8a3d4851461044d578063e985e9c514610478578063ebf0c717146104b55761012a565b80635dd34c4c146102c75780636352211e146102f057806370a082311461032d57806395d89b411461036a578063a22cb465146103955761012a565b806323b872dd116100f257806323b872dd146102195780633ccfd60b1461024257806342842e0e1461024c5780634918eaa61461027557806350dc46561461029e5761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d4578063232cb9ba146101fd575b600080fd5b34801561013b57600080fd5b5061015660048036038101906101519190611edd565b6104e0565b6040516101639190611f25565b60405180910390f35b34801561017857600080fd5b506101816105c2565b60405161018e9190611fd9565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b99190612031565b610654565b6040516101cb919061209f565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f691906120e6565b6106d9565b005b610217600480360381019061021291906120e6565b6107f0565b005b34801561022557600080fd5b50610240600480360381019061023b9190612126565b610854565b005b61024a6108b4565b005b34801561025857600080fd5b50610273600480360381019061026e9190612126565b610987565b005b34801561028157600080fd5b5061029c60048036038101906102979190612031565b6109a7565b005b3480156102aa57600080fd5b506102c560048036038101906102c091906121af565b610a0b565b005b3480156102d357600080fd5b506102ee60048036038101906102e99190612324565b610a6f565b005b3480156102fc57600080fd5b5061031760048036038101906103129190612031565b610ad7565b604051610324919061209f565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612380565b610b88565b60405161036191906123bc565b60405180910390f35b34801561037657600080fd5b5061037f610c3f565b60405161038c9190611fd9565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190612403565b610cd1565b005b3480156103ca57600080fd5b506103e560048036038101906103e091906124f8565b610ce7565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061257b565b610d49565b005b34801561041c57600080fd5b5061043760048036038101906104329190612031565b610dc0565b6040516104449190611fd9565b60405180910390f35b34801561045957600080fd5b50610462610f11565b60405161046f9190611fd9565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a91906125a8565b610f31565b6040516104ac9190611f25565b60405180910390f35b3480156104c157600080fd5b506104ca610fc5565b6040516104d791906125f7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bb57506105ba82610fe1565b5b9050919050565b6060600080546105d190612641565b80601f01602080910402602001604051908101604052809291908181526020018280546105fd90612641565b801561064a5780601f1061061f5761010080835404028352916020019161064a565b820191906000526020600020905b81548152906001019060200180831161062d57829003601f168201915b5050505050905090565b600061065f8261104b565b61069e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610695906126e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e482610ad7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90612776565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107736110b7565b73ffffffffffffffffffffffffffffffffffffffff1614806107a257506107a18161079c6110b7565b610f31565b5b6107e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d890612808565b60405180910390fd5b6107eb83836110bf565b505050565b80600c546107fe9190612857565b34101561080a57600080fd5b600a54811115801561081e5750600b548110155b61082757600080fd5b60005b8181101561084f5761083b83611178565b508080610847906128b1565b91505061082a565b505050565b61086561085f6110b7565b826111e5565b6108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b9061296b565b60405180910390fd5b6108af8383836112c3565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461090e57600080fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610934906129bc565b60006040518083038185875af1925050503d8060008114610971576040519150601f19603f3d011682016040523d82523d6000602084013e610976565b606091505b505090508061098457600080fd5b50565b6109a283838360405180602001604052806000815250610ce7565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a0157600080fd5b8060098190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a6557600080fd5b80600d8190555050565b610a9f8183604051602001610a849190612a19565b60405160208183030381529060405280519060200120611529565b610aa857600080fd5b60005b600a54811015610ad257610abe83611178565b508080610aca906128b1565b915050610aab565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690612aa6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90612b38565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610c4e90612641565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7a90612641565b8015610cc75780601f10610c9c57610100808354040283529160200191610cc7565b820191906000526020600020905b815481529060010190602001808311610caa57829003601f168201915b5050505050905090565b610ce3610cdc6110b7565b8383611540565b5050565b610cf8610cf26110b7565b836111e5565b610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e9061296b565b60405180910390fd5b610d43848484846116ac565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da357600080fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060610dcb8261104b565b610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190612bca565b60405180910390fd5b6000600660008481526020019081526020016000208054610e2a90612641565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5690612641565b8015610ea35780601f10610e7857610100808354040283529160200191610ea3565b820191906000526020600020905b815481529060010190602001808311610e8657829003601f168201915b505050505090506000610eb4611708565b90506000815103610ec9578192505050610f0c565b600082511115610efe578082604051602001610ee6929190612c26565b60405160208183030381529060405292505050610f0c565b610f078461171f565b925050505b919050565b606060405180608001604052806059815260200161362160599139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661113283610ad7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600e60009054906101000a900460ff1661119357600080fd5b600061119f60076117c6565b905060006111ac826117d4565b90508160095410156111bd57600080fd5b6111c78483611874565b6111d18282611a4d565b6111db6007610fcb565b8192505050919050565b60006111f08261104b565b61122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690612cbc565b60405180910390fd5b600061123a83610ad7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061127c575061127b8185610f31565b5b806112ba57508373ffffffffffffffffffffffffffffffffffffffff166112a284610654565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112e382610ad7565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090612d4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90612de0565b60405180910390fd5b6113b3838383611aba565b6113be6000826110bf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140e9190612e00565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114659190612e34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611524838383611abf565b505050565b600061153883600d5484611ac4565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590612ed6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169f9190611f25565b60405180910390a3505050565b6116b78484846112c3565b6116c384848484611adb565b611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990612f68565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061172a8261104b565b611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090612ffa565b60405180910390fd5b6000611773611708565b9050600081511161179357604051806020016040528060008152506117be565b8061179d84611c62565b6040516020016117ae929190612c26565b6040516020818303038152906040525b915050919050565b600081600001549050919050565b6060600082905060006117e682611c62565b905060006040518060800160405280604a81526020016135d7604a9139905060006040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250905060008284836040516020016118569392919061301a565b60405160208183030381529060405290508095505050505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613097565b60405180910390fd5b6118ec8161104b565b1561192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613103565b60405180910390fd5b61193860008383611aba565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119889190612e34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a4960008383611abf565b5050565b611a568261104b565b611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90613195565b60405180910390fd5b80600660008481526020019081526020016000209081611ab59190613361565b505050565b505050565b505050565b600082611ad18584611dc2565b1490509392505050565b6000611afc8473ffffffffffffffffffffffffffffffffffffffff16611e37565b15611c55578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b256110b7565b8786866040518563ffffffff1660e01b8152600401611b479493929190613488565b6020604051808303816000875af1925050508015611b8357506040513d601f19601f82011682018060405250810190611b8091906134e9565b60015b611c05573d8060008114611bb3576040519150601f19603f3d011682016040523d82523d6000602084013e611bb8565b606091505b506000815103611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490612f68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c5a565b600190505b949350505050565b606060008203611ca9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dbd565b600082905060005b60008214611cdb578080611cc4906128b1565b915050600a82611cd49190613545565b9150611cb1565b60008167ffffffffffffffff811115611cf757611cf66121e1565b5b6040519080825280601f01601f191660200182016040528015611d295781602001600182028036833780820191505090505b5090505b60008514611db657600182611d429190612e00565b9150600a85611d519190613576565b6030611d5d9190612e34565b60f81b818381518110611d7357611d726135a7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611daf9190613545565b9450611d2d565b8093505050505b919050565b60008082905060005b8451811015611e2c576000858281518110611de957611de86135a7565b5b60200260200101519050808311611e0b57611e048382611e5a565b9250611e18565b611e158184611e5a565b92505b508080611e24906128b1565b915050611dcb565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611eba81611e85565b8114611ec557600080fd5b50565b600081359050611ed781611eb1565b92915050565b600060208284031215611ef357611ef2611e7b565b5b6000611f0184828501611ec8565b91505092915050565b60008115159050919050565b611f1f81611f0a565b82525050565b6000602082019050611f3a6000830184611f16565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f7a578082015181840152602081019050611f5f565b83811115611f89576000848401525b50505050565b6000601f19601f8301169050919050565b6000611fab82611f40565b611fb58185611f4b565b9350611fc5818560208601611f5c565b611fce81611f8f565b840191505092915050565b60006020820190508181036000830152611ff38184611fa0565b905092915050565b6000819050919050565b61200e81611ffb565b811461201957600080fd5b50565b60008135905061202b81612005565b92915050565b60006020828403121561204757612046611e7b565b5b60006120558482850161201c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120898261205e565b9050919050565b6120998161207e565b82525050565b60006020820190506120b46000830184612090565b92915050565b6120c38161207e565b81146120ce57600080fd5b50565b6000813590506120e0816120ba565b92915050565b600080604083850312156120fd576120fc611e7b565b5b600061210b858286016120d1565b925050602061211c8582860161201c565b9150509250929050565b60008060006060848603121561213f5761213e611e7b565b5b600061214d868287016120d1565b935050602061215e868287016120d1565b925050604061216f8682870161201c565b9150509250925092565b6000819050919050565b61218c81612179565b811461219757600080fd5b50565b6000813590506121a981612183565b92915050565b6000602082840312156121c5576121c4611e7b565b5b60006121d38482850161219a565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61221982611f8f565b810181811067ffffffffffffffff82111715612238576122376121e1565b5b80604052505050565b600061224b611e71565b90506122578282612210565b919050565b600067ffffffffffffffff821115612277576122766121e1565b5b602082029050602081019050919050565b600080fd5b60006122a061229b8461225c565b612241565b905080838252602082019050602084028301858111156122c3576122c2612288565b5b835b818110156122ec57806122d8888261219a565b8452602084019350506020810190506122c5565b5050509392505050565b600082601f83011261230b5761230a6121dc565b5b813561231b84826020860161228d565b91505092915050565b6000806040838503121561233b5761233a611e7b565b5b6000612349858286016120d1565b925050602083013567ffffffffffffffff81111561236a57612369611e80565b5b612376858286016122f6565b9150509250929050565b60006020828403121561239657612395611e7b565b5b60006123a4848285016120d1565b91505092915050565b6123b681611ffb565b82525050565b60006020820190506123d160008301846123ad565b92915050565b6123e081611f0a565b81146123eb57600080fd5b50565b6000813590506123fd816123d7565b92915050565b6000806040838503121561241a57612419611e7b565b5b6000612428858286016120d1565b9250506020612439858286016123ee565b9150509250929050565b600080fd5b600067ffffffffffffffff821115612463576124626121e1565b5b61246c82611f8f565b9050602081019050919050565b82818337600083830152505050565b600061249b61249684612448565b612241565b9050828152602081018484840111156124b7576124b6612443565b5b6124c2848285612479565b509392505050565b600082601f8301126124df576124de6121dc565b5b81356124ef848260208601612488565b91505092915050565b6000806000806080858703121561251257612511611e7b565b5b6000612520878288016120d1565b9450506020612531878288016120d1565b93505060406125428782880161201c565b925050606085013567ffffffffffffffff81111561256357612562611e80565b5b61256f878288016124ca565b91505092959194509250565b60006020828403121561259157612590611e7b565b5b600061259f848285016123ee565b91505092915050565b600080604083850312156125bf576125be611e7b565b5b60006125cd858286016120d1565b92505060206125de858286016120d1565b9150509250929050565b6125f181612179565b82525050565b600060208201905061260c60008301846125e8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061265957607f821691505b60208210810361266c5761266b612612565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006126ce602c83611f4b565b91506126d982612672565b604082019050919050565b600060208201905081810360008301526126fd816126c1565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612760602183611f4b565b915061276b82612704565b604082019050919050565b6000602082019050818103600083015261278f81612753565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006127f2603883611f4b565b91506127fd82612796565b604082019050919050565b60006020820190508181036000830152612821816127e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061286282611ffb565b915061286d83611ffb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128a6576128a5612828565b5b828202905092915050565b60006128bc82611ffb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128ee576128ed612828565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612955603183611f4b565b9150612960826128f9565b604082019050919050565b6000602082019050818103600083015261298481612948565b9050919050565b600081905092915050565b50565b60006129a660008361298b565b91506129b182612996565b600082019050919050565b60006129c782612999565b9150819050919050565b60008160601b9050919050565b60006129e9826129d1565b9050919050565b60006129fb826129de565b9050919050565b612a13612a0e8261207e565b6129f0565b82525050565b6000612a258284612a02565b60148201915081905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612a90602983611f4b565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612b22602a83611f4b565b9150612b2d82612ac6565b604082019050919050565b60006020820190508181036000830152612b5181612b15565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000612bb4603183611f4b565b9150612bbf82612b58565b604082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b600081905092915050565b6000612c0082611f40565b612c0a8185612bea565b9350612c1a818560208601611f5c565b80840191505092915050565b6000612c328285612bf5565b9150612c3e8284612bf5565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612ca6602c83611f4b565b9150612cb182612c4a565b604082019050919050565b60006020820190508181036000830152612cd581612c99565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612d38602583611f4b565b9150612d4382612cdc565b604082019050919050565b60006020820190508181036000830152612d6781612d2b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612dca602483611f4b565b9150612dd582612d6e565b604082019050919050565b60006020820190508181036000830152612df981612dbd565b9050919050565b6000612e0b82611ffb565b9150612e1683611ffb565b925082821015612e2957612e28612828565b5b828203905092915050565b6000612e3f82611ffb565b9150612e4a83611ffb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e7f57612e7e612828565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612ec0601983611f4b565b9150612ecb82612e8a565b602082019050919050565b60006020820190508181036000830152612eef81612eb3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612f52603283611f4b565b9150612f5d82612ef6565b604082019050919050565b60006020820190508181036000830152612f8181612f45565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fe4602f83611f4b565b9150612fef82612f88565b604082019050919050565b6000602082019050818103600083015261301381612fd7565b9050919050565b60006130268286612bf5565b91506130328285612bf5565b915061303e8284612bf5565b9150819050949350505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613081602083611f4b565b915061308c8261304b565b602082019050919050565b600060208201905081810360008301526130b081613074565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006130ed601c83611f4b565b91506130f8826130b7565b602082019050919050565b6000602082019050818103600083015261311c816130e0565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061317f602e83611f4b565b915061318a82613123565b604082019050919050565b600060208201905081810360008301526131ae81613172565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131da565b61322186836131da565b95508019841693508086168417925050509392505050565b6000819050919050565b600061325e61325961325484611ffb565b613239565b611ffb565b9050919050565b6000819050919050565b61327883613243565b61328c61328482613265565b8484546131e7565b825550505050565b600090565b6132a1613294565b6132ac81848461326f565b505050565b5b818110156132d0576132c5600082613299565b6001810190506132b2565b5050565b601f821115613315576132e6816131b5565b6132ef846131ca565b810160208510156132fe578190505b61331261330a856131ca565b8301826132b1565b50505b505050565b600082821c905092915050565b60006133386000198460080261331a565b1980831691505092915050565b60006133518383613327565b9150826002028217905092915050565b61336a82611f40565b67ffffffffffffffff811115613383576133826121e1565b5b61338d8254612641565b6133988282856132d4565b600060209050601f8311600181146133cb57600084156133b9578287015190505b6133c38582613345565b86555061342b565b601f1984166133d9866131b5565b60005b82811015613401578489015182556001820191506020850194506020810190506133dc565b8683101561341e578489015161341a601f891682613327565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b600061345a82613433565b613464818561343e565b9350613474818560208601611f5c565b61347d81611f8f565b840191505092915050565b600060808201905061349d6000830187612090565b6134aa6020830186612090565b6134b760408301856123ad565b81810360608301526134c9818461344f565b905095945050505050565b6000815190506134e381611eb1565b92915050565b6000602082840312156134ff576134fe611e7b565b5b600061350d848285016134d4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061355082611ffb565b915061355b83611ffb565b92508261356b5761356a613516565b5b828204905092915050565b600061358182611ffb565b915061358c83611ffb565b92508261359c5761359b613516565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f43686565727350616c732f63686565727370616c736f6666696369616c2f6d61696e2f6a736f6e2f68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f43686565727350616c732f63686565727370616c736f6666696369616c2f6d61696e2f6a736f6e2f636f6c6c656374696f6e2e6a736f6ea26469706673582212201884d676731f1903314c2250cb98bdcdc622cf26e7a1a349d16aa35e718111c464736f6c634300080f0033

Loading...
Loading
Loading...
Loading
[ 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.