ETH Price: $3,013.55 (+5.70%)
Gas: 2 Gwei

Token

Hayaoki (HYOK)
 

Overview

Max Total Supply

1,379 HYOK

Holders

747

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 HYOK
0x3e6b7ab6e2d009db8799332dddc371a370e99999
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:
Hayaoki

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

pragma solidity ^0.8.0;

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 = 1;

    // 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 virtual 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(), ".json"))
                : "";
    }

    /**
     * @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 override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 {}
}

pragma solidity >=0.8.0 <0.9.0;

contract Hayaoki is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    // ================== VARAIBLES =======================

    bytes32 public merkleRootWl;
    bool public revealed = false;

    enum SaleState {
        PAUSE, // 0
        WHITELIST_SALE, // 1
        PUBLIC_SALE // 2
    }
    SaleState public saleState = SaleState.PAUSE;

    string private uriPrefix = "";
    string private uriSuffix = ".json";
    string private hiddenMetadataUri;

    uint256 public wlPrice = 0.0099 ether;
    uint256 public salePrice = 0.0137 ether;

    uint256 public noCost = 0;
    uint256 public maxWLTx = 3;
    uint256 public maxTx = 3;

    uint256 public maxWLSupply = 1379;
    uint256 public maxSupply = 1379;
    uint256 public noCostLimit = 0;

    uint256 public NC_MINTED = 0;
    uint256 public WL_MINTED = 0;
    uint256 public PB_MINTED = 0;

    mapping(address => uint256) public MINT_COUNT;
    mapping(address => uint256) public WL_MINT_COUNT;
    mapping(address => bool) public CLAIMED;

    // ================== CONTRUCTOR =======================

    constructor() ERC721A("Hayaoki", "HYOK") {
        setHiddenMetadataUri("ipfs://__CID__/hidden.json");
    }

    // ================== MINT FUNCTIONS =======================

    /**
     * @notice Public Mint
     */
    function publicMint(uint256 _quantity) external payable {
        // Normal requirements
        require(saleState == SaleState.PUBLIC_SALE, "Wait for public mint");
        require(_quantity > 0 && _quantity <= maxTx, "Invalid mint amount!");
        require(totalSupply() + _quantity <= maxSupply, "Sold out!");

        if (msg.sender != owner()) {
            require(balanceOf(msg.sender) + _quantity <= maxTx, "No more!");
            if (!CLAIMED[msg.sender] && NC_MINTED + noCost <= noCostLimit) {
                if (_quantity <= noCost) {
                    require(msg.value >= 0, "Please send the exact amount.");
                    NC_MINTED += _quantity;
                } else {
                    require(
                        msg.value >= salePrice * (_quantity - noCost),
                        "Please send the exact amount."
                    );
                    NC_MINTED += noCost;
                }
                CLAIMED[msg.sender] = true;
            } else {
                require(
                    msg.value >= salePrice * _quantity,
                    "Please send the exact amount."
                );
            }
        }

        // Mint
        _safeMint(msg.sender, _quantity);

        // Mapping update
        PB_MINTED += _quantity;
    }

    /**
     * @notice Whitelist Mint
     */
    function whitelistMint(uint256 _quantity, bytes32[] calldata _merkleProof)
        external
        payable
    {
        // Verify wl requirements
        require(
            saleState == SaleState.WHITELIST_SALE,
            "Wait for whitelist mint"
        );
        require(isWhitelist(_merkleProof), "Address is not whitelisted!");

        // Normal requirements
        require(_quantity > 0 && _quantity <= maxWLTx, "Invalid mint amount!");
        require(totalSupply() + _quantity <= maxSupply, "Sold out!");
        require(WL_MINTED + _quantity <= maxWLSupply, "No more!");
        require(
            WL_MINT_COUNT[msg.sender] + _quantity <= maxWLTx,
            "Max mint per wallet exceeded!"
        );

        if (!CLAIMED[msg.sender] && NC_MINTED + noCost <= noCostLimit) {
            if (_quantity <= noCost) {
                require(msg.value >= 0, "Please send the exact amount.");
                NC_MINTED += _quantity;
            } else {
                require(
                    msg.value >= wlPrice * (_quantity - noCost),
                    "Please send the exact amount."
                );
                NC_MINTED += noCost;
            }
            CLAIMED[msg.sender] = true;
        } else {
            require(
                msg.value >= wlPrice * _quantity,
                "Please send the exact amount."
            );
        }

        // Mint
        _safeMint(msg.sender, _quantity);

        // Mapping update
        WL_MINT_COUNT[msg.sender] += _quantity;
        WL_MINTED += _quantity;
    }

    /**
     * @notice Team Mint
     */
    function teamMint(uint256 _quantity) external onlyOwner {
        require(
            _quantity > 0,
            "Minimum 1 NFT has to be minted per transaction"
        );
        require(totalSupply() + _quantity <= maxSupply, "Sold out");
        _safeMint(msg.sender, _quantity);
    }

    /**
     * @notice airdrop
     */
    function airdrop(address _to, uint256 _quantity) external onlyOwner {
        require(saleState != SaleState.PAUSE, "The contract is paused!");
        require(_quantity + totalSupply() <= maxSupply, "Sold out");
        _safeMint(_to, _quantity);
    }

    /**
     * @notice Check if the address is in the white list or not
     */
    function isWhitelist(bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        if (MerkleProof.verify(_merkleProof, merkleRootWl, leaf)) {
            return true;
        }
        return false;
    }

    // ================== SETUP FUNCTIONS =======================

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setState(SaleState _state) external onlyOwner {
        saleState = _state;
    }

    function setWhitelist(bytes32 _merkleRoot) external onlyOwner {
        merkleRootWl = _merkleRoot;
    }

    function setSalePrice(uint256 _newPrice) external onlyOwner {
        salePrice = _newPrice;
    }

    function setWlPrice(uint256 _newPrice) external onlyOwner {
        wlPrice = _newPrice;
    }

    function setNoCost(uint256 _noCost) public onlyOwner {
        noCost = _noCost;
    }

    function setMaxTx(uint256 _maxTx) public onlyOwner {
        maxTx = _maxTx;
    }

    function setMaxWlTx(uint256 _maxWLTx) public onlyOwner {
        maxWLTx = _maxWLTx;
    }

    function setNoCostLimit(uint256 _noCostLimit) public onlyOwner {
        noCostLimit = _noCostLimit;
    }

    function setMaxWLSupply(uint256 _maxWLSupply) public onlyOwner {
        maxWLSupply = _maxWLSupply;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

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

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return hiddenMetadataUri;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        uriSuffix
                    )
                )
                : "";
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

File 2 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 5 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 8 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 9 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 10 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

