ETH Price: $3,191.65 (+2.41%)
Gas: 2 Gwei

Token

CryptoToysClub (CTC)
 

Overview

Max Total Supply

2,876 CTC

Holders

681

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CTC
0x3c5b4f56dc89bbf2b498950a2c245ea3719c68cf
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:
CTC_ERC721A

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./libs/ERC2981ContractWideRoyalties.sol";
import "./libs/IERC721A.sol";

contract CTC_ERC721A is IERC721A, ERC2981ContractWideRoyalties, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public maxSupply = 5555;
    bool public paused = false;
    bool public revealed = false;

    bytes32 public whiteListMerkleRoot;
    bool public whiteListMintOpened = true;
    uint256 public whiteListPrice = 0 ether;
    mapping(address => uint256) public whiteListBalanceMap;
    mapping(address => uint256) public publicSaleBalanceMap;

    bool public isPublicSaleOpened = false;
    uint256 public publicSaleCost = 0.05 ether;

    function mint(
        uint256 mintAmount,
        bool isWhiteListMint,
        bytes32[] calldata proof
    ) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + mintAmount <= maxSupply, "max NFT limit exceeded");

        if (msg.sender == owner()) {
            whiteListBalanceMap[msg.sender] += mintAmount;
            _safeMint(msg.sender, mintAmount);
            return;
        }

        uint256 ownerMintedCount = whiteListBalanceMap[msg.sender];

        if (isWhiteListMint) {
            require(whiteListMintOpened, "white list mint closed");
            require(ownerMintedCount == 0, "white list already mint");

            // Verify merkle proof, or revert if not in tree
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender, mintAmount));
            bool isValidLeaf = MerkleProof.verify(
                proof,
                whiteListMerkleRoot,
                leaf
            );
            require(isValidLeaf, "white list not validate");

            if (whiteListPrice != 0) {
                require(
                    msg.value >= whiteListPrice * mintAmount,
                    "insufficient funds for white list mint"
                );
            }

            whiteListBalanceMap[msg.sender] = mintAmount;
            _safeMint(msg.sender, mintAmount);
            return;
        }

        require(isPublicSaleOpened, "public sale not open yet");
        require(
            msg.value >= publicSaleCost * mintAmount,
            "insufficient funds for public sale mint"
        );
        publicSaleBalanceMap[msg.sender] += mintAmount;
        _safeMint(msg.sender, mintAmount);
    }

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _maxSupply,
        string memory _baseURI,
        string memory _notRevealedUri
    ) IERC721A(_name, _symbol) {
        maxSupply = _maxSupply;
        baseURI = _baseURI;
        notRevealedUri = _notRevealedUri;
        _setRoyalties(msg.sender, 1);
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC721A, ERC2981Base)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

        if (revealed == false) {
            return notRevealedUri;
        }

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

    //only owner
    function nftAdmin1(
        bytes32 _whiteListMerkleRoot,
        uint256 _whiteListPrice,
        uint256 _publicSaleCost,
        bool _whiteListMintOpened,
        bool _isPublicSaleOpened
    ) public onlyOwner {
        whiteListMerkleRoot = _whiteListMerkleRoot;
        whiteListPrice = _whiteListPrice;
        publicSaleCost = _publicSaleCost;
        whiteListMintOpened = _whiteListMintOpened;
        isPublicSaleOpened = _isPublicSaleOpened;
    }

    function nftAdmin2(
        string memory _baseURI,
        string memory _baseExtension,
        string memory _notRevealedUri,
        bool _paused,
        bool _revealed,
        address recipient,
        uint256 royaltyValue
    ) public onlyOwner {
        baseURI = _baseURI;
        baseExtension = _baseExtension;
        notRevealedUri = _notRevealedUri;
        paused = _paused;
        revealed = _revealed;
        _setRoyalties(recipient, royaltyValue);
    }

    function withdraw(address withdrawTo) public payable onlyOwner {
        (bool hs, ) = payable(withdrawTo).call{value: (address(this).balance)}(
            ""
        );
        require(hs);
    }
}

File 2 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 3 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

File 4 of 16 : ERC2981ContractWideRoyalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

import "./ERC2981Base.sol";

abstract contract ERC2981ContractWideRoyalties is ERC2981Base {
    RoyaltyInfo private _royalties;

    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, "ERC2981Royalties: Too high");
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties;
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }
}

File 5 of 16 : IERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract IERC721A 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 = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = IERC721A.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 Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity > 0, "ERC721A: quantity must be greater 0");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            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.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 8 of 16 : ERC2981Base.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

