ETH Price: $2,988.31 (-2.06%)
Gas: 2 Gwei

Token

KuKu Club (KuKu)
 

Overview

Max Total Supply

5,852 KuKu

Holders

1,055

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 KuKu
0x6e0ce278337eb1bd19ab28733c2b8b531b06cab7
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:
KuKu

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

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

import './Ownable.sol';
import './ERC721A.sol';
import './MerkleProof.sol';

contract KuKu is ERC721A, Ownable {

    using Strings for uint256;

    uint constant public maxTotal = 10000;
    uint constant public maxMint = 5;

    uint public mintTime;
    bool public preMintOpen;
    bool public publicMintOpen;
    bool public blindBoxOpen;
    address public withdrawAddress;
    string public baseTokenURI;
    string public blindTokenURI;
    bytes32 public merkleRoot;
    mapping(address => uint count) public mintCount;
    
    constructor(uint _mintTime, string memory _baseTokenURI) ERC721A("KuKu Club", "KuKu")  {
        mintTime = _mintTime;
        baseTokenURI = _baseTokenURI;
        withdrawAddress = msg.sender;
    }

    function preMint(uint256 num, bytes32[] calldata _proof) external {
        uint256 supply = totalSupply();
        require(verify(_proof), "address is not on the whitelist");
        require(preMintOpen, "pre mint not open");
        require(num <= maxMint, "You can adopt a maximum of 5 KuKu");
        require(supply + num <= maxTotal, "Exceeds maximum KuKu supply");
        require(block.timestamp >= mintTime, "no mint time");
        require(mintCount[tx.origin] + num <= 5, "You can adopt a maximum of 5 KuKu");

        mintCount[tx.origin] += num;
        _safeMint(msg.sender, num);
    }

    function publicMint(uint256 num) external {
        uint256 supply = totalSupply();
        require(publicMintOpen, "public mint not open");
        require(num <= maxMint, "You can adopt a maximum of 5 KuKu");
        require(supply + num <= maxTotal, "Exceeds maximum KuKu supply");
        require(block.timestamp >= mintTime, "You can adopt a maximum of 5 KuKu");
        require(mintCount[tx.origin] + num <= 5, "You can adopt a maximum of 5 KuKu");

        mintCount[tx.origin] += num;
        _safeMint(msg.sender, num);
    }

    function setWithdrawAddress(address _withdrawAddress) external onlyOwner {
        withdrawAddress = _withdrawAddress;
    }

    function setPreMint() external onlyOwner {
        preMintOpen = !preMintOpen;
    }

    function setPublicMint() external onlyOwner {
        publicMintOpen = !publicMintOpen;
    }

    function setBlindBoxOpened() external onlyOwner {
        blindBoxOpen = !blindBoxOpen;
    }

    function setMintTime(uint256 _mintTime) external onlyOwner {
        mintTime = _mintTime;
    }

    function setBaseURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setBlindTokenURI(string memory _blindTokenURI) external onlyOwner {
        blindTokenURI = _blindTokenURI;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function withdrawAll() external onlyOwner {
        (bool success, ) = withdrawAddress.call{value : address(this).balance}("");
        require(success, "withdraw failed");
    }

    function verify(bytes32[] calldata _merkleProof) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    function walletOfOwner(address owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokensId = new uint256[](tokenCount);

        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokensId;
    }

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

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (blindBoxOpen) {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
        } else {
            return blindTokenURI;
        }
    }

}

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

pragma solidity 0.8.19;

