ETH Price: $3,489.63 (-0.02%)
Gas: 2 Gwei

Token

GoldenGranny (GOLDENGRANNY)
 

Overview

Max Total Supply

400 GOLDENGRANNY

Holders

274

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GOLDENGRANNY
0x438ec309373e1b4b037b3d19a95b9cba98c76b55
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:
GoldenGranny

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : GoldenGranny.sol
pragma solidity >=0.4.22 <0.9.0;

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

contract GoldenGrannyPresaleToken is Ownable {
    function isOwner(address add) public view virtual returns (bool) {}
}

contract GoldenGranny is ERC721Enumerable, ERC721Pausable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    Counters.Counter private _lastTokenIds;

    uint16 maxSupply = 9500;
    string private baseTokenURI = "";
    bool private mustCheckAuthorizationToMint = false;
    address private earlySupporterContractAddress = address(0x0);
    uint256 private tokenPrice = 0.04 ether;
    uint8 private discountInPercent = 0;
    uint8 private maxMintPerWallet = 0;
    uint8 private maxMintPerTransaction = 20; // can't be greater than 256
    mapping(address => uint8) private earlySupporterBalances;
    mapping(address => uint8) private notEarlySupporterBalances;

    constructor() ERC721("GoldenGranny", "GOLDENGRANNY") {}

    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(ERC721Enumerable, ERC721) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }
    
    function mintNewGranny() public payable {
        // compute count
        uint256 count = 0;

        // check if wallet is allowed to mint
        if (mustCheckAuthorizationToMint && earlySupporterContractAddress != address(0x0)) {
            GoldenGrannyPresaleToken presaleContract = GoldenGrannyPresaleToken(earlySupporterContractAddress);
                 require(presaleContract.isOwner(msg.sender),
             "Must be early supporter token owner");
        }

        if (earlySupporterBalances[msg.sender] == 0) {
            count = (msg.value + discountInPercent * tokenPrice / 100) / tokenPrice;
            require(
                (msg.value + discountInPercent * tokenPrice / 100) % tokenPrice == 0,
                "Must pay a multiple of 0.04 eth + 0.02 eth"
            );
        } else {
            count = msg.value / tokenPrice;
            require(
                msg.value % tokenPrice == 0,
                "Must pay a multiple of 0.04 eth -- no discount"
            );
        }

        if (mustCheckAuthorizationToMint) {
            require(
                (maxMintPerTransaction == 0 || maxMintPerTransaction >= count) &&
                    (maxMintPerWallet == 0 ||
                        (maxMintPerWallet > 0 &&
                            earlySupporterBalances[msg.sender] + count <=
                            maxMintPerWallet)),
                "Unauthorized to mint so many"
            );
        } else {
            require(
                (maxMintPerTransaction == 0 || maxMintPerTransaction >= count) &&
                    (maxMintPerWallet == 0 ||
                        (maxMintPerWallet > 0 &&
                            notEarlySupporterBalances[msg.sender] + count <=
                            maxMintPerWallet)),
                "Unauthorized to mint so many"
            );
        }

        require(
            totalSupply() + count <= maxSupply,
            "No more grannies available"
        );
        for (uint256 i = 0; i < count; i++) {
            _tokenIds.increment();
            uint256 newTokenId = _tokenIds.current();
            _safeMint(msg.sender, newTokenId);
        }
        if (maxMintPerWallet > 0) {
            if (mustCheckAuthorizationToMint) {
                earlySupporterBalances[msg.sender] += uint8(count);
            }else{
                notEarlySupporterBalances[msg.sender] += uint8(count);
            }
        }
    }

    function mintSomeOfLastGranny(address[] memory addresses) public onlyOwner {
        uint16 lastTotalCount = 500;
        uint256 count = addresses.length;
        require(
            count <= lastTotalCount &&
            totalSupply() + count <= maxSupply + lastTotalCount, 
            "No more grannies available"
        );
        for (uint16 i=0; i<count; i++) {
            _lastTokenIds.increment();
            uint256 newTokenId = maxSupply + _lastTokenIds.current();
            _safeMint(addresses[i], newTokenId);
        }
    }

    function withdraw() public onlyOwner {
        uint256 withdrawableFunds = address(this).balance;
        payable(msg.sender).transfer(withdrawableFunds);
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseTokenURI = uri;
    }

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

    function setTokenPrice(uint256 price) public onlyOwner {
        tokenPrice = price;
    }

    function getTokenPrice() public view returns (uint256) {
        return tokenPrice;
    }

    function configureSale(bool mustCheck, uint8 discount, uint8 maxMint) public onlyOwner {
        mustCheckAuthorizationToMint = mustCheck;
        discountInPercent = discount;
        maxMintPerWallet = maxMint;
    }

    function setMintPerTransaction(uint8 quantity) public onlyOwner {
        maxMintPerTransaction = quantity;
    }

    function getMintPerTransaction() public view returns (uint8) {
        return maxMintPerTransaction;
    }

    function setAddressEarlySupporterContract(address newAddress)
        public
        onlyOwner
    {
        earlySupporterContractAddress = newAddress;
    }

    function getTotalPrice(uint8 count) public view returns (uint256) {
        require(count >= 1, "Count must be positive");
        // compute price
        if (earlySupporterBalances[msg.sender] >= 1) {
            return count * tokenPrice;
        } else {
            return
                ((100 - discountInPercent) * tokenPrice) / 100 + (count - 1) * tokenPrice;
        }
    }
}

File 2 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 3 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

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 4 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

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 16 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 16 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 8 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 9 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 tokenId);

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

File 10 of 16 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 11 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 12 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

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 overriden 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own");
        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);
    }

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