import "./IERC2981Royalties.sol";

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 9 of 16 : 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 10 of 16 : IERC2981Royalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"},{"internalType":"bool","name":"isWhiteListMint","type":"bool"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whiteListMerkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_whiteListPrice","type":"uint256"},{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"},{"internalType":"bool","name":"_whiteListMintOpened","type":"bool"},{"internalType":"bool","name":"_isPublicSaleOpened","type":"bool"}],"name":"nftAdmin1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_baseExtension","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"},{"internalType":"bool","name":"_paused","type":"bool"},{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"royaltyValue","type":"uint256"}],"name":"nftAdmin2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleBalanceMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListBalanceMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"withdrawTo","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600080556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005592919062000373565b506115b3600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff02191690831515021790555060006010556000601360006101000a81548160ff02191690831515021790555066b1a2bc2ec50000601455348015620000e557600080fd5b5060405162005c8f38038062005c8f83398181016040528101906200010b9190620004ac565b848481600190805190602001906200012592919062000373565b5080600290805190602001906200013e92919062000373565b5050506200016162000155620001b860201b60201c565b620001c060201b60201c565b82600c8190555081600990805190602001906200018092919062000373565b5080600b90805190602001906200019992919062000373565b50620001ad3360016200028660201b60201c565b5050505050620007a9565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612710811115620002ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c590620005b9565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600760008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b82805462000381906200068b565b90600052602060002090601f016020900481019282620003a55760008555620003f1565b82601f10620003c057805160ff1916838001178555620003f1565b82800160010185558215620003f1579182015b82811115620003f0578251825591602001919060010190620003d3565b5b50905062000400919062000404565b5090565b5b808211156200041f57600081600090555060010162000405565b5090565b60006200043a620004348462000604565b620005db565b9050828152602081018484840111156200045357600080fd5b6200046084828562000655565b509392505050565b600082601f8301126200047a57600080fd5b81516200048c84826020860162000423565b91505092915050565b600081519050620004a6816200078f565b92915050565b600080600080600060a08688031215620004c557600080fd5b600086015167ffffffffffffffff811115620004e057600080fd5b620004ee8882890162000468565b955050602086015167ffffffffffffffff8111156200050c57600080fd5b6200051a8882890162000468565b94505060406200052d8882890162000495565b935050606086015167ffffffffffffffff8111156200054b57600080fd5b620005598882890162000468565b925050608086015167ffffffffffffffff8111156200057757600080fd5b620005858882890162000468565b9150509295509295909350565b6000620005a1601a836200063a565b9150620005ae8262000766565b602082019050919050565b60006020820190508181036000830152620005d48162000592565b9050919050565b6000620005e7620005fa565b9050620005f58282620006c1565b919050565b6000604051905090565b600067ffffffffffffffff82111562000622576200062162000726565b5b6200062d8262000755565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200067557808201518184015260208101905062000658565b8381111562000685576000848401525b50505050565b60006002820490506001821680620006a457607f821691505b60208210811415620006bb57620006ba620006f7565b5b50919050565b620006cc8262000755565b810181811067ffffffffffffffff82111715620006ee57620006ed62000726565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b6200079a816200064b565b8114620007a657600080fd5b50565b6154d680620007b96000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063c9e8ef231161006f578063c9e8ef231461082a578063d5abeb0114610855578063de8f2fa514610880578063e985e9c5146108bd578063f2fde38b146108fa57610225565b8063a22cb46514610733578063b88d4fde1461075c578063c332bf9114610785578063c6682862146107c2578063c87b56dd146107ed57610225565b806370a08231116100f257806370a0823114610660578063715018a61461069d578063789f981f146106b45780638da5cb5b146106dd57806395d89b411461070857610225565b80636352211e146105a257806368575685146105df5780636b7259ae1461060a5780636c0360eb1461063557610225565b80632f745c59116101b15780634f6ccce7116101755780634f6ccce7146104d7578063518302271461051457806351cff8d91461053f57806354f830461461055b5780635c975abb1461057757610225565b80632f745c59146103de57806334b6ab1a1461041b57806342842e0e14610446578063438b63001461046f578063453afb0f146104ac57610225565b8063081c8c44116101f8578063081c8c44146102f8578063095ea7b31461032357806318160ddd1461034c57806323b872dd146103775780632a55205a146103a057610225565b806301ffc9a71461022a57806305153fd51461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613a05565b610923565b60405161025e919061435d565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613a57565b610935565b005b34801561029c57600080fd5b506102a5610a3d565b6040516102b29190614393565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613b3d565b610acf565b6040516102ef91906142ab565b60405180910390f35b34801561030457600080fd5b5061030d610b54565b60405161031a9190614393565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613952565b610be2565b005b34801561035857600080fd5b50610361610cfb565b60405161036e9190614755565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061384c565b610d04565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613bd2565b610d14565b6040516103d5929190614312565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190613952565b610dd4565b6040516104129190614755565b60405180910390f35b34801561042757600080fd5b50610430610fd2565b60405161043d9190614378565b60405180910390f35b34801561045257600080fd5b5061046d6004803603810190610468919061384c565b610fd8565b005b34801561047b57600080fd5b50610496600480360381019061049191906137e7565b610ff8565b6040516104a3919061433b565b60405180910390f35b3480156104b857600080fd5b506104c16110f2565b6040516104ce9190614755565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613b3d565b6110f8565b60405161050b9190614755565b60405180910390f35b34801561052057600080fd5b5061052961114b565b604051610536919061435d565b60405180910390f35b610559600480360381019061055491906137e7565b61115e565b005b61057560048036038101906105709190613b66565b611254565b005b34801561058357600080fd5b5061058c611739565b604051610599919061435d565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613b3d565b61174c565b6040516105d691906142ab565b60405180910390f35b3480156105eb57600080fd5b506105f4611762565b6040516106019190614755565b60405180910390f35b34801561061657600080fd5b5061061f611768565b60405161062c919061435d565b60405180910390f35b34801561064157600080fd5b5061064a61177b565b6040516106579190614393565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906137e7565b611809565b6040516106949190614755565b60405180910390f35b3480156106a957600080fd5b506106b26118f2565b005b3480156106c057600080fd5b506106db60048036038101906106d6919061398e565b61197a565b005b3480156106e957600080fd5b506106f2611a46565b6040516106ff91906142ab565b60405180910390f35b34801561071457600080fd5b5061071d611a70565b60405161072a9190614393565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613916565b611b02565b005b34801561076857600080fd5b50610783600480360381019061077e919061389b565b611c83565b005b34801561079157600080fd5b506107ac60048036038101906107a791906137e7565b611cdf565b6040516107b99190614755565b60405180910390f35b3480156107ce57600080fd5b506107d7611cf7565b6040516107e49190614393565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613b3d565b611d85565b6040516108219190614393565b60405180910390f35b34801561083657600080fd5b5061083f611ede565b60405161084c919061435d565b60405180910390f35b34801561086157600080fd5b5061086a611ef1565b6040516108779190614755565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a291906137e7565b611ef7565b6040516108b49190614755565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190613810565b611f0f565b6040516108f1919061435d565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c91906137e7565b611fa3565b005b600061092e8261209b565b9050919050565b61093d612115565b73ffffffffffffffffffffffffffffffffffffffff1661095b611a46565b73ffffffffffffffffffffffffffffffffffffffff16146109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890614575565b60405180910390fd5b86600990805190602001906109c7929190613572565b5085600a90805190602001906109de929190613572565b5084600b90805190602001906109f5929190613572565b5083600d60006101000a81548160ff02191690831515021790555082600d60016101000a81548160ff021916908315150217905550610a34828261211d565b50505050505050565b606060018054610a4c90614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890614af4565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b6000610ada82612207565b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090614715565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610b6190614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d90614af4565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b505050505081565b6000610bed8261174c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590614635565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7d612115565b73ffffffffffffffffffffffffffffffffffffffff161480610cac5750610cab81610ca6612115565b611f0f565b5b610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce2906144d5565b60405180910390fd5b610cf6838383612214565b505050565b60008054905090565b610d0f8383836122c6565b505050565b600080600060076040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff1685610dc09190614960565b610dca919061492f565b9150509250929050565b6000610ddf83611809565b8210610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e17906143b5565b60405180910390fd5b6000610e2a610cfb565b905060008060005b83811015610f90576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f7c5786841415610f6d578195505050505050610fcc565b8380610f7890614b57565b9450505b508080610f8890614b57565b915050610e32565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc3906146f5565b60405180910390fd5b92915050565b600e5481565b610ff383838360405180602001604052806000815250611c83565b505050565b6060600061100583611809565b905060008167ffffffffffffffff811115611049577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110775781602001602082028036833780820191505090505b50905060005b828110156110e75761108f8582610dd4565b8282815181106110c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806110df90614b57565b91505061107d565b508092505050919050565b60145481565b6000611102610cfb565b8210611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614475565b60405180910390fd5b819050919050565b600d60019054906101000a900460ff1681565b611166612115565b73ffffffffffffffffffffffffffffffffffffffff16611184611a46565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190614575565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff164760405161120090614296565b60006040518083038185875af1925050503d806000811461123d576040519150601f19603f3d011682016040523d82523d6000602084013e611242565b606091505b505090508061125057600080fd5b5050565b600d60009054906101000a900460ff16156112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b90614595565b60405180910390fd5b60006112ae610cfb565b9050600085116112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90614735565b60405180910390fd5b600c54858261130291906148d9565b1115611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a906144f5565b60405180910390fd5b61134b611a46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156113e45784601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113cd91906148d9565b925050819055506113de338661286d565b50611733565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050841561163157600f60009054906101000a900460ff1661147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614535565b60405180910390fd5b600081146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790614455565b60405180910390fd5b600033876040516020016114d5929190614239565b604051602081830303815290604052805190602001209050600061153d868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e548461288b565b90508061157f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611576906146d5565b60405180910390fd5b6000601054146115da57876010546115979190614960565b3410156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090614435565b60405180910390fd5b5b87601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611628338961286d565b50505050611733565b601360009054906101000a900460ff16611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790614615565b60405180910390fd5b8560145461168e9190614960565b3410156116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c7906144b5565b60405180910390fd5b85601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461171f91906148d9565b92505081905550611730338761286d565b50505b50505050565b600d60009054906101000a900460ff1681565b6000611757826128a2565b600001519050919050565b60105481565b601360009054906101000a900460ff1681565b6009805461178890614af4565b80601f01602080910402602001604051908101604052809291908181526020018280546117b490614af4565b80156118015780601f106117d657610100808354040283529160200191611801565b820191906000526020600020905b8154815290600101906020018083116117e457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614515565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6118fa612115565b73ffffffffffffffffffffffffffffffffffffffff16611918611a46565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590614575565b60405180910390fd5b61197860006129fd565b565b611982612115565b73ffffffffffffffffffffffffffffffffffffffff166119a0611a46565b73ffffffffffffffffffffffffffffffffffffffff16146119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed90614575565b60405180910390fd5b84600e81905550836010819055508260148190555081600f60006101000a81548160ff02191690831515021790555080601360006101000a81548160ff0219169083151502179055505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611a7f90614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054611aab90614af4565b8015611af85780601f10611acd57610100808354040283529160200191611af8565b820191906000526020600020905b815481529060010190602001808311611adb57829003601f168201915b5050505050905090565b611b0a612115565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f906145d5565b60405180910390fd5b8060066000611b85612115565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c32612115565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c77919061435d565b60405180910390a35050565b611c8e8484846122c6565b611c9a84848484612ac3565b611cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd090614675565b60405180910390fd5b50505050565b60126020528060005260406000206000915090505481565b600a8054611d0490614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3090614af4565b8015611d7d5780601f10611d5257610100808354040283529160200191611d7d565b820191906000526020600020905b815481529060010190602001808311611d6057829003601f168201915b505050505081565b6060611d9082612207565b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc6906145b5565b60405180910390fd5b60001515600d60019054906101000a900460ff1615151415611e7d57600b8054611df890614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2490614af4565b8015611e715780601f10611e4657610100808354040283529160200191611e71565b820191906000526020600020905b815481529060010190602001808311611e5457829003601f168201915b50505050509050611ed9565b6000611e87612c5a565b90506000815111611ea75760405180602001604052806000815250611ed5565b80611eb184612c71565b600a604051602001611ec593929190614265565b6040516020818303038152906040525b9150505b919050565b600f60009054906101000a900460ff1681565b600c5481565b60116020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fab612115565b73ffffffffffffffffffffffffffffffffffffffff16611fc9611a46565b73ffffffffffffffffffffffffffffffffffffffff161461201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690614575565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906143f5565b60405180910390fd5b612098816129fd565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210e575061210d82612e1e565b5b9050919050565b600033905090565b612710811115612162576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612159906143d5565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600760008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122d1826128a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122f8612115565b73ffffffffffffffffffffffffffffffffffffffff161480612354575061231d612115565b73ffffffffffffffffffffffffffffffffffffffff1661233c84610acf565b73ffffffffffffffffffffffffffffffffffffffff16145b80612370575061236f826000015161236a612115565b611f0f565b5b9050806123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a9906145f5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b90614555565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248b90614495565b60405180910390fd5b6124a18585856001612f68565b6124b16000848460000151612214565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126b791906148d9565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127fd5761272d81612207565b156127fc576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128658686866001612f6e565b505050505050565b612887828260405180602001604052806000815250612f74565b5050565b6000826128988584613433565b1490509392505050565b6128aa6135f8565b6128b382612207565b6128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e990614415565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129e45780925050506129f8565b5080806129f090614aca565b9150506128f8565b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612ae48473ffffffffffffffffffffffffffffffffffffffff166134ce565b15612c4d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b0d612115565b8786866040518563ffffffff1660e01b8152600401612b2f94939291906142c6565b602060405180830381600087803b158015612b4957600080fd5b505af1925050508015612b7a57506040513d601f19601f82011682018060405250810190612b779190613a2e565b60015b612bfd573d8060008114612baa576040519150601f19603f3d011682016040523d82523d6000602084013e612baf565b606091505b50600081511415612bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bec90614675565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c52565b600190505b949350505050565b606060405180602001604052806000815250905090565b60606000821415612cb9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e19565b600082905060005b60008214612ceb578080612cd490614b57565b915050600a82612ce4919061492f565b9150612cc1565b60008167ffffffffffffffff811115612d2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d5f5781602001600182028036833780820191505090505b5090505b60008514612e1257600182612d7891906149ba565b9150600a85612d879190614bce565b6030612d9391906148d9565b60f81b818381518110612dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e0b919061492f565b9450612d63565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ee957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f5157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f615750612f60826134f1565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe1906146b5565b60405180910390fd5b612ff381612207565b15613033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302a90614695565b60405180910390fd5b60008311613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d90614655565b60405180910390fd5b6130836000858386612f68565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516131809190614893565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131a79190614893565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561341657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133b66000888488612ac3565b6133f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ec90614675565b60405180910390fd5b818061340090614b57565b925050808061340e90614b57565b915050613345565b508060008190555061342b6000878588612f6e565b505050505050565b60008082905060005b84518110156134c3576000858281518110613480577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116134a25761349b838261355b565b92506134af565b6134ac818461355b565b92505b5080806134bb90614b57565b91505061343c565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b82805461357e90614af4565b90600052602060002090601f0160209004810192826135a057600085556135e7565b82601f106135b957805160ff19168380011785556135e7565b828001600101855582156135e7579182015b828111156135e65782518255916020019190600101906135cb565b5b5090506135f49190613632565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561364b576000816000905550600101613633565b5090565b600061366261365d84614795565b614770565b90508281526020810184848401111561367a57600080fd5b613685848285614a88565b509392505050565b60006136a061369b846147c6565b614770565b9050828152602081018484840111156136b857600080fd5b6136c3848285614a88565b509392505050565b6000813590506136da8161542d565b92915050565b60008083601f8401126136f257600080fd5b8235905067ffffffffffffffff81111561370b57600080fd5b60208301915083602082028301111561372357600080fd5b9250929050565b60008135905061373981615444565b92915050565b60008135905061374e8161545b565b92915050565b60008135905061376381615472565b92915050565b60008151905061377881615472565b92915050565b600082601f83011261378f57600080fd5b813561379f84826020860161364f565b91505092915050565b600082601f8301126137b957600080fd5b81356137c984826020860161368d565b91505092915050565b6000813590506137e181615489565b92915050565b6000602082840312156137f957600080fd5b6000613807848285016136cb565b91505092915050565b6000806040838503121561382357600080fd5b6000613831858286016136cb565b9250506020613842858286016136cb565b9150509250929050565b60008060006060848603121561386157600080fd5b600061386f868287016136cb565b9350506020613880868287016136cb565b9250506040613891868287016137d2565b9150509250925092565b600080600080608085870312156138b157600080fd5b60006138bf878288016136cb565b94505060206138d0878288016136cb565b93505060406138e1878288016137d2565b925050606085013567ffffffffffffffff8111156138fe57600080fd5b61390a8782880161377e565b91505092959194509250565b6000806040838503121561392957600080fd5b6000613937858286016136cb565b92505060206139488582860161372a565b9150509250929050565b6000806040838503121561396557600080fd5b6000613973858286016136cb565b9250506020613984858286016137d2565b9150509250929050565b600080600080600060a086880312156139a657600080fd5b60006139b48882890161373f565b95505060206139c5888289016137d2565b94505060406139d6888289016137d2565b93505060606139e78882890161372a565b92505060806139f88882890161372a565b9150509295509295909350565b600060208284031215613a1757600080fd5b6000613a2584828501613754565b91505092915050565b600060208284031215613a4057600080fd5b6000613a4e84828501613769565b91505092915050565b600080600080600080600060e0888a031215613a7257600080fd5b600088013567ffffffffffffffff811115613a8c57600080fd5b613a988a828b016137a8565b975050602088013567ffffffffffffffff811115613ab557600080fd5b613ac18a828b016137a8565b965050604088013567ffffffffffffffff811115613ade57600080fd5b613aea8a828b016137a8565b9550506060613afb8a828b0161372a565b9450506080613b0c8a828b0161372a565b93505060a0613b1d8a828b016136cb565b92505060c0613b2e8a828b016137d2565b91505092959891949750929550565b600060208284031215613b4f57600080fd5b6000613b5d848285016137d2565b91505092915050565b60008060008060608587031215613b7c57600080fd5b6000613b8a878288016137d2565b9450506020613b9b8782880161372a565b935050604085013567ffffffffffffffff811115613bb857600080fd5b613bc4878288016136e0565b925092505092959194509250565b60008060408385031215613be557600080fd5b6000613bf3858286016137d2565b9250506020613c04858286016137d2565b9150509250929050565b6000613c1a8383614204565b60208301905092915050565b613c2f816149ee565b82525050565b613c46613c41826149ee565b614ba0565b82525050565b6000613c578261481c565b613c61818561484a565b9350613c6c836147f7565b8060005b83811015613c9d578151613c848882613c0e565b9750613c8f8361483d565b925050600181019050613c70565b5085935050505092915050565b613cb381614a00565b82525050565b613cc281614a0c565b82525050565b6000613cd382614827565b613cdd818561485b565b9350613ced818560208601614a97565b613cf681614cbb565b840191505092915050565b6000613d0c82614832565b613d168185614877565b9350613d26818560208601614a97565b613d2f81614cbb565b840191505092915050565b6000613d4582614832565b613d4f8185614888565b9350613d5f818560208601614a97565b80840191505092915050565b60008154613d7881614af4565b613d828186614888565b94506001821660008114613d9d5760018114613dae57613de1565b60ff19831686528186019350613de1565b613db785614807565b60005b83811015613dd957815481890152600182019150602081019050613dba565b838801955050505b50505092915050565b6000613df7602283614877565b9150613e0282614cd9565b604082019050919050565b6000613e1a601a83614877565b9150613e2582614d28565b602082019050919050565b6000613e3d602683614877565b9150613e4882614d51565b604082019050919050565b6000613e60602a83614877565b9150613e6b82614da0565b604082019050919050565b6000613e83602683614877565b9150613e8e82614def565b604082019050919050565b6000613ea6601783614877565b9150613eb182614e3e565b602082019050919050565b6000613ec9602383614877565b9150613ed482614e67565b604082019050919050565b6000613eec602583614877565b9150613ef782614eb6565b604082019050919050565b6000613f0f602783614877565b9150613f1a82614f05565b604082019050919050565b6000613f32603983614877565b9150613f3d82614f54565b604082019050919050565b6000613f55601683614877565b9150613f6082614fa3565b602082019050919050565b6000613f78602b83614877565b9150613f8382614fcc565b604082019050919050565b6000613f9b601683614877565b9150613fa68261501b565b602082019050919050565b6000613fbe602683614877565b9150613fc982615044565b604082019050919050565b6000613fe1602083614877565b9150613fec82615093565b602082019050919050565b6000614004601683614877565b915061400f826150bc565b602082019050919050565b6000614027602f83614877565b9150614032826150e5565b604082019050919050565b600061404a601a83614877565b915061405582615134565b602082019050919050565b600061406d603283614877565b91506140788261515d565b604082019050919050565b6000614090601883614877565b915061409b826151ac565b602082019050919050565b60006140b3602283614877565b91506140be826151d5565b604082019050919050565b60006140d660008361486c565b91506140e182615224565b600082019050919050565b60006140f9602383614877565b915061410482615227565b604082019050919050565b600061411c603383614877565b915061412782615276565b604082019050919050565b600061413f601d83614877565b915061414a826152c5565b602082019050919050565b6000614162602183614877565b915061416d826152ee565b604082019050919050565b6000614185601783614877565b91506141908261533d565b602082019050919050565b60006141a8602e83614877565b91506141b382615366565b604082019050919050565b60006141cb602d83614877565b91506141d6826153b5565b604082019050919050565b60006141ee601b83614877565b91506141f982615404565b602082019050919050565b61420d81614a7e565b82525050565b61421c81614a7e565b82525050565b61423361422e82614a7e565b614bc4565b82525050565b60006142458285613c35565b6014820191506142558284614222565b6020820191508190509392505050565b60006142718286613d3a565b915061427d8285613d3a565b91506142898284613d6b565b9150819050949350505050565b60006142a1826140c9565b9150819050919050565b60006020820190506142c06000830184613c26565b92915050565b60006080820190506142db6000830187613c26565b6142e86020830186613c26565b6142f56040830185614213565b81810360608301526143078184613cc8565b905095945050505050565b60006040820190506143276000830185613c26565b6143346020830184614213565b9392505050565b600060208201905081810360008301526143558184613c4c565b905092915050565b60006020820190506143726000830184613caa565b92915050565b600060208201905061438d6000830184613cb9565b92915050565b600060208201905081810360008301526143ad8184613d01565b905092915050565b600060208201905081810360008301526143ce81613dea565b9050919050565b600060208201905081810360008301526143ee81613e0d565b9050919050565b6000602082019050818103600083015261440e81613e30565b9050919050565b6000602082019050818103600083015261442e81613e53565b9050919050565b6000602082019050818103600083015261444e81613e76565b9050919050565b6000602082019050818103600083015261446e81613e99565b9050919050565b6000602082019050818103600083015261448e81613ebc565b9050919050565b600060208201905081810360008301526144ae81613edf565b9050919050565b600060208201905081810360008301526144ce81613f02565b9050919050565b600060208201905081810360008301526144ee81613f25565b9050919050565b6000602082019050818103600083015261450e81613f48565b9050919050565b6000602082019050818103600083015261452e81613f6b565b9050919050565b6000602082019050818103600083015261454e81613f8e565b9050919050565b6000602082019050818103600083015261456e81613fb1565b9050919050565b6000602082019050818103600083015261458e81613fd4565b9050919050565b600060208201905081810360008301526145ae81613ff7565b9050919050565b600060208201905081810360008301526145ce8161401a565b9050919050565b600060208201905081810360008301526145ee8161403d565b9050919050565b6000602082019050818103600083015261460e81614060565b9050919050565b6000602082019050818103600083015261462e81614083565b9050919050565b6000602082019050818103600083015261464e816140a6565b9050919050565b6000602082019050818103600083015261466e816140ec565b9050919050565b6000602082019050818103600083015261468e8161410f565b9050919050565b600060208201905081810360008301526146ae81614132565b9050919050565b600060208201905081810360008301526146ce81614155565b9050919050565b600060208201905081810360008301526146ee81614178565b9050919050565b6000602082019050818103600083015261470e8161419b565b9050919050565b6000602082019050818103600083015261472e816141be565b9050919050565b6000602082019050818103600083015261474e816141e1565b9050919050565b600060208201905061476a6000830184614213565b92915050565b600061477a61478b565b90506147868282614b26565b919050565b6000604051905090565b600067ffffffffffffffff8211156147b0576147af614c8c565b5b6147b982614cbb565b9050602081019050919050565b600067ffffffffffffffff8211156147e1576147e0614c8c565b5b6147ea82614cbb565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061489e82614a42565b91506148a983614a42565b9250826fffffffffffffffffffffffffffffffff038211156148ce576148cd614bff565b5b828201905092915050565b60006148e482614a7e565b91506148ef83614a7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492457614923614bff565b5b828201905092915050565b600061493a82614a7e565b915061494583614a7e565b92508261495557614954614c2e565b5b828204905092915050565b600061496b82614a7e565b915061497683614a7e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149af576149ae614bff565b5b828202905092915050565b60006149c582614a7e565b91506149d083614a7e565b9250828210156149e3576149e2614bff565b5b828203905092915050565b60006149f982614a5e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ab5578082015181840152602081019050614a9a565b83811115614ac4576000848401525b50505050565b6000614ad582614a7e565b91506000821415614ae957614ae8614bff565b5b600182039050919050565b60006002820490506001821680614b0c57607f821691505b60208210811415614b2057614b1f614c5d565b5b50919050565b614b2f82614cbb565b810181811067ffffffffffffffff82111715614b4e57614b4d614c8c565b5b80604052505050565b6000614b6282614a7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b9557614b94614bff565b5b600182019050919050565b6000614bab82614bb2565b9050919050565b6000614bbd82614ccc565b9050919050565b6000819050919050565b6000614bd982614a7e565b9150614be483614a7e565b925082614bf457614bf3614c2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e647320666f72207768697465206c697360008201527f74206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f7768697465206c69737420616c7265616479206d696e74000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e647320666f72207075626c696320736160008201527f6c65206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f7768697465206c697374206d696e7420636c6f73656400000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c65206e6f74206f70656e207965740000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f7768697465206c697374206e6f742076616c6964617465000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b615436816149ee565b811461544157600080fd5b50565b61544d81614a00565b811461545857600080fd5b50565b61546481614a0c565b811461546f57600080fd5b50565b61547b81614a16565b811461548657600080fd5b50565b61549281614a7e565b811461549d57600080fd5b5056fea26469706673582212202a6c0df250097b38f94add9b9ed89ae92656844fefe5607514e0cb22806caa8664736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000015b300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e43727970746f546f7973436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034354430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f63646e2e63727970746f746f79732e636c75622f00000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f63646e2e63727970746f746f79732e636c75622f6e66742e6a736f6e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063c9e8ef231161006f578063c9e8ef231461082a578063d5abeb0114610855578063de8f2fa514610880578063e985e9c5146108bd578063f2fde38b146108fa57610225565b8063a22cb46514610733578063b88d4fde1461075c578063c332bf9114610785578063c6682862146107c2578063c87b56dd146107ed57610225565b806370a08231116100f257806370a0823114610660578063715018a61461069d578063789f981f146106b45780638da5cb5b146106dd57806395d89b411461070857610225565b80636352211e146105a257806368575685146105df5780636b7259ae1461060a5780636c0360eb1461063557610225565b80632f745c59116101b15780634f6ccce7116101755780634f6ccce7146104d7578063518302271461051457806351cff8d91461053f57806354f830461461055b5780635c975abb1461057757610225565b80632f745c59146103de57806334b6ab1a1461041b57806342842e0e14610446578063438b63001461046f578063453afb0f146104ac57610225565b8063081c8c44116101f8578063081c8c44146102f8578063095ea7b31461032357806318160ddd1461034c57806323b872dd146103775780632a55205a146103a057610225565b806301ffc9a71461022a57806305153fd51461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613a05565b610923565b60405161025e919061435d565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613a57565b610935565b005b34801561029c57600080fd5b506102a5610a3d565b6040516102b29190614393565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613b3d565b610acf565b6040516102ef91906142ab565b60405180910390f35b34801561030457600080fd5b5061030d610b54565b60405161031a9190614393565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613952565b610be2565b005b34801561035857600080fd5b50610361610cfb565b60405161036e9190614755565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061384c565b610d04565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613bd2565b610d14565b6040516103d5929190614312565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190613952565b610dd4565b6040516104129190614755565b60405180910390f35b34801561042757600080fd5b50610430610fd2565b60405161043d9190614378565b60405180910390f35b34801561045257600080fd5b5061046d6004803603810190610468919061384c565b610fd8565b005b34801561047b57600080fd5b50610496600480360381019061049191906137e7565b610ff8565b6040516104a3919061433b565b60405180910390f35b3480156104b857600080fd5b506104c16110f2565b6040516104ce9190614755565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613b3d565b6110f8565b60405161050b9190614755565b60405180910390f35b34801561052057600080fd5b5061052961114b565b604051610536919061435d565b60405180910390f35b610559600480360381019061055491906137e7565b61115e565b005b61057560048036038101906105709190613b66565b611254565b005b34801561058357600080fd5b5061058c611739565b604051610599919061435d565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613b3d565b61174c565b6040516105d691906142ab565b60405180910390f35b3480156105eb57600080fd5b506105f4611762565b6040516106019190614755565b60405180910390f35b34801561061657600080fd5b5061061f611768565b60405161062c919061435d565b60405180910390f35b34801561064157600080fd5b5061064a61177b565b6040516106579190614393565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906137e7565b611809565b6040516106949190614755565b60405180910390f35b3480156106a957600080fd5b506106b26118f2565b005b3480156106c057600080fd5b506106db60048036038101906106d6919061398e565b61197a565b005b3480156106e957600080fd5b506106f2611a46565b6040516106ff91906142ab565b60405180910390f35b34801561071457600080fd5b5061071d611a70565b60405161072a9190614393565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613916565b611b02565b005b34801561076857600080fd5b50610783600480360381019061077e919061389b565b611c83565b005b34801561079157600080fd5b506107ac60048036038101906107a791906137e7565b611cdf565b6040516107b99190614755565b60405180910390f35b3480156107ce57600080fd5b506107d7611cf7565b6040516107e49190614393565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613b3d565b611d85565b6040516108219190614393565b60405180910390f35b34801561083657600080fd5b5061083f611ede565b60405161084c919061435d565b60405180910390f35b34801561086157600080fd5b5061086a611ef1565b6040516108779190614755565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a291906137e7565b611ef7565b6040516108b49190614755565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190613810565b611f0f565b6040516108f1919061435d565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c91906137e7565b611fa3565b005b600061092e8261209b565b9050919050565b61093d612115565b73ffffffffffffffffffffffffffffffffffffffff1661095b611a46565b73ffffffffffffffffffffffffffffffffffffffff16146109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890614575565b60405180910390fd5b86600990805190602001906109c7929190613572565b5085600a90805190602001906109de929190613572565b5084600b90805190602001906109f5929190613572565b5083600d60006101000a81548160ff02191690831515021790555082600d60016101000a81548160ff021916908315150217905550610a34828261211d565b50505050505050565b606060018054610a4c90614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890614af4565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b6000610ada82612207565b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090614715565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610b6190614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d90614af4565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b505050505081565b6000610bed8261174c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590614635565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7d612115565b73ffffffffffffffffffffffffffffffffffffffff161480610cac5750610cab81610ca6612115565b611f0f565b5b610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce2906144d5565b60405180910390fd5b610cf6838383612214565b505050565b60008054905090565b610d0f8383836122c6565b505050565b600080600060076040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff1685610dc09190614960565b610dca919061492f565b9150509250929050565b6000610ddf83611809565b8210610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e17906143b5565b60405180910390fd5b6000610e2a610cfb565b905060008060005b83811015610f90576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f7c5786841415610f6d578195505050505050610fcc565b8380610f7890614b57565b9450505b508080610f8890614b57565b915050610e32565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc3906146f5565b60405180910390fd5b92915050565b600e5481565b610ff383838360405180602001604052806000815250611c83565b505050565b6060600061100583611809565b905060008167ffffffffffffffff811115611049577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110775781602001602082028036833780820191505090505b50905060005b828110156110e75761108f8582610dd4565b8282815181106110c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806110df90614b57565b91505061107d565b508092505050919050565b60145481565b6000611102610cfb565b8210611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614475565b60405180910390fd5b819050919050565b600d60019054906101000a900460ff1681565b611166612115565b73ffffffffffffffffffffffffffffffffffffffff16611184611a46565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190614575565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff164760405161120090614296565b60006040518083038185875af1925050503d806000811461123d576040519150601f19603f3d011682016040523d82523d6000602084013e611242565b606091505b505090508061125057600080fd5b5050565b600d60009054906101000a900460ff16156112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b90614595565b60405180910390fd5b60006112ae610cfb565b9050600085116112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90614735565b60405180910390fd5b600c54858261130291906148d9565b1115611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a906144f5565b60405180910390fd5b61134b611a46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156113e45784601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113cd91906148d9565b925050819055506113de338661286d565b50611733565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050841561163157600f60009054906101000a900460ff1661147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614535565b60405180910390fd5b600081146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790614455565b60405180910390fd5b600033876040516020016114d5929190614239565b604051602081830303815290604052805190602001209050600061153d868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e548461288b565b90508061157f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611576906146d5565b60405180910390fd5b6000601054146115da57876010546115979190614960565b3410156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090614435565b60405180910390fd5b5b87601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611628338961286d565b50505050611733565b601360009054906101000a900460ff16611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790614615565b60405180910390fd5b8560145461168e9190614960565b3410156116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c7906144b5565b60405180910390fd5b85601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461171f91906148d9565b92505081905550611730338761286d565b50505b50505050565b600d60009054906101000a900460ff1681565b6000611757826128a2565b600001519050919050565b60105481565b601360009054906101000a900460ff1681565b6009805461178890614af4565b80601f01602080910402602001604051908101604052809291908181526020018280546117b490614af4565b80156118015780601f106117d657610100808354040283529160200191611801565b820191906000526020600020905b8154815290600101906020018083116117e457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614515565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6118fa612115565b73ffffffffffffffffffffffffffffffffffffffff16611918611a46565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590614575565b60405180910390fd5b61197860006129fd565b565b611982612115565b73ffffffffffffffffffffffffffffffffffffffff166119a0611a46565b73ffffffffffffffffffffffffffffffffffffffff16146119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed90614575565b60405180910390fd5b84600e81905550836010819055508260148190555081600f60006101000a81548160ff02191690831515021790555080601360006101000a81548160ff0219169083151502179055505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611a7f90614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054611aab90614af4565b8015611af85780601f10611acd57610100808354040283529160200191611af8565b820191906000526020600020905b815481529060010190602001808311611adb57829003601f168201915b5050505050905090565b611b0a612115565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f906145d5565b60405180910390fd5b8060066000611b85612115565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c32612115565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c77919061435d565b60405180910390a35050565b611c8e8484846122c6565b611c9a84848484612ac3565b611cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd090614675565b60405180910390fd5b50505050565b60126020528060005260406000206000915090505481565b600a8054611d0490614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3090614af4565b8015611d7d5780601f10611d5257610100808354040283529160200191611d7d565b820191906000526020600020905b815481529060010190602001808311611d6057829003601f168201915b505050505081565b6060611d9082612207565b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc6906145b5565b60405180910390fd5b60001515600d60019054906101000a900460ff1615151415611e7d57600b8054611df890614af4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2490614af4565b8015611e715780601f10611e4657610100808354040283529160200191611e71565b820191906000526020600020905b815481529060010190602001808311611e5457829003601f168201915b50505050509050611ed9565b6000611e87612c5a565b90506000815111611ea75760405180602001604052806000815250611ed5565b80611eb184612c71565b600a604051602001611ec593929190614265565b6040516020818303038152906040525b9150505b919050565b600f60009054906101000a900460ff1681565b600c5481565b60116020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fab612115565b73ffffffffffffffffffffffffffffffffffffffff16611fc9611a46565b73ffffffffffffffffffffffffffffffffffffffff161461201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690614575565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906143f5565b60405180910390fd5b612098816129fd565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210e575061210d82612e1e565b5b9050919050565b600033905090565b612710811115612162576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612159906143d5565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600760008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122d1826128a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122f8612115565b73ffffffffffffffffffffffffffffffffffffffff161480612354575061231d612115565b73ffffffffffffffffffffffffffffffffffffffff1661233c84610acf565b73ffffffffffffffffffffffffffffffffffffffff16145b80612370575061236f826000015161236a612115565b611f0f565b5b9050806123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a9906145f5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b90614555565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248b90614495565b60405180910390fd5b6124a18585856001612f68565b6124b16000848460000151612214565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126b791906148d9565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127fd5761272d81612207565b156127fc576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128658686866001612f6e565b505050505050565b612887828260405180602001604052806000815250612f74565b5050565b6000826128988584613433565b1490509392505050565b6128aa6135f8565b6128b382612207565b6128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e990614415565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129e45780925050506129f8565b5080806129f090614aca565b9150506128f8565b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612ae48473ffffffffffffffffffffffffffffffffffffffff166134ce565b15612c4d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b0d612115565b8786866040518563ffffffff1660e01b8152600401612b2f94939291906142c6565b602060405180830381600087803b158015612b4957600080fd5b505af1925050508015612b7a57506040513d601f19601f82011682018060405250810190612b779190613a2e565b60015b612bfd573d8060008114612baa576040519150601f19603f3d011682016040523d82523d6000602084013e612baf565b606091505b50600081511415612bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bec90614675565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c52565b600190505b949350505050565b606060405180602001604052806000815250905090565b60606000821415612cb9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e19565b600082905060005b60008214612ceb578080612cd490614b57565b915050600a82612ce4919061492f565b9150612cc1565b60008167ffffffffffffffff811115612d2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d5f5781602001600182028036833780820191505090505b5090505b60008514612e1257600182612d7891906149ba565b9150600a85612d879190614bce565b6030612d9391906148d9565b60f81b818381518110612dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e0b919061492f565b9450612d63565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ee957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f5157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f615750612f60826134f1565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe1906146b5565b60405180910390fd5b612ff381612207565b15613033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302a90614695565b60405180910390fd5b60008311613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d90614655565b60405180910390fd5b6130836000858386612f68565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516131809190614893565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131a79190614893565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561341657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133b66000888488612ac3565b6133f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ec90614675565b60405180910390fd5b818061340090614b57565b925050808061340e90614b57565b915050613345565b508060008190555061342b6000878588612f6e565b505050505050565b60008082905060005b84518110156134c3576000858281518110613480577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116134a25761349b838261355b565b92506134af565b6134ac818461355b565b92505b5080806134bb90614b57565b91505061343c565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b82805461357e90614af4565b90600052602060002090601f0160209004810192826135a057600085556135e7565b82601f106135b957805160ff19168380011785556135e7565b828001600101855582156135e7579182015b828111156135e65782518255916020019190600101906135cb565b5b5090506135f49190613632565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561364b576000816000905550600101613633565b5090565b600061366261365d84614795565b614770565b90508281526020810184848401111561367a57600080fd5b613685848285614a88565b509392505050565b60006136a061369b846147c6565b614770565b9050828152602081018484840111156136b857600080fd5b6136c3848285614a88565b509392505050565b6000813590506136da8161542d565b92915050565b60008083601f8401126136f257600080fd5b8235905067ffffffffffffffff81111561370b57600080fd5b60208301915083602082028301111561372357600080fd5b9250929050565b60008135905061373981615444565b92915050565b60008135905061374e8161545b565b92915050565b60008135905061376381615472565b92915050565b60008151905061377881615472565b92915050565b600082601f83011261378f57600080fd5b813561379f84826020860161364f565b91505092915050565b600082601f8301126137b957600080fd5b81356137c984826020860161368d565b91505092915050565b6000813590506137e181615489565b92915050565b6000602082840312156137f957600080fd5b6000613807848285016136cb565b91505092915050565b6000806040838503121561382357600080fd5b6000613831858286016136cb565b9250506020613842858286016136cb565b9150509250929050565b60008060006060848603121561386157600080fd5b600061386f868287016136cb565b9350506020613880868287016136cb565b9250506040613891868287016137d2565b9150509250925092565b600080600080608085870312156138b157600080fd5b60006138bf878288016136cb565b94505060206138d0878288016136cb565b93505060406138e1878288016137d2565b925050606085013567ffffffffffffffff8111156138fe57600080fd5b61390a8782880161377e565b91505092959194509250565b6000806040838503121561392957600080fd5b6000613937858286016136cb565b92505060206139488582860161372a565b9150509250929050565b6000806040838503121561396557600080fd5b6000613973858286016136cb565b9250506020613984858286016137d2565b9150509250929050565b600080600080600060a086880312156139a657600080fd5b60006139b48882890161373f565b95505060206139c5888289016137d2565b94505060406139d6888289016137d2565b93505060606139e78882890161372a565b92505060806139f88882890161372a565b9150509295509295909350565b600060208284031215613a1757600080fd5b6000613a2584828501613754565b91505092915050565b600060208284031215613a4057600080fd5b6000613a4e84828501613769565b91505092915050565b600080600080600080600060e0888a031215613a7257600080fd5b600088013567ffffffffffffffff811115613a8c57600080fd5b613a988a828b016137a8565b975050602088013567ffffffffffffffff811115613ab557600080fd5b613ac18a828b016137a8565b965050604088013567ffffffffffffffff811115613ade57600080fd5b613aea8a828b016137a8565b9550506060613afb8a828b0161372a565b9450506080613b0c8a828b0161372a565b93505060a0613b1d8a828b016136cb565b92505060c0613b2e8a828b016137d2565b91505092959891949750929550565b600060208284031215613b4f57600080fd5b6000613b5d848285016137d2565b91505092915050565b60008060008060608587031215613b7c57600080fd5b6000613b8a878288016137d2565b9450506020613b9b8782880161372a565b935050604085013567ffffffffffffffff811115613bb857600080fd5b613bc4878288016136e0565b925092505092959194509250565b60008060408385031215613be557600080fd5b6000613bf3858286016137d2565b9250506020613c04858286016137d2565b9150509250929050565b6000613c1a8383614204565b60208301905092915050565b613c2f816149ee565b82525050565b613c46613c41826149ee565b614ba0565b82525050565b6000613c578261481c565b613c61818561484a565b9350613c6c836147f7565b8060005b83811015613c9d578151613c848882613c0e565b9750613c8f8361483d565b925050600181019050613c70565b5085935050505092915050565b613cb381614a00565b82525050565b613cc281614a0c565b82525050565b6000613cd382614827565b613cdd818561485b565b9350613ced818560208601614a97565b613cf681614cbb565b840191505092915050565b6000613d0c82614832565b613d168185614877565b9350613d26818560208601614a97565b613d2f81614cbb565b840191505092915050565b6000613d4582614832565b613d4f8185614888565b9350613d5f818560208601614a97565b80840191505092915050565b60008154613d7881614af4565b613d828186614888565b94506001821660008114613d9d5760018114613dae57613de1565b60ff19831686528186019350613de1565b613db785614807565b60005b83811015613dd957815481890152600182019150602081019050613dba565b838801955050505b50505092915050565b6000613df7602283614877565b9150613e0282614cd9565b604082019050919050565b6000613e1a601a83614877565b9150613e2582614d28565b602082019050919050565b6000613e3d602683614877565b9150613e4882614d51565b604082019050919050565b6000613e60602a83614877565b9150613e6b82614da0565b604082019050919050565b6000613e83602683614877565b9150613e8e82614def565b604082019050919050565b6000613ea6601783614877565b9150613eb182614e3e565b602082019050919050565b6000613ec9602383614877565b9150613ed482614e67565b604082019050919050565b6000613eec602583614877565b9150613ef782614eb6565b604082019050919050565b6000613f0f602783614877565b9150613f1a82614f05565b604082019050919050565b6000613f32603983614877565b9150613f3d82614f54565b604082019050919050565b6000613f55601683614877565b9150613f6082614fa3565b602082019050919050565b6000613f78602b83614877565b9150613f8382614fcc565b604082019050919050565b6000613f9b601683614877565b9150613fa68261501b565b602082019050919050565b6000613fbe602683614877565b9150613fc982615044565b604082019050919050565b6000613fe1602083614877565b9150613fec82615093565b602082019050919050565b6000614004601683614877565b915061400f826150bc565b602082019050919050565b6000614027602f83614877565b9150614032826150e5565b604082019050919050565b600061404a601a83614877565b915061405582615134565b602082019050919050565b600061406d603283614877565b91506140788261515d565b604082019050919050565b6000614090601883614877565b915061409b826151ac565b602082019050919050565b60006140b3602283614877565b91506140be826151d5565b604082019050919050565b60006140d660008361486c565b91506140e182615224565b600082019050919050565b60006140f9602383614877565b915061410482615227565b604082019050919050565b600061411c603383614877565b915061412782615276565b604082019050919050565b600061413f601d83614877565b915061414a826152c5565b602082019050919050565b6000614162602183614877565b915061416d826152ee565b604082019050919050565b6000614185601783614877565b91506141908261533d565b602082019050919050565b60006141a8602e83614877565b91506141b382615366565b604082019050919050565b60006141cb602d83614877565b91506141d6826153b5565b604082019050919050565b60006141ee601b83614877565b91506141f982615404565b602082019050919050565b61420d81614a7e565b82525050565b61421c81614a7e565b82525050565b61423361422e82614a7e565b614bc4565b82525050565b60006142458285613c35565b6014820191506142558284614222565b6020820191508190509392505050565b60006142718286613d3a565b915061427d8285613d3a565b91506142898284613d6b565b9150819050949350505050565b60006142a1826140c9565b9150819050919050565b60006020820190506142c06000830184613c26565b92915050565b60006080820190506142db6000830187613c26565b6142e86020830186613c26565b6142f56040830185614213565b81810360608301526143078184613cc8565b905095945050505050565b60006040820190506143276000830185613c26565b6143346020830184614213565b9392505050565b600060208201905081810360008301526143558184613c4c565b905092915050565b60006020820190506143726000830184613caa565b92915050565b600060208201905061438d6000830184613cb9565b92915050565b600060208201905081810360008301526143ad8184613d01565b905092915050565b600060208201905081810360008301526143ce81613dea565b9050919050565b600060208201905081810360008301526143ee81613e0d565b9050919050565b6000602082019050818103600083015261440e81613e30565b9050919050565b6000602082019050818103600083015261442e81613e53565b9050919050565b6000602082019050818103600083015261444e81613e76565b9050919050565b6000602082019050818103600083015261446e81613e99565b9050919050565b6000602082019050818103600083015261448e81613ebc565b9050919050565b600060208201905081810360008301526144ae81613edf565b9050919050565b600060208201905081810360008301526144ce81613f02565b9050919050565b600060208201905081810360008301526144ee81613f25565b9050919050565b6000602082019050818103600083015261450e81613f48565b9050919050565b6000602082019050818103600083015261452e81613f6b565b9050919050565b6000602082019050818103600083015261454e81613f8e565b9050919050565b6000602082019050818103600083015261456e81613fb1565b9050919050565b6000602082019050818103600083015261458e81613fd4565b9050919050565b600060208201905081810360008301526145ae81613ff7565b9050919050565b600060208201905081810360008301526145ce8161401a565b9050919050565b600060208201905081810360008301526145ee8161403d565b9050919050565b6000602082019050818103600083015261460e81614060565b9050919050565b6000602082019050818103600083015261462e81614083565b9050919050565b6000602082019050818103600083015261464e816140a6565b9050919050565b6000602082019050818103600083015261466e816140ec565b9050919050565b6000602082019050818103600083015261468e8161410f565b9050919050565b600060208201905081810360008301526146ae81614132565b9050919050565b600060208201905081810360008301526146ce81614155565b9050919050565b600060208201905081810360008301526146ee81614178565b9050919050565b6000602082019050818103600083015261470e8161419b565b9050919050565b6000602082019050818103600083015261472e816141be565b9050919050565b6000602082019050818103600083015261474e816141e1565b9050919050565b600060208201905061476a6000830184614213565b92915050565b600061477a61478b565b90506147868282614b26565b919050565b6000604051905090565b600067ffffffffffffffff8211156147b0576147af614c8c565b5b6147b982614cbb565b9050602081019050919050565b600067ffffffffffffffff8211156147e1576147e0614c8c565b5b6147ea82614cbb565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061489e82614a42565b91506148a983614a42565b9250826fffffffffffffffffffffffffffffffff038211156148ce576148cd614bff565b5b828201905092915050565b60006148e482614a7e565b91506148ef83614a7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492457614923614bff565b5b828201905092915050565b600061493a82614a7e565b915061494583614a7e565b92508261495557614954614c2e565b5b828204905092915050565b600061496b82614a7e565b915061497683614a7e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149af576149ae614bff565b5b828202905092915050565b60006149c582614a7e565b91506149d083614a7e565b9250828210156149e3576149e2614bff565b5b828203905092915050565b60006149f982614a5e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ab5578082015181840152602081019050614a9a565b83811115614ac4576000848401525b50505050565b6000614ad582614a7e565b91506000821415614ae957614ae8614bff565b5b600182039050919050565b60006002820490506001821680614b0c57607f821691505b60208210811415614b2057614b1f614c5d565b5b50919050565b614b2f82614cbb565b810181811067ffffffffffffffff82111715614b4e57614b4d614c8c565b5b80604052505050565b6000614b6282614a7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b9557614b94614bff565b5b600182019050919050565b6000614bab82614bb2565b9050919050565b6000614bbd82614ccc565b9050919050565b6000819050919050565b6000614bd982614a7e565b9150614be483614a7e565b925082614bf457614bf3614c2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e647320666f72207768697465206c697360008201527f74206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f7768697465206c69737420616c7265616479206d696e74000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e647320666f72207075626c696320736160008201527f6c65206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f7768697465206c697374206d696e7420636c6f73656400000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c65206e6f74206f70656e207965740000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f7768697465206c697374206e6f742076616c6964617465000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b615436816149ee565b811461544157600080fd5b50565b61544d81614a00565b811461545857600080fd5b50565b61546481614a0c565b811461546f57600080fd5b50565b61547b81614a16565b811461548657600080fd5b50565b61549281614a7e565b811461549d57600080fd5b5056fea26469706673582212202a6c0df250097b38f94add9b9ed89ae92656844fefe5607514e0cb22806caa8664736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000015b300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e43727970746f546f7973436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034354430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f63646e2e63727970746f746f79732e636c75622f00000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f63646e2e63727970746f746f79732e636c75622f6e66742e6a736f6e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CryptoToysClub
Arg [1] : _symbol (string): CTC
Arg [2] : _maxSupply (uint256): 5555
Arg [3] : _baseURI (string): https://cdn.cryptotoys.club/
Arg [4] : _notRevealedUri (string): https://cdn.cryptotoys.club/nft.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 43727970746f546f7973436c7562000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4354430000000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [10] : 68747470733a2f2f63646e2e63727970746f746f79732e636c75622f00000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [12] : 68747470733a2f2f63646e2e63727970746f746f79732e636c75622f6e66742e
Arg [13] : 6a736f6e00000000000000000000000000000000000000000000000000000000


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.