/**
 * @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 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity 0.8.19;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './IERC721Enumerable.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
    unchecked {
        for (uint256 i; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
    }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
        interfaceId == type(IERC721Enumerable).interfaceId ||
        super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

    unchecked {
        for (uint256 curr = tokenId; curr >= 0; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }
    }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
    unchecked {
        _addressData[to].balance += uint128(quantity);
        _addressData[to].numberMinted += uint128(quantity);

        _ownerships[startTokenId].addr = to;
        _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

        uint256 updatedIndex = startTokenId;

        for (uint256 i; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            if (safe) {
                require(
                    _checkOnERC721Received(address(0), to, updatedIndex, _data),
                    'ERC721A: transfer to non ERC721Receiver implementer'
                );
            }

            updatedIndex++;
        }

        currentIndex = updatedIndex;
    }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
    unchecked {
        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;

        _ownerships[tokenId].addr = to;
        _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId].addr = prevOwnership.addr;
                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
            }
        }
    }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 4 of 13 : Ownable.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

contract Ownable {

    address _owner;

    constructor() {
        _owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == _owner);
        _;
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        _owner = newOwner;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

}

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

pragma solidity 0.8.19;

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

pragma solidity 0.8.19;

/**
 * @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 7 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity 0.8.19;

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

pragma solidity 0.8.19;

/**
 * @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 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity 0.8.19;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity 0.8.19;

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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity 0.8.19;

/**
 * @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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity 0.8.19;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

interface IERC165 {
    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":[{"internalType":"uint256","name":"_mintTime","type":"uint256"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blindBoxOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blindTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setBlindBoxOpened","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindTokenURI","type":"string"}],"name":"setBlindTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintTime","type":"uint256"}],"name":"setMintTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawAddress","type":"address"}],"name":"setWithdrawAddress","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200531f3803806200531f83398181016040528101906200003791906200033a565b6040518060400160405280600981526020017f4b754b7520436c756200000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b754b75000000000000000000000000000000000000000000000000000000008152508160019081620000b49190620005e1565b508060029081620000c69190620005e1565b50505033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160088190555080600a9081620001229190620005e1565b5033600960036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620006c8565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620001958162000180565b8114620001a157600080fd5b50565b600081519050620001b5816200018a565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200021082620001c5565b810181811067ffffffffffffffff82111715620002325762000231620001d6565b5b80604052505050565b6000620002476200016c565b905062000255828262000205565b919050565b600067ffffffffffffffff821115620002785762000277620001d6565b5b6200028382620001c5565b9050602081019050919050565b60005b83811015620002b057808201518184015260208101905062000293565b60008484015250505050565b6000620002d3620002cd846200025a565b6200023b565b905082815260208101848484011115620002f257620002f1620001c0565b5b620002ff84828562000290565b509392505050565b600082601f8301126200031f576200031e620001bb565b5b815162000331848260208601620002bc565b91505092915050565b6000806040838503121562000354576200035362000176565b5b60006200036485828601620001a4565b925050602083015167ffffffffffffffff8111156200038857620003876200017b565b5b620003968582860162000307565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f357607f821691505b602082108103620004095762000408620003ab565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000434565b6200047f868362000434565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620004c2620004bc620004b68462000180565b62000497565b62000180565b9050919050565b6000819050919050565b620004de83620004a1565b620004f6620004ed82620004c9565b84845462000441565b825550505050565b600090565b6200050d620004fe565b6200051a818484620004d3565b505050565b5b8181101562000542576200053660008262000503565b60018101905062000520565b5050565b601f82111562000591576200055b816200040f565b620005668462000424565b8101602085101562000576578190505b6200058e620005858562000424565b8301826200051f565b50505b505050565b600082821c905092915050565b6000620005b66000198460080262000596565b1980831691505092915050565b6000620005d18383620005a3565b9150826002028217905092915050565b620005ec82620003a0565b67ffffffffffffffff811115620006085762000607620001d6565b5b620006148254620003da565b6200062182828562000546565b600060209050601f83116001811462000659576000841562000644578287015190505b620006508582620005c3565b865550620006c0565b601f19841662000669866200040f565b60005b8281101562000693578489015182556001820191506020850194506020810190506200066c565b86831015620006b35784890151620006af601f891682620005a3565b8355505b6001600288020188555050505b505050505050565b614c4780620006d86000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c8063648e3c2611610146578063b1c93499116100c3578063dc2295d411610087578063dc2295d4146106b2578063dda52d53146106ce578063e985e9c5146106ea578063ed9ec8881461071a578063f2fde38b1461074a578063f8e4dc161461076657610253565b8063b1c934991461060c578063b88d4fde1461062a578063bcc9ca5b14610646578063c87b56dd14610664578063d547cfb71461069457610253565b8063853828b61161010a578063853828b61461058c57806386478122146105965780638da5cb5b146105b457806395d89b41146105d2578063a22cb465146105f057610253565b8063648e3c26146104fa57806370a08231146105185780637501f741146105485780637cb647591461056657806380f0839e1461058257610253565b80632db11544116101d4578063438b630011610198578063438b6300146104325780634f6ccce71461046257806355f804b3146104925780635a546223146104ae5780636352211e146104ca57610253565b80632db11544146103905780632eb4a7ab146103ac5780632f745c59146103ca5780633ab1a494146103fa57806342842e0e1461041657610253565b80630b4d93711161021b5780630b4d9371146102fc5780631581b6001461031a57806318160ddd1461033857806323b872dd146103565780632ae0846d1461037257610253565b806301ffc9a71461025857806302456aa21461028857806306fdde0314610292578063081812fc146102b0578063095ea7b3146102e0575b600080fd5b610272600480360381019061026d919061309d565b610770565b60405161027f91906130e5565b60405180910390f35b6102906108ba565b005b61029a610940565b6040516102a79190613190565b60405180910390f35b6102ca60048036038101906102c591906131e8565b6109d2565b6040516102d79190613256565b60405180910390f35b6102fa60048036038101906102f5919061329d565b610a57565b005b610304610b6f565b60405161031191906130e5565b60405180910390f35b610322610b82565b60405161032f9190613256565b60405180910390f35b610340610ba8565b60405161034d91906132ec565b60405180910390f35b610370600480360381019061036b9190613307565b610bb1565b005b61037a610bc1565b6040516103879190613190565b60405180910390f35b6103aa60048036038101906103a591906131e8565b610c4f565b005b6103b4610e75565b6040516103c19190613373565b60405180910390f35b6103e460048036038101906103df919061329d565b610e7b565b6040516103f191906132ec565b60405180910390f35b610414600480360381019061040f919061338e565b61106b565b005b610430600480360381019061042b9190613307565b611109565b005b61044c6004803603810190610447919061338e565b611129565b6040516104599190613479565b60405180910390f35b61047c600480360381019061047791906131e8565b6111d7565b60405161048991906132ec565b60405180910390f35b6104ac60048036038101906104a791906135d0565b61122a565b005b6104c860048036038101906104c39190613679565b611297565b005b6104e460048036038101906104df91906131e8565b611508565b6040516104f19190613256565b60405180910390f35b61050261151e565b60405161050f91906132ec565b60405180910390f35b610532600480360381019061052d919061338e565b611524565b60405161053f91906132ec565b60405180910390f35b61055061160c565b60405161055d91906132ec565b60405180910390f35b610580600480360381019061057b9190613705565b611611565b005b61058a611675565b005b6105946116fb565b005b61059e611826565b6040516105ab91906132ec565b60405180910390f35b6105bc61182c565b6040516105c99190613256565b60405180910390f35b6105da611856565b6040516105e79190613190565b60405180910390f35b61060a6004803603810190610605919061375e565b6118e8565b005b610614611a68565b60405161062191906130e5565b60405180910390f35b610644600480360381019061063f919061383f565b611a7b565b005b61064e611ad7565b60405161065b91906130e5565b60405180910390f35b61067e600480360381019061067991906131e8565b611aea565b60405161068b9190613190565b60405180910390f35b61069c611c39565b6040516106a99190613190565b60405180910390f35b6106cc60048036038101906106c791906135d0565b611cc7565b005b6106e860048036038101906106e391906131e8565b611d34565b005b61070460048036038101906106ff91906138c2565b611d98565b60405161071191906130e5565b60405180910390f35b610734600480360381019061072f919061338e565b611e2c565b60405161074191906132ec565b60405180910390f35b610764600480360381019061075f919061338e565b611e44565b005b61076e611eaa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b357506108b282611f30565b5b9050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461091457600080fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b60606001805461094f90613931565b80601f016020809104026020016040519081016040528092919081815260200182805461097b90613931565b80156109c85780601f1061099d576101008083540402835291602001916109c8565b820191906000526020600020905b8154815290600101906020018083116109ab57829003601f168201915b5050505050905090565b60006109dd82611f9a565b610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a13906139d4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6282611508565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613a66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af1611fa7565b73ffffffffffffffffffffffffffffffffffffffff161480610b205750610b1f81610b1a611fa7565b611d98565b5b610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690613af8565b60405180910390fd5b610b6a838383611faf565b505050565b600960029054906101000a900460ff1681565b600960039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054905090565b610bbc838383612061565b505050565b600b8054610bce90613931565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfa90613931565b8015610c475780601f10610c1c57610100808354040283529160200191610c47565b820191906000526020600020905b815481529060010190602001808311610c2a57829003601f168201915b505050505081565b6000610c59610ba8565b9050600960019054906101000a900460ff16610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613b64565b60405180910390fd5b6005821115610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590613bf6565b60405180910390fd5b6127108282610cfd9190613c45565b1115610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590613cc5565b60405180910390fd5b600854421015610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90613bf6565b60405180910390fd5b600582600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dd09190613c45565b1115610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613bf6565b60405180910390fd5b81600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e609190613c45565b92505081905550610e71338361259f565b5050565b600c5481565b6000610e8683611524565b8210610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90613d57565b60405180910390fd5b6000610ed1610ba8565b905060008060005b83811015611029576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fcb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101b57868403611012578195505050505050611065565b83806001019450505b508080600101915050610ed9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90613de9565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110c557600080fd5b80600960036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61112483838360405180602001604052806000815250611a7b565b505050565b6060600061113683611524565b905060008167ffffffffffffffff811115611154576111536134a5565b5b6040519080825280602002602001820160405280156111825781602001602082028036833780820191505090505b50905060005b828110156111cc5761119a8582610e7b565b8282815181106111ad576111ac613e09565b5b60200260200101818152505080806111c490613e38565b915050611188565b508092505050919050565b60006111e1610ba8565b8210611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613ef2565b60405180910390fd5b819050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461128457600080fd5b80600a908161129391906140be565b5050565b60006112a1610ba8565b90506112ad83836125bd565b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906141dc565b60405180910390fd5b600960009054906101000a900460ff1661133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290614248565b60405180910390fd5b600584111561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613bf6565b60405180910390fd5b612710848261138e9190613c45565b11156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690613cc5565b60405180910390fd5b600854421015611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906142b4565b60405180910390fd5b600584600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114619190613c45565b11156114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990613bf6565b60405180910390fd5b83600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114f19190613c45565b92505081905550611502338561259f565b50505050565b600061151382612640565b600001519050919050565b61271081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90614346565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600581565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461166b57600080fd5b80600c8190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116cf57600080fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461175557600080fd5b6000600960039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161179d90614397565b60006040518083038185875af1925050503d80600081146117da576040519150601f19603f3d011682016040523d82523d6000602084013e6117df565b606091505b5050905080611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906143f8565b60405180910390fd5b50565b60085481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461186590613931565b80601f016020809104026020016040519081016040528092919081815260200182805461189190613931565b80156118de5780601f106118b3576101008083540402835291602001916118de565b820191906000526020600020905b8154815290600101906020018083116118c157829003601f168201915b5050505050905090565b6118f0611fa7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490614464565b60405180910390fd5b806006600061196a611fa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a17611fa7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a5c91906130e5565b60405180910390a35050565b600960009054906101000a900460ff1681565b611a86848484612061565b611a92848484846127da565b611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906144f6565b60405180910390fd5b50505050565b600960019054906101000a900460ff1681565b6060611af582611f9a565b611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90614588565b60405180910390fd5b600960029054906101000a900460ff1615611ba6576000611b53612961565b90506000815103611b735760405180602001604052806000815250611b9e565b80611b7d846129f3565b604051602001611b8e9291906145e4565b6040516020818303038152906040525b915050611c34565b600b8054611bb390613931565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdf90613931565b8015611c2c5780601f10611c0157610100808354040283529160200191611c2c565b820191906000526020600020905b815481529060010190602001808311611c0f57829003601f168201915b505050505090505b919050565b600a8054611c4690613931565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7290613931565b8015611cbf5780601f10611c9457610100808354040283529160200191611cbf565b820191906000526020600020905b815481529060010190602001808311611ca257829003601f168201915b505050505081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d2157600080fd5b80600b9081611d3091906140be565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8e57600080fd5b8060088190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e9e57600080fd5b611ea781612b53565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f0457600080fd5b600960029054906101000a900460ff1615600960026101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061206c82612640565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612093611fa7565b73ffffffffffffffffffffffffffffffffffffffff1614806120ef57506120b8611fa7565b73ffffffffffffffffffffffffffffffffffffffff166120d7846109d2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061210b575061210a8260000151612105611fa7565b611d98565b5b90508061214d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121449061467a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b69061470c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361222e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122259061479e565b60405180910390fd5b61223b8585856001612b97565b61224b6000848460000151611faf565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361252f5761248e81611f9a565b1561252e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125988585856001612b9d565b5050505050565b6125b9828260405180602001604052806000815250612ba3565b5050565b600080336040516020016125d19190614806565b604051602081830303815290604052805190602001209050612637848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612bb5565b91505092915050565b612648612ff7565b61265182611f9a565b612690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268790614893565b60405180910390fd5b60008290505b60008110612799576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461278a5780925050506127d5565b50808060019003915050612696565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90614925565b60405180910390fd5b919050565b60006127fb8473ffffffffffffffffffffffffffffffffffffffff16612bcc565b15612954578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612824611fa7565b8786866040518563ffffffff1660e01b8152600401612846949392919061499a565b6020604051808303816000875af192505050801561288257506040513d601f19601f8201168201806040525081019061287f91906149fb565b60015b612904573d80600081146128b2576040519150601f19603f3d011682016040523d82523d6000602084013e6128b7565b606091505b5060008151036128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f3906144f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612959565b600190505b949350505050565b6060600a805461297090613931565b80601f016020809104026020016040519081016040528092919081815260200182805461299c90613931565b80156129e95780601f106129be576101008083540402835291602001916129e9565b820191906000526020600020905b8154815290600101906020018083116129cc57829003601f168201915b5050505050905090565b606060008203612a3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b4e565b600082905060005b60008214612a6c578080612a5590613e38565b915050600a82612a659190614a57565b9150612a42565b60008167ffffffffffffffff811115612a8857612a876134a5565b5b6040519080825280601f01601f191660200182016040528015612aba5781602001600182028036833780820191505090505b5090505b60008514612b4757600182612ad39190614a88565b9150600a85612ae29190614abc565b6030612aee9190613c45565b60f81b818381518110612b0457612b03613e09565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b409190614a57565b9450612abe565b8093505050505b919050565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b50505050565b50505050565b612bb08383836001612bef565b505050565b600082612bc28584612f6b565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5b90614b5f565b60405180910390fd5b60008403612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e90614bf1565b60405180910390fd5b612cb46000868387612b97565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612f4e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612f3957612ef960008884886127da565b612f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2f906144f6565b60405180910390fd5b5b81806001019250508080600101915050612e82565b508060008190555050612f646000868387612b9d565b5050505050565b60008082905060005b8451811015612fd5576000858281518110612f9257612f91613e09565b5b60200260200101519050808311612fb457612fad8382612fe0565b9250612fc1565b612fbe8184612fe0565b92505b508080612fcd90613e38565b915050612f74565b508091505092915050565b600082600052816020526040600020905092915050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61307a81613045565b811461308557600080fd5b50565b60008135905061309781613071565b92915050565b6000602082840312156130b3576130b261303b565b5b60006130c184828501613088565b91505092915050565b60008115159050919050565b6130df816130ca565b82525050565b60006020820190506130fa60008301846130d6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561313a57808201518184015260208101905061311f565b60008484015250505050565b6000601f19601f8301169050919050565b600061316282613100565b61316c818561310b565b935061317c81856020860161311c565b61318581613146565b840191505092915050565b600060208201905081810360008301526131aa8184613157565b905092915050565b6000819050919050565b6131c5816131b2565b81146131d057600080fd5b50565b6000813590506131e2816131bc565b92915050565b6000602082840312156131fe576131fd61303b565b5b600061320c848285016131d3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061324082613215565b9050919050565b61325081613235565b82525050565b600060208201905061326b6000830184613247565b92915050565b61327a81613235565b811461328557600080fd5b50565b60008135905061329781613271565b92915050565b600080604083850312156132b4576132b361303b565b5b60006132c285828601613288565b92505060206132d3858286016131d3565b9150509250929050565b6132e6816131b2565b82525050565b600060208201905061330160008301846132dd565b92915050565b6000806000606084860312156133205761331f61303b565b5b600061332e86828701613288565b935050602061333f86828701613288565b9250506040613350868287016131d3565b9150509250925092565b6000819050919050565b61336d8161335a565b82525050565b60006020820190506133886000830184613364565b92915050565b6000602082840312156133a4576133a361303b565b5b60006133b284828501613288565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133f0816131b2565b82525050565b600061340283836133e7565b60208301905092915050565b6000602082019050919050565b6000613426826133bb565b61343081856133c6565b935061343b836133d7565b8060005b8381101561346c57815161345388826133f6565b975061345e8361340e565b92505060018101905061343f565b5085935050505092915050565b60006020820190508181036000830152613493818461341b565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134dd82613146565b810181811067ffffffffffffffff821117156134fc576134fb6134a5565b5b80604052505050565b600061350f613031565b905061351b82826134d4565b919050565b600067ffffffffffffffff82111561353b5761353a6134a5565b5b61354482613146565b9050602081019050919050565b82818337600083830152505050565b600061357361356e84613520565b613505565b90508281526020810184848401111561358f5761358e6134a0565b5b61359a848285613551565b509392505050565b600082601f8301126135b7576135b661349b565b5b81356135c7848260208601613560565b91505092915050565b6000602082840312156135e6576135e561303b565b5b600082013567ffffffffffffffff81111561360457613603613040565b5b613610848285016135a2565b91505092915050565b600080fd5b600080fd5b60008083601f8401126136395761363861349b565b5b8235905067ffffffffffffffff81111561365657613655613619565b5b6020830191508360208202830111156136725761367161361e565b5b9250929050565b6000806000604084860312156136925761369161303b565b5b60006136a0868287016131d3565b935050602084013567ffffffffffffffff8111156136c1576136c0613040565b5b6136cd86828701613623565b92509250509250925092565b6136e28161335a565b81146136ed57600080fd5b50565b6000813590506136ff816136d9565b92915050565b60006020828403121561371b5761371a61303b565b5b6000613729848285016136f0565b91505092915050565b61373b816130ca565b811461374657600080fd5b50565b60008135905061375881613732565b92915050565b600080604083850312156137755761377461303b565b5b600061378385828601613288565b925050602061379485828601613749565b9150509250929050565b600067ffffffffffffffff8211156137b9576137b86134a5565b5b6137c282613146565b9050602081019050919050565b60006137e26137dd8461379e565b613505565b9050828152602081018484840111156137fe576137fd6134a0565b5b613809848285613551565b509392505050565b600082601f8301126138265761382561349b565b5b81356138368482602086016137cf565b91505092915050565b600080600080608085870312156138595761385861303b565b5b600061386787828801613288565b945050602061387887828801613288565b9350506040613889878288016131d3565b925050606085013567ffffffffffffffff8111156138aa576138a9613040565b5b6138b687828801613811565b91505092959194509250565b600080604083850312156138d9576138d861303b565b5b60006138e785828601613288565b92505060206138f885828601613288565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061394957607f821691505b60208210810361395c5761395b613902565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006139be602d8361310b565b91506139c982613962565b604082019050919050565b600060208201905081810360008301526139ed816139b1565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a5060228361310b565b9150613a5b826139f4565b604082019050919050565b60006020820190508181036000830152613a7f81613a43565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613ae260398361310b565b9150613aed82613a86565b604082019050919050565b60006020820190508181036000830152613b1181613ad5565b9050919050565b7f7075626c6963206d696e74206e6f74206f70656e000000000000000000000000600082015250565b6000613b4e60148361310b565b9150613b5982613b18565b602082019050919050565b60006020820190508181036000830152613b7d81613b41565b9050919050565b7f596f752063616e2061646f70742061206d6178696d756d206f662035204b754b60008201527f7500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613be060218361310b565b9150613beb82613b84565b604082019050919050565b60006020820190508181036000830152613c0f81613bd3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c50826131b2565b9150613c5b836131b2565b9250828201905080821115613c7357613c72613c16565b5b92915050565b7f45786365656473206d6178696d756d204b754b7520737570706c790000000000600082015250565b6000613caf601b8361310b565b9150613cba82613c79565b602082019050919050565b60006020820190508181036000830152613cde81613ca2565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4160228361310b565b9150613d4c82613ce5565b604082019050919050565b60006020820190508181036000830152613d7081613d34565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613dd3602e8361310b565b9150613dde82613d77565b604082019050919050565b60006020820190508181036000830152613e0281613dc6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613e43826131b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e7557613e74613c16565b5b600182019050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613edc60238361310b565b9150613ee782613e80565b604082019050919050565b60006020820190508181036000830152613f0b81613ecf565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f37565b613f7e8683613f37565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613fbb613fb6613fb1846131b2565b613f96565b6131b2565b9050919050565b6000819050919050565b613fd583613fa0565b613fe9613fe182613fc2565b848454613f44565b825550505050565b600090565b613ffe613ff1565b614009818484613fcc565b505050565b5b8181101561402d57614022600082613ff6565b60018101905061400f565b5050565b601f8211156140725761404381613f12565b61404c84613f27565b8101602085101561405b578190505b61406f61406785613f27565b83018261400e565b50505b505050565b600082821c905092915050565b600061409560001984600802614077565b1980831691505092915050565b60006140ae8383614084565b9150826002028217905092915050565b6140c782613100565b67ffffffffffffffff8111156140e0576140df6134a5565b5b6140ea8254613931565b6140f5828285614031565b600060209050601f8311600181146141285760008415614116578287015190505b61412085826140a2565b865550614188565b601f19841661413686613f12565b60005b8281101561415e57848901518255600182019150602085019450602081019050614139565b8683101561417b5784890151614177601f891682614084565b8355505b6001600288020188555050505b505050505050565b7f61646472657373206973206e6f74206f6e207468652077686974656c69737400600082015250565b60006141c6601f8361310b565b91506141d182614190565b602082019050919050565b600060208201905081810360008301526141f5816141b9565b9050919050565b7f707265206d696e74206e6f74206f70656e000000000000000000000000000000600082015250565b600061423260118361310b565b915061423d826141fc565b602082019050919050565b6000602082019050818103600083015261426181614225565b9050919050565b7f6e6f206d696e742074696d650000000000000000000000000000000000000000600082015250565b600061429e600c8361310b565b91506142a982614268565b602082019050919050565b600060208201905081810360008301526142cd81614291565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614330602b8361310b565b915061433b826142d4565b604082019050919050565b6000602082019050818103600083015261435f81614323565b9050919050565b600081905092915050565b50565b6000614381600083614366565b915061438c82614371565b600082019050919050565b60006143a282614374565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b60006143e2600f8361310b565b91506143ed826143ac565b602082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061444e601a8361310b565b915061445982614418565b602082019050919050565b6000602082019050818103600083015261447d81614441565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006144e060338361310b565b91506144eb82614484565b604082019050919050565b6000602082019050818103600083015261450f816144d3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614572602f8361310b565b915061457d82614516565b604082019050919050565b600060208201905081810360008301526145a181614565565b9050919050565b600081905092915050565b60006145be82613100565b6145c881856145a8565b93506145d881856020860161311c565b80840191505092915050565b60006145f082856145b3565b91506145fc82846145b3565b91508190509392505050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061466460328361310b565b915061466f82614608565b604082019050919050565b6000602082019050818103600083015261469381614657565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006146f660268361310b565b91506147018261469a565b604082019050919050565b60006020820190508181036000830152614725816146e9565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061478860258361310b565b91506147938261472c565b604082019050919050565b600060208201905081810360008301526147b78161477b565b9050919050565b60008160601b9050919050565b60006147d6826147be565b9050919050565b60006147e8826147cb565b9050919050565b6148006147fb82613235565b6147dd565b82525050565b600061481282846147ef565b60148201915081905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061487d602a8361310b565b915061488882614821565b604082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061490f602f8361310b565b915061491a826148b3565b604082019050919050565b6000602082019050818103600083015261493e81614902565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061496c82614945565b6149768185614950565b935061498681856020860161311c565b61498f81613146565b840191505092915050565b60006080820190506149af6000830187613247565b6149bc6020830186613247565b6149c960408301856132dd565b81810360608301526149db8184614961565b905095945050505050565b6000815190506149f581613071565b92915050565b600060208284031215614a1157614a1061303b565b5b6000614a1f848285016149e6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a62826131b2565b9150614a6d836131b2565b925082614a7d57614a7c614a28565b5b828204905092915050565b6000614a93826131b2565b9150614a9e836131b2565b9250828203905081811115614ab657614ab5613c16565b5b92915050565b6000614ac7826131b2565b9150614ad2836131b2565b925082614ae257614ae1614a28565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b4960218361310b565b9150614b5482614aed565b604082019050919050565b60006020820190508181036000830152614b7881614b3c565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614bdb60288361310b565b9150614be682614b7f565b604082019050919050565b60006020820190508181036000830152614c0a81614bce565b905091905056fea2646970667358221220698695b10792c7c65d764fbf81fb29e11873c1611ffe13c2117b2c9233a32c1164736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f6b756b756572632e636f2f626c696e640000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102535760003560e01c8063648e3c2611610146578063b1c93499116100c3578063dc2295d411610087578063dc2295d4146106b2578063dda52d53146106ce578063e985e9c5146106ea578063ed9ec8881461071a578063f2fde38b1461074a578063f8e4dc161461076657610253565b8063b1c934991461060c578063b88d4fde1461062a578063bcc9ca5b14610646578063c87b56dd14610664578063d547cfb71461069457610253565b8063853828b61161010a578063853828b61461058c57806386478122146105965780638da5cb5b146105b457806395d89b41146105d2578063a22cb465146105f057610253565b8063648e3c26146104fa57806370a08231146105185780637501f741146105485780637cb647591461056657806380f0839e1461058257610253565b80632db11544116101d4578063438b630011610198578063438b6300146104325780634f6ccce71461046257806355f804b3146104925780635a546223146104ae5780636352211e146104ca57610253565b80632db11544146103905780632eb4a7ab146103ac5780632f745c59146103ca5780633ab1a494146103fa57806342842e0e1461041657610253565b80630b4d93711161021b5780630b4d9371146102fc5780631581b6001461031a57806318160ddd1461033857806323b872dd146103565780632ae0846d1461037257610253565b806301ffc9a71461025857806302456aa21461028857806306fdde0314610292578063081812fc146102b0578063095ea7b3146102e0575b600080fd5b610272600480360381019061026d919061309d565b610770565b60405161027f91906130e5565b60405180910390f35b6102906108ba565b005b61029a610940565b6040516102a79190613190565b60405180910390f35b6102ca60048036038101906102c591906131e8565b6109d2565b6040516102d79190613256565b60405180910390f35b6102fa60048036038101906102f5919061329d565b610a57565b005b610304610b6f565b60405161031191906130e5565b60405180910390f35b610322610b82565b60405161032f9190613256565b60405180910390f35b610340610ba8565b60405161034d91906132ec565b60405180910390f35b610370600480360381019061036b9190613307565b610bb1565b005b61037a610bc1565b6040516103879190613190565b60405180910390f35b6103aa60048036038101906103a591906131e8565b610c4f565b005b6103b4610e75565b6040516103c19190613373565b60405180910390f35b6103e460048036038101906103df919061329d565b610e7b565b6040516103f191906132ec565b60405180910390f35b610414600480360381019061040f919061338e565b61106b565b005b610430600480360381019061042b9190613307565b611109565b005b61044c6004803603810190610447919061338e565b611129565b6040516104599190613479565b60405180910390f35b61047c600480360381019061047791906131e8565b6111d7565b60405161048991906132ec565b60405180910390f35b6104ac60048036038101906104a791906135d0565b61122a565b005b6104c860048036038101906104c39190613679565b611297565b005b6104e460048036038101906104df91906131e8565b611508565b6040516104f19190613256565b60405180910390f35b61050261151e565b60405161050f91906132ec565b60405180910390f35b610532600480360381019061052d919061338e565b611524565b60405161053f91906132ec565b60405180910390f35b61055061160c565b60405161055d91906132ec565b60405180910390f35b610580600480360381019061057b9190613705565b611611565b005b61058a611675565b005b6105946116fb565b005b61059e611826565b6040516105ab91906132ec565b60405180910390f35b6105bc61182c565b6040516105c99190613256565b60405180910390f35b6105da611856565b6040516105e79190613190565b60405180910390f35b61060a6004803603810190610605919061375e565b6118e8565b005b610614611a68565b60405161062191906130e5565b60405180910390f35b610644600480360381019061063f919061383f565b611a7b565b005b61064e611ad7565b60405161065b91906130e5565b60405180910390f35b61067e600480360381019061067991906131e8565b611aea565b60405161068b9190613190565b60405180910390f35b61069c611c39565b6040516106a99190613190565b60405180910390f35b6106cc60048036038101906106c791906135d0565b611cc7565b005b6106e860048036038101906106e391906131e8565b611d34565b005b61070460048036038101906106ff91906138c2565b611d98565b60405161071191906130e5565b60405180910390f35b610734600480360381019061072f919061338e565b611e2c565b60405161074191906132ec565b60405180910390f35b610764600480360381019061075f919061338e565b611e44565b005b61076e611eaa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b357506108b282611f30565b5b9050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461091457600080fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b60606001805461094f90613931565b80601f016020809104026020016040519081016040528092919081815260200182805461097b90613931565b80156109c85780601f1061099d576101008083540402835291602001916109c8565b820191906000526020600020905b8154815290600101906020018083116109ab57829003601f168201915b5050505050905090565b60006109dd82611f9a565b610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a13906139d4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6282611508565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613a66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af1611fa7565b73ffffffffffffffffffffffffffffffffffffffff161480610b205750610b1f81610b1a611fa7565b611d98565b5b610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690613af8565b60405180910390fd5b610b6a838383611faf565b505050565b600960029054906101000a900460ff1681565b600960039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054905090565b610bbc838383612061565b505050565b600b8054610bce90613931565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfa90613931565b8015610c475780601f10610c1c57610100808354040283529160200191610c47565b820191906000526020600020905b815481529060010190602001808311610c2a57829003601f168201915b505050505081565b6000610c59610ba8565b9050600960019054906101000a900460ff16610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613b64565b60405180910390fd5b6005821115610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590613bf6565b60405180910390fd5b6127108282610cfd9190613c45565b1115610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590613cc5565b60405180910390fd5b600854421015610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90613bf6565b60405180910390fd5b600582600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dd09190613c45565b1115610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613bf6565b60405180910390fd5b81600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e609190613c45565b92505081905550610e71338361259f565b5050565b600c5481565b6000610e8683611524565b8210610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90613d57565b60405180910390fd5b6000610ed1610ba8565b905060008060005b83811015611029576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fcb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101b57868403611012578195505050505050611065565b83806001019450505b508080600101915050610ed9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90613de9565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110c557600080fd5b80600960036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61112483838360405180602001604052806000815250611a7b565b505050565b6060600061113683611524565b905060008167ffffffffffffffff811115611154576111536134a5565b5b6040519080825280602002602001820160405280156111825781602001602082028036833780820191505090505b50905060005b828110156111cc5761119a8582610e7b565b8282815181106111ad576111ac613e09565b5b60200260200101818152505080806111c490613e38565b915050611188565b508092505050919050565b60006111e1610ba8565b8210611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613ef2565b60405180910390fd5b819050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461128457600080fd5b80600a908161129391906140be565b5050565b60006112a1610ba8565b90506112ad83836125bd565b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906141dc565b60405180910390fd5b600960009054906101000a900460ff1661133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290614248565b60405180910390fd5b600584111561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613bf6565b60405180910390fd5b612710848261138e9190613c45565b11156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690613cc5565b60405180910390fd5b600854421015611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906142b4565b60405180910390fd5b600584600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114619190613c45565b11156114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990613bf6565b60405180910390fd5b83600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114f19190613c45565b92505081905550611502338561259f565b50505050565b600061151382612640565b600001519050919050565b61271081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90614346565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600581565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461166b57600080fd5b80600c8190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116cf57600080fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461175557600080fd5b6000600960039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161179d90614397565b60006040518083038185875af1925050503d80600081146117da576040519150601f19603f3d011682016040523d82523d6000602084013e6117df565b606091505b5050905080611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906143f8565b60405180910390fd5b50565b60085481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461186590613931565b80601f016020809104026020016040519081016040528092919081815260200182805461189190613931565b80156118de5780601f106118b3576101008083540402835291602001916118de565b820191906000526020600020905b8154815290600101906020018083116118c157829003601f168201915b5050505050905090565b6118f0611fa7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490614464565b60405180910390fd5b806006600061196a611fa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a17611fa7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a5c91906130e5565b60405180910390a35050565b600960009054906101000a900460ff1681565b611a86848484612061565b611a92848484846127da565b611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906144f6565b60405180910390fd5b50505050565b600960019054906101000a900460ff1681565b6060611af582611f9a565b611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90614588565b60405180910390fd5b600960029054906101000a900460ff1615611ba6576000611b53612961565b90506000815103611b735760405180602001604052806000815250611b9e565b80611b7d846129f3565b604051602001611b8e9291906145e4565b6040516020818303038152906040525b915050611c34565b600b8054611bb390613931565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdf90613931565b8015611c2c5780601f10611c0157610100808354040283529160200191611c2c565b820191906000526020600020905b815481529060010190602001808311611c0f57829003601f168201915b505050505090505b919050565b600a8054611c4690613931565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7290613931565b8015611cbf5780601f10611c9457610100808354040283529160200191611cbf565b820191906000526020600020905b815481529060010190602001808311611ca257829003601f168201915b505050505081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d2157600080fd5b80600b9081611d3091906140be565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8e57600080fd5b8060088190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e9e57600080fd5b611ea781612b53565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f0457600080fd5b600960029054906101000a900460ff1615600960026101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061206c82612640565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612093611fa7565b73ffffffffffffffffffffffffffffffffffffffff1614806120ef57506120b8611fa7565b73ffffffffffffffffffffffffffffffffffffffff166120d7846109d2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061210b575061210a8260000151612105611fa7565b611d98565b5b90508061214d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121449061467a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b69061470c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361222e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122259061479e565b60405180910390fd5b61223b8585856001612b97565b61224b6000848460000151611faf565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361252f5761248e81611f9a565b1561252e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125988585856001612b9d565b5050505050565b6125b9828260405180602001604052806000815250612ba3565b5050565b600080336040516020016125d19190614806565b604051602081830303815290604052805190602001209050612637848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612bb5565b91505092915050565b612648612ff7565b61265182611f9a565b612690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268790614893565b60405180910390fd5b60008290505b60008110612799576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461278a5780925050506127d5565b50808060019003915050612696565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90614925565b60405180910390fd5b919050565b60006127fb8473ffffffffffffffffffffffffffffffffffffffff16612bcc565b15612954578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612824611fa7565b8786866040518563ffffffff1660e01b8152600401612846949392919061499a565b6020604051808303816000875af192505050801561288257506040513d601f19601f8201168201806040525081019061287f91906149fb565b60015b612904573d80600081146128b2576040519150601f19603f3d011682016040523d82523d6000602084013e6128b7565b606091505b5060008151036128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f3906144f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612959565b600190505b949350505050565b6060600a805461297090613931565b80601f016020809104026020016040519081016040528092919081815260200182805461299c90613931565b80156129e95780601f106129be576101008083540402835291602001916129e9565b820191906000526020600020905b8154815290600101906020018083116129cc57829003601f168201915b5050505050905090565b606060008203612a3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b4e565b600082905060005b60008214612a6c578080612a5590613e38565b915050600a82612a659190614a57565b9150612a42565b60008167ffffffffffffffff811115612a8857612a876134a5565b5b6040519080825280601f01601f191660200182016040528015612aba5781602001600182028036833780820191505090505b5090505b60008514612b4757600182612ad39190614a88565b9150600a85612ae29190614abc565b6030612aee9190613c45565b60f81b818381518110612b0457612b03613e09565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b409190614a57565b9450612abe565b8093505050505b919050565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b50505050565b50505050565b612bb08383836001612bef565b505050565b600082612bc28584612f6b565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5b90614b5f565b60405180910390fd5b60008403612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e90614bf1565b60405180910390fd5b612cb46000868387612b97565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612f4e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612f3957612ef960008884886127da565b612f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2f906144f6565b60405180910390fd5b5b81806001019250508080600101915050612e82565b508060008190555050612f646000868387612b9d565b5050505050565b60008082905060005b8451811015612fd5576000858281518110612f9257612f91613e09565b5b60200260200101519050808311612fb457612fad8382612fe0565b9250612fc1565b612fbe8184612fe0565b92505b508080612fcd90613e38565b915050612f74565b508091505092915050565b600082600052816020526040600020905092915050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61307a81613045565b811461308557600080fd5b50565b60008135905061309781613071565b92915050565b6000602082840312156130b3576130b261303b565b5b60006130c184828501613088565b91505092915050565b60008115159050919050565b6130df816130ca565b82525050565b60006020820190506130fa60008301846130d6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561313a57808201518184015260208101905061311f565b60008484015250505050565b6000601f19601f8301169050919050565b600061316282613100565b61316c818561310b565b935061317c81856020860161311c565b61318581613146565b840191505092915050565b600060208201905081810360008301526131aa8184613157565b905092915050565b6000819050919050565b6131c5816131b2565b81146131d057600080fd5b50565b6000813590506131e2816131bc565b92915050565b6000602082840312156131fe576131fd61303b565b5b600061320c848285016131d3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061324082613215565b9050919050565b61325081613235565b82525050565b600060208201905061326b6000830184613247565b92915050565b61327a81613235565b811461328557600080fd5b50565b60008135905061329781613271565b92915050565b600080604083850312156132b4576132b361303b565b5b60006132c285828601613288565b92505060206132d3858286016131d3565b9150509250929050565b6132e6816131b2565b82525050565b600060208201905061330160008301846132dd565b92915050565b6000806000606084860312156133205761331f61303b565b5b600061332e86828701613288565b935050602061333f86828701613288565b9250506040613350868287016131d3565b9150509250925092565b6000819050919050565b61336d8161335a565b82525050565b60006020820190506133886000830184613364565b92915050565b6000602082840312156133a4576133a361303b565b5b60006133b284828501613288565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133f0816131b2565b82525050565b600061340283836133e7565b60208301905092915050565b6000602082019050919050565b6000613426826133bb565b61343081856133c6565b935061343b836133d7565b8060005b8381101561346c57815161345388826133f6565b975061345e8361340e565b92505060018101905061343f565b5085935050505092915050565b60006020820190508181036000830152613493818461341b565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134dd82613146565b810181811067ffffffffffffffff821117156134fc576134fb6134a5565b5b80604052505050565b600061350f613031565b905061351b82826134d4565b919050565b600067ffffffffffffffff82111561353b5761353a6134a5565b5b61354482613146565b9050602081019050919050565b82818337600083830152505050565b600061357361356e84613520565b613505565b90508281526020810184848401111561358f5761358e6134a0565b5b61359a848285613551565b509392505050565b600082601f8301126135b7576135b661349b565b5b81356135c7848260208601613560565b91505092915050565b6000602082840312156135e6576135e561303b565b5b600082013567ffffffffffffffff81111561360457613603613040565b5b613610848285016135a2565b91505092915050565b600080fd5b600080fd5b60008083601f8401126136395761363861349b565b5b8235905067ffffffffffffffff81111561365657613655613619565b5b6020830191508360208202830111156136725761367161361e565b5b9250929050565b6000806000604084860312156136925761369161303b565b5b60006136a0868287016131d3565b935050602084013567ffffffffffffffff8111156136c1576136c0613040565b5b6136cd86828701613623565b92509250509250925092565b6136e28161335a565b81146136ed57600080fd5b50565b6000813590506136ff816136d9565b92915050565b60006020828403121561371b5761371a61303b565b5b6000613729848285016136f0565b91505092915050565b61373b816130ca565b811461374657600080fd5b50565b60008135905061375881613732565b92915050565b600080604083850312156137755761377461303b565b5b600061378385828601613288565b925050602061379485828601613749565b9150509250929050565b600067ffffffffffffffff8211156137b9576137b86134a5565b5b6137c282613146565b9050602081019050919050565b60006137e26137dd8461379e565b613505565b9050828152602081018484840111156137fe576137fd6134a0565b5b613809848285613551565b509392505050565b600082601f8301126138265761382561349b565b5b81356138368482602086016137cf565b91505092915050565b600080600080608085870312156138595761385861303b565b5b600061386787828801613288565b945050602061387887828801613288565b9350506040613889878288016131d3565b925050606085013567ffffffffffffffff8111156138aa576138a9613040565b5b6138b687828801613811565b91505092959194509250565b600080604083850312156138d9576138d861303b565b5b60006138e785828601613288565b92505060206138f885828601613288565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061394957607f821691505b60208210810361395c5761395b613902565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006139be602d8361310b565b91506139c982613962565b604082019050919050565b600060208201905081810360008301526139ed816139b1565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a5060228361310b565b9150613a5b826139f4565b604082019050919050565b60006020820190508181036000830152613a7f81613a43565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613ae260398361310b565b9150613aed82613a86565b604082019050919050565b60006020820190508181036000830152613b1181613ad5565b9050919050565b7f7075626c6963206d696e74206e6f74206f70656e000000000000000000000000600082015250565b6000613b4e60148361310b565b9150613b5982613b18565b602082019050919050565b60006020820190508181036000830152613b7d81613b41565b9050919050565b7f596f752063616e2061646f70742061206d6178696d756d206f662035204b754b60008201527f7500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613be060218361310b565b9150613beb82613b84565b604082019050919050565b60006020820190508181036000830152613c0f81613bd3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c50826131b2565b9150613c5b836131b2565b9250828201905080821115613c7357613c72613c16565b5b92915050565b7f45786365656473206d6178696d756d204b754b7520737570706c790000000000600082015250565b6000613caf601b8361310b565b9150613cba82613c79565b602082019050919050565b60006020820190508181036000830152613cde81613ca2565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4160228361310b565b9150613d4c82613ce5565b604082019050919050565b60006020820190508181036000830152613d7081613d34565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613dd3602e8361310b565b9150613dde82613d77565b604082019050919050565b60006020820190508181036000830152613e0281613dc6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613e43826131b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e7557613e74613c16565b5b600182019050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613edc60238361310b565b9150613ee782613e80565b604082019050919050565b60006020820190508181036000830152613f0b81613ecf565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f37565b613f7e8683613f37565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613fbb613fb6613fb1846131b2565b613f96565b6131b2565b9050919050565b6000819050919050565b613fd583613fa0565b613fe9613fe182613fc2565b848454613f44565b825550505050565b600090565b613ffe613ff1565b614009818484613fcc565b505050565b5b8181101561402d57614022600082613ff6565b60018101905061400f565b5050565b601f8211156140725761404381613f12565b61404c84613f27565b8101602085101561405b578190505b61406f61406785613f27565b83018261400e565b50505b505050565b600082821c905092915050565b600061409560001984600802614077565b1980831691505092915050565b60006140ae8383614084565b9150826002028217905092915050565b6140c782613100565b67ffffffffffffffff8111156140e0576140df6134a5565b5b6140ea8254613931565b6140f5828285614031565b600060209050601f8311600181146141285760008415614116578287015190505b61412085826140a2565b865550614188565b601f19841661413686613f12565b60005b8281101561415e57848901518255600182019150602085019450602081019050614139565b8683101561417b5784890151614177601f891682614084565b8355505b6001600288020188555050505b505050505050565b7f61646472657373206973206e6f74206f6e207468652077686974656c69737400600082015250565b60006141c6601f8361310b565b91506141d182614190565b602082019050919050565b600060208201905081810360008301526141f5816141b9565b9050919050565b7f707265206d696e74206e6f74206f70656e000000000000000000000000000000600082015250565b600061423260118361310b565b915061423d826141fc565b602082019050919050565b6000602082019050818103600083015261426181614225565b9050919050565b7f6e6f206d696e742074696d650000000000000000000000000000000000000000600082015250565b600061429e600c8361310b565b91506142a982614268565b602082019050919050565b600060208201905081810360008301526142cd81614291565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614330602b8361310b565b915061433b826142d4565b604082019050919050565b6000602082019050818103600083015261435f81614323565b9050919050565b600081905092915050565b50565b6000614381600083614366565b915061438c82614371565b600082019050919050565b60006143a282614374565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b60006143e2600f8361310b565b91506143ed826143ac565b602082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061444e601a8361310b565b915061445982614418565b602082019050919050565b6000602082019050818103600083015261447d81614441565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006144e060338361310b565b91506144eb82614484565b604082019050919050565b6000602082019050818103600083015261450f816144d3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614572602f8361310b565b915061457d82614516565b604082019050919050565b600060208201905081810360008301526145a181614565565b9050919050565b600081905092915050565b60006145be82613100565b6145c881856145a8565b93506145d881856020860161311c565b80840191505092915050565b60006145f082856145b3565b91506145fc82846145b3565b91508190509392505050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061466460328361310b565b915061466f82614608565b604082019050919050565b6000602082019050818103600083015261469381614657565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006146f660268361310b565b91506147018261469a565b604082019050919050565b60006020820190508181036000830152614725816146e9565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061478860258361310b565b91506147938261472c565b604082019050919050565b600060208201905081810360008301526147b78161477b565b9050919050565b60008160601b9050919050565b60006147d6826147be565b9050919050565b60006147e8826147cb565b9050919050565b6148006147fb82613235565b6147dd565b82525050565b600061481282846147ef565b60148201915081905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061487d602a8361310b565b915061488882614821565b604082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061490f602f8361310b565b915061491a826148b3565b604082019050919050565b6000602082019050818103600083015261493e81614902565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061496c82614945565b6149768185614950565b935061498681856020860161311c565b61498f81613146565b840191505092915050565b60006080820190506149af6000830187613247565b6149bc6020830186613247565b6149c960408301856132dd565b81810360608301526149db8184614961565b905095945050505050565b6000815190506149f581613071565b92915050565b600060208284031215614a1157614a1061303b565b5b6000614a1f848285016149e6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a62826131b2565b9150614a6d836131b2565b925082614a7d57614a7c614a28565b5b828204905092915050565b6000614a93826131b2565b9150614a9e836131b2565b9250828203905081811115614ab657614ab5613c16565b5b92915050565b6000614ac7826131b2565b9150614ad2836131b2565b925082614ae257614ae1614a28565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b4960218361310b565b9150614b5482614aed565b604082019050919050565b60006020820190508181036000830152614b7881614b3c565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614bdb60288361310b565b9150614be682614b7f565b604082019050919050565b60006020820190508181036000830152614c0a81614bce565b905091905056fea2646970667358221220698695b10792c7c65d764fbf81fb29e11873c1611ffe13c2117b2c9233a32c1164736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f6b756b756572632e636f2f626c696e640000000000000000

-----Decoded View---------------
Arg [0] : _mintTime (uint256): 0
Arg [1] : _baseTokenURI (string): https://kukuerc.co/blind

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [3] : 68747470733a2f2f6b756b756572632e636f2f626c696e640000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.