File 15 of 16 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 16 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"mustCheck","type":"bool"},{"internalType":"uint8","name":"discount","type":"uint8"},{"internalType":"uint8","name":"maxMint","type":"uint8"}],"name":"configureSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPerTransaction","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"count","type":"uint8"}],"name":"getTotalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintNewGranny","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"mintSomeOfLastGranny","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"newAddress","type":"address"}],"name":"setAddressEarlySupporterContract","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"setMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261251c600d60006101000a81548161ffff021916908361ffff16021790555060405180602001604052806000815250600e90805190602001906200004a929190620002c4565b506000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550668e1bc9bf0400006010556000601160006101000a81548160ff021916908360ff1602179055506000601160016101000a81548160ff021916908360ff1602179055506014601160026101000a81548160ff021916908360ff1602179055503480156200011457600080fd5b506040518060400160405280600c81526020017f476f6c64656e4772616e6e7900000000000000000000000000000000000000008152506040518060400160405280600c81526020017f474f4c44454e4752414e4e590000000000000000000000000000000000000000815250816000908051906020019062000199929190620002c4565b508060019080519060200190620001b2929190620002c4565b5050506000600a60006101000a81548160ff021916908315150217905550620001f0620001e4620001f660201b60201c565b620001fe60201b60201c565b620003d9565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d29062000374565b90600052602060002090601f016020900481019282620002f6576000855562000342565b82601f106200031157805160ff191683800117855562000342565b8280016001018555821562000342579182015b828111156200034157825182559160200191906001019062000324565b5b50905062000351919062000355565b5090565b5b808211156200037057600081600090555060010162000356565b5090565b600060028204905060018216806200038d57607f821691505b60208210811415620003a457620003a3620003aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61512780620003e96000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461068c578063e985e9c5146106c9578063ed9c7ac114610706578063f2fde38b14610731578063f32f12bc1461075a576101ee565b8063a22cb465146105e8578063aefe5ceb14610611578063b88d4fde1461063a578063c3b6a2df14610663576101ee565b80638640aaba116100dc5780638640aaba1461055f5780638c6c8ebd146105885780638da5cb5b1461059257806395d89b41146105bd576101ee565b806370a08231146104cb578063715018a6146105085780637c6398561461051f5780638456cb5914610548576101ee565b80633f4ba83a1161018557806355f804b31161015457806355f804b3146104115780635c975abb1461043a5780636352211e146104655780636a61e5fc146104a2576101ee565b80633f4ba83a1461036957806342842e0e146103805780634b94f50e146103a95780634f6ccce7146103d4576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780633ccfd60b14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906139c9565b610797565b6040516102279190613fe1565b60405180910390f35b34801561023c57600080fd5b506102456107a9565b6040516102529190613ffc565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613a6c565b61083b565b60405161028f9190613f7a565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906138c0565b6108c0565b005b3480156102cd57600080fd5b506102d66109d8565b6040516102e3919061437e565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906137aa565b6109e5565b005b34801561032157600080fd5b5061033c600480360381019061033791906138c0565b610a45565b604051610349919061437e565b60405180910390f35b34801561035e57600080fd5b50610367610aea565b005b34801561037557600080fd5b5061037e610bb5565b005b34801561038c57600080fd5b506103a760048036038101906103a291906137aa565b610c3b565b005b3480156103b557600080fd5b506103be610c5b565b6040516103cb919061437e565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613a6c565b610c65565b604051610408919061437e565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613a23565b610cd6565b005b34801561044657600080fd5b5061044f610d6c565b60405161045c9190613fe1565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190613a6c565b610d83565b6040516104999190613f7a565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190613a6c565b610e35565b005b3480156104d757600080fd5b506104f260048036038101906104ed919061373d565b610ebb565b6040516104ff919061437e565b60405180910390f35b34801561051457600080fd5b5061051d610f73565b005b34801561052b57600080fd5b506105466004803603810190610541919061373d565b610ffb565b005b34801561055457600080fd5b5061055d6110bb565b005b34801561056b57600080fd5b5061058660048036038101906105819190613a99565b611141565b005b6105906111db565b005b34801561059e57600080fd5b506105a76118f8565b6040516105b49190613f7a565b60405180910390f35b3480156105c957600080fd5b506105d2611922565b6040516105df9190613ffc565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613880565b6119b4565b005b34801561061d57600080fd5b5061063860048036038101906106339190613900565b611b35565b005b34801561064657600080fd5b50610661600480360381019061065c91906137fd565b611cca565b005b34801561066f57600080fd5b5061068a60048036038101906106859190613976565b611d2c565b005b34801561069857600080fd5b506106b360048036038101906106ae9190613a6c565b611dfd565b6040516106c09190613ffc565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb919061376a565b611ea4565b6040516106fd9190613fe1565b60405180910390f35b34801561071257600080fd5b5061071b611f38565b6040516107289190614399565b60405180910390f35b34801561073d57600080fd5b506107586004803603810190610753919061373d565b611f4f565b005b34801561076657600080fd5b50610781600480360381019061077c9190613a99565b612047565b60405161078e919061437e565b60405180910390f35b60006107a282612166565b9050919050565b6060600080546107b890614733565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490614733565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6000610846826121e0565b610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c9061425e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cb82610d83565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109339061431e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095b61224c565b73ffffffffffffffffffffffffffffffffffffffff16148061098a57506109898161098461224c565b611ea4565b5b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c0906141de565b60405180910390fd5b6109d38383612254565b505050565b6000600880549050905090565b6109f66109f061224c565b8261230d565b610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c9061433e565b60405180910390fd5b610a408383836123eb565b505050565b6000610a5083610ebb565b8210610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a889061405e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af261224c565b73ffffffffffffffffffffffffffffffffffffffff16610b106118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d9061429e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bb1573d6000803e3d6000fd5b5050565b610bbd61224c565b73ffffffffffffffffffffffffffffffffffffffff16610bdb6118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c289061429e565b60405180910390fd5b610c39612647565b565b610c5683838360405180602001604052806000815250611cca565b505050565b6000601054905090565b6000610c6f6109d8565b8210610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca79061435e565b60405180910390fd5b60088281548110610cc457610cc36148f7565b5b90600052602060002001549050919050565b610cde61224c565b73ffffffffffffffffffffffffffffffffffffffff16610cfc6118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d499061429e565b60405180910390fd5b80600e9080519060200190610d68929190613489565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061421e565b60405180910390fd5b80915050919050565b610e3d61224c565b73ffffffffffffffffffffffffffffffffffffffff16610e5b6118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea89061429e565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906141fe565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7b61224c565b73ffffffffffffffffffffffffffffffffffffffff16610f996118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061429e565b60405180910390fd5b610ff960006126e9565b565b61100361224c565b73ffffffffffffffffffffffffffffffffffffffff166110216118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061429e565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110c361224c565b73ffffffffffffffffffffffffffffffffffffffff166110e16118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e9061429e565b60405180910390fd5b61113f6127af565b565b61114961224c565b73ffffffffffffffffffffffffffffffffffffffff166111676118f8565b73ffffffffffffffffffffffffffffffffffffffff16146111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b49061429e565b60405180910390fd5b80601160026101000a81548160ff021916908360ff16021790555050565b6000600f60009054906101000a900460ff1680156112485750600073ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561133e576000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16632f54bf6e336040518263ffffffff1660e01b81526004016112ad9190613f7a565b60206040518083038186803b1580156112c557600080fd5b505afa1580156112d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fd9190613949565b61133c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113339061409e565b60405180910390fd5b505b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161415611467576010546064601054601160009054906101000a900460ff1660ff166113bb91906145a0565b6113c5919061456f565b346113d091906144e2565b6113da919061456f565b905060006010546064601054601160009054906101000a900460ff1660ff1661140391906145a0565b61140d919061456f565b3461141891906144e2565b611422919061480a565b14611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906140fe565b60405180910390fd5b6114c8565b60105434611475919061456f565b9050600060105434611487919061480a565b146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be9061427e565b60405180910390fd5b5b600f60009054906101000a900460ff1615611607576000601160029054906101000a900460ff1660ff161480611510575080601160029054906101000a900460ff1660ff1610155b80156115c357506000601160019054906101000a900460ff1660ff1614806115c257506000601160019054906101000a900460ff1660ff161180156115c15750601160019054906101000a900460ff1660ff1681601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff166115be91906144e2565b11155b5b5b611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f9906142fe565b60405180910390fd5b61172d565b6000601160029054906101000a900460ff1660ff16148061163a575080601160029054906101000a900460ff1660ff1610155b80156116ed57506000601160019054906101000a900460ff1660ff1614806116ec57506000601160019054906101000a900460ff1660ff161180156116eb5750601160019054906101000a900460ff1660ff1681601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff166116e891906144e2565b11155b5b5b61172c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611723906142fe565b60405180910390fd5b5b600d60009054906101000a900461ffff1661ffff168161174b6109d8565b61175591906144e2565b1115611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d9061413e565b60405180910390fd5b60005b818110156117d7576117ab600b612852565b60006117b7600b612868565b90506117c33382612876565b5080806117cf906147c1565b915050611799565b506000601160019054906101000a900460ff1660ff1611156118f557600f60009054906101000a900460ff16156118805780601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166118639190614538565b92506101000a81548160ff021916908360ff1602179055506118f4565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166118db9190614538565b92506101000a81548160ff021916908360ff1602179055505b5b50565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461193190614733565b80601f016020809104026020016040519081016040528092919081815260200182805461195d90614733565b80156119aa5780601f1061197f576101008083540402835291602001916119aa565b820191906000526020600020905b81548152906001019060200180831161198d57829003601f168201915b5050505050905090565b6119bc61224c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a219061417e565b60405180910390fd5b8060056000611a3761224c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ae461224c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b299190613fe1565b60405180910390a35050565b611b3d61224c565b73ffffffffffffffffffffffffffffffffffffffff16611b5b6118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba89061429e565b60405180910390fd5b60006101f490506000825190508161ffff168111158015611c03575081600d60009054906101000a900461ffff16611be991906144aa565b61ffff1681611bf66109d8565b611c0091906144e2565b11155b611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c399061413e565b60405180910390fd5b60005b818161ffff161015611cc457611c5b600c612852565b6000611c67600c612868565b600d60009054906101000a900461ffff1661ffff16611c8691906144e2565b9050611cb0858361ffff1681518110611ca257611ca16148f7565b5b602002602001015182612876565b508080611cbc90614796565b915050611c45565b50505050565b611cdb611cd561224c565b8361230d565b611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119061433e565b60405180910390fd5b611d2684848484612894565b50505050565b611d3461224c565b73ffffffffffffffffffffffffffffffffffffffff16611d526118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f9061429e565b60405180910390fd5b82600f60006101000a81548160ff02191690831515021790555081601160006101000a81548160ff021916908360ff16021790555080601160016101000a81548160ff021916908360ff160217905550505050565b6060611e08826121e0565b611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e906142de565b60405180910390fd5b6000611e516128f0565b90506000815111611e715760405180602001604052806000815250611e9c565b80611e7b84612982565b604051602001611e8c929190613f56565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601160029054906101000a900460ff16905090565b611f5761224c565b73ffffffffffffffffffffffffffffffffffffffff16611f756118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc29061429e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612032906140be565b60405180910390fd5b612044816126e9565b50565b600060018260ff161015612090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120879061411e565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16106120ff576010548260ff166120f891906145a0565b9050612161565b60105460018361210f919061462e565b60ff1661211c91906145a0565b6064601054601160009054906101000a900460ff16606461213d919061462e565b60ff1661214a91906145a0565b612154919061456f565b61215e91906144e2565b90505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121d957506121d882612ae3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122c783610d83565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612318826121e0565b612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e9061419e565b60405180910390fd5b600061236283610d83565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123d157508373ffffffffffffffffffffffffffffffffffffffff166123b98461083b565b73ffffffffffffffffffffffffffffffffffffffff16145b806123e257506123e18185611ea4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661240b82610d83565b73ffffffffffffffffffffffffffffffffffffffff1614612461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612458906142be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c89061415e565b60405180910390fd5b6124dc838383612bc5565b6124e7600082612254565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253791906145fa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258e91906144e2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61264f610d6c565b61268e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126859061403e565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126d261224c565b6040516126df9190613f7a565b60405180910390a1565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127b7610d6c565b156127f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ee906141be565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861283b61224c565b6040516128489190613f7a565b60405180910390a1565b6001816000016000828254019250508190555050565b600081600001549050919050565b612890828260405180602001604052806000815250612bd5565b5050565b61289f8484846123eb565b6128ab84848484612c30565b6128ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e19061407e565b60405180910390fd5b50505050565b6060600e80546128ff90614733565b80601f016020809104026020016040519081016040528092919081815260200182805461292b90614733565b80156129785780601f1061294d57610100808354040283529160200191612978565b820191906000526020600020905b81548152906001019060200180831161295b57829003601f168201915b5050505050905090565b606060008214156129ca576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ade565b600082905060005b600082146129fc5780806129e5906147c1565b915050600a826129f5919061456f565b91506129d2565b60008167ffffffffffffffff811115612a1857612a17614926565b5b6040519080825280601f01601f191660200182016040528015612a4a5781602001600182028036833780820191505090505b5090505b60008514612ad757600182612a6391906145fa565b9150600a85612a72919061480a565b6030612a7e91906144e2565b60f81b818381518110612a9457612a936148f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad0919061456f565b9450612a4e565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bbe5750612bbd82612dc7565b5b9050919050565b612bd0838383612e31565b505050565b612bdf8383612e89565b612bec6000848484612c30565b612c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c229061407e565b60405180910390fd5b505050565b6000612c518473ffffffffffffffffffffffffffffffffffffffff16613057565b15612dba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7a61224c565b8786866040518563ffffffff1660e01b8152600401612c9c9493929190613f95565b602060405180830381600087803b158015612cb657600080fd5b505af1925050508015612ce757506040513d601f19601f82011682018060405250810190612ce491906139f6565b60015b612d6a573d8060008114612d17576040519150601f19603f3d011682016040523d82523d6000602084013e612d1c565b606091505b50600081511415612d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d599061407e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dbf565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e3c83838361306a565b612e44610d6c565b15612e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7b9061401e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef09061423e565b60405180910390fd5b612f02816121e0565b15612f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f39906140de565b60405180910390fd5b612f4e60008383612bc5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9e91906144e2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b61307583838361317e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130b8576130b381613183565b6130f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130f6576130f583826131cc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561313a5761313581613339565b613179565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461317857613177828261340a565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131d984610ebb565b6131e391906145fa565b90506000600760008481526020019081526020016000205490508181146132c8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061334d91906145fa565b905060006009600084815260200190815260200160002054905060006008838154811061337d5761337c6148f7565b5b90600052602060002001549050806008838154811061339f5761339e6148f7565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133ee576133ed6148c8565b5b6001900381819060005260206000200160009055905550505050565b600061341583610ebb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461349590614733565b90600052602060002090601f0160209004810192826134b757600085556134fe565b82601f106134d057805160ff19168380011785556134fe565b828001600101855582156134fe579182015b828111156134fd5782518255916020019190600101906134e2565b5b50905061350b919061350f565b5090565b5b80821115613528576000816000905550600101613510565b5090565b600061353f61353a846143d9565b6143b4565b905080838252602082019050828560208602820111156135625761356161495a565b5b60005b8581101561359257816135788882613620565b845260208401935060208301925050600181019050613565565b5050509392505050565b60006135af6135aa84614405565b6143b4565b9050828152602081018484840111156135cb576135ca61495f565b5b6135d68482856146f1565b509392505050565b60006135f16135ec84614436565b6143b4565b90508281526020810184848401111561360d5761360c61495f565b5b6136188482856146f1565b509392505050565b60008135905061362f8161507e565b92915050565b600082601f83011261364a57613649614955565b5b813561365a84826020860161352c565b91505092915050565b60008135905061367281615095565b92915050565b60008151905061368781615095565b92915050565b60008135905061369c816150ac565b92915050565b6000815190506136b1816150ac565b92915050565b600082601f8301126136cc576136cb614955565b5b81356136dc84826020860161359c565b91505092915050565b600082601f8301126136fa576136f9614955565b5b813561370a8482602086016135de565b91505092915050565b600081359050613722816150c3565b92915050565b600081359050613737816150da565b92915050565b60006020828403121561375357613752614969565b5b600061376184828501613620565b91505092915050565b6000806040838503121561378157613780614969565b5b600061378f85828601613620565b92505060206137a085828601613620565b9150509250929050565b6000806000606084860312156137c3576137c2614969565b5b60006137d186828701613620565b93505060206137e286828701613620565b92505060406137f386828701613713565b9150509250925092565b6000806000806080858703121561381757613816614969565b5b600061382587828801613620565b945050602061383687828801613620565b935050604061384787828801613713565b925050606085013567ffffffffffffffff81111561386857613867614964565b5b613874878288016136b7565b91505092959194509250565b6000806040838503121561389757613896614969565b5b60006138a585828601613620565b92505060206138b685828601613663565b9150509250929050565b600080604083850312156138d7576138d6614969565b5b60006138e585828601613620565b92505060206138f685828601613713565b9150509250929050565b60006020828403121561391657613915614969565b5b600082013567ffffffffffffffff81111561393457613933614964565b5b61394084828501613635565b91505092915050565b60006020828403121561395f5761395e614969565b5b600061396d84828501613678565b91505092915050565b60008060006060848603121561398f5761398e614969565b5b600061399d86828701613663565b93505060206139ae86828701613728565b92505060406139bf86828701613728565b9150509250925092565b6000602082840312156139df576139de614969565b5b60006139ed8482850161368d565b91505092915050565b600060208284031215613a0c57613a0b614969565b5b6000613a1a848285016136a2565b91505092915050565b600060208284031215613a3957613a38614969565b5b600082013567ffffffffffffffff811115613a5757613a56614964565b5b613a63848285016136e5565b91505092915050565b600060208284031215613a8257613a81614969565b5b6000613a9084828501613713565b91505092915050565b600060208284031215613aaf57613aae614969565b5b6000613abd84828501613728565b91505092915050565b613acf81614662565b82525050565b613ade81614674565b82525050565b6000613aef82614467565b613af9818561447d565b9350613b09818560208601614700565b613b128161496e565b840191505092915050565b6000613b2882614472565b613b32818561448e565b9350613b42818560208601614700565b613b4b8161496e565b840191505092915050565b6000613b6182614472565b613b6b818561449f565b9350613b7b818560208601614700565b80840191505092915050565b6000613b94602b8361448e565b9150613b9f8261497f565b604082019050919050565b6000613bb760148361448e565b9150613bc2826149ce565b602082019050919050565b6000613bda602b8361448e565b9150613be5826149f7565b604082019050919050565b6000613bfd60328361448e565b9150613c0882614a46565b604082019050919050565b6000613c2060238361448e565b9150613c2b82614a95565b604082019050919050565b6000613c4360268361448e565b9150613c4e82614ae4565b604082019050919050565b6000613c66601c8361448e565b9150613c7182614b33565b602082019050919050565b6000613c89602a8361448e565b9150613c9482614b5c565b604082019050919050565b6000613cac60168361448e565b9150613cb782614bab565b602082019050919050565b6000613ccf601a8361448e565b9150613cda82614bd4565b602082019050919050565b6000613cf260248361448e565b9150613cfd82614bfd565b604082019050919050565b6000613d1560198361448e565b9150613d2082614c4c565b602082019050919050565b6000613d38602c8361448e565b9150613d4382614c75565b604082019050919050565b6000613d5b60108361448e565b9150613d6682614cc4565b602082019050919050565b6000613d7e60388361448e565b9150613d8982614ced565b604082019050919050565b6000613da1602a8361448e565b9150613dac82614d3c565b604082019050919050565b6000613dc460298361448e565b9150613dcf82614d8b565b604082019050919050565b6000613de760208361448e565b9150613df282614dda565b602082019050919050565b6000613e0a602c8361448e565b9150613e1582614e03565b604082019050919050565b6000613e2d602e8361448e565b9150613e3882614e52565b604082019050919050565b6000613e5060208361448e565b9150613e5b82614ea1565b602082019050919050565b6000613e7360298361448e565b9150613e7e82614eca565b604082019050919050565b6000613e96602f8361448e565b9150613ea182614f19565b604082019050919050565b6000613eb9601c8361448e565b9150613ec482614f68565b602082019050919050565b6000613edc60218361448e565b9150613ee782614f91565b604082019050919050565b6000613eff60318361448e565b9150613f0a82614fe0565b604082019050919050565b6000613f22602c8361448e565b9150613f2d8261502f565b604082019050919050565b613f41816146da565b82525050565b613f50816146e4565b82525050565b6000613f628285613b56565b9150613f6e8284613b56565b91508190509392505050565b6000602082019050613f8f6000830184613ac6565b92915050565b6000608082019050613faa6000830187613ac6565b613fb76020830186613ac6565b613fc46040830185613f38565b8181036060830152613fd68184613ae4565b905095945050505050565b6000602082019050613ff66000830184613ad5565b92915050565b600060208201905081810360008301526140168184613b1d565b905092915050565b6000602082019050818103600083015261403781613b87565b9050919050565b6000602082019050818103600083015261405781613baa565b9050919050565b6000602082019050818103600083015261407781613bcd565b9050919050565b6000602082019050818103600083015261409781613bf0565b9050919050565b600060208201905081810360008301526140b781613c13565b9050919050565b600060208201905081810360008301526140d781613c36565b9050919050565b600060208201905081810360008301526140f781613c59565b9050919050565b6000602082019050818103600083015261411781613c7c565b9050919050565b6000602082019050818103600083015261413781613c9f565b9050919050565b6000602082019050818103600083015261415781613cc2565b9050919050565b6000602082019050818103600083015261417781613ce5565b9050919050565b6000602082019050818103600083015261419781613d08565b9050919050565b600060208201905081810360008301526141b781613d2b565b9050919050565b600060208201905081810360008301526141d781613d4e565b9050919050565b600060208201905081810360008301526141f781613d71565b9050919050565b6000602082019050818103600083015261421781613d94565b9050919050565b6000602082019050818103600083015261423781613db7565b9050919050565b6000602082019050818103600083015261425781613dda565b9050919050565b6000602082019050818103600083015261427781613dfd565b9050919050565b6000602082019050818103600083015261429781613e20565b9050919050565b600060208201905081810360008301526142b781613e43565b9050919050565b600060208201905081810360008301526142d781613e66565b9050919050565b600060208201905081810360008301526142f781613e89565b9050919050565b6000602082019050818103600083015261431781613eac565b9050919050565b6000602082019050818103600083015261433781613ecf565b9050919050565b6000602082019050818103600083015261435781613ef2565b9050919050565b6000602082019050818103600083015261437781613f15565b9050919050565b60006020820190506143936000830184613f38565b92915050565b60006020820190506143ae6000830184613f47565b92915050565b60006143be6143cf565b90506143ca8282614765565b919050565b6000604051905090565b600067ffffffffffffffff8211156143f4576143f3614926565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144205761441f614926565b5b6144298261496e565b9050602081019050919050565b600067ffffffffffffffff82111561445157614450614926565b5b61445a8261496e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144b5826146ac565b91506144c0836146ac565b92508261ffff038211156144d7576144d661483b565b5b828201905092915050565b60006144ed826146da565b91506144f8836146da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561452d5761452c61483b565b5b828201905092915050565b6000614543826146e4565b915061454e836146e4565b92508260ff038211156145645761456361483b565b5b828201905092915050565b600061457a826146da565b9150614585836146da565b9250826145955761459461486a565b5b828204905092915050565b60006145ab826146da565b91506145b6836146da565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145ef576145ee61483b565b5b828202905092915050565b6000614605826146da565b9150614610836146da565b9250828210156146235761462261483b565b5b828203905092915050565b6000614639826146e4565b9150614644836146e4565b9250828210156146575761465661483b565b5b828203905092915050565b600061466d826146ba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561471e578082015181840152602081019050614703565b8381111561472d576000848401525b50505050565b6000600282049050600182168061474b57607f821691505b6020821081141561475f5761475e614899565b5b50919050565b61476e8261496e565b810181811067ffffffffffffffff8211171561478d5761478c614926565b5b80604052505050565b60006147a1826146ac565b915061ffff8214156147b6576147b561483b565b5b600182019050919050565b60006147cc826146da565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147ff576147fe61483b565b5b600182019050919050565b6000614815826146da565b9150614820836146da565b9250826148305761482f61486a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d757374206265206561726c7920737570706f7274657220746f6b656e206f7760008201527f6e65720000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d757374207061792061206d756c7469706c65206f6620302e3034206574682060008201527f2b20302e30322065746800000000000000000000000000000000000000000000602082015250565b7f436f756e74206d75737420626520706f73697469766500000000000000000000600082015250565b7f4e6f206d6f7265206772616e6e69657320617661696c61626c65000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d757374207061792061206d756c7469706c65206f6620302e3034206574682060008201527f2d2d206e6f20646973636f756e74000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f556e617574686f72697a656420746f206d696e7420736f206d616e7900000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61508781614662565b811461509257600080fd5b50565b61509e81614674565b81146150a957600080fd5b50565b6150b581614680565b81146150c057600080fd5b50565b6150cc816146da565b81146150d757600080fd5b50565b6150e3816146e4565b81146150ee57600080fd5b5056fea264697066735822122019cf0ff8a52a9795bf254626b633c0f03e88afe22c3f99280243f8d8681bb14964736f6c63430008060033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461068c578063e985e9c5146106c9578063ed9c7ac114610706578063f2fde38b14610731578063f32f12bc1461075a576101ee565b8063a22cb465146105e8578063aefe5ceb14610611578063b88d4fde1461063a578063c3b6a2df14610663576101ee565b80638640aaba116100dc5780638640aaba1461055f5780638c6c8ebd146105885780638da5cb5b1461059257806395d89b41146105bd576101ee565b806370a08231146104cb578063715018a6146105085780637c6398561461051f5780638456cb5914610548576101ee565b80633f4ba83a1161018557806355f804b31161015457806355f804b3146104115780635c975abb1461043a5780636352211e146104655780636a61e5fc146104a2576101ee565b80633f4ba83a1461036957806342842e0e146103805780634b94f50e146103a95780634f6ccce7146103d4576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780633ccfd60b14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906139c9565b610797565b6040516102279190613fe1565b60405180910390f35b34801561023c57600080fd5b506102456107a9565b6040516102529190613ffc565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613a6c565b61083b565b60405161028f9190613f7a565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906138c0565b6108c0565b005b3480156102cd57600080fd5b506102d66109d8565b6040516102e3919061437e565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906137aa565b6109e5565b005b34801561032157600080fd5b5061033c600480360381019061033791906138c0565b610a45565b604051610349919061437e565b60405180910390f35b34801561035e57600080fd5b50610367610aea565b005b34801561037557600080fd5b5061037e610bb5565b005b34801561038c57600080fd5b506103a760048036038101906103a291906137aa565b610c3b565b005b3480156103b557600080fd5b506103be610c5b565b6040516103cb919061437e565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613a6c565b610c65565b604051610408919061437e565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613a23565b610cd6565b005b34801561044657600080fd5b5061044f610d6c565b60405161045c9190613fe1565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190613a6c565b610d83565b6040516104999190613f7a565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190613a6c565b610e35565b005b3480156104d757600080fd5b506104f260048036038101906104ed919061373d565b610ebb565b6040516104ff919061437e565b60405180910390f35b34801561051457600080fd5b5061051d610f73565b005b34801561052b57600080fd5b506105466004803603810190610541919061373d565b610ffb565b005b34801561055457600080fd5b5061055d6110bb565b005b34801561056b57600080fd5b5061058660048036038101906105819190613a99565b611141565b005b6105906111db565b005b34801561059e57600080fd5b506105a76118f8565b6040516105b49190613f7a565b60405180910390f35b3480156105c957600080fd5b506105d2611922565b6040516105df9190613ffc565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613880565b6119b4565b005b34801561061d57600080fd5b5061063860048036038101906106339190613900565b611b35565b005b34801561064657600080fd5b50610661600480360381019061065c91906137fd565b611cca565b005b34801561066f57600080fd5b5061068a60048036038101906106859190613976565b611d2c565b005b34801561069857600080fd5b506106b360048036038101906106ae9190613a6c565b611dfd565b6040516106c09190613ffc565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb919061376a565b611ea4565b6040516106fd9190613fe1565b60405180910390f35b34801561071257600080fd5b5061071b611f38565b6040516107289190614399565b60405180910390f35b34801561073d57600080fd5b506107586004803603810190610753919061373d565b611f4f565b005b34801561076657600080fd5b50610781600480360381019061077c9190613a99565b612047565b60405161078e919061437e565b60405180910390f35b60006107a282612166565b9050919050565b6060600080546107b890614733565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490614733565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6000610846826121e0565b610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c9061425e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cb82610d83565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109339061431e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095b61224c565b73ffffffffffffffffffffffffffffffffffffffff16148061098a57506109898161098461224c565b611ea4565b5b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c0906141de565b60405180910390fd5b6109d38383612254565b505050565b6000600880549050905090565b6109f66109f061224c565b8261230d565b610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c9061433e565b60405180910390fd5b610a408383836123eb565b505050565b6000610a5083610ebb565b8210610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a889061405e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af261224c565b73ffffffffffffffffffffffffffffffffffffffff16610b106118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d9061429e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bb1573d6000803e3d6000fd5b5050565b610bbd61224c565b73ffffffffffffffffffffffffffffffffffffffff16610bdb6118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c289061429e565b60405180910390fd5b610c39612647565b565b610c5683838360405180602001604052806000815250611cca565b505050565b6000601054905090565b6000610c6f6109d8565b8210610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca79061435e565b60405180910390fd5b60088281548110610cc457610cc36148f7565b5b90600052602060002001549050919050565b610cde61224c565b73ffffffffffffffffffffffffffffffffffffffff16610cfc6118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d499061429e565b60405180910390fd5b80600e9080519060200190610d68929190613489565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061421e565b60405180910390fd5b80915050919050565b610e3d61224c565b73ffffffffffffffffffffffffffffffffffffffff16610e5b6118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea89061429e565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906141fe565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7b61224c565b73ffffffffffffffffffffffffffffffffffffffff16610f996118f8565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061429e565b60405180910390fd5b610ff960006126e9565b565b61100361224c565b73ffffffffffffffffffffffffffffffffffffffff166110216118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061429e565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110c361224c565b73ffffffffffffffffffffffffffffffffffffffff166110e16118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e9061429e565b60405180910390fd5b61113f6127af565b565b61114961224c565b73ffffffffffffffffffffffffffffffffffffffff166111676118f8565b73ffffffffffffffffffffffffffffffffffffffff16146111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b49061429e565b60405180910390fd5b80601160026101000a81548160ff021916908360ff16021790555050565b6000600f60009054906101000a900460ff1680156112485750600073ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561133e576000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16632f54bf6e336040518263ffffffff1660e01b81526004016112ad9190613f7a565b60206040518083038186803b1580156112c557600080fd5b505afa1580156112d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fd9190613949565b61133c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113339061409e565b60405180910390fd5b505b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161415611467576010546064601054601160009054906101000a900460ff1660ff166113bb91906145a0565b6113c5919061456f565b346113d091906144e2565b6113da919061456f565b905060006010546064601054601160009054906101000a900460ff1660ff1661140391906145a0565b61140d919061456f565b3461141891906144e2565b611422919061480a565b14611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906140fe565b60405180910390fd5b6114c8565b60105434611475919061456f565b9050600060105434611487919061480a565b146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be9061427e565b60405180910390fd5b5b600f60009054906101000a900460ff1615611607576000601160029054906101000a900460ff1660ff161480611510575080601160029054906101000a900460ff1660ff1610155b80156115c357506000601160019054906101000a900460ff1660ff1614806115c257506000601160019054906101000a900460ff1660ff161180156115c15750601160019054906101000a900460ff1660ff1681601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff166115be91906144e2565b11155b5b5b611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f9906142fe565b60405180910390fd5b61172d565b6000601160029054906101000a900460ff1660ff16148061163a575080601160029054906101000a900460ff1660ff1610155b80156116ed57506000601160019054906101000a900460ff1660ff1614806116ec57506000601160019054906101000a900460ff1660ff161180156116eb5750601160019054906101000a900460ff1660ff1681601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff166116e891906144e2565b11155b5b5b61172c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611723906142fe565b60405180910390fd5b5b600d60009054906101000a900461ffff1661ffff168161174b6109d8565b61175591906144e2565b1115611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d9061413e565b60405180910390fd5b60005b818110156117d7576117ab600b612852565b60006117b7600b612868565b90506117c33382612876565b5080806117cf906147c1565b915050611799565b506000601160019054906101000a900460ff1660ff1611156118f557600f60009054906101000a900460ff16156118805780601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166118639190614538565b92506101000a81548160ff021916908360ff1602179055506118f4565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166118db9190614538565b92506101000a81548160ff021916908360ff1602179055505b5b50565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461193190614733565b80601f016020809104026020016040519081016040528092919081815260200182805461195d90614733565b80156119aa5780601f1061197f576101008083540402835291602001916119aa565b820191906000526020600020905b81548152906001019060200180831161198d57829003601f168201915b5050505050905090565b6119bc61224c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a219061417e565b60405180910390fd5b8060056000611a3761224c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ae461224c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b299190613fe1565b60405180910390a35050565b611b3d61224c565b73ffffffffffffffffffffffffffffffffffffffff16611b5b6118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba89061429e565b60405180910390fd5b60006101f490506000825190508161ffff168111158015611c03575081600d60009054906101000a900461ffff16611be991906144aa565b61ffff1681611bf66109d8565b611c0091906144e2565b11155b611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c399061413e565b60405180910390fd5b60005b818161ffff161015611cc457611c5b600c612852565b6000611c67600c612868565b600d60009054906101000a900461ffff1661ffff16611c8691906144e2565b9050611cb0858361ffff1681518110611ca257611ca16148f7565b5b602002602001015182612876565b508080611cbc90614796565b915050611c45565b50505050565b611cdb611cd561224c565b8361230d565b611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119061433e565b60405180910390fd5b611d2684848484612894565b50505050565b611d3461224c565b73ffffffffffffffffffffffffffffffffffffffff16611d526118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f9061429e565b60405180910390fd5b82600f60006101000a81548160ff02191690831515021790555081601160006101000a81548160ff021916908360ff16021790555080601160016101000a81548160ff021916908360ff160217905550505050565b6060611e08826121e0565b611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e906142de565b60405180910390fd5b6000611e516128f0565b90506000815111611e715760405180602001604052806000815250611e9c565b80611e7b84612982565b604051602001611e8c929190613f56565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601160029054906101000a900460ff16905090565b611f5761224c565b73ffffffffffffffffffffffffffffffffffffffff16611f756118f8565b73ffffffffffffffffffffffffffffffffffffffff1614611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc29061429e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612032906140be565b60405180910390fd5b612044816126e9565b50565b600060018260ff161015612090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120879061411e565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16106120ff576010548260ff166120f891906145a0565b9050612161565b60105460018361210f919061462e565b60ff1661211c91906145a0565b6064601054601160009054906101000a900460ff16606461213d919061462e565b60ff1661214a91906145a0565b612154919061456f565b61215e91906144e2565b90505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121d957506121d882612ae3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122c783610d83565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612318826121e0565b612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e9061419e565b60405180910390fd5b600061236283610d83565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123d157508373ffffffffffffffffffffffffffffffffffffffff166123b98461083b565b73ffffffffffffffffffffffffffffffffffffffff16145b806123e257506123e18185611ea4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661240b82610d83565b73ffffffffffffffffffffffffffffffffffffffff1614612461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612458906142be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c89061415e565b60405180910390fd5b6124dc838383612bc5565b6124e7600082612254565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253791906145fa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258e91906144e2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61264f610d6c565b61268e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126859061403e565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126d261224c565b6040516126df9190613f7a565b60405180910390a1565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127b7610d6c565b156127f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ee906141be565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861283b61224c565b6040516128489190613f7a565b60405180910390a1565b6001816000016000828254019250508190555050565b600081600001549050919050565b612890828260405180602001604052806000815250612bd5565b5050565b61289f8484846123eb565b6128ab84848484612c30565b6128ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e19061407e565b60405180910390fd5b50505050565b6060600e80546128ff90614733565b80601f016020809104026020016040519081016040528092919081815260200182805461292b90614733565b80156129785780601f1061294d57610100808354040283529160200191612978565b820191906000526020600020905b81548152906001019060200180831161295b57829003601f168201915b5050505050905090565b606060008214156129ca576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ade565b600082905060005b600082146129fc5780806129e5906147c1565b915050600a826129f5919061456f565b91506129d2565b60008167ffffffffffffffff811115612a1857612a17614926565b5b6040519080825280601f01601f191660200182016040528015612a4a5781602001600182028036833780820191505090505b5090505b60008514612ad757600182612a6391906145fa565b9150600a85612a72919061480a565b6030612a7e91906144e2565b60f81b818381518110612a9457612a936148f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad0919061456f565b9450612a4e565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bbe5750612bbd82612dc7565b5b9050919050565b612bd0838383612e31565b505050565b612bdf8383612e89565b612bec6000848484612c30565b612c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c229061407e565b60405180910390fd5b505050565b6000612c518473ffffffffffffffffffffffffffffffffffffffff16613057565b15612dba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7a61224c565b8786866040518563ffffffff1660e01b8152600401612c9c9493929190613f95565b602060405180830381600087803b158015612cb657600080fd5b505af1925050508015612ce757506040513d601f19601f82011682018060405250810190612ce491906139f6565b60015b612d6a573d8060008114612d17576040519150601f19603f3d011682016040523d82523d6000602084013e612d1c565b606091505b50600081511415612d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d599061407e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dbf565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e3c83838361306a565b612e44610d6c565b15612e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7b9061401e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef09061423e565b60405180910390fd5b612f02816121e0565b15612f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f39906140de565b60405180910390fd5b612f4e60008383612bc5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9e91906144e2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b61307583838361317e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130b8576130b381613183565b6130f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130f6576130f583826131cc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561313a5761313581613339565b613179565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461317857613177828261340a565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131d984610ebb565b6131e391906145fa565b90506000600760008481526020019081526020016000205490508181146132c8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061334d91906145fa565b905060006009600084815260200190815260200160002054905060006008838154811061337d5761337c6148f7565b5b90600052602060002001549050806008838154811061339f5761339e6148f7565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133ee576133ed6148c8565b5b6001900381819060005260206000200160009055905550505050565b600061341583610ebb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461349590614733565b90600052602060002090601f0160209004810192826134b757600085556134fe565b82601f106134d057805160ff19168380011785556134fe565b828001600101855582156134fe579182015b828111156134fd5782518255916020019190600101906134e2565b5b50905061350b919061350f565b5090565b5b80821115613528576000816000905550600101613510565b5090565b600061353f61353a846143d9565b6143b4565b905080838252602082019050828560208602820111156135625761356161495a565b5b60005b8581101561359257816135788882613620565b845260208401935060208301925050600181019050613565565b5050509392505050565b60006135af6135aa84614405565b6143b4565b9050828152602081018484840111156135cb576135ca61495f565b5b6135d68482856146f1565b509392505050565b60006135f16135ec84614436565b6143b4565b90508281526020810184848401111561360d5761360c61495f565b5b6136188482856146f1565b509392505050565b60008135905061362f8161507e565b92915050565b600082601f83011261364a57613649614955565b5b813561365a84826020860161352c565b91505092915050565b60008135905061367281615095565b92915050565b60008151905061368781615095565b92915050565b60008135905061369c816150ac565b92915050565b6000815190506136b1816150ac565b92915050565b600082601f8301126136cc576136cb614955565b5b81356136dc84826020860161359c565b91505092915050565b600082601f8301126136fa576136f9614955565b5b813561370a8482602086016135de565b91505092915050565b600081359050613722816150c3565b92915050565b600081359050613737816150da565b92915050565b60006020828403121561375357613752614969565b5b600061376184828501613620565b91505092915050565b6000806040838503121561378157613780614969565b5b600061378f85828601613620565b92505060206137a085828601613620565b9150509250929050565b6000806000606084860312156137c3576137c2614969565b5b60006137d186828701613620565b93505060206137e286828701613620565b92505060406137f386828701613713565b9150509250925092565b6000806000806080858703121561381757613816614969565b5b600061382587828801613620565b945050602061383687828801613620565b935050604061384787828801613713565b925050606085013567ffffffffffffffff81111561386857613867614964565b5b613874878288016136b7565b91505092959194509250565b6000806040838503121561389757613896614969565b5b60006138a585828601613620565b92505060206138b685828601613663565b9150509250929050565b600080604083850312156138d7576138d6614969565b5b60006138e585828601613620565b92505060206138f685828601613713565b9150509250929050565b60006020828403121561391657613915614969565b5b600082013567ffffffffffffffff81111561393457613933614964565b5b61394084828501613635565b91505092915050565b60006020828403121561395f5761395e614969565b5b600061396d84828501613678565b91505092915050565b60008060006060848603121561398f5761398e614969565b5b600061399d86828701613663565b93505060206139ae86828701613728565b92505060406139bf86828701613728565b9150509250925092565b6000602082840312156139df576139de614969565b5b60006139ed8482850161368d565b91505092915050565b600060208284031215613a0c57613a0b614969565b5b6000613a1a848285016136a2565b91505092915050565b600060208284031215613a3957613a38614969565b5b600082013567ffffffffffffffff811115613a5757613a56614964565b5b613a63848285016136e5565b91505092915050565b600060208284031215613a8257613a81614969565b5b6000613a9084828501613713565b91505092915050565b600060208284031215613aaf57613aae614969565b5b6000613abd84828501613728565b91505092915050565b613acf81614662565b82525050565b613ade81614674565b82525050565b6000613aef82614467565b613af9818561447d565b9350613b09818560208601614700565b613b128161496e565b840191505092915050565b6000613b2882614472565b613b32818561448e565b9350613b42818560208601614700565b613b4b8161496e565b840191505092915050565b6000613b6182614472565b613b6b818561449f565b9350613b7b818560208601614700565b80840191505092915050565b6000613b94602b8361448e565b9150613b9f8261497f565b604082019050919050565b6000613bb760148361448e565b9150613bc2826149ce565b602082019050919050565b6000613bda602b8361448e565b9150613be5826149f7565b604082019050919050565b6000613bfd60328361448e565b9150613c0882614a46565b604082019050919050565b6000613c2060238361448e565b9150613c2b82614a95565b604082019050919050565b6000613c4360268361448e565b9150613c4e82614ae4565b604082019050919050565b6000613c66601c8361448e565b9150613c7182614b33565b602082019050919050565b6000613c89602a8361448e565b9150613c9482614b5c565b604082019050919050565b6000613cac60168361448e565b9150613cb782614bab565b602082019050919050565b6000613ccf601a8361448e565b9150613cda82614bd4565b602082019050919050565b6000613cf260248361448e565b9150613cfd82614bfd565b604082019050919050565b6000613d1560198361448e565b9150613d2082614c4c565b602082019050919050565b6000613d38602c8361448e565b9150613d4382614c75565b604082019050919050565b6000613d5b60108361448e565b9150613d6682614cc4565b602082019050919050565b6000613d7e60388361448e565b9150613d8982614ced565b604082019050919050565b6000613da1602a8361448e565b9150613dac82614d3c565b604082019050919050565b6000613dc460298361448e565b9150613dcf82614d8b565b604082019050919050565b6000613de760208361448e565b9150613df282614dda565b602082019050919050565b6000613e0a602c8361448e565b9150613e1582614e03565b604082019050919050565b6000613e2d602e8361448e565b9150613e3882614e52565b604082019050919050565b6000613e5060208361448e565b9150613e5b82614ea1565b602082019050919050565b6000613e7360298361448e565b9150613e7e82614eca565b604082019050919050565b6000613e96602f8361448e565b9150613ea182614f19565b604082019050919050565b6000613eb9601c8361448e565b9150613ec482614f68565b602082019050919050565b6000613edc60218361448e565b9150613ee782614f91565b604082019050919050565b6000613eff60318361448e565b9150613f0a82614fe0565b604082019050919050565b6000613f22602c8361448e565b9150613f2d8261502f565b604082019050919050565b613f41816146da565b82525050565b613f50816146e4565b82525050565b6000613f628285613b56565b9150613f6e8284613b56565b91508190509392505050565b6000602082019050613f8f6000830184613ac6565b92915050565b6000608082019050613faa6000830187613ac6565b613fb76020830186613ac6565b613fc46040830185613f38565b8181036060830152613fd68184613ae4565b905095945050505050565b6000602082019050613ff66000830184613ad5565b92915050565b600060208201905081810360008301526140168184613b1d565b905092915050565b6000602082019050818103600083015261403781613b87565b9050919050565b6000602082019050818103600083015261405781613baa565b9050919050565b6000602082019050818103600083015261407781613bcd565b9050919050565b6000602082019050818103600083015261409781613bf0565b9050919050565b600060208201905081810360008301526140b781613c13565b9050919050565b600060208201905081810360008301526140d781613c36565b9050919050565b600060208201905081810360008301526140f781613c59565b9050919050565b6000602082019050818103600083015261411781613c7c565b9050919050565b6000602082019050818103600083015261413781613c9f565b9050919050565b6000602082019050818103600083015261415781613cc2565b9050919050565b6000602082019050818103600083015261417781613ce5565b9050919050565b6000602082019050818103600083015261419781613d08565b9050919050565b600060208201905081810360008301526141b781613d2b565b9050919050565b600060208201905081810360008301526141d781613d4e565b9050919050565b600060208201905081810360008301526141f781613d71565b9050919050565b6000602082019050818103600083015261421781613d94565b9050919050565b6000602082019050818103600083015261423781613db7565b9050919050565b6000602082019050818103600083015261425781613dda565b9050919050565b6000602082019050818103600083015261427781613dfd565b9050919050565b6000602082019050818103600083015261429781613e20565b9050919050565b600060208201905081810360008301526142b781613e43565b9050919050565b600060208201905081810360008301526142d781613e66565b9050919050565b600060208201905081810360008301526142f781613e89565b9050919050565b6000602082019050818103600083015261431781613eac565b9050919050565b6000602082019050818103600083015261433781613ecf565b9050919050565b6000602082019050818103600083015261435781613ef2565b9050919050565b6000602082019050818103600083015261437781613f15565b9050919050565b60006020820190506143936000830184613f38565b92915050565b60006020820190506143ae6000830184613f47565b92915050565b60006143be6143cf565b90506143ca8282614765565b919050565b6000604051905090565b600067ffffffffffffffff8211156143f4576143f3614926565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144205761441f614926565b5b6144298261496e565b9050602081019050919050565b600067ffffffffffffffff82111561445157614450614926565b5b61445a8261496e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144b5826146ac565b91506144c0836146ac565b92508261ffff038211156144d7576144d661483b565b5b828201905092915050565b60006144ed826146da565b91506144f8836146da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561452d5761452c61483b565b5b828201905092915050565b6000614543826146e4565b915061454e836146e4565b92508260ff038211156145645761456361483b565b5b828201905092915050565b600061457a826146da565b9150614585836146da565b9250826145955761459461486a565b5b828204905092915050565b60006145ab826146da565b91506145b6836146da565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145ef576145ee61483b565b5b828202905092915050565b6000614605826146da565b9150614610836146da565b9250828210156146235761462261483b565b5b828203905092915050565b6000614639826146e4565b9150614644836146e4565b9250828210156146575761465661483b565b5b828203905092915050565b600061466d826146ba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561471e578082015181840152602081019050614703565b8381111561472d576000848401525b50505050565b6000600282049050600182168061474b57607f821691505b6020821081141561475f5761475e614899565b5b50919050565b61476e8261496e565b810181811067ffffffffffffffff8211171561478d5761478c614926565b5b80604052505050565b60006147a1826146ac565b915061ffff8214156147b6576147b561483b565b5b600182019050919050565b60006147cc826146da565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147ff576147fe61483b565b5b600182019050919050565b6000614815826146da565b9150614820836146da565b9250826148305761482f61486a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d757374206265206561726c7920737570706f7274657220746f6b656e206f7760008201527f6e65720000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d757374207061792061206d756c7469706c65206f6620302e3034206574682060008201527f2b20302e30322065746800000000000000000000000000000000000000000000602082015250565b7f436f756e74206d75737420626520706f73697469766500000000000000000000600082015250565b7f4e6f206d6f7265206772616e6e69657320617661696c61626c65000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d757374207061792061206d756c7469706c65206f6620302e3034206574682060008201527f2d2d206e6f20646973636f756e74000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f556e617574686f72697a656420746f206d696e7420736f206d616e7900000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61508781614662565b811461509257600080fd5b50565b61509e81614674565b81146150a957600080fd5b50565b6150b581614680565b81146150c057600080fd5b50565b6150cc816146da565b81146150d757600080fd5b50565b6150e3816146e4565b81146150ee57600080fd5b5056fea264697066735822122019cf0ff8a52a9795bf254626b633c0f03e88afe22c3f99280243f8d8681bb14964736f6c63430008060033

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.