ETH Price: $2,925.27 (+4.32%)
 

Overview

Max Total Supply

30 HVN

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 HVN
0x7615816b507c231865fe95824ae6b3ea6f9b080d
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:
ProjectHVN

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : NftContract.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract ProjectHVN is ERC721Enumerable, Ownable {
    //--------------------------------------------------------------------
    // VARIABLES
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public hiddenMetadataUri;

    uint256 public cost;
    uint256 public immutable maxSupply;
    uint256 public maxMintAmountPerTx;
    // Number of NFTs is limited to 3 per user during whitelisting
    uint256 public nftPerAddressLimit = 1;
    bool public paused = true;
    bool public revealed = false;
    bool public whitelistMintEnabled = false;

    address[] public whitelistedAddresses;
    mapping(address => uint256) public addressMintedBalance;

    //--------------------------------------------------------------------
    // ERRORS

    error NFT__ContractIsPaused();
    error NFT__InvalidMintAmount();
    error NFT__ExceededMaxMintAmountPerTx();
    error NFT__MaxSupplyExceeded();
    error NFT__ExceededMaxNftPerAddress();
    error NFT__NotWhitelisted(address user);
    error NFT__InsufficientFunds();
    error NFT__QueryForNonExistentToken(uint256 tokenId);

    //--------------------------------------------------------------------
    // CONSTRUCTOR

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _cost,
        uint256 _maxSupply,
        uint256 _maxMintAmountPerTx,
        string memory _hiddenMetadataUri
    ) ERC721(_name, _symbol) {
        hiddenMetadataUri = _hiddenMetadataUri;
        cost = _cost;
        maxMintAmountPerTx = _maxMintAmountPerTx;
        maxSupply = _maxSupply;
    }

    //--------------------------------------------------------------------
    // FUNCTIONS

    function mint(uint256 _mintAmount) external payable {
        if (paused) revert NFT__ContractIsPaused();
        if (_mintAmount == 0) revert NFT__InvalidMintAmount();
        if (_mintAmount > maxMintAmountPerTx) {
            revert NFT__ExceededMaxMintAmountPerTx();
        }
        uint256 supply = totalSupply();
        if (supply + _mintAmount > maxSupply) {
            revert NFT__MaxSupplyExceeded();
        }

        if (msg.sender != owner()) {
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            if (ownerMintedCount + _mintAmount > nftPerAddressLimit) {
                revert NFT__ExceededMaxNftPerAddress();
            }
            if (whitelistMintEnabled == true && !isWhitelisted(msg.sender)) {
                revert NFT__NotWhitelisted(msg.sender);
            }
            if (msg.value < cost * _mintAmount) revert NFT__InsufficientFunds();
        }

        for (uint256 i = 0; i < _mintAmount; i++) {
            uint256 tokenId = uint256(
                keccak256(abi.encodePacked(block.timestamp, i, msg.sender))
            ) % maxSupply;
            tokenId = tokenId + 1; // Adding 1 to avoid tokenId being 0
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, tokenId);
        }
    }

    function bulkMint(address[] memory _addresses, uint256 _mintAmount)
        external
        onlyOwner
    {
        uint256 supply = totalSupply();
        require(
            supply + (_addresses.length * _mintAmount) <= maxSupply,
            "NFT__MaxSupplyExceeded"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "NFT__ExceededMaxMintAmountPerTx"
        );

        for (uint256 i = 0; i < _addresses.length; i++) {
            address recipient = _addresses[i];
            uint256 ownerMintedCount = addressMintedBalance[recipient];
            require(
                ownerMintedCount + _mintAmount <= nftPerAddressLimit,
                "NFT__ExceededMaxNftPerAddress"
            );

            for (uint256 j = 0; j < _mintAmount; j++) {
                addressMintedBalance[recipient]++;
                _safeMint(recipient, supply + 1);
                supply++;
            }
        }
    }

    function isWhitelisted(address _user) public view returns (bool) {
        uint256 whitelistedCount = whitelistedAddresses.length;
        for (uint256 i; i < whitelistedCount; i++) {
            if (whitelistedAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }

    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)
    {
        if (!_exists(tokenId)) revert NFT__QueryForNonExistentToken(tokenId);
        if (revealed == false) {
            return hiddenMetadataUri;
        }

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

    //--------------------------------------------------------------------
    // OWNER FUNCTIONS

    function reveal(string memory _newBaseURI) external payable onlyOwner {
        revealed = true;
        setBaseURI(_newBaseURI);
    }

    function setNftPerAddressLimit(uint256 _limit) external payable onlyOwner {
        nftPerAddressLimit = _limit;
    }

    function setCost(uint256 _newCost) external payable onlyOwner {
        cost = _newCost;
    }

    function setMaxMintAmountPerTx(uint256 _newmaxMintAmount)
        external
        payable
        onlyOwner
    {
        maxMintAmountPerTx = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public payable onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        external
        payable
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

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

    function pause(bool _state) external payable onlyOwner {
        paused = _state;
    }

    function setWhitelistMintEnabled(bool _state) external payable onlyOwner {
        whitelistMintEnabled = _state;
    }

    function whitelistUsers(address[] calldata _users)
        external
        payable
        onlyOwner
    {
        delete whitelistedAddresses;
        whitelistedAddresses = _users;
    }

    function removeWhitelistedUser(address _user) external onlyOwner {
        for (uint256 i = 0; i < whitelistedAddresses.length; i++) {
            if (whitelistedAddresses[i] == _user) {
                whitelistedAddresses[i] = whitelistedAddresses[
                    whitelistedAddresses.length - 1
                ];
                whitelistedAddresses.pop();
                return;
            }
        }
    }

    function withdraw() external payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

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

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 6 of 13 : 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 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NFT__ContractIsPaused","type":"error"},{"inputs":[],"name":"NFT__ExceededMaxMintAmountPerTx","type":"error"},{"inputs":[],"name":"NFT__ExceededMaxNftPerAddress","type":"error"},{"inputs":[],"name":"NFT__InsufficientFunds","type":"error"},{"inputs":[],"name":"NFT__InvalidMintAmount","type":"error"},{"inputs":[],"name":"NFT__MaxSupplyExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"NFT__NotWhitelisted","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NFT__QueryForNonExistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistedUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200023a565b5060016010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff021916908315150217905550348015620000b557600080fd5b5060405162005b7038038062005b708339818101604052810190620000db91906200037f565b85858160009080519060200190620000f59291906200023a565b5080600190805190602001906200010e9291906200023a565b50505062000131620001256200016c60201b60201c565b6200017460201b60201c565b80600d9080519060200190620001499291906200023a565b5083600e8190555081600f81905550826080818152505050505050505062000620565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002489062000517565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b600062000301620002fb84620004a1565b62000478565b90508281526020810184848401111562000320576200031f620005e6565b5b6200032d848285620004e1565b509392505050565b600082601f8301126200034d576200034c620005e1565b5b81516200035f848260208601620002ea565b91505092915050565b600081519050620003798162000606565b92915050565b60008060008060008060c087890312156200039f576200039e620005f0565b5b600087015167ffffffffffffffff811115620003c057620003bf620005eb565b5b620003ce89828a0162000335565b965050602087015167ffffffffffffffff811115620003f257620003f1620005eb565b5b6200040089828a0162000335565b95505060406200041389828a0162000368565b94505060606200042689828a0162000368565b93505060806200043989828a0162000368565b92505060a087015167ffffffffffffffff8111156200045d576200045c620005eb565b5b6200046b89828a0162000335565b9150509295509295509295565b60006200048462000497565b90506200049282826200054d565b919050565b6000604051905090565b600067ffffffffffffffff821115620004bf57620004be620005b2565b5b620004ca82620005f5565b9050602081019050919050565b6000819050919050565b60005b8381101562000501578082015181840152602081019050620004e4565b8381111562000511576000848401525b50505050565b600060028204905060018216806200053057607f821691505b6020821081141562000547576200054662000583565b5b50919050565b6200055882620005f5565b810181811067ffffffffffffffff821117156200057a5762000579620005b2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200061181620004d7565b81146200061d57600080fd5b50565b60805161551f6200065160003960008181610eb701528181611b1401528181611cff01526124c9015261551f6000f3fe6080604052600436106102885760003560e01c80636c0360eb1161015a578063b7b1b8e9116100c1578063d0eb26b01161007a578063d0eb26b01461097b578063d5abeb0114610997578063da3ef23f146109c2578063e985e9c5146109de578063edec5f2714610a1b578063f2fde38b14610a3757610288565b8063b7b1b8e914610859578063b88d4fde14610882578063ba4e5c49146108ab578063ba7d2c76146108e8578063c668286214610913578063c87b56dd1461093e57610288565b806395d89b411161011357806395d89b4114610786578063a0712d68146107b1578063a22cb465146107cd578063a45ba8e7146107f6578063b071401b14610821578063b767a0981461083d57610288565b80636c0360eb146106865780636caede3d146106b157806370a08231146106dc578063715018a6146107195780638da5cb5b1461073057806394354fd01461075b57610288565b80633af32abf116101fe5780634f6ccce7116101b75780634f6ccce71461057e5780634fdd43cb146105bb57806351830227146105d757806355f804b3146106025780635c975abb1461061e5780636352211e1461064957610288565b80633af32abf146104995780633ccfd60b146104d657806342842e0e146104e0578063438b63001461050957806344a0d68a146105465780634c2612471461056257610288565b806313faede61161025057806313faede61461037757806318160ddd146103a257806318cae269146103cd57806323b872dd1461040a5780632dedf5b7146104335780632f745c591461045c57610288565b806301ffc9a71461028d57806302329a29146102ca57806306fdde03146102e6578063081812fc14610311578063095ea7b31461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190614058565b610a60565b6040516102c19190614715565b60405180910390f35b6102e460048036038101906102df919061402b565b610ada565b005b3480156102f257600080fd5b506102fb610b73565b6040516103089190614730565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906140fb565b610c05565b604051610345919061468c565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613f42565b610c8a565b005b34801561038357600080fd5b5061038c610da2565b60405161039991906149d2565b60405180910390f35b3480156103ae57600080fd5b506103b7610da8565b6040516103c491906149d2565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190613dbf565b610db5565b60405161040191906149d2565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613e2c565b610dcd565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613fcf565b610e2d565b005b34801561046857600080fd5b50610483600480360381019061047e9190613f42565b6110e6565b60405161049091906149d2565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190613dbf565b61118b565b6040516104cd9190614715565b60405180910390f35b6104de61123d565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613e2c565b611339565b005b34801561051557600080fd5b50610530600480360381019061052b9190613dbf565b611359565b60405161053d91906146f3565b60405180910390f35b610560600480360381019061055b91906140fb565b611407565b005b61057c600480360381019061057791906140b2565b61148d565b005b34801561058a57600080fd5b506105a560048036038101906105a091906140fb565b611530565b6040516105b291906149d2565b60405180910390f35b6105d560048036038101906105d091906140b2565b6115a1565b005b3480156105e357600080fd5b506105ec611637565b6040516105f99190614715565b60405180910390f35b61061c600480360381019061061791906140b2565b61164a565b005b34801561062a57600080fd5b506106336116e0565b6040516106409190614715565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906140fb565b6116f3565b60405161067d919061468c565b60405180910390f35b34801561069257600080fd5b5061069b6117a5565b6040516106a89190614730565b60405180910390f35b3480156106bd57600080fd5b506106c6611833565b6040516106d39190614715565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613dbf565b611846565b60405161071091906149d2565b60405180910390f35b34801561072557600080fd5b5061072e6118fe565b005b34801561073c57600080fd5b50610745611986565b604051610752919061468c565b60405180910390f35b34801561076757600080fd5b506107706119b0565b60405161077d91906149d2565b60405180910390f35b34801561079257600080fd5b5061079b6119b6565b6040516107a89190614730565b60405180910390f35b6107cb60048036038101906107c691906140fb565b611a48565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613f02565b611ddf565b005b34801561080257600080fd5b5061080b611df5565b6040516108189190614730565b60405180910390f35b61083b600480360381019061083691906140fb565b611e83565b005b6108576004803603810190610852919061402b565b611f09565b005b34801561086557600080fd5b50610880600480360381019061087b9190613dbf565b611fa2565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613e7f565b6121b1565b005b3480156108b757600080fd5b506108d260048036038101906108cd91906140fb565b612213565b6040516108df919061468c565b60405180910390f35b3480156108f457600080fd5b506108fd612252565b60405161090a91906149d2565b60405180910390f35b34801561091f57600080fd5b50610928612258565b6040516109359190614730565b60405180910390f35b34801561094a57600080fd5b50610965600480360381019061096091906140fb565b6122e6565b6040516109729190614730565b60405180910390f35b610995600480360381019061099091906140fb565b612441565b005b3480156109a357600080fd5b506109ac6124c7565b6040516109b991906149d2565b60405180910390f35b6109dc60048036038101906109d791906140b2565b6124eb565b005b3480156109ea57600080fd5b50610a056004803603810190610a009190613dec565b612581565b604051610a129190614715565b60405180910390f35b610a356004803603810190610a309190613f82565b612615565b005b348015610a4357600080fd5b50610a5e6004803603810190610a599190613dbf565b6126b5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad35750610ad2826127ad565b5b9050919050565b610ae261288f565b73ffffffffffffffffffffffffffffffffffffffff16610b00611986565b73ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90614932565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610b8290614d07565b80601f0160208091040260200160405190810160405280929190818152602001828054610bae90614d07565b8015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b5050505050905090565b6000610c1082612897565b610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690614912565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c95826116f3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90614952565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2561288f565b73ffffffffffffffffffffffffffffffffffffffff161480610d545750610d5381610d4e61288f565b612581565b5b610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90614892565b60405180910390fd5b610d9d8383612903565b505050565b600e5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b610dde610dd861288f565b826129bc565b610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490614972565b60405180910390fd5b610e28838383612a9a565b505050565b610e3561288f565b73ffffffffffffffffffffffffffffffffffffffff16610e53611986565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090614932565b60405180910390fd5b6000610eb3610da8565b90507f0000000000000000000000000000000000000000000000000000000000000000828451610ee39190614bc3565b82610eee9190614b3c565b1115610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690614752565b60405180910390fd5b600f54821115610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90614872565b60405180910390fd5b60005b83518110156110e0576000848281518110610f9557610f94614ece565b5b602002602001015190506000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548582610ff29190614b3c565b1115611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906149b2565b60405180910390fd5b60005b858110156110ca57601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061108e90614d6a565b91905055506110a9836001876110a49190614b3c565b612d01565b84806110b490614d6a565b95505080806110c290614d6a565b915050611036565b50505080806110d890614d6a565b915050610f77565b50505050565b60006110f183611846565b8210611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990614772565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080601280549050905060005b81811015611231578373ffffffffffffffffffffffffffffffffffffffff16601282815481106111cc576111cb614ece565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561121e57600192505050611238565b808061122990614d6a565b915050611199565b5060009150505b919050565b61124561288f565b73ffffffffffffffffffffffffffffffffffffffff16611263611986565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090614932565b60405180910390fd5b60006112c3611986565b73ffffffffffffffffffffffffffffffffffffffff16476040516112e69061463a565b60006040518083038185875af1925050503d8060008114611323576040519150601f19603f3d011682016040523d82523d6000602084013e611328565b606091505b505090508061133657600080fd5b50565b611354838383604051806020016040528060008152506121b1565b505050565b6060600061136683611846565b905060008167ffffffffffffffff81111561138457611383614efd565b5b6040519080825280602002602001820160405280156113b25781602001602082028036833780820191505090505b50905060005b828110156113fc576113ca85826110e6565b8282815181106113dd576113dc614ece565b5b60200260200101818152505080806113f490614d6a565b9150506113b8565b508092505050919050565b61140f61288f565b73ffffffffffffffffffffffffffffffffffffffff1661142d611986565b73ffffffffffffffffffffffffffffffffffffffff1614611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90614932565b60405180910390fd5b80600e8190555050565b61149561288f565b73ffffffffffffffffffffffffffffffffffffffff166114b3611986565b73ffffffffffffffffffffffffffffffffffffffff1614611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090614932565b60405180910390fd5b6001601160016101000a81548160ff02191690831515021790555061152d8161164a565b50565b600061153a610da8565b821061157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290614992565b60405180910390fd5b6008828154811061158f5761158e614ece565b5b90600052602060002001549050919050565b6115a961288f565b73ffffffffffffffffffffffffffffffffffffffff166115c7611986565b73ffffffffffffffffffffffffffffffffffffffff161461161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490614932565b60405180910390fd5b80600d9080519060200190611633929190613a1e565b5050565b601160019054906101000a900460ff1681565b61165261288f565b73ffffffffffffffffffffffffffffffffffffffff16611670611986565b73ffffffffffffffffffffffffffffffffffffffff16146116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd90614932565b60405180910390fd5b80600b90805190602001906116dc929190613a1e565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906148d2565b60405180910390fd5b80915050919050565b600b80546117b290614d07565b80601f01602080910402602001604051908101604052809291908181526020018280546117de90614d07565b801561182b5780601f106118005761010080835404028352916020019161182b565b820191906000526020600020905b81548152906001019060200180831161180e57829003601f168201915b505050505081565b601160029054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906148b2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61190661288f565b73ffffffffffffffffffffffffffffffffffffffff16611924611986565b73ffffffffffffffffffffffffffffffffffffffff161461197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197190614932565b60405180910390fd5b6119846000612d1f565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600180546119c590614d07565b80601f01602080910402602001604051908101604052809291908181526020018280546119f190614d07565b8015611a3e5780601f10611a1357610100808354040283529160200191611a3e565b820191906000526020600020905b815481529060010190602001808311611a2157829003601f168201915b5050505050905090565b601160009054906101000a900460ff1615611a8f576040517f018a6b1300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611aca576040517f4a9e3a0000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f54811115611b06576040517f02e2622700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b10610da8565b90507f00000000000000000000000000000000000000000000000000000000000000008282611b3f9190614b3c565b1115611b77576040517f4285bcd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7f611986565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cf0576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548382611c049190614b3c565b1115611c3c576040517f64b19bbd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60011515601160029054906101000a900460ff161515148015611c655750611c633361118b565b155b15611ca757336040517f5e063b5d000000000000000000000000000000000000000000000000000000008152600401611c9e919061468c565b60405180910390fd5b82600e54611cb59190614bc3565b341015611cee576040517f772ddbcd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b60005b82811015611dda5760007f0000000000000000000000000000000000000000000000000000000000000000428333604051602001611d339392919061464f565b6040516020818303038152906040528051906020012060001c611d569190614de1565b9050600181611d659190614b3c565b9050601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611db790614d6a565b9190505550611dc63382612d01565b508080611dd290614d6a565b915050611cf3565b505050565b611df1611dea61288f565b8383612de5565b5050565b600d8054611e0290614d07565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2e90614d07565b8015611e7b5780601f10611e5057610100808354040283529160200191611e7b565b820191906000526020600020905b815481529060010190602001808311611e5e57829003601f168201915b505050505081565b611e8b61288f565b73ffffffffffffffffffffffffffffffffffffffff16611ea9611986565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614932565b60405180910390fd5b80600f8190555050565b611f1161288f565b73ffffffffffffffffffffffffffffffffffffffff16611f2f611986565b73ffffffffffffffffffffffffffffffffffffffff1614611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90614932565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b611faa61288f565b73ffffffffffffffffffffffffffffffffffffffff16611fc8611986565b73ffffffffffffffffffffffffffffffffffffffff161461201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590614932565b60405180910390fd5b60005b6012805490508110156121ac578173ffffffffffffffffffffffffffffffffffffffff166012828154811061205957612058614ece565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561219957601260016012805490506120b49190614c1d565b815481106120c5576120c4614ece565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012828154811061210457612103614ece565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601280548061215e5761215d614e9f565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055506121ae565b80806121a490614d6a565b915050612021565b505b50565b6121c26121bc61288f565b836129bc565b612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614972565b60405180910390fd5b61220d84848484612f52565b50505050565b6012818154811061222357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600c805461226590614d07565b80601f016020809104026020016040519081016040528092919081815260200182805461229190614d07565b80156122de5780601f106122b3576101008083540402835291602001916122de565b820191906000526020600020905b8154815290600101906020018083116122c157829003601f168201915b505050505081565b60606122f182612897565b61233257816040517fe49761ce00000000000000000000000000000000000000000000000000000000815260040161232991906149d2565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156123e057600d805461235b90614d07565b80601f016020809104026020016040519081016040528092919081815260200182805461238790614d07565b80156123d45780601f106123a9576101008083540402835291602001916123d4565b820191906000526020600020905b8154815290600101906020018083116123b757829003601f168201915b5050505050905061243c565b60006123ea612fae565b9050600081511161240a5760405180602001604052806000815250612438565b8061241484613040565b600c60405160200161242893929190614609565b6040516020818303038152906040525b9150505b919050565b61244961288f565b73ffffffffffffffffffffffffffffffffffffffff16612467611986565b73ffffffffffffffffffffffffffffffffffffffff16146124bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b490614932565b60405180910390fd5b8060108190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6124f361288f565b73ffffffffffffffffffffffffffffffffffffffff16612511611986565b73ffffffffffffffffffffffffffffffffffffffff1614612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255e90614932565b60405180910390fd5b80600c908051906020019061257d929190613a1e565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61261d61288f565b73ffffffffffffffffffffffffffffffffffffffff1661263b611986565b73ffffffffffffffffffffffffffffffffffffffff1614612691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268890614932565b60405180910390fd5b6012600061269f9190613aa4565b8181601291906126b0929190613ac5565b505050565b6126bd61288f565b73ffffffffffffffffffffffffffffffffffffffff166126db611986565b73ffffffffffffffffffffffffffffffffffffffff1614612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890614932565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612798906147b2565b60405180910390fd5b6127aa81612d1f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061287857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128885750612887826131a1565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612976836116f3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006129c782612897565b612a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd90614852565b60405180910390fd5b6000612a11836116f3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a535750612a528185612581565b5b80612a9157508373ffffffffffffffffffffffffffffffffffffffff16612a7984610c05565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612aba826116f3565b73ffffffffffffffffffffffffffffffffffffffff1614612b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b07906147d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7790614812565b60405180910390fd5b612b8b83838361320b565b612b96600082612903565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612be69190614c1d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3d9190614b3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cfc83838361331f565b505050565b612d1b828260405180602001604052806000815250613324565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4b90614832565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f459190614715565b60405180910390a3505050565b612f5d848484612a9a565b612f698484848461337f565b612fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9f90614792565b60405180910390fd5b50505050565b6060600b8054612fbd90614d07565b80601f0160208091040260200160405190810160405280929190818152602001828054612fe990614d07565b80156130365780601f1061300b57610100808354040283529160200191613036565b820191906000526020600020905b81548152906001019060200180831161301957829003601f168201915b5050505050905090565b60606000821415613088576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061319c565b600082905060005b600082146130ba5780806130a390614d6a565b915050600a826130b39190614b92565b9150613090565b60008167ffffffffffffffff8111156130d6576130d5614efd565b5b6040519080825280601f01601f1916602001820160405280156131085781602001600182028036833780820191505090505b5090505b60008514613195576001826131219190614c1d565b9150600a856131309190614de1565b603061313c9190614b3c565b60f81b81838151811061315257613151614ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561318e9190614b92565b945061310c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613216838383613516565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613259576132548161351b565b613298565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613297576132968382613564565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132db576132d6816136d1565b61331a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133195761331882826137a2565b5b5b505050565b505050565b61332e8383613821565b61333b600084848461337f565b61337a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337190614792565b60405180910390fd5b505050565b60006133a08473ffffffffffffffffffffffffffffffffffffffff166139fb565b15613509578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133c961288f565b8786866040518563ffffffff1660e01b81526004016133eb94939291906146a7565b602060405180830381600087803b15801561340557600080fd5b505af192505050801561343657506040513d601f19601f820116820180604052508101906134339190614085565b60015b6134b9573d8060008114613466576040519150601f19603f3d011682016040523d82523d6000602084013e61346b565b606091505b506000815114156134b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a890614792565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061350e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161357184611846565b61357b9190614c1d565b9050600060076000848152602001908152602001600020549050818114613660576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136e59190614c1d565b905060006009600084815260200190815260200160002054905060006008838154811061371557613714614ece565b5b90600052602060002001549050806008838154811061373757613736614ece565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061378657613785614e9f565b5b6001900381819060005260206000200160009055905550505050565b60006137ad83611846565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613888906148f2565b60405180910390fd5b61389a81612897565b156138da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d1906147f2565b60405180910390fd5b6138e66000838361320b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139369190614b3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139f76000838361331f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613a2a90614d07565b90600052602060002090601f016020900481019282613a4c5760008555613a93565b82601f10613a6557805160ff1916838001178555613a93565b82800160010185558215613a93579182015b82811115613a92578251825591602001919060010190613a77565b5b509050613aa09190613b65565b5090565b5080546000825590600052602060002090810190613ac29190613b65565b50565b828054828255906000526020600020908101928215613b54579160200282015b82811115613b5357823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613ae5565b5b509050613b619190613b65565b5090565b5b80821115613b7e576000816000905550600101613b66565b5090565b6000613b95613b9084614a12565b6149ed565b90508083825260208201905082856020860282011115613bb857613bb7614f36565b5b60005b85811015613be85781613bce8882613c76565b845260208401935060208301925050600181019050613bbb565b5050509392505050565b6000613c05613c0084614a3e565b6149ed565b905082815260208101848484011115613c2157613c20614f3b565b5b613c2c848285614cc5565b509392505050565b6000613c47613c4284614a6f565b6149ed565b905082815260208101848484011115613c6357613c62614f3b565b5b613c6e848285614cc5565b509392505050565b600081359050613c858161548d565b92915050565b60008083601f840112613ca157613ca0614f31565b5b8235905067ffffffffffffffff811115613cbe57613cbd614f2c565b5b602083019150836020820283011115613cda57613cd9614f36565b5b9250929050565b600082601f830112613cf657613cf5614f31565b5b8135613d06848260208601613b82565b91505092915050565b600081359050613d1e816154a4565b92915050565b600081359050613d33816154bb565b92915050565b600081519050613d48816154bb565b92915050565b600082601f830112613d6357613d62614f31565b5b8135613d73848260208601613bf2565b91505092915050565b600082601f830112613d9157613d90614f31565b5b8135613da1848260208601613c34565b91505092915050565b600081359050613db9816154d2565b92915050565b600060208284031215613dd557613dd4614f45565b5b6000613de384828501613c76565b91505092915050565b60008060408385031215613e0357613e02614f45565b5b6000613e1185828601613c76565b9250506020613e2285828601613c76565b9150509250929050565b600080600060608486031215613e4557613e44614f45565b5b6000613e5386828701613c76565b9350506020613e6486828701613c76565b9250506040613e7586828701613daa565b9150509250925092565b60008060008060808587031215613e9957613e98614f45565b5b6000613ea787828801613c76565b9450506020613eb887828801613c76565b9350506040613ec987828801613daa565b925050606085013567ffffffffffffffff811115613eea57613ee9614f40565b5b613ef687828801613d4e565b91505092959194509250565b60008060408385031215613f1957613f18614f45565b5b6000613f2785828601613c76565b9250506020613f3885828601613d0f565b9150509250929050565b60008060408385031215613f5957613f58614f45565b5b6000613f6785828601613c76565b9250506020613f7885828601613daa565b9150509250929050565b60008060208385031215613f9957613f98614f45565b5b600083013567ffffffffffffffff811115613fb757613fb6614f40565b5b613fc385828601613c8b565b92509250509250929050565b60008060408385031215613fe657613fe5614f45565b5b600083013567ffffffffffffffff81111561400457614003614f40565b5b61401085828601613ce1565b925050602061402185828601613daa565b9150509250929050565b60006020828403121561404157614040614f45565b5b600061404f84828501613d0f565b91505092915050565b60006020828403121561406e5761406d614f45565b5b600061407c84828501613d24565b91505092915050565b60006020828403121561409b5761409a614f45565b5b60006140a984828501613d39565b91505092915050565b6000602082840312156140c8576140c7614f45565b5b600082013567ffffffffffffffff8111156140e6576140e5614f40565b5b6140f284828501613d7c565b91505092915050565b60006020828403121561411157614110614f45565b5b600061411f84828501613daa565b91505092915050565b600061413483836145d4565b60208301905092915050565b61414981614c51565b82525050565b61416061415b82614c51565b614db3565b82525050565b600061417182614ac5565b61417b8185614af3565b935061418683614aa0565b8060005b838110156141b757815161419e8882614128565b97506141a983614ae6565b92505060018101905061418a565b5085935050505092915050565b6141cd81614c63565b82525050565b60006141de82614ad0565b6141e88185614b04565b93506141f8818560208601614cd4565b61420181614f4a565b840191505092915050565b600061421782614adb565b6142218185614b20565b9350614231818560208601614cd4565b61423a81614f4a565b840191505092915050565b600061425082614adb565b61425a8185614b31565b935061426a818560208601614cd4565b80840191505092915050565b6000815461428381614d07565b61428d8186614b31565b945060018216600081146142a857600181146142b9576142ec565b60ff198316865281860193506142ec565b6142c285614ab0565b60005b838110156142e4578154818901526001820191506020810190506142c5565b838801955050505b50505092915050565b6000614302601683614b20565b915061430d82614f68565b602082019050919050565b6000614325602b83614b20565b915061433082614f91565b604082019050919050565b6000614348603283614b20565b915061435382614fe0565b604082019050919050565b600061436b602683614b20565b91506143768261502f565b604082019050919050565b600061438e602583614b20565b91506143998261507e565b604082019050919050565b60006143b1601c83614b20565b91506143bc826150cd565b602082019050919050565b60006143d4602483614b20565b91506143df826150f6565b604082019050919050565b60006143f7601983614b20565b915061440282615145565b602082019050919050565b600061441a602c83614b20565b91506144258261516e565b604082019050919050565b600061443d601f83614b20565b9150614448826151bd565b602082019050919050565b6000614460603883614b20565b915061446b826151e6565b604082019050919050565b6000614483602a83614b20565b915061448e82615235565b604082019050919050565b60006144a6602983614b20565b91506144b182615284565b604082019050919050565b60006144c9602083614b20565b91506144d4826152d3565b602082019050919050565b60006144ec602c83614b20565b91506144f7826152fc565b604082019050919050565b600061450f602083614b20565b915061451a8261534b565b602082019050919050565b6000614532602183614b20565b915061453d82615374565b604082019050919050565b6000614555600083614b15565b9150614560826153c3565b600082019050919050565b6000614578603183614b20565b9150614583826153c6565b604082019050919050565b600061459b602c83614b20565b91506145a682615415565b604082019050919050565b60006145be601d83614b20565b91506145c982615464565b602082019050919050565b6145dd81614cbb565b82525050565b6145ec81614cbb565b82525050565b6146036145fe82614cbb565b614dd7565b82525050565b60006146158286614245565b91506146218285614245565b915061462d8284614276565b9150819050949350505050565b600061464582614548565b9150819050919050565b600061465b82866145f2565b60208201915061466b82856145f2565b60208201915061467b828461414f565b601482019150819050949350505050565b60006020820190506146a16000830184614140565b92915050565b60006080820190506146bc6000830187614140565b6146c96020830186614140565b6146d660408301856145e3565b81810360608301526146e881846141d3565b905095945050505050565b6000602082019050818103600083015261470d8184614166565b905092915050565b600060208201905061472a60008301846141c4565b92915050565b6000602082019050818103600083015261474a818461420c565b905092915050565b6000602082019050818103600083015261476b816142f5565b9050919050565b6000602082019050818103600083015261478b81614318565b9050919050565b600060208201905081810360008301526147ab8161433b565b9050919050565b600060208201905081810360008301526147cb8161435e565b9050919050565b600060208201905081810360008301526147eb81614381565b9050919050565b6000602082019050818103600083015261480b816143a4565b9050919050565b6000602082019050818103600083015261482b816143c7565b9050919050565b6000602082019050818103600083015261484b816143ea565b9050919050565b6000602082019050818103600083015261486b8161440d565b9050919050565b6000602082019050818103600083015261488b81614430565b9050919050565b600060208201905081810360008301526148ab81614453565b9050919050565b600060208201905081810360008301526148cb81614476565b9050919050565b600060208201905081810360008301526148eb81614499565b9050919050565b6000602082019050818103600083015261490b816144bc565b9050919050565b6000602082019050818103600083015261492b816144df565b9050919050565b6000602082019050818103600083015261494b81614502565b9050919050565b6000602082019050818103600083015261496b81614525565b9050919050565b6000602082019050818103600083015261498b8161456b565b9050919050565b600060208201905081810360008301526149ab8161458e565b9050919050565b600060208201905081810360008301526149cb816145b1565b9050919050565b60006020820190506149e760008301846145e3565b92915050565b60006149f7614a08565b9050614a038282614d39565b919050565b6000604051905090565b600067ffffffffffffffff821115614a2d57614a2c614efd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a5957614a58614efd565b5b614a6282614f4a565b9050602081019050919050565b600067ffffffffffffffff821115614a8a57614a89614efd565b5b614a9382614f4a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b4782614cbb565b9150614b5283614cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b8757614b86614e12565b5b828201905092915050565b6000614b9d82614cbb565b9150614ba883614cbb565b925082614bb857614bb7614e41565b5b828204905092915050565b6000614bce82614cbb565b9150614bd983614cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c1257614c11614e12565b5b828202905092915050565b6000614c2882614cbb565b9150614c3383614cbb565b925082821015614c4657614c45614e12565b5b828203905092915050565b6000614c5c82614c9b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cf2578082015181840152602081019050614cd7565b83811115614d01576000848401525b50505050565b60006002820490506001821680614d1f57607f821691505b60208210811415614d3357614d32614e70565b5b50919050565b614d4282614f4a565b810181811067ffffffffffffffff82111715614d6157614d60614efd565b5b80604052505050565b6000614d7582614cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614da857614da7614e12565b5b600182019050919050565b6000614dbe82614dc5565b9050919050565b6000614dd082614f5b565b9050919050565b6000819050919050565b6000614dec82614cbb565b9150614df783614cbb565b925082614e0757614e06614e41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e46545f5f4d6178537570706c79457863656564656400000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e46545f5f45786365656465644d61784d696e74416d6f756e74506572547800600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e46545f5f45786365656465644d61784e667450657241646472657373000000600082015250565b61549681614c51565b81146154a157600080fd5b50565b6154ad81614c63565b81146154b857600080fd5b50565b6154c481614c6f565b81146154cf57600080fd5b50565b6154db81614cbb565b81146154e657600080fd5b5056fea264697066735822122042c9b83e8f63039de829d4fdc488e2d19ff7830d637de8ced99a6a3d8d2ee3ff64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e7200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a50726f6a65637448564e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000348564e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5253533865555a414b575a485677356e676e477a6131734e70623858623563663831376559514532703935762f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636c0360eb1161015a578063b7b1b8e9116100c1578063d0eb26b01161007a578063d0eb26b01461097b578063d5abeb0114610997578063da3ef23f146109c2578063e985e9c5146109de578063edec5f2714610a1b578063f2fde38b14610a3757610288565b8063b7b1b8e914610859578063b88d4fde14610882578063ba4e5c49146108ab578063ba7d2c76146108e8578063c668286214610913578063c87b56dd1461093e57610288565b806395d89b411161011357806395d89b4114610786578063a0712d68146107b1578063a22cb465146107cd578063a45ba8e7146107f6578063b071401b14610821578063b767a0981461083d57610288565b80636c0360eb146106865780636caede3d146106b157806370a08231146106dc578063715018a6146107195780638da5cb5b1461073057806394354fd01461075b57610288565b80633af32abf116101fe5780634f6ccce7116101b75780634f6ccce71461057e5780634fdd43cb146105bb57806351830227146105d757806355f804b3146106025780635c975abb1461061e5780636352211e1461064957610288565b80633af32abf146104995780633ccfd60b146104d657806342842e0e146104e0578063438b63001461050957806344a0d68a146105465780634c2612471461056257610288565b806313faede61161025057806313faede61461037757806318160ddd146103a257806318cae269146103cd57806323b872dd1461040a5780632dedf5b7146104335780632f745c591461045c57610288565b806301ffc9a71461028d57806302329a29146102ca57806306fdde03146102e6578063081812fc14610311578063095ea7b31461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190614058565b610a60565b6040516102c19190614715565b60405180910390f35b6102e460048036038101906102df919061402b565b610ada565b005b3480156102f257600080fd5b506102fb610b73565b6040516103089190614730565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906140fb565b610c05565b604051610345919061468c565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613f42565b610c8a565b005b34801561038357600080fd5b5061038c610da2565b60405161039991906149d2565b60405180910390f35b3480156103ae57600080fd5b506103b7610da8565b6040516103c491906149d2565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190613dbf565b610db5565b60405161040191906149d2565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613e2c565b610dcd565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613fcf565b610e2d565b005b34801561046857600080fd5b50610483600480360381019061047e9190613f42565b6110e6565b60405161049091906149d2565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190613dbf565b61118b565b6040516104cd9190614715565b60405180910390f35b6104de61123d565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613e2c565b611339565b005b34801561051557600080fd5b50610530600480360381019061052b9190613dbf565b611359565b60405161053d91906146f3565b60405180910390f35b610560600480360381019061055b91906140fb565b611407565b005b61057c600480360381019061057791906140b2565b61148d565b005b34801561058a57600080fd5b506105a560048036038101906105a091906140fb565b611530565b6040516105b291906149d2565b60405180910390f35b6105d560048036038101906105d091906140b2565b6115a1565b005b3480156105e357600080fd5b506105ec611637565b6040516105f99190614715565b60405180910390f35b61061c600480360381019061061791906140b2565b61164a565b005b34801561062a57600080fd5b506106336116e0565b6040516106409190614715565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906140fb565b6116f3565b60405161067d919061468c565b60405180910390f35b34801561069257600080fd5b5061069b6117a5565b6040516106a89190614730565b60405180910390f35b3480156106bd57600080fd5b506106c6611833565b6040516106d39190614715565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613dbf565b611846565b60405161071091906149d2565b60405180910390f35b34801561072557600080fd5b5061072e6118fe565b005b34801561073c57600080fd5b50610745611986565b604051610752919061468c565b60405180910390f35b34801561076757600080fd5b506107706119b0565b60405161077d91906149d2565b60405180910390f35b34801561079257600080fd5b5061079b6119b6565b6040516107a89190614730565b60405180910390f35b6107cb60048036038101906107c691906140fb565b611a48565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613f02565b611ddf565b005b34801561080257600080fd5b5061080b611df5565b6040516108189190614730565b60405180910390f35b61083b600480360381019061083691906140fb565b611e83565b005b6108576004803603810190610852919061402b565b611f09565b005b34801561086557600080fd5b50610880600480360381019061087b9190613dbf565b611fa2565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613e7f565b6121b1565b005b3480156108b757600080fd5b506108d260048036038101906108cd91906140fb565b612213565b6040516108df919061468c565b60405180910390f35b3480156108f457600080fd5b506108fd612252565b60405161090a91906149d2565b60405180910390f35b34801561091f57600080fd5b50610928612258565b6040516109359190614730565b60405180910390f35b34801561094a57600080fd5b50610965600480360381019061096091906140fb565b6122e6565b6040516109729190614730565b60405180910390f35b610995600480360381019061099091906140fb565b612441565b005b3480156109a357600080fd5b506109ac6124c7565b6040516109b991906149d2565b60405180910390f35b6109dc60048036038101906109d791906140b2565b6124eb565b005b3480156109ea57600080fd5b50610a056004803603810190610a009190613dec565b612581565b604051610a129190614715565b60405180910390f35b610a356004803603810190610a309190613f82565b612615565b005b348015610a4357600080fd5b50610a5e6004803603810190610a599190613dbf565b6126b5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad35750610ad2826127ad565b5b9050919050565b610ae261288f565b73ffffffffffffffffffffffffffffffffffffffff16610b00611986565b73ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90614932565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610b8290614d07565b80601f0160208091040260200160405190810160405280929190818152602001828054610bae90614d07565b8015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b5050505050905090565b6000610c1082612897565b610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690614912565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c95826116f3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90614952565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2561288f565b73ffffffffffffffffffffffffffffffffffffffff161480610d545750610d5381610d4e61288f565b612581565b5b610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90614892565b60405180910390fd5b610d9d8383612903565b505050565b600e5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b610dde610dd861288f565b826129bc565b610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490614972565b60405180910390fd5b610e28838383612a9a565b505050565b610e3561288f565b73ffffffffffffffffffffffffffffffffffffffff16610e53611986565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090614932565b60405180910390fd5b6000610eb3610da8565b90507f0000000000000000000000000000000000000000000000000000000000000e72828451610ee39190614bc3565b82610eee9190614b3c565b1115610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690614752565b60405180910390fd5b600f54821115610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90614872565b60405180910390fd5b60005b83518110156110e0576000848281518110610f9557610f94614ece565b5b602002602001015190506000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548582610ff29190614b3c565b1115611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906149b2565b60405180910390fd5b60005b858110156110ca57601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061108e90614d6a565b91905055506110a9836001876110a49190614b3c565b612d01565b84806110b490614d6a565b95505080806110c290614d6a565b915050611036565b50505080806110d890614d6a565b915050610f77565b50505050565b60006110f183611846565b8210611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990614772565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080601280549050905060005b81811015611231578373ffffffffffffffffffffffffffffffffffffffff16601282815481106111cc576111cb614ece565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561121e57600192505050611238565b808061122990614d6a565b915050611199565b5060009150505b919050565b61124561288f565b73ffffffffffffffffffffffffffffffffffffffff16611263611986565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090614932565b60405180910390fd5b60006112c3611986565b73ffffffffffffffffffffffffffffffffffffffff16476040516112e69061463a565b60006040518083038185875af1925050503d8060008114611323576040519150601f19603f3d011682016040523d82523d6000602084013e611328565b606091505b505090508061133657600080fd5b50565b611354838383604051806020016040528060008152506121b1565b505050565b6060600061136683611846565b905060008167ffffffffffffffff81111561138457611383614efd565b5b6040519080825280602002602001820160405280156113b25781602001602082028036833780820191505090505b50905060005b828110156113fc576113ca85826110e6565b8282815181106113dd576113dc614ece565b5b60200260200101818152505080806113f490614d6a565b9150506113b8565b508092505050919050565b61140f61288f565b73ffffffffffffffffffffffffffffffffffffffff1661142d611986565b73ffffffffffffffffffffffffffffffffffffffff1614611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90614932565b60405180910390fd5b80600e8190555050565b61149561288f565b73ffffffffffffffffffffffffffffffffffffffff166114b3611986565b73ffffffffffffffffffffffffffffffffffffffff1614611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090614932565b60405180910390fd5b6001601160016101000a81548160ff02191690831515021790555061152d8161164a565b50565b600061153a610da8565b821061157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290614992565b60405180910390fd5b6008828154811061158f5761158e614ece565b5b90600052602060002001549050919050565b6115a961288f565b73ffffffffffffffffffffffffffffffffffffffff166115c7611986565b73ffffffffffffffffffffffffffffffffffffffff161461161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490614932565b60405180910390fd5b80600d9080519060200190611633929190613a1e565b5050565b601160019054906101000a900460ff1681565b61165261288f565b73ffffffffffffffffffffffffffffffffffffffff16611670611986565b73ffffffffffffffffffffffffffffffffffffffff16146116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd90614932565b60405180910390fd5b80600b90805190602001906116dc929190613a1e565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906148d2565b60405180910390fd5b80915050919050565b600b80546117b290614d07565b80601f01602080910402602001604051908101604052809291908181526020018280546117de90614d07565b801561182b5780601f106118005761010080835404028352916020019161182b565b820191906000526020600020905b81548152906001019060200180831161180e57829003601f168201915b505050505081565b601160029054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906148b2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61190661288f565b73ffffffffffffffffffffffffffffffffffffffff16611924611986565b73ffffffffffffffffffffffffffffffffffffffff161461197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197190614932565b60405180910390fd5b6119846000612d1f565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600180546119c590614d07565b80601f01602080910402602001604051908101604052809291908181526020018280546119f190614d07565b8015611a3e5780601f10611a1357610100808354040283529160200191611a3e565b820191906000526020600020905b815481529060010190602001808311611a2157829003601f168201915b5050505050905090565b601160009054906101000a900460ff1615611a8f576040517f018a6b1300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611aca576040517f4a9e3a0000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f54811115611b06576040517f02e2622700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b10610da8565b90507f0000000000000000000000000000000000000000000000000000000000000e728282611b3f9190614b3c565b1115611b77576040517f4285bcd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7f611986565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cf0576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548382611c049190614b3c565b1115611c3c576040517f64b19bbd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60011515601160029054906101000a900460ff161515148015611c655750611c633361118b565b155b15611ca757336040517f5e063b5d000000000000000000000000000000000000000000000000000000008152600401611c9e919061468c565b60405180910390fd5b82600e54611cb59190614bc3565b341015611cee576040517f772ddbcd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b60005b82811015611dda5760007f0000000000000000000000000000000000000000000000000000000000000e72428333604051602001611d339392919061464f565b6040516020818303038152906040528051906020012060001c611d569190614de1565b9050600181611d659190614b3c565b9050601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611db790614d6a565b9190505550611dc63382612d01565b508080611dd290614d6a565b915050611cf3565b505050565b611df1611dea61288f565b8383612de5565b5050565b600d8054611e0290614d07565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2e90614d07565b8015611e7b5780601f10611e5057610100808354040283529160200191611e7b565b820191906000526020600020905b815481529060010190602001808311611e5e57829003601f168201915b505050505081565b611e8b61288f565b73ffffffffffffffffffffffffffffffffffffffff16611ea9611986565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614932565b60405180910390fd5b80600f8190555050565b611f1161288f565b73ffffffffffffffffffffffffffffffffffffffff16611f2f611986565b73ffffffffffffffffffffffffffffffffffffffff1614611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90614932565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b611faa61288f565b73ffffffffffffffffffffffffffffffffffffffff16611fc8611986565b73ffffffffffffffffffffffffffffffffffffffff161461201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590614932565b60405180910390fd5b60005b6012805490508110156121ac578173ffffffffffffffffffffffffffffffffffffffff166012828154811061205957612058614ece565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561219957601260016012805490506120b49190614c1d565b815481106120c5576120c4614ece565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012828154811061210457612103614ece565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601280548061215e5761215d614e9f565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055506121ae565b80806121a490614d6a565b915050612021565b505b50565b6121c26121bc61288f565b836129bc565b612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614972565b60405180910390fd5b61220d84848484612f52565b50505050565b6012818154811061222357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600c805461226590614d07565b80601f016020809104026020016040519081016040528092919081815260200182805461229190614d07565b80156122de5780601f106122b3576101008083540402835291602001916122de565b820191906000526020600020905b8154815290600101906020018083116122c157829003601f168201915b505050505081565b60606122f182612897565b61233257816040517fe49761ce00000000000000000000000000000000000000000000000000000000815260040161232991906149d2565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156123e057600d805461235b90614d07565b80601f016020809104026020016040519081016040528092919081815260200182805461238790614d07565b80156123d45780601f106123a9576101008083540402835291602001916123d4565b820191906000526020600020905b8154815290600101906020018083116123b757829003601f168201915b5050505050905061243c565b60006123ea612fae565b9050600081511161240a5760405180602001604052806000815250612438565b8061241484613040565b600c60405160200161242893929190614609565b6040516020818303038152906040525b9150505b919050565b61244961288f565b73ffffffffffffffffffffffffffffffffffffffff16612467611986565b73ffffffffffffffffffffffffffffffffffffffff16146124bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b490614932565b60405180910390fd5b8060108190555050565b7f0000000000000000000000000000000000000000000000000000000000000e7281565b6124f361288f565b73ffffffffffffffffffffffffffffffffffffffff16612511611986565b73ffffffffffffffffffffffffffffffffffffffff1614612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255e90614932565b60405180910390fd5b80600c908051906020019061257d929190613a1e565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61261d61288f565b73ffffffffffffffffffffffffffffffffffffffff1661263b611986565b73ffffffffffffffffffffffffffffffffffffffff1614612691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268890614932565b60405180910390fd5b6012600061269f9190613aa4565b8181601291906126b0929190613ac5565b505050565b6126bd61288f565b73ffffffffffffffffffffffffffffffffffffffff166126db611986565b73ffffffffffffffffffffffffffffffffffffffff1614612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890614932565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612798906147b2565b60405180910390fd5b6127aa81612d1f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061287857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128885750612887826131a1565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612976836116f3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006129c782612897565b612a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd90614852565b60405180910390fd5b6000612a11836116f3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a535750612a528185612581565b5b80612a9157508373ffffffffffffffffffffffffffffffffffffffff16612a7984610c05565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612aba826116f3565b73ffffffffffffffffffffffffffffffffffffffff1614612b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b07906147d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7790614812565b60405180910390fd5b612b8b83838361320b565b612b96600082612903565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612be69190614c1d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3d9190614b3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cfc83838361331f565b505050565b612d1b828260405180602001604052806000815250613324565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4b90614832565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f459190614715565b60405180910390a3505050565b612f5d848484612a9a565b612f698484848461337f565b612fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9f90614792565b60405180910390fd5b50505050565b6060600b8054612fbd90614d07565b80601f0160208091040260200160405190810160405280929190818152602001828054612fe990614d07565b80156130365780601f1061300b57610100808354040283529160200191613036565b820191906000526020600020905b81548152906001019060200180831161301957829003601f168201915b5050505050905090565b60606000821415613088576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061319c565b600082905060005b600082146130ba5780806130a390614d6a565b915050600a826130b39190614b92565b9150613090565b60008167ffffffffffffffff8111156130d6576130d5614efd565b5b6040519080825280601f01601f1916602001820160405280156131085781602001600182028036833780820191505090505b5090505b60008514613195576001826131219190614c1d565b9150600a856131309190614de1565b603061313c9190614b3c565b60f81b81838151811061315257613151614ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561318e9190614b92565b945061310c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613216838383613516565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613259576132548161351b565b613298565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613297576132968382613564565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132db576132d6816136d1565b61331a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133195761331882826137a2565b5b5b505050565b505050565b61332e8383613821565b61333b600084848461337f565b61337a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337190614792565b60405180910390fd5b505050565b60006133a08473ffffffffffffffffffffffffffffffffffffffff166139fb565b15613509578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133c961288f565b8786866040518563ffffffff1660e01b81526004016133eb94939291906146a7565b602060405180830381600087803b15801561340557600080fd5b505af192505050801561343657506040513d601f19601f820116820180604052508101906134339190614085565b60015b6134b9573d8060008114613466576040519150601f19603f3d011682016040523d82523d6000602084013e61346b565b606091505b506000815114156134b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a890614792565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061350e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161357184611846565b61357b9190614c1d565b9050600060076000848152602001908152602001600020549050818114613660576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136e59190614c1d565b905060006009600084815260200190815260200160002054905060006008838154811061371557613714614ece565b5b90600052602060002001549050806008838154811061373757613736614ece565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061378657613785614e9f565b5b6001900381819060005260206000200160009055905550505050565b60006137ad83611846565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613888906148f2565b60405180910390fd5b61389a81612897565b156138da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d1906147f2565b60405180910390fd5b6138e66000838361320b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139369190614b3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139f76000838361331f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613a2a90614d07565b90600052602060002090601f016020900481019282613a4c5760008555613a93565b82601f10613a6557805160ff1916838001178555613a93565b82800160010185558215613a93579182015b82811115613a92578251825591602001919060010190613a77565b5b509050613aa09190613b65565b5090565b5080546000825590600052602060002090810190613ac29190613b65565b50565b828054828255906000526020600020908101928215613b54579160200282015b82811115613b5357823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613ae5565b5b509050613b619190613b65565b5090565b5b80821115613b7e576000816000905550600101613b66565b5090565b6000613b95613b9084614a12565b6149ed565b90508083825260208201905082856020860282011115613bb857613bb7614f36565b5b60005b85811015613be85781613bce8882613c76565b845260208401935060208301925050600181019050613bbb565b5050509392505050565b6000613c05613c0084614a3e565b6149ed565b905082815260208101848484011115613c2157613c20614f3b565b5b613c2c848285614cc5565b509392505050565b6000613c47613c4284614a6f565b6149ed565b905082815260208101848484011115613c6357613c62614f3b565b5b613c6e848285614cc5565b509392505050565b600081359050613c858161548d565b92915050565b60008083601f840112613ca157613ca0614f31565b5b8235905067ffffffffffffffff811115613cbe57613cbd614f2c565b5b602083019150836020820283011115613cda57613cd9614f36565b5b9250929050565b600082601f830112613cf657613cf5614f31565b5b8135613d06848260208601613b82565b91505092915050565b600081359050613d1e816154a4565b92915050565b600081359050613d33816154bb565b92915050565b600081519050613d48816154bb565b92915050565b600082601f830112613d6357613d62614f31565b5b8135613d73848260208601613bf2565b91505092915050565b600082601f830112613d9157613d90614f31565b5b8135613da1848260208601613c34565b91505092915050565b600081359050613db9816154d2565b92915050565b600060208284031215613dd557613dd4614f45565b5b6000613de384828501613c76565b91505092915050565b60008060408385031215613e0357613e02614f45565b5b6000613e1185828601613c76565b9250506020613e2285828601613c76565b9150509250929050565b600080600060608486031215613e4557613e44614f45565b5b6000613e5386828701613c76565b9350506020613e6486828701613c76565b9250506040613e7586828701613daa565b9150509250925092565b60008060008060808587031215613e9957613e98614f45565b5b6000613ea787828801613c76565b9450506020613eb887828801613c76565b9350506040613ec987828801613daa565b925050606085013567ffffffffffffffff811115613eea57613ee9614f40565b5b613ef687828801613d4e565b91505092959194509250565b60008060408385031215613f1957613f18614f45565b5b6000613f2785828601613c76565b9250506020613f3885828601613d0f565b9150509250929050565b60008060408385031215613f5957613f58614f45565b5b6000613f6785828601613c76565b9250506020613f7885828601613daa565b9150509250929050565b60008060208385031215613f9957613f98614f45565b5b600083013567ffffffffffffffff811115613fb757613fb6614f40565b5b613fc385828601613c8b565b92509250509250929050565b60008060408385031215613fe657613fe5614f45565b5b600083013567ffffffffffffffff81111561400457614003614f40565b5b61401085828601613ce1565b925050602061402185828601613daa565b9150509250929050565b60006020828403121561404157614040614f45565b5b600061404f84828501613d0f565b91505092915050565b60006020828403121561406e5761406d614f45565b5b600061407c84828501613d24565b91505092915050565b60006020828403121561409b5761409a614f45565b5b60006140a984828501613d39565b91505092915050565b6000602082840312156140c8576140c7614f45565b5b600082013567ffffffffffffffff8111156140e6576140e5614f40565b5b6140f284828501613d7c565b91505092915050565b60006020828403121561411157614110614f45565b5b600061411f84828501613daa565b91505092915050565b600061413483836145d4565b60208301905092915050565b61414981614c51565b82525050565b61416061415b82614c51565b614db3565b82525050565b600061417182614ac5565b61417b8185614af3565b935061418683614aa0565b8060005b838110156141b757815161419e8882614128565b97506141a983614ae6565b92505060018101905061418a565b5085935050505092915050565b6141cd81614c63565b82525050565b60006141de82614ad0565b6141e88185614b04565b93506141f8818560208601614cd4565b61420181614f4a565b840191505092915050565b600061421782614adb565b6142218185614b20565b9350614231818560208601614cd4565b61423a81614f4a565b840191505092915050565b600061425082614adb565b61425a8185614b31565b935061426a818560208601614cd4565b80840191505092915050565b6000815461428381614d07565b61428d8186614b31565b945060018216600081146142a857600181146142b9576142ec565b60ff198316865281860193506142ec565b6142c285614ab0565b60005b838110156142e4578154818901526001820191506020810190506142c5565b838801955050505b50505092915050565b6000614302601683614b20565b915061430d82614f68565b602082019050919050565b6000614325602b83614b20565b915061433082614f91565b604082019050919050565b6000614348603283614b20565b915061435382614fe0565b604082019050919050565b600061436b602683614b20565b91506143768261502f565b604082019050919050565b600061438e602583614b20565b91506143998261507e565b604082019050919050565b60006143b1601c83614b20565b91506143bc826150cd565b602082019050919050565b60006143d4602483614b20565b91506143df826150f6565b604082019050919050565b60006143f7601983614b20565b915061440282615145565b602082019050919050565b600061441a602c83614b20565b91506144258261516e565b604082019050919050565b600061443d601f83614b20565b9150614448826151bd565b602082019050919050565b6000614460603883614b20565b915061446b826151e6565b604082019050919050565b6000614483602a83614b20565b915061448e82615235565b604082019050919050565b60006144a6602983614b20565b91506144b182615284565b604082019050919050565b60006144c9602083614b20565b91506144d4826152d3565b602082019050919050565b60006144ec602c83614b20565b91506144f7826152fc565b604082019050919050565b600061450f602083614b20565b915061451a8261534b565b602082019050919050565b6000614532602183614b20565b915061453d82615374565b604082019050919050565b6000614555600083614b15565b9150614560826153c3565b600082019050919050565b6000614578603183614b20565b9150614583826153c6565b604082019050919050565b600061459b602c83614b20565b91506145a682615415565b604082019050919050565b60006145be601d83614b20565b91506145c982615464565b602082019050919050565b6145dd81614cbb565b82525050565b6145ec81614cbb565b82525050565b6146036145fe82614cbb565b614dd7565b82525050565b60006146158286614245565b91506146218285614245565b915061462d8284614276565b9150819050949350505050565b600061464582614548565b9150819050919050565b600061465b82866145f2565b60208201915061466b82856145f2565b60208201915061467b828461414f565b601482019150819050949350505050565b60006020820190506146a16000830184614140565b92915050565b60006080820190506146bc6000830187614140565b6146c96020830186614140565b6146d660408301856145e3565b81810360608301526146e881846141d3565b905095945050505050565b6000602082019050818103600083015261470d8184614166565b905092915050565b600060208201905061472a60008301846141c4565b92915050565b6000602082019050818103600083015261474a818461420c565b905092915050565b6000602082019050818103600083015261476b816142f5565b9050919050565b6000602082019050818103600083015261478b81614318565b9050919050565b600060208201905081810360008301526147ab8161433b565b9050919050565b600060208201905081810360008301526147cb8161435e565b9050919050565b600060208201905081810360008301526147eb81614381565b9050919050565b6000602082019050818103600083015261480b816143a4565b9050919050565b6000602082019050818103600083015261482b816143c7565b9050919050565b6000602082019050818103600083015261484b816143ea565b9050919050565b6000602082019050818103600083015261486b8161440d565b9050919050565b6000602082019050818103600083015261488b81614430565b9050919050565b600060208201905081810360008301526148ab81614453565b9050919050565b600060208201905081810360008301526148cb81614476565b9050919050565b600060208201905081810360008301526148eb81614499565b9050919050565b6000602082019050818103600083015261490b816144bc565b9050919050565b6000602082019050818103600083015261492b816144df565b9050919050565b6000602082019050818103600083015261494b81614502565b9050919050565b6000602082019050818103600083015261496b81614525565b9050919050565b6000602082019050818103600083015261498b8161456b565b9050919050565b600060208201905081810360008301526149ab8161458e565b9050919050565b600060208201905081810360008301526149cb816145b1565b9050919050565b60006020820190506149e760008301846145e3565b92915050565b60006149f7614a08565b9050614a038282614d39565b919050565b6000604051905090565b600067ffffffffffffffff821115614a2d57614a2c614efd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a5957614a58614efd565b5b614a6282614f4a565b9050602081019050919050565b600067ffffffffffffffff821115614a8a57614a89614efd565b5b614a9382614f4a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b4782614cbb565b9150614b5283614cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b8757614b86614e12565b5b828201905092915050565b6000614b9d82614cbb565b9150614ba883614cbb565b925082614bb857614bb7614e41565b5b828204905092915050565b6000614bce82614cbb565b9150614bd983614cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c1257614c11614e12565b5b828202905092915050565b6000614c2882614cbb565b9150614c3383614cbb565b925082821015614c4657614c45614e12565b5b828203905092915050565b6000614c5c82614c9b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cf2578082015181840152602081019050614cd7565b83811115614d01576000848401525b50505050565b60006002820490506001821680614d1f57607f821691505b60208210811415614d3357614d32614e70565b5b50919050565b614d4282614f4a565b810181811067ffffffffffffffff82111715614d6157614d60614efd565b5b80604052505050565b6000614d7582614cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614da857614da7614e12565b5b600182019050919050565b6000614dbe82614dc5565b9050919050565b6000614dd082614f5b565b9050919050565b6000819050919050565b6000614dec82614cbb565b9150614df783614cbb565b925082614e0757614e06614e41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e46545f5f4d6178537570706c79457863656564656400000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e46545f5f45786365656465644d61784d696e74416d6f756e74506572547800600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e46545f5f45786365656465644d61784e667450657241646472657373000000600082015250565b61549681614c51565b81146154a157600080fd5b50565b6154ad81614c63565b81146154b857600080fd5b50565b6154c481614c6f565b81146154cf57600080fd5b50565b6154db81614cbb565b81146154e657600080fd5b5056fea264697066735822122042c9b83e8f63039de829d4fdc488e2d19ff7830d637de8ced99a6a3d8d2ee3ff64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e7200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a50726f6a65637448564e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000348564e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5253533865555a414b575a485677356e676e477a6131734e70623858623563663831376559514532703935762f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ProjectHVN
Arg [1] : _symbol (string): HVN
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 3698
Arg [4] : _maxMintAmountPerTx (uint256): 1
Arg [5] : _hiddenMetadataUri (string): ipfs://QmRSS8eUZAKWZHVw5ngnGza1sNpb8Xb5cf817eYQE2p95v/hidden.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000e72
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 50726f6a65637448564e00000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 48564e0000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [11] : 697066733a2f2f516d5253533865555a414b575a485677356e676e477a613173
Arg [12] : 4e70623858623563663831376559514532703935762f68696464656e2e6a736f
Arg [13] : 6e00000000000000000000000000000000000000000000000000000000000000


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.