File 12 of 14 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"CLAIMED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NC_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PB_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WL_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWl","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noCostLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum Hayaoki.SaleState","name":"","type":"uint8"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWLSupply","type":"uint256"}],"name":"setMaxWLSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWLTx","type":"uint256"}],"name":"setMaxWlTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noCost","type":"uint256"}],"name":"setNoCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noCostLimit","type":"uint256"}],"name":"setNoCostLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Hayaoki.SaleState","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWlPrice","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":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260016000556000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff021916908360028111156200004d576200004c620003c1565b5b021790555060405180602001604052806000815250600b90816200007291906200066a565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9081620000b991906200066a565b5066232bff5f46c000600e556630ac13d16c4000600f5560006010556003601155600360125561056360135561056360145560006015556000601655600060175560006018553480156200010c57600080fd5b506040518060400160405280600781526020017f486179616f6b69000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f48594f4b0000000000000000000000000000000000000000000000000000000081525081600190816200018a91906200066a565b5080600290816200019c91906200066a565b505050620001bf620001b36200021360201b60201c565b6200021b60201b60201c565b60016008819055506200020d6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002e160201b60201c565b620007d4565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f16200030660201b60201c565b80600d90816200030291906200066a565b5050565b620003166200021360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200033c6200039760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000395576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038c90620007b2565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047257607f821691505b6020821081036200048857620004876200042a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b3565b620004fe8683620004b3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200054b620005456200053f8462000516565b62000520565b62000516565b9050919050565b6000819050919050565b62000567836200052a565b6200057f620005768262000552565b848454620004c0565b825550505050565b600090565b6200059662000587565b620005a38184846200055c565b505050565b5b81811015620005cb57620005bf6000826200058c565b600181019050620005a9565b5050565b601f8211156200061a57620005e4816200048e565b620005ef84620004a3565b81016020851015620005ff578190505b620006176200060e85620004a3565b830182620005a8565b50505b505050565b600082821c905092915050565b60006200063f600019846008026200061f565b1980831691505092915050565b60006200065a83836200062c565b9150826002028217905092915050565b6200067582620003f0565b67ffffffffffffffff811115620006915762000690620003fb565b5b6200069d825462000459565b620006aa828285620005cf565b600060209050601f831160018114620006e25760008415620006cd578287015190505b620006d985826200064c565b86555062000749565b601f198416620006f2866200048e565b60005b828110156200071c57848901518255600182019150602085019450602081019050620006f5565b868310156200073c578489015162000738601f8916826200062c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200079a60208362000751565b9150620007a78262000762565b602082019050919050565b60006020820190508181036000830152620007cd816200078b565b9050919050565b615b7080620007e46000396000f3fe6080604052600436106103765760003560e01c806366f05dda116101d1578063b4dc131511610102578063de137a4a116100a0578063ed475f631161006f578063ed475f6314610cca578063ef8319cd14610d07578063f2fde38b14610d32578063f51f96dd14610d5b57610376565b8063de137a4a14610c0e578063e0a8085314610c39578063e985e9c514610c62578063eb2b045a14610c9f57610376565b8063c7f8d01a116100dc578063c7f8d01a14610b5f578063c87b56dd14610b8a578063d2cab05614610bc7578063d5abeb0114610be357610376565b8063b4dc131514610ae2578063b88d4fde14610b0d578063bc33718214610b3657610376565b80637ec4a6591161016f5780638da5cb5b116101495780638da5cb5b14610a3a5780638dd07d0f14610a6557806395d89b4114610a8e578063a22cb46514610ab957610376565b80637ec4a659146109bf5780638256994c146109e85780638ba4cc3c14610a1157610376565b8063715018a6116101ab578063715018a61461090357806371a342981461091a5780637437681e1461095757806377d15a841461098257610376565b806366f05dda146108745780636f8b44b01461089d57806370a08231146108c657610376565b80633f296d49116102ab5780634fdd43cb1161024957806356de96db1161022357806356de96db146107a6578063603f4d52146107cf5780636352211e146107fa57806366cbf2e21461083757610376565b80634fdd43cb14610727578063515dc32714610750578063518302271461077b57610376565b8063440bc7f311610285578063440bc7f31461066f578063480da212146106985780634ac1701b146106c15780634f6ccce7146106ea57610376565b80633f296d49146105de57806342842e0e14610609578063438b63001461063257610376565b806318160ddd116103185780632db11544116102f25780632db11544146105455780632f745c59146105615780632fbba1151461059e5780633ccfd60b146105c757610376565b806318160ddd146104c85780631919fed7146104f357806323b872dd1461051c57610376565b8063095ea7b311610354578063095ea7b3146104205780630f2910311461044957806316ba10e0146104745780631758765e1461049d57610376565b806301ffc9a71461037b57806306fdde03146103b8578063081812fc146103e3575b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d9190613ade565b610d86565b6040516103af9190613b26565b60405180910390f35b3480156103c457600080fd5b506103cd610ed0565b6040516103da9190613bd1565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613c29565b610f62565b6040516104179190613c97565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190613cde565b610fe7565b005b34801561045557600080fd5b5061045e6110ff565b60405161046b9190613d2d565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190613e7d565b611105565b005b3480156104a957600080fd5b506104b2611120565b6040516104bf9190613d2d565b60405180910390f35b3480156104d457600080fd5b506104dd611126565b6040516104ea9190613d2d565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190613c29565b61112f565b005b34801561052857600080fd5b50610543600480360381019061053e9190613ec6565b611141565b005b61055f600480360381019061055a9190613c29565b611151565b005b34801561056d57600080fd5b5061058860048036038101906105839190613cde565b611529565b6040516105959190613d2d565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613c29565b611719565b005b3480156105d357600080fd5b506105dc6117c8565b005b3480156105ea57600080fd5b506105f361187f565b6040516106009190613d2d565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613ec6565b611885565b005b34801561063e57600080fd5b5061065960048036038101906106549190613f19565b6118a5565b6040516106669190614004565b60405180910390f35b34801561067b57600080fd5b506106966004803603810190610691919061405c565b6119af565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613c29565b6119c1565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613c29565b6119d3565b005b3480156106f657600080fd5b50610711600480360381019061070c9190613c29565b6119e5565b60405161071e9190613d2d565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190613e7d565b611a38565b005b34801561075c57600080fd5b50610765611a53565b6040516107729190613d2d565b60405180910390f35b34801561078757600080fd5b50610790611a59565b60405161079d9190613b26565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906140ae565b611a6c565b005b3480156107db57600080fd5b506107e4611aa1565b6040516107f19190614152565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613c29565b611ab4565b60405161082e9190613c97565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613f19565b611aca565b60405161086b9190613d2d565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613c29565b611ae2565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613c29565b611af4565b005b3480156108d257600080fd5b506108ed60048036038101906108e89190613f19565b611b06565b6040516108fa9190613d2d565b60405180910390f35b34801561090f57600080fd5b50610918611bee565b005b34801561092657600080fd5b50610941600480360381019061093c9190613f19565b611c02565b60405161094e9190613b26565b60405180910390f35b34801561096357600080fd5b5061096c611c22565b6040516109799190613d2d565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613f19565b611c28565b6040516109b69190613d2d565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190613e7d565b611c40565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190613c29565b611c5b565b005b348015610a1d57600080fd5b50610a386004803603810190610a339190613cde565b611c6d565b005b348015610a4657600080fd5b50610a4f611d50565b604051610a5c9190613c97565b60405180910390f35b348015610a7157600080fd5b50610a8c6004803603810190610a879190613c29565b611d7a565b005b348015610a9a57600080fd5b50610aa3611d8c565b604051610ab09190613bd1565b60405180910390f35b348015610ac557600080fd5b50610ae06004803603810190610adb9190614199565b611e1e565b005b348015610aee57600080fd5b50610af7611f9e565b604051610b049190613d2d565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f919061427a565b611fa4565b005b348015610b4257600080fd5b50610b5d6004803603810190610b589190613c29565b612000565b005b348015610b6b57600080fd5b50610b74612012565b604051610b819190613d2d565b60405180910390f35b348015610b9657600080fd5b50610bb16004803603810190610bac9190613c29565b612018565b604051610bbe9190613bd1565b60405180910390f35b610be16004803603810190610bdc919061435d565b612170565b005b348015610bef57600080fd5b50610bf8612638565b604051610c059190613d2d565b60405180910390f35b348015610c1a57600080fd5b50610c2361263e565b604051610c309190613d2d565b60405180910390f35b348015610c4557600080fd5b50610c606004803603810190610c5b91906143bd565b612644565b005b348015610c6e57600080fd5b50610c896004803603810190610c8491906143ea565b612669565b604051610c969190613b26565b60405180910390f35b348015610cab57600080fd5b50610cb46126fd565b604051610cc19190613d2d565b60405180910390f35b348015610cd657600080fd5b50610cf16004803603810190610cec919061442a565b612703565b604051610cfe9190613b26565b60405180910390f35b348015610d1357600080fd5b50610d1c612798565b604051610d299190614486565b60405180910390f35b348015610d3e57600080fd5b50610d596004803603810190610d549190613f19565b61279e565b005b348015610d6757600080fd5b50610d70612821565b604051610d7d9190613d2d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e5157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610eb957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ec95750610ec882612827565b5b9050919050565b606060018054610edf906144d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0b906144d0565b8015610f585780601f10610f2d57610100808354040283529160200191610f58565b820191906000526020600020905b815481529060010190602001808311610f3b57829003601f168201915b5050505050905090565b6000610f6d82612891565b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390614573565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ff282611ab4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990614605565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661108161289e565b73ffffffffffffffffffffffffffffffffffffffff1614806110b057506110af816110aa61289e565b612669565b5b6110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690614697565b60405180910390fd5b6110fa8383836128a6565b505050565b60165481565b61110d612958565b80600c908161111c9190614863565b5050565b60155481565b60008054905090565b611137612958565b80600f8190555050565b61114c8383836129d6565b505050565b600280811115611164576111636140db565b5b600a60019054906101000a900460ff166002811115611186576111856140db565b5b146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd90614981565b60405180910390fd5b6000811180156111d857506012548111155b611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906149ed565b60405180910390fd5b60145481611223611126565b61122d9190614a3c565b111561126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590614abc565b60405180910390fd5b611276611d50565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461150357601254816112b533611b06565b6112bf9190614a3c565b1115611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790614b28565b60405180910390fd5b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561136b57506015546010546016546113689190614a3c565b11155b156114b15760105481116113db5760003410156113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490614b94565b60405180910390fd5b80601660008282546113cf9190614a3c565b92505081905550611454565b601054816113e99190614bb4565b600f546113f69190614be8565b341015611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614b94565b60405180910390fd5b6010546016600082825461144c9190614a3c565b925050819055505b6001601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611502565b80600f546114bf9190614be8565b341015611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890614b94565b60405180910390fd5b5b5b61150d3382612f14565b806018600082825461151f9190614a3c565b9250508190555050565b600061153483611b06565b8210611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90614c9c565b60405180910390fd5b600061157f611126565b905060008060005b838110156116d7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461167957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c9578684036116c0578195505050505050611713565b83806001019450505b508080600101915050611587565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90614d2e565b60405180910390fd5b92915050565b611721612958565b60008111611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614dc0565b60405180910390fd5b60145481611770611126565b61177a9190614a3c565b11156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290614e2c565b60405180910390fd5b6117c53382612f14565b50565b6117d0612958565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516117f690614e7d565b60006040518083038185875af1925050503d8060008114611833576040519150601f19603f3d011682016040523d82523d6000602084013e611838565b606091505b505090508061187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390614ede565b60405180910390fd5b50565b60175481565b6118a083838360405180602001604052806000815250611fa4565b505050565b606060006118b283611b06565b905060008167ffffffffffffffff8111156118d0576118cf613d52565b5b6040519080825280602002602001820160405280156118fe5781602001602082028036833780820191505090505b50905060006001905060005b838110801561191b57506014548211155b156119a357600061192b83611ab4565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361198f578284838151811061197457611973614efe565b5b602002602001018181525050818061198b90614f2d565b9250505b828061199a90614f2d565b9350505061190a565b82945050505050919050565b6119b7612958565b8060098190555050565b6119c9612958565b8060138190555050565b6119db612958565b8060108190555050565b60006119ef611126565b8210611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790614fe7565b60405180910390fd5b819050919050565b611a40612958565b80600d9081611a4f9190614863565b5050565b60135481565b600a60009054906101000a900460ff1681565b611a74612958565b80600a60016101000a81548160ff02191690836002811115611a9957611a986140db565b5b021790555050565b600a60019054906101000a900460ff1681565b6000611abf82612f32565b600001519050919050565b601a6020528060005260406000206000915090505481565b611aea612958565b8060118190555050565b611afc612958565b8060148190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90615079565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611bf6612958565b611c0060006130cc565b565b601b6020528060005260406000206000915054906101000a900460ff1681565b60125481565b60196020528060005260406000206000915090505481565b611c48612958565b80600b9081611c579190614863565b5050565b611c63612958565b8060158190555050565b611c75612958565b60006002811115611c8957611c886140db565b5b600a60019054906101000a900460ff166002811115611cab57611caa6140db565b5b03611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce2906150e5565b60405180910390fd5b601454611cf6611126565b82611d019190614a3c565b1115611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3990614e2c565b60405180910390fd5b611d4c8282612f14565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d82612958565b80600e8190555050565b606060028054611d9b906144d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc7906144d0565b8015611e145780601f10611de957610100808354040283529160200191611e14565b820191906000526020600020905b815481529060010190602001808311611df757829003601f168201915b5050505050905090565b611e2661289e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90615151565b60405180910390fd5b8060066000611ea061289e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f4d61289e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f929190613b26565b60405180910390a35050565b60185481565b611faf8484846129d6565b611fbb84848484613192565b611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff1906151e3565b60405180910390fd5b50505050565b612008612958565b8060128190555050565b600e5481565b606061202382612891565b612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990615275565b60405180910390fd5b60001515600a60009054906101000a900460ff1615150361210f57600d805461208a906144d0565b80601f01602080910402602001604051908101604052809291908181526020018280546120b6906144d0565b80156121035780601f106120d857610100808354040283529160200191612103565b820191906000526020600020905b8154815290600101906020018083116120e657829003601f168201915b5050505050905061216b565b6000612119613319565b905060008151116121395760405180602001604052806000815250612167565b80612143846133ab565b600c60405160200161215793929190615354565b6040516020818303038152906040525b9150505b919050565b60016002811115612184576121836140db565b5b600a60019054906101000a900460ff1660028111156121a6576121a56140db565b5b146121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906153d1565b60405180910390fd5b6121f08282612703565b61222f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122269061543d565b60405180910390fd5b60008311801561224157506011548311155b612280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612277906149ed565b60405180910390fd5b6014548361228c611126565b6122969190614a3c565b11156122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90614abc565b60405180910390fd5b601354836017546122e89190614a3c565b1115612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614b28565b60405180910390fd5b60115483601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123779190614a3c565b11156123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af906154a9565b60405180910390fd5b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561242357506015546010546016546124209190614a3c565b11155b15612569576010548311612493576000341015612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c90614b94565b60405180910390fd5b82601660008282546124879190614a3c565b9250508190555061250c565b601054836124a19190614bb4565b600e546124ae9190614be8565b3410156124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e790614b94565b60405180910390fd5b601054601660008282546125049190614a3c565b925050819055505b6001601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125ba565b82600e546125779190614be8565b3410156125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b090614b94565b60405180910390fd5b5b6125c43384612f14565b82601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126139190614a3c565b92505081905550826017600082825461262c9190614a3c565b92505081905550505050565b60145481565b60115481565b61264c612958565b80600a60006101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b600080336040516020016127179190615511565b60405160208183030381529060405280519060200120905061277d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095483613479565b1561278c576001915050612792565b60009150505b92915050565b60095481565b6127a6612958565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280c9061559e565b60405180910390fd5b61281e816130cc565b50565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61296061289e565b73ffffffffffffffffffffffffffffffffffffffff1661297e611d50565b73ffffffffffffffffffffffffffffffffffffffff16146129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb9061560a565b60405180910390fd5b565b60006129e182612f32565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a0861289e565b73ffffffffffffffffffffffffffffffffffffffff161480612a645750612a2d61289e565b73ffffffffffffffffffffffffffffffffffffffff16612a4c84610f62565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a805750612a7f8260000151612a7a61289e565b612669565b5b905080612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab99061569c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b9061572e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a906157c0565b60405180910390fd5b612bb08585856001613490565b612bc060008484600001516128a6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612ea457612e0381612891565b15612ea35782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f0d8585856001613496565b5050505050565b612f2e82826040518060200160405280600081525061349c565b5050565b612f3a613a38565b612f4382612891565b612f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7990615852565b60405180910390fd5b60008290505b6000811061308b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461307c5780925050506130c7565b50808060019003915050612f88565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130be906158e4565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006131b38473ffffffffffffffffffffffffffffffffffffffff166134ae565b1561330c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131dc61289e565b8786866040518563ffffffff1660e01b81526004016131fe9493929190615959565b6020604051808303816000875af192505050801561323a57506040513d601f19601f8201168201806040525081019061323791906159ba565b60015b6132bc573d806000811461326a576040519150601f19603f3d011682016040523d82523d6000602084013e61326f565b606091505b5060008151036132b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ab906151e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613311565b600190505b949350505050565b6060600b8054613328906144d0565b80601f0160208091040260200160405190810160405280929190818152602001828054613354906144d0565b80156133a15780601f10613376576101008083540402835291602001916133a1565b820191906000526020600020905b81548152906001019060200180831161338457829003601f168201915b5050505050905090565b6060600060016133ba846134d1565b01905060008167ffffffffffffffff8111156133d9576133d8613d52565b5b6040519080825280601f01601f19166020018201604052801561340b5781602001600182028036833780820191505090505b509050600082602001820190505b60011561346e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613462576134616159e7565b5b04945060008503613419575b819350505050919050565b6000826134868584613624565b1490509392505050565b50505050565b50505050565b6134a9838383600161367a565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061352f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613525576135246159e7565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061356c576d04ee2d6d415b85acef81000000008381613562576135616159e7565b5b0492506020810190505b662386f26fc10000831061359b57662386f26fc100008381613591576135906159e7565b5b0492506010810190505b6305f5e10083106135c4576305f5e10083816135ba576135b96159e7565b5b0492506008810190505b61271083106135e95761271083816135df576135de6159e7565b5b0492506004810190505b6064831061360c5760648381613602576136016159e7565b5b0492506002810190505b600a831061361b576001810190505b80915050919050565b60008082905060005b845181101561366f5761365a8286838151811061364d5761364c614efe565b5b60200260200101516139f6565b9150808061366790614f2d565b91505061362d565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036136ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e690615a88565b60405180910390fd5b60008403613732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372990615b1a565b60405180910390fd5b61373f6000868387613490565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156139d957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156139c4576139846000888488613192565b6139c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ba906151e3565b60405180910390fd5b5b8180600101925050808060010191505061390d565b5080600081905550506139ef6000868387613496565b5050505050565b6000818310613a0e57613a098284613a21565b613a19565b613a188383613a21565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613abb81613a86565b8114613ac657600080fd5b50565b600081359050613ad881613ab2565b92915050565b600060208284031215613af457613af3613a7c565b5b6000613b0284828501613ac9565b91505092915050565b60008115159050919050565b613b2081613b0b565b82525050565b6000602082019050613b3b6000830184613b17565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b7b578082015181840152602081019050613b60565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ba382613b41565b613bad8185613b4c565b9350613bbd818560208601613b5d565b613bc681613b87565b840191505092915050565b60006020820190508181036000830152613beb8184613b98565b905092915050565b6000819050919050565b613c0681613bf3565b8114613c1157600080fd5b50565b600081359050613c2381613bfd565b92915050565b600060208284031215613c3f57613c3e613a7c565b5b6000613c4d84828501613c14565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c8182613c56565b9050919050565b613c9181613c76565b82525050565b6000602082019050613cac6000830184613c88565b92915050565b613cbb81613c76565b8114613cc657600080fd5b50565b600081359050613cd881613cb2565b92915050565b60008060408385031215613cf557613cf4613a7c565b5b6000613d0385828601613cc9565b9250506020613d1485828601613c14565b9150509250929050565b613d2781613bf3565b82525050565b6000602082019050613d426000830184613d1e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d8a82613b87565b810181811067ffffffffffffffff82111715613da957613da8613d52565b5b80604052505050565b6000613dbc613a72565b9050613dc88282613d81565b919050565b600067ffffffffffffffff821115613de857613de7613d52565b5b613df182613b87565b9050602081019050919050565b82818337600083830152505050565b6000613e20613e1b84613dcd565b613db2565b905082815260208101848484011115613e3c57613e3b613d4d565b5b613e47848285613dfe565b509392505050565b600082601f830112613e6457613e63613d48565b5b8135613e74848260208601613e0d565b91505092915050565b600060208284031215613e9357613e92613a7c565b5b600082013567ffffffffffffffff811115613eb157613eb0613a81565b5b613ebd84828501613e4f565b91505092915050565b600080600060608486031215613edf57613ede613a7c565b5b6000613eed86828701613cc9565b9350506020613efe86828701613cc9565b9250506040613f0f86828701613c14565b9150509250925092565b600060208284031215613f2f57613f2e613a7c565b5b6000613f3d84828501613cc9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f7b81613bf3565b82525050565b6000613f8d8383613f72565b60208301905092915050565b6000602082019050919050565b6000613fb182613f46565b613fbb8185613f51565b9350613fc683613f62565b8060005b83811015613ff7578151613fde8882613f81565b9750613fe983613f99565b925050600181019050613fca565b5085935050505092915050565b6000602082019050818103600083015261401e8184613fa6565b905092915050565b6000819050919050565b61403981614026565b811461404457600080fd5b50565b60008135905061405681614030565b92915050565b60006020828403121561407257614071613a7c565b5b600061408084828501614047565b91505092915050565b6003811061409657600080fd5b50565b6000813590506140a881614089565b92915050565b6000602082840312156140c4576140c3613a7c565b5b60006140d284828501614099565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061411b5761411a6140db565b5b50565b600081905061412c8261410a565b919050565b600061413c8261411e565b9050919050565b61414c81614131565b82525050565b60006020820190506141676000830184614143565b92915050565b61417681613b0b565b811461418157600080fd5b50565b6000813590506141938161416d565b92915050565b600080604083850312156141b0576141af613a7c565b5b60006141be85828601613cc9565b92505060206141cf85828601614184565b9150509250929050565b600067ffffffffffffffff8211156141f4576141f3613d52565b5b6141fd82613b87565b9050602081019050919050565b600061421d614218846141d9565b613db2565b90508281526020810184848401111561423957614238613d4d565b5b614244848285613dfe565b509392505050565b600082601f83011261426157614260613d48565b5b813561427184826020860161420a565b91505092915050565b6000806000806080858703121561429457614293613a7c565b5b60006142a287828801613cc9565b94505060206142b387828801613cc9565b93505060406142c487828801613c14565b925050606085013567ffffffffffffffff8111156142e5576142e4613a81565b5b6142f18782880161424c565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261431d5761431c613d48565b5b8235905067ffffffffffffffff81111561433a576143396142fd565b5b60208301915083602082028301111561435657614355614302565b5b9250929050565b60008060006040848603121561437657614375613a7c565b5b600061438486828701613c14565b935050602084013567ffffffffffffffff8111156143a5576143a4613a81565b5b6143b186828701614307565b92509250509250925092565b6000602082840312156143d3576143d2613a7c565b5b60006143e184828501614184565b91505092915050565b6000806040838503121561440157614400613a7c565b5b600061440f85828601613cc9565b925050602061442085828601613cc9565b9150509250929050565b6000806020838503121561444157614440613a7c565b5b600083013567ffffffffffffffff81111561445f5761445e613a81565b5b61446b85828601614307565b92509250509250929050565b61448081614026565b82525050565b600060208201905061449b6000830184614477565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144e857607f821691505b6020821081036144fb576144fa6144a1565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061455d602d83613b4c565b915061456882614501565b604082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006145ef602283613b4c565b91506145fa82614593565b604082019050919050565b6000602082019050818103600083015261461e816145e2565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614681603983613b4c565b915061468c82614625565b604082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146dc565b61472386836146dc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061476061475b61475684613bf3565b61473b565b613bf3565b9050919050565b6000819050919050565b61477a83614745565b61478e61478682614767565b8484546146e9565b825550505050565b600090565b6147a3614796565b6147ae818484614771565b505050565b5b818110156147d2576147c760008261479b565b6001810190506147b4565b5050565b601f821115614817576147e8816146b7565b6147f1846146cc565b81016020851015614800578190505b61481461480c856146cc565b8301826147b3565b50505b505050565b600082821c905092915050565b600061483a6000198460080261481c565b1980831691505092915050565b60006148538383614829565b9150826002028217905092915050565b61486c82613b41565b67ffffffffffffffff81111561488557614884613d52565b5b61488f82546144d0565b61489a8282856147d6565b600060209050601f8311600181146148cd57600084156148bb578287015190505b6148c58582614847565b86555061492d565b601f1984166148db866146b7565b60005b82811015614903578489015182556001820191506020850194506020810190506148de565b86831015614920578489015161491c601f891682614829565b8355505b6001600288020188555050505b505050505050565b7f5761697420666f72207075626c6963206d696e74000000000000000000000000600082015250565b600061496b601483613b4c565b915061497682614935565b602082019050919050565b6000602082019050818103600083015261499a8161495e565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006149d7601483613b4c565b91506149e2826149a1565b602082019050919050565b60006020820190508181036000830152614a06816149ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4782613bf3565b9150614a5283613bf3565b9250828201905080821115614a6a57614a69614a0d565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000614aa6600983613b4c565b9150614ab182614a70565b602082019050919050565b60006020820190508181036000830152614ad581614a99565b9050919050565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b6000614b12600883613b4c565b9150614b1d82614adc565b602082019050919050565b60006020820190508181036000830152614b4181614b05565b9050919050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000614b7e601d83613b4c565b9150614b8982614b48565b602082019050919050565b60006020820190508181036000830152614bad81614b71565b9050919050565b6000614bbf82613bf3565b9150614bca83613bf3565b9250828203905081811115614be257614be1614a0d565b5b92915050565b6000614bf382613bf3565b9150614bfe83613bf3565b9250828202614c0c81613bf3565b91508282048414831517614c2357614c22614a0d565b5b5092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c86602283613b4c565b9150614c9182614c2a565b604082019050919050565b60006020820190508181036000830152614cb581614c79565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614d18602e83613b4c565b9150614d2382614cbc565b604082019050919050565b60006020820190508181036000830152614d4781614d0b565b9050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000614daa602e83613b4c565b9150614db582614d4e565b604082019050919050565b60006020820190508181036000830152614dd981614d9d565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000614e16600883613b4c565b9150614e2182614de0565b602082019050919050565b60006020820190508181036000830152614e4581614e09565b9050919050565b600081905092915050565b50565b6000614e67600083614e4c565b9150614e7282614e57565b600082019050919050565b6000614e8882614e5a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614ec8601083613b4c565b9150614ed382614e92565b602082019050919050565b60006020820190508181036000830152614ef781614ebb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f3882613bf3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f6a57614f69614a0d565b5b600182019050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd1602383613b4c565b9150614fdc82614f75565b604082019050919050565b6000602082019050818103600083015261500081614fc4565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000615063602b83613b4c565b915061506e82615007565b604082019050919050565b6000602082019050818103600083015261509281615056565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006150cf601783613b4c565b91506150da82615099565b602082019050919050565b600060208201905081810360008301526150fe816150c2565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061513b601a83613b4c565b915061514682615105565b602082019050919050565b6000602082019050818103600083015261516a8161512e565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006151cd603383613b4c565b91506151d882615171565b604082019050919050565b600060208201905081810360008301526151fc816151c0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061525f602f83613b4c565b915061526a82615203565b604082019050919050565b6000602082019050818103600083015261528e81615252565b9050919050565b600081905092915050565b60006152ab82613b41565b6152b58185615295565b93506152c5818560208601613b5d565b80840191505092915050565b600081546152de816144d0565b6152e88186615295565b9450600182166000811461530357600181146153185761534b565b60ff198316865281151582028601935061534b565b615321856146b7565b60005b8381101561534357815481890152600182019150602081019050615324565b838801955050505b50505092915050565b600061536082866152a0565b915061536c82856152a0565b915061537882846152d1565b9150819050949350505050565b7f5761697420666f722077686974656c697374206d696e74000000000000000000600082015250565b60006153bb601783613b4c565b91506153c682615385565b602082019050919050565b600060208201905081810360008301526153ea816153ae565b9050919050565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b6000615427601b83613b4c565b9150615432826153f1565b602082019050919050565b600060208201905081810360008301526154568161541a565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000615493601d83613b4c565b915061549e8261545d565b602082019050919050565b600060208201905081810360008301526154c281615486565b9050919050565b60008160601b9050919050565b60006154e1826154c9565b9050919050565b60006154f3826154d6565b9050919050565b61550b61550682613c76565b6154e8565b82525050565b600061551d82846154fa565b60148201915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615588602683613b4c565b91506155938261552c565b604082019050919050565b600060208201905081810360008301526155b78161557b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155f4602083613b4c565b91506155ff826155be565b602082019050919050565b60006020820190508181036000830152615623816155e7565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615686603283613b4c565b91506156918261562a565b604082019050919050565b600060208201905081810360008301526156b581615679565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615718602683613b4c565b9150615723826156bc565b604082019050919050565b600060208201905081810360008301526157478161570b565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006157aa602583613b4c565b91506157b58261574e565b604082019050919050565b600060208201905081810360008301526157d98161579d565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061583c602a83613b4c565b9150615847826157e0565b604082019050919050565b6000602082019050818103600083015261586b8161582f565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006158ce602f83613b4c565b91506158d982615872565b604082019050919050565b600060208201905081810360008301526158fd816158c1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061592b82615904565b615935818561590f565b9350615945818560208601613b5d565b61594e81613b87565b840191505092915050565b600060808201905061596e6000830187613c88565b61597b6020830186613c88565b6159886040830185613d1e565b818103606083015261599a8184615920565b905095945050505050565b6000815190506159b481613ab2565b92915050565b6000602082840312156159d0576159cf613a7c565b5b60006159de848285016159a5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a72602183613b4c565b9150615a7d82615a16565b604082019050919050565b60006020820190508181036000830152615aa181615a65565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615b04602883613b4c565b9150615b0f82615aa8565b604082019050919050565b60006020820190508181036000830152615b3381615af7565b905091905056fea26469706673582212205c5772b3cd9da0d249535c40262f8f2b2ed181a4a58070bb37e6b37716d381bd64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103765760003560e01c806366f05dda116101d1578063b4dc131511610102578063de137a4a116100a0578063ed475f631161006f578063ed475f6314610cca578063ef8319cd14610d07578063f2fde38b14610d32578063f51f96dd14610d5b57610376565b8063de137a4a14610c0e578063e0a8085314610c39578063e985e9c514610c62578063eb2b045a14610c9f57610376565b8063c7f8d01a116100dc578063c7f8d01a14610b5f578063c87b56dd14610b8a578063d2cab05614610bc7578063d5abeb0114610be357610376565b8063b4dc131514610ae2578063b88d4fde14610b0d578063bc33718214610b3657610376565b80637ec4a6591161016f5780638da5cb5b116101495780638da5cb5b14610a3a5780638dd07d0f14610a6557806395d89b4114610a8e578063a22cb46514610ab957610376565b80637ec4a659146109bf5780638256994c146109e85780638ba4cc3c14610a1157610376565b8063715018a6116101ab578063715018a61461090357806371a342981461091a5780637437681e1461095757806377d15a841461098257610376565b806366f05dda146108745780636f8b44b01461089d57806370a08231146108c657610376565b80633f296d49116102ab5780634fdd43cb1161024957806356de96db1161022357806356de96db146107a6578063603f4d52146107cf5780636352211e146107fa57806366cbf2e21461083757610376565b80634fdd43cb14610727578063515dc32714610750578063518302271461077b57610376565b8063440bc7f311610285578063440bc7f31461066f578063480da212146106985780634ac1701b146106c15780634f6ccce7146106ea57610376565b80633f296d49146105de57806342842e0e14610609578063438b63001461063257610376565b806318160ddd116103185780632db11544116102f25780632db11544146105455780632f745c59146105615780632fbba1151461059e5780633ccfd60b146105c757610376565b806318160ddd146104c85780631919fed7146104f357806323b872dd1461051c57610376565b8063095ea7b311610354578063095ea7b3146104205780630f2910311461044957806316ba10e0146104745780631758765e1461049d57610376565b806301ffc9a71461037b57806306fdde03146103b8578063081812fc146103e3575b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d9190613ade565b610d86565b6040516103af9190613b26565b60405180910390f35b3480156103c457600080fd5b506103cd610ed0565b6040516103da9190613bd1565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613c29565b610f62565b6040516104179190613c97565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190613cde565b610fe7565b005b34801561045557600080fd5b5061045e6110ff565b60405161046b9190613d2d565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190613e7d565b611105565b005b3480156104a957600080fd5b506104b2611120565b6040516104bf9190613d2d565b60405180910390f35b3480156104d457600080fd5b506104dd611126565b6040516104ea9190613d2d565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190613c29565b61112f565b005b34801561052857600080fd5b50610543600480360381019061053e9190613ec6565b611141565b005b61055f600480360381019061055a9190613c29565b611151565b005b34801561056d57600080fd5b5061058860048036038101906105839190613cde565b611529565b6040516105959190613d2d565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613c29565b611719565b005b3480156105d357600080fd5b506105dc6117c8565b005b3480156105ea57600080fd5b506105f361187f565b6040516106009190613d2d565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613ec6565b611885565b005b34801561063e57600080fd5b5061065960048036038101906106549190613f19565b6118a5565b6040516106669190614004565b60405180910390f35b34801561067b57600080fd5b506106966004803603810190610691919061405c565b6119af565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613c29565b6119c1565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613c29565b6119d3565b005b3480156106f657600080fd5b50610711600480360381019061070c9190613c29565b6119e5565b60405161071e9190613d2d565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190613e7d565b611a38565b005b34801561075c57600080fd5b50610765611a53565b6040516107729190613d2d565b60405180910390f35b34801561078757600080fd5b50610790611a59565b60405161079d9190613b26565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906140ae565b611a6c565b005b3480156107db57600080fd5b506107e4611aa1565b6040516107f19190614152565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613c29565b611ab4565b60405161082e9190613c97565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613f19565b611aca565b60405161086b9190613d2d565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613c29565b611ae2565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613c29565b611af4565b005b3480156108d257600080fd5b506108ed60048036038101906108e89190613f19565b611b06565b6040516108fa9190613d2d565b60405180910390f35b34801561090f57600080fd5b50610918611bee565b005b34801561092657600080fd5b50610941600480360381019061093c9190613f19565b611c02565b60405161094e9190613b26565b60405180910390f35b34801561096357600080fd5b5061096c611c22565b6040516109799190613d2d565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613f19565b611c28565b6040516109b69190613d2d565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190613e7d565b611c40565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190613c29565b611c5b565b005b348015610a1d57600080fd5b50610a386004803603810190610a339190613cde565b611c6d565b005b348015610a4657600080fd5b50610a4f611d50565b604051610a5c9190613c97565b60405180910390f35b348015610a7157600080fd5b50610a8c6004803603810190610a879190613c29565b611d7a565b005b348015610a9a57600080fd5b50610aa3611d8c565b604051610ab09190613bd1565b60405180910390f35b348015610ac557600080fd5b50610ae06004803603810190610adb9190614199565b611e1e565b005b348015610aee57600080fd5b50610af7611f9e565b604051610b049190613d2d565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f919061427a565b611fa4565b005b348015610b4257600080fd5b50610b5d6004803603810190610b589190613c29565b612000565b005b348015610b6b57600080fd5b50610b74612012565b604051610b819190613d2d565b60405180910390f35b348015610b9657600080fd5b50610bb16004803603810190610bac9190613c29565b612018565b604051610bbe9190613bd1565b60405180910390f35b610be16004803603810190610bdc919061435d565b612170565b005b348015610bef57600080fd5b50610bf8612638565b604051610c059190613d2d565b60405180910390f35b348015610c1a57600080fd5b50610c2361263e565b604051610c309190613d2d565b60405180910390f35b348015610c4557600080fd5b50610c606004803603810190610c5b91906143bd565b612644565b005b348015610c6e57600080fd5b50610c896004803603810190610c8491906143ea565b612669565b604051610c969190613b26565b60405180910390f35b348015610cab57600080fd5b50610cb46126fd565b604051610cc19190613d2d565b60405180910390f35b348015610cd657600080fd5b50610cf16004803603810190610cec919061442a565b612703565b604051610cfe9190613b26565b60405180910390f35b348015610d1357600080fd5b50610d1c612798565b604051610d299190614486565b60405180910390f35b348015610d3e57600080fd5b50610d596004803603810190610d549190613f19565b61279e565b005b348015610d6757600080fd5b50610d70612821565b604051610d7d9190613d2d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e5157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610eb957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ec95750610ec882612827565b5b9050919050565b606060018054610edf906144d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0b906144d0565b8015610f585780601f10610f2d57610100808354040283529160200191610f58565b820191906000526020600020905b815481529060010190602001808311610f3b57829003601f168201915b5050505050905090565b6000610f6d82612891565b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390614573565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ff282611ab4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990614605565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661108161289e565b73ffffffffffffffffffffffffffffffffffffffff1614806110b057506110af816110aa61289e565b612669565b5b6110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690614697565b60405180910390fd5b6110fa8383836128a6565b505050565b60165481565b61110d612958565b80600c908161111c9190614863565b5050565b60155481565b60008054905090565b611137612958565b80600f8190555050565b61114c8383836129d6565b505050565b600280811115611164576111636140db565b5b600a60019054906101000a900460ff166002811115611186576111856140db565b5b146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd90614981565b60405180910390fd5b6000811180156111d857506012548111155b611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906149ed565b60405180910390fd5b60145481611223611126565b61122d9190614a3c565b111561126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590614abc565b60405180910390fd5b611276611d50565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461150357601254816112b533611b06565b6112bf9190614a3c565b1115611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790614b28565b60405180910390fd5b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561136b57506015546010546016546113689190614a3c565b11155b156114b15760105481116113db5760003410156113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490614b94565b60405180910390fd5b80601660008282546113cf9190614a3c565b92505081905550611454565b601054816113e99190614bb4565b600f546113f69190614be8565b341015611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614b94565b60405180910390fd5b6010546016600082825461144c9190614a3c565b925050819055505b6001601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611502565b80600f546114bf9190614be8565b341015611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890614b94565b60405180910390fd5b5b5b61150d3382612f14565b806018600082825461151f9190614a3c565b9250508190555050565b600061153483611b06565b8210611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90614c9c565b60405180910390fd5b600061157f611126565b905060008060005b838110156116d7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461167957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c9578684036116c0578195505050505050611713565b83806001019450505b508080600101915050611587565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90614d2e565b60405180910390fd5b92915050565b611721612958565b60008111611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614dc0565b60405180910390fd5b60145481611770611126565b61177a9190614a3c565b11156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290614e2c565b60405180910390fd5b6117c53382612f14565b50565b6117d0612958565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516117f690614e7d565b60006040518083038185875af1925050503d8060008114611833576040519150601f19603f3d011682016040523d82523d6000602084013e611838565b606091505b505090508061187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390614ede565b60405180910390fd5b50565b60175481565b6118a083838360405180602001604052806000815250611fa4565b505050565b606060006118b283611b06565b905060008167ffffffffffffffff8111156118d0576118cf613d52565b5b6040519080825280602002602001820160405280156118fe5781602001602082028036833780820191505090505b50905060006001905060005b838110801561191b57506014548211155b156119a357600061192b83611ab4565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361198f578284838151811061197457611973614efe565b5b602002602001018181525050818061198b90614f2d565b9250505b828061199a90614f2d565b9350505061190a565b82945050505050919050565b6119b7612958565b8060098190555050565b6119c9612958565b8060138190555050565b6119db612958565b8060108190555050565b60006119ef611126565b8210611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790614fe7565b60405180910390fd5b819050919050565b611a40612958565b80600d9081611a4f9190614863565b5050565b60135481565b600a60009054906101000a900460ff1681565b611a74612958565b80600a60016101000a81548160ff02191690836002811115611a9957611a986140db565b5b021790555050565b600a60019054906101000a900460ff1681565b6000611abf82612f32565b600001519050919050565b601a6020528060005260406000206000915090505481565b611aea612958565b8060118190555050565b611afc612958565b8060148190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90615079565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611bf6612958565b611c0060006130cc565b565b601b6020528060005260406000206000915054906101000a900460ff1681565b60125481565b60196020528060005260406000206000915090505481565b611c48612958565b80600b9081611c579190614863565b5050565b611c63612958565b8060158190555050565b611c75612958565b60006002811115611c8957611c886140db565b5b600a60019054906101000a900460ff166002811115611cab57611caa6140db565b5b03611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce2906150e5565b60405180910390fd5b601454611cf6611126565b82611d019190614a3c565b1115611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3990614e2c565b60405180910390fd5b611d4c8282612f14565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d82612958565b80600e8190555050565b606060028054611d9b906144d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc7906144d0565b8015611e145780601f10611de957610100808354040283529160200191611e14565b820191906000526020600020905b815481529060010190602001808311611df757829003601f168201915b5050505050905090565b611e2661289e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90615151565b60405180910390fd5b8060066000611ea061289e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f4d61289e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f929190613b26565b60405180910390a35050565b60185481565b611faf8484846129d6565b611fbb84848484613192565b611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff1906151e3565b60405180910390fd5b50505050565b612008612958565b8060128190555050565b600e5481565b606061202382612891565b612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990615275565b60405180910390fd5b60001515600a60009054906101000a900460ff1615150361210f57600d805461208a906144d0565b80601f01602080910402602001604051908101604052809291908181526020018280546120b6906144d0565b80156121035780601f106120d857610100808354040283529160200191612103565b820191906000526020600020905b8154815290600101906020018083116120e657829003601f168201915b5050505050905061216b565b6000612119613319565b905060008151116121395760405180602001604052806000815250612167565b80612143846133ab565b600c60405160200161215793929190615354565b6040516020818303038152906040525b9150505b919050565b60016002811115612184576121836140db565b5b600a60019054906101000a900460ff1660028111156121a6576121a56140db565b5b146121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906153d1565b60405180910390fd5b6121f08282612703565b61222f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122269061543d565b60405180910390fd5b60008311801561224157506011548311155b612280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612277906149ed565b60405180910390fd5b6014548361228c611126565b6122969190614a3c565b11156122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90614abc565b60405180910390fd5b601354836017546122e89190614a3c565b1115612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614b28565b60405180910390fd5b60115483601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123779190614a3c565b11156123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af906154a9565b60405180910390fd5b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561242357506015546010546016546124209190614a3c565b11155b15612569576010548311612493576000341015612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c90614b94565b60405180910390fd5b82601660008282546124879190614a3c565b9250508190555061250c565b601054836124a19190614bb4565b600e546124ae9190614be8565b3410156124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e790614b94565b60405180910390fd5b601054601660008282546125049190614a3c565b925050819055505b6001601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125ba565b82600e546125779190614be8565b3410156125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b090614b94565b60405180910390fd5b5b6125c43384612f14565b82601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126139190614a3c565b92505081905550826017600082825461262c9190614a3c565b92505081905550505050565b60145481565b60115481565b61264c612958565b80600a60006101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b600080336040516020016127179190615511565b60405160208183030381529060405280519060200120905061277d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095483613479565b1561278c576001915050612792565b60009150505b92915050565b60095481565b6127a6612958565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280c9061559e565b60405180910390fd5b61281e816130cc565b50565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61296061289e565b73ffffffffffffffffffffffffffffffffffffffff1661297e611d50565b73ffffffffffffffffffffffffffffffffffffffff16146129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb9061560a565b60405180910390fd5b565b60006129e182612f32565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a0861289e565b73ffffffffffffffffffffffffffffffffffffffff161480612a645750612a2d61289e565b73ffffffffffffffffffffffffffffffffffffffff16612a4c84610f62565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a805750612a7f8260000151612a7a61289e565b612669565b5b905080612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab99061569c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b9061572e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a906157c0565b60405180910390fd5b612bb08585856001613490565b612bc060008484600001516128a6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612ea457612e0381612891565b15612ea35782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f0d8585856001613496565b5050505050565b612f2e82826040518060200160405280600081525061349c565b5050565b612f3a613a38565b612f4382612891565b612f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7990615852565b60405180910390fd5b60008290505b6000811061308b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461307c5780925050506130c7565b50808060019003915050612f88565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130be906158e4565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006131b38473ffffffffffffffffffffffffffffffffffffffff166134ae565b1561330c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131dc61289e565b8786866040518563ffffffff1660e01b81526004016131fe9493929190615959565b6020604051808303816000875af192505050801561323a57506040513d601f19601f8201168201806040525081019061323791906159ba565b60015b6132bc573d806000811461326a576040519150601f19603f3d011682016040523d82523d6000602084013e61326f565b606091505b5060008151036132b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ab906151e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613311565b600190505b949350505050565b6060600b8054613328906144d0565b80601f0160208091040260200160405190810160405280929190818152602001828054613354906144d0565b80156133a15780601f10613376576101008083540402835291602001916133a1565b820191906000526020600020905b81548152906001019060200180831161338457829003601f168201915b5050505050905090565b6060600060016133ba846134d1565b01905060008167ffffffffffffffff8111156133d9576133d8613d52565b5b6040519080825280601f01601f19166020018201604052801561340b5781602001600182028036833780820191505090505b509050600082602001820190505b60011561346e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613462576134616159e7565b5b04945060008503613419575b819350505050919050565b6000826134868584613624565b1490509392505050565b50505050565b50505050565b6134a9838383600161367a565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061352f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613525576135246159e7565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061356c576d04ee2d6d415b85acef81000000008381613562576135616159e7565b5b0492506020810190505b662386f26fc10000831061359b57662386f26fc100008381613591576135906159e7565b5b0492506010810190505b6305f5e10083106135c4576305f5e10083816135ba576135b96159e7565b5b0492506008810190505b61271083106135e95761271083816135df576135de6159e7565b5b0492506004810190505b6064831061360c5760648381613602576136016159e7565b5b0492506002810190505b600a831061361b576001810190505b80915050919050565b60008082905060005b845181101561366f5761365a8286838151811061364d5761364c614efe565b5b60200260200101516139f6565b9150808061366790614f2d565b91505061362d565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036136ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e690615a88565b60405180910390fd5b60008403613732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372990615b1a565b60405180910390fd5b61373f6000868387613490565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156139d957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156139c4576139846000888488613192565b6139c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ba906151e3565b60405180910390fd5b5b8180600101925050808060010191505061390d565b5080600081905550506139ef6000868387613496565b5050505050565b6000818310613a0e57613a098284613a21565b613a19565b613a188383613a21565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613abb81613a86565b8114613ac657600080fd5b50565b600081359050613ad881613ab2565b92915050565b600060208284031215613af457613af3613a7c565b5b6000613b0284828501613ac9565b91505092915050565b60008115159050919050565b613b2081613b0b565b82525050565b6000602082019050613b3b6000830184613b17565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b7b578082015181840152602081019050613b60565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ba382613b41565b613bad8185613b4c565b9350613bbd818560208601613b5d565b613bc681613b87565b840191505092915050565b60006020820190508181036000830152613beb8184613b98565b905092915050565b6000819050919050565b613c0681613bf3565b8114613c1157600080fd5b50565b600081359050613c2381613bfd565b92915050565b600060208284031215613c3f57613c3e613a7c565b5b6000613c4d84828501613c14565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c8182613c56565b9050919050565b613c9181613c76565b82525050565b6000602082019050613cac6000830184613c88565b92915050565b613cbb81613c76565b8114613cc657600080fd5b50565b600081359050613cd881613cb2565b92915050565b60008060408385031215613cf557613cf4613a7c565b5b6000613d0385828601613cc9565b9250506020613d1485828601613c14565b9150509250929050565b613d2781613bf3565b82525050565b6000602082019050613d426000830184613d1e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d8a82613b87565b810181811067ffffffffffffffff82111715613da957613da8613d52565b5b80604052505050565b6000613dbc613a72565b9050613dc88282613d81565b919050565b600067ffffffffffffffff821115613de857613de7613d52565b5b613df182613b87565b9050602081019050919050565b82818337600083830152505050565b6000613e20613e1b84613dcd565b613db2565b905082815260208101848484011115613e3c57613e3b613d4d565b5b613e47848285613dfe565b509392505050565b600082601f830112613e6457613e63613d48565b5b8135613e74848260208601613e0d565b91505092915050565b600060208284031215613e9357613e92613a7c565b5b600082013567ffffffffffffffff811115613eb157613eb0613a81565b5b613ebd84828501613e4f565b91505092915050565b600080600060608486031215613edf57613ede613a7c565b5b6000613eed86828701613cc9565b9350506020613efe86828701613cc9565b9250506040613f0f86828701613c14565b9150509250925092565b600060208284031215613f2f57613f2e613a7c565b5b6000613f3d84828501613cc9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f7b81613bf3565b82525050565b6000613f8d8383613f72565b60208301905092915050565b6000602082019050919050565b6000613fb182613f46565b613fbb8185613f51565b9350613fc683613f62565b8060005b83811015613ff7578151613fde8882613f81565b9750613fe983613f99565b925050600181019050613fca565b5085935050505092915050565b6000602082019050818103600083015261401e8184613fa6565b905092915050565b6000819050919050565b61403981614026565b811461404457600080fd5b50565b60008135905061405681614030565b92915050565b60006020828403121561407257614071613a7c565b5b600061408084828501614047565b91505092915050565b6003811061409657600080fd5b50565b6000813590506140a881614089565b92915050565b6000602082840312156140c4576140c3613a7c565b5b60006140d284828501614099565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061411b5761411a6140db565b5b50565b600081905061412c8261410a565b919050565b600061413c8261411e565b9050919050565b61414c81614131565b82525050565b60006020820190506141676000830184614143565b92915050565b61417681613b0b565b811461418157600080fd5b50565b6000813590506141938161416d565b92915050565b600080604083850312156141b0576141af613a7c565b5b60006141be85828601613cc9565b92505060206141cf85828601614184565b9150509250929050565b600067ffffffffffffffff8211156141f4576141f3613d52565b5b6141fd82613b87565b9050602081019050919050565b600061421d614218846141d9565b613db2565b90508281526020810184848401111561423957614238613d4d565b5b614244848285613dfe565b509392505050565b600082601f83011261426157614260613d48565b5b813561427184826020860161420a565b91505092915050565b6000806000806080858703121561429457614293613a7c565b5b60006142a287828801613cc9565b94505060206142b387828801613cc9565b93505060406142c487828801613c14565b925050606085013567ffffffffffffffff8111156142e5576142e4613a81565b5b6142f18782880161424c565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261431d5761431c613d48565b5b8235905067ffffffffffffffff81111561433a576143396142fd565b5b60208301915083602082028301111561435657614355614302565b5b9250929050565b60008060006040848603121561437657614375613a7c565b5b600061438486828701613c14565b935050602084013567ffffffffffffffff8111156143a5576143a4613a81565b5b6143b186828701614307565b92509250509250925092565b6000602082840312156143d3576143d2613a7c565b5b60006143e184828501614184565b91505092915050565b6000806040838503121561440157614400613a7c565b5b600061440f85828601613cc9565b925050602061442085828601613cc9565b9150509250929050565b6000806020838503121561444157614440613a7c565b5b600083013567ffffffffffffffff81111561445f5761445e613a81565b5b61446b85828601614307565b92509250509250929050565b61448081614026565b82525050565b600060208201905061449b6000830184614477565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144e857607f821691505b6020821081036144fb576144fa6144a1565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061455d602d83613b4c565b915061456882614501565b604082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006145ef602283613b4c565b91506145fa82614593565b604082019050919050565b6000602082019050818103600083015261461e816145e2565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614681603983613b4c565b915061468c82614625565b604082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146dc565b61472386836146dc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061476061475b61475684613bf3565b61473b565b613bf3565b9050919050565b6000819050919050565b61477a83614745565b61478e61478682614767565b8484546146e9565b825550505050565b600090565b6147a3614796565b6147ae818484614771565b505050565b5b818110156147d2576147c760008261479b565b6001810190506147b4565b5050565b601f821115614817576147e8816146b7565b6147f1846146cc565b81016020851015614800578190505b61481461480c856146cc565b8301826147b3565b50505b505050565b600082821c905092915050565b600061483a6000198460080261481c565b1980831691505092915050565b60006148538383614829565b9150826002028217905092915050565b61486c82613b41565b67ffffffffffffffff81111561488557614884613d52565b5b61488f82546144d0565b61489a8282856147d6565b600060209050601f8311600181146148cd57600084156148bb578287015190505b6148c58582614847565b86555061492d565b601f1984166148db866146b7565b60005b82811015614903578489015182556001820191506020850194506020810190506148de565b86831015614920578489015161491c601f891682614829565b8355505b6001600288020188555050505b505050505050565b7f5761697420666f72207075626c6963206d696e74000000000000000000000000600082015250565b600061496b601483613b4c565b915061497682614935565b602082019050919050565b6000602082019050818103600083015261499a8161495e565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006149d7601483613b4c565b91506149e2826149a1565b602082019050919050565b60006020820190508181036000830152614a06816149ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4782613bf3565b9150614a5283613bf3565b9250828201905080821115614a6a57614a69614a0d565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000614aa6600983613b4c565b9150614ab182614a70565b602082019050919050565b60006020820190508181036000830152614ad581614a99565b9050919050565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b6000614b12600883613b4c565b9150614b1d82614adc565b602082019050919050565b60006020820190508181036000830152614b4181614b05565b9050919050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000614b7e601d83613b4c565b9150614b8982614b48565b602082019050919050565b60006020820190508181036000830152614bad81614b71565b9050919050565b6000614bbf82613bf3565b9150614bca83613bf3565b9250828203905081811115614be257614be1614a0d565b5b92915050565b6000614bf382613bf3565b9150614bfe83613bf3565b9250828202614c0c81613bf3565b91508282048414831517614c2357614c22614a0d565b5b5092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c86602283613b4c565b9150614c9182614c2a565b604082019050919050565b60006020820190508181036000830152614cb581614c79565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614d18602e83613b4c565b9150614d2382614cbc565b604082019050919050565b60006020820190508181036000830152614d4781614d0b565b9050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000614daa602e83613b4c565b9150614db582614d4e565b604082019050919050565b60006020820190508181036000830152614dd981614d9d565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000614e16600883613b4c565b9150614e2182614de0565b602082019050919050565b60006020820190508181036000830152614e4581614e09565b9050919050565b600081905092915050565b50565b6000614e67600083614e4c565b9150614e7282614e57565b600082019050919050565b6000614e8882614e5a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614ec8601083613b4c565b9150614ed382614e92565b602082019050919050565b60006020820190508181036000830152614ef781614ebb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f3882613bf3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f6a57614f69614a0d565b5b600182019050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd1602383613b4c565b9150614fdc82614f75565b604082019050919050565b6000602082019050818103600083015261500081614fc4565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000615063602b83613b4c565b915061506e82615007565b604082019050919050565b6000602082019050818103600083015261509281615056565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006150cf601783613b4c565b91506150da82615099565b602082019050919050565b600060208201905081810360008301526150fe816150c2565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061513b601a83613b4c565b915061514682615105565b602082019050919050565b6000602082019050818103600083015261516a8161512e565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006151cd603383613b4c565b91506151d882615171565b604082019050919050565b600060208201905081810360008301526151fc816151c0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061525f602f83613b4c565b915061526a82615203565b604082019050919050565b6000602082019050818103600083015261528e81615252565b9050919050565b600081905092915050565b60006152ab82613b41565b6152b58185615295565b93506152c5818560208601613b5d565b80840191505092915050565b600081546152de816144d0565b6152e88186615295565b9450600182166000811461530357600181146153185761534b565b60ff198316865281151582028601935061534b565b615321856146b7565b60005b8381101561534357815481890152600182019150602081019050615324565b838801955050505b50505092915050565b600061536082866152a0565b915061536c82856152a0565b915061537882846152d1565b9150819050949350505050565b7f5761697420666f722077686974656c697374206d696e74000000000000000000600082015250565b60006153bb601783613b4c565b91506153c682615385565b602082019050919050565b600060208201905081810360008301526153ea816153ae565b9050919050565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b6000615427601b83613b4c565b9150615432826153f1565b602082019050919050565b600060208201905081810360008301526154568161541a565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000615493601d83613b4c565b915061549e8261545d565b602082019050919050565b600060208201905081810360008301526154c281615486565b9050919050565b60008160601b9050919050565b60006154e1826154c9565b9050919050565b60006154f3826154d6565b9050919050565b61550b61550682613c76565b6154e8565b82525050565b600061551d82846154fa565b60148201915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615588602683613b4c565b91506155938261552c565b604082019050919050565b600060208201905081810360008301526155b78161557b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155f4602083613b4c565b91506155ff826155be565b602082019050919050565b60006020820190508181036000830152615623816155e7565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615686603283613b4c565b91506156918261562a565b604082019050919050565b600060208201905081810360008301526156b581615679565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615718602683613b4c565b9150615723826156bc565b604082019050919050565b600060208201905081810360008301526157478161570b565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006157aa602583613b4c565b91506157b58261574e565b604082019050919050565b600060208201905081810360008301526157d98161579d565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061583c602a83613b4c565b9150615847826157e0565b604082019050919050565b6000602082019050818103600083015261586b8161582f565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006158ce602f83613b4c565b91506158d982615872565b604082019050919050565b600060208201905081810360008301526158fd816158c1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061592b82615904565b615935818561590f565b9350615945818560208601613b5d565b61594e81613b87565b840191505092915050565b600060808201905061596e6000830187613c88565b61597b6020830186613c88565b6159886040830185613d1e565b818103606083015261599a8184615920565b905095945050505050565b6000815190506159b481613ab2565b92915050565b6000602082840312156159d0576159cf613a7c565b5b60006159de848285016159a5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a72602183613b4c565b9150615a7d82615a16565b604082019050919050565b60006020820190508181036000830152615aa181615a65565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615b04602883613b4c565b9150615b0f82615aa8565b604082019050919050565b60006020820190508181036000830152615b3381615af7565b905091905056fea26469706673582212205c5772b3cd9da0d249535c40262f8f2b2ed181a4a58070bb37e6b37716d381bd64736f6c63430008120033

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.