ETH Price: $3,367.64 (-2.22%)
Gas: 2 Gwei

Token

Astro Armadillos (Xingu)
 

Overview

Max Total Supply

1,024 Xingu

Holders

303

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Xingu
0x820dfdc28a5d4dd681752190a6450c3f795a8116
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:
AstroArmadillos

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-20
*/

// SPDX-License-Identifier: GPL-3.0


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
 * @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: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @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: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address, RecoverError)
    {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address)
    {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(
                vs,
                0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
            )
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (
            uint256(s) >
            0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0
        ) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash)
        internal
        pure
        returns (bytes32)
    {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return
            keccak256(
                abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
            );
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n",
                    Strings.toString(s.length),
                    s
                )
            );
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", domainSeparator, structHash)
            );
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @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.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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @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: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
 * @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);
    }
}


pragma solidity >=0.7.0 <0.9.0;

contract AstroArmadillos is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using ECDSA for bytes32;

  uint256 public cost = 0 ether;
  uint256 public maxSupply = 1024;
  uint256 public maxMintAmount = 2;
  uint256 public nftPerAddressLimit = 2;
  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  mapping(address => uint256) public addressMintedBalance;
  address wl_manager = 0xA8ba5dF4009add3b8E9FdfccBb225EE3e15De275;
  string public baseURI = "https://astroarmadillos.mypinata.cloud/ipfs/QmNp6ytsmB9ww3bZH6MCsjv9GAHeE5vtA8LcBCDupAtkEr";
  string public baseExtension = ".json";
  string public notRevealedUri = "https://astroarmadillos.mypinata.cloud/ipfs/QmNp6ytsmB9ww3bZH6MCsjv9GAHeE5vtA8LcBCDupAtkEr";

  constructor() ERC721("Astro Armadillos", "Xingu") {}

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

    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        require(onlyWhitelisted == false, "Public mint is not started, please use whitelist mint.");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    function whitelistMint(uint256 _mintAmount, bytes memory _signature) public payable {
        require(!paused, "the contract is paused");
        require(onlyWhitelisted, "Whitelist Mint not active");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        require(isOnWhitelist(_signature), "user is not whitelisted");
        uint256 ownerMintedCount = addressMintedBalance[msg.sender]; 
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    function isOnWhitelist(bytes memory _signature)
        public
        view
        returns (bool)
    {
        bytes32 messagehash = keccak256(
            abi.encodePacked(address(this), msg.sender)
        );
        address signer = messagehash.toEthSignedMessageHash().recover(
            _signature
        );

        if (wl_manager == signer) {
            return true;
        } else {
            return false;
        }
    }

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

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

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

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

  function reveal() public onlyOwner {
      revealed = true;
  }

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

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

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function withdraw() public payable onlyOwner {

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"isOnWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"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":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6000600b55610400600c556002600d819055600e55600f805462ffff001960ff199091166001171662010000179055601180546001600160a01b03191673a8ba5df4009add3b8e9fdfccbb225ee3e15de275179055610100604052605a608081815290620034a460a03980516200007f91601291602090910190620001d2565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000ae91601391620001d2565b506040518060800160405280605a8152602001620034a4605a91398051620000df91601491602090910190620001d2565b50348015620000ed57600080fd5b50604080518082018252601081526f417374726f2041726d6164696c6c6f7360801b60208083019182528351808501909452600584526458696e677560d81b9084015281519192916200014391600091620001d2565b50805162000159906001906020840190620001d2565b50505062000176620001706200017c60201b60201c565b62000180565b620002b5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e09062000278565b90600052602060002090601f0160209004810192826200020457600085556200024f565b82601f106200021f57805160ff19168380011785556200024f565b828001600101855582156200024f579182015b828111156200024f57825182559160200191906001019062000232565b506200025d92915062000261565b5090565b5b808211156200025d576000815560010162000262565b6002810460018216806200028d57607f821691505b60208210811415620002af57634e487b7160e01b600052602260045260246000fd5b50919050565b6131df80620002c56000396000f3fe6080604052600436106102675760003560e01c80636c0360eb11610144578063a475b5dd116100b6578063d0eb26b01161007a578063d0eb26b0146106a1578063d5abeb01146106c1578063da3ef23f146106d6578063e985e9c5146106f6578063f2c4ce1e14610716578063f2fde38b1461073657610267565b8063a475b5dd14610622578063b88d4fde14610637578063ba7d2c7614610657578063c66828621461066c578063c87b56dd1461068157610267565b8063932e88ad11610108578063932e88ad1461059257806395d89b41146105b25780639c70b512146105c75780639e852f75146105dc578063a0712d68146105ef578063a22cb4651461060257610267565b80636c0360eb1461051357806370a0823114610528578063715018a6146105485780637f00c7a61461055d5780638da5cb5b1461057d57610267565b80632f745c59116101dd57806344a0d68a116101a157806344a0d68a146104695780634f6ccce71461048957806351830227146104a957806355f804b3146104be5780635c975abb146104de5780636352211e146104f357610267565b80632f745c59146103d45780633c952764146103f45780633ccfd60b1461041457806342842e0e1461041c578063438b63001461043c57610267565b8063095ea7b31161022f578063095ea7b31461032857806313faede61461034857806318160ddd1461036a57806318cae2691461037f578063239c70ae1461039f57806323b872dd146103b457610267565b806301ffc9a71461026c57806302329a29146102a257806306fdde03146102c4578063081812fc146102e6578063081c8c4414610313575b600080fd5b34801561027857600080fd5b5061028c61028736600461252b565b610756565b6040516102999190612817565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004612511565b610783565b005b3480156102d057600080fd5b506102d96107de565b6040516102999190612840565b3480156102f257600080fd5b506103066103013660046125dc565b610870565b6040516102999190612782565b34801561031f57600080fd5b506102d96108b3565b34801561033457600080fd5b506102c26103433660046124e8565b610941565b34801561035457600080fd5b5061035d6109d9565b6040516102999190613044565b34801561037657600080fd5b5061035d6109df565b34801561038b57600080fd5b5061035d61039a3660046123d2565b6109e5565b3480156103ab57600080fd5b5061035d6109f7565b3480156103c057600080fd5b506102c26103cf36600461241e565b6109fd565b3480156103e057600080fd5b5061035d6103ef3660046124e8565b610a35565b34801561040057600080fd5b506102c261040f366004612511565b610a87565b6102c2610ae2565b34801561042857600080fd5b506102c261043736600461241e565b610b94565b34801561044857600080fd5b5061045c6104573660046123d2565b610baf565b60405161029991906127d3565b34801561047557600080fd5b506102c26104843660046125dc565b610c6d565b34801561049557600080fd5b5061035d6104a43660046125dc565b610cb1565b3480156104b557600080fd5b5061028c610d0c565b3480156104ca57600080fd5b506102c26104d9366004612596565b610d1a565b3480156104ea57600080fd5b5061028c610d70565b3480156104ff57600080fd5b5061030661050e3660046125dc565b610d79565b34801561051f57600080fd5b506102d9610dae565b34801561053457600080fd5b5061035d6105433660046123d2565b610dbb565b34801561055457600080fd5b506102c2610dff565b34801561056957600080fd5b506102c26105783660046125dc565b610e4a565b34801561058957600080fd5b50610306610e8e565b34801561059e57600080fd5b5061028c6105ad366004612563565b610e9d565b3480156105be57600080fd5b506102d9610f0f565b3480156105d357600080fd5b5061028c610f1e565b6102c26105ea3660046125f4565b610f2d565b6102c26105fd3660046125dc565b6110d5565b34801561060e57600080fd5b506102c261061d3660046124bf565b611253565b34801561062e57600080fd5b506102c2611321565b34801561064357600080fd5b506102c2610652366004612459565b611371565b34801561066357600080fd5b5061035d6113aa565b34801561067857600080fd5b506102d96113b0565b34801561068d57600080fd5b506102d961069c3660046125dc565b6113bd565b3480156106ad57600080fd5b506102c26106bc3660046125dc565b6114e4565b3480156106cd57600080fd5b5061035d611528565b3480156106e257600080fd5b506102c26106f1366004612596565b61152e565b34801561070257600080fd5b5061028c6107113660046123ec565b611580565b34801561072257600080fd5b506102c2610731366004612596565b6115ae565b34801561074257600080fd5b506102c26107513660046123d2565b611600565b60006001600160e01b0319821663780e9d6360e01b148061077b575061077b8261166e565b90505b919050565b61078b6116ae565b6001600160a01b031661079c610e8e565b6001600160a01b0316146107cb5760405162461bcd60e51b81526004016107c290612d42565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600080546107ed906130e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610819906130e7565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b5050505050905090565b600061087b826116b2565b6108975760405162461bcd60e51b81526004016107c290612cf6565b506000908152600460205260409020546001600160a01b031690565b601480546108c0906130e7565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906130e7565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b505050505081565b600061094c82610d79565b9050806001600160a01b0316836001600160a01b031614156109805760405162461bcd60e51b81526004016107c290612ecc565b806001600160a01b03166109926116ae565b6001600160a01b031614806109ae57506109ae816107116116ae565b6109ca5760405162461bcd60e51b81526004016107c290612b1b565b6109d483836116cf565b505050565b600b5481565b60085490565b60106020526000908152604090205481565b600d5481565b610a0e610a086116ae565b8261173d565b610a2a5760405162461bcd60e51b81526004016107c290612f39565b6109d48383836117c2565b6000610a4083610dbb565b8210610a5e5760405162461bcd60e51b81526004016107c2906128c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a8f6116ae565b6001600160a01b0316610aa0610e8e565b6001600160a01b031614610ac65760405162461bcd60e51b81526004016107c290612d42565b600f8054911515620100000262ff000019909216919091179055565b610aea6116ae565b6001600160a01b0316610afb610e8e565b6001600160a01b031614610b215760405162461bcd60e51b81526004016107c290612d42565b6000610b2b610e8e565b6001600160a01b031647604051610b419061277f565b60006040518083038185875af1925050503d8060008114610b7e576040519150601f19603f3d011682016040523d82523d6000602084013e610b83565b606091505b5050905080610b9157600080fd5b50565b6109d483838360405180602001604052806000815250611371565b60606000610bbc83610dbb565b905060008167ffffffffffffffff811115610be757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c10578160200160208202803683370190505b50905060005b82811015610c6557610c288582610a35565b828281518110610c4857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c5d81613122565b915050610c16565b509392505050565b610c756116ae565b6001600160a01b0316610c86610e8e565b6001600160a01b031614610cac5760405162461bcd60e51b81526004016107c290612d42565b600b55565b6000610cbb6109df565b8210610cd95760405162461bcd60e51b81526004016107c290612f8a565b60088281548110610cfa57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f54610100900460ff1681565b610d226116ae565b6001600160a01b0316610d33610e8e565b6001600160a01b031614610d595760405162461bcd60e51b81526004016107c290612d42565b8051610d6c906012906020840190612283565b5050565b600f5460ff1681565b6000818152600260205260408120546001600160a01b03168061077b5760405162461bcd60e51b81526004016107c290612bc2565b601280546108c0906130e7565b60006001600160a01b038216610de35760405162461bcd60e51b81526004016107c290612b78565b506001600160a01b031660009081526003602052604090205490565b610e076116ae565b6001600160a01b0316610e18610e8e565b6001600160a01b031614610e3e5760405162461bcd60e51b81526004016107c290612d42565b610e4860006118ef565b565b610e526116ae565b6001600160a01b0316610e63610e8e565b6001600160a01b031614610e895760405162461bcd60e51b81526004016107c290612d42565b600d55565b600a546001600160a01b031690565b6000803033604051602001610eb3929190612665565b6040516020818303038152906040528051906020012090506000610ee084610eda84611941565b90611971565b6011549091506001600160a01b0380831691161415610f045760019250505061077e565b60009250505061077e565b6060600180546107ed906130e7565b600f5462010000900460ff1681565b600f5460ff1615610f505760405162461bcd60e51b81526004016107c290612dae565b600f5462010000900460ff16610f785760405162461bcd60e51b81526004016107c290612d77565b6000610f826109df565b905060008311610fa45760405162461bcd60e51b81526004016107c29061300d565b600d54831115610fc65760405162461bcd60e51b81526004016107c290612c3b565b600c54610fd38483613059565b1115610ff15760405162461bcd60e51b81526004016107c290612c0b565b610ffa82610e9d565b6110165760405162461bcd60e51b81526004016107c290612fd6565b33600090815260106020526040902054600e546110338583613059565b11156110515760405162461bcd60e51b81526004016107c2906129db565b83600b5461105f9190613085565b34101561107e5760405162461bcd60e51b81526004016107c290612f0d565b60015b8481116110ce573360009081526010602052604081208054916110a383613122565b909155506110bc9050336110b78386613059565b61198d565b806110c681613122565b915050611081565b5050505050565b600f5460ff16156110f85760405162461bcd60e51b81526004016107c290612dae565b600f5462010000900460ff16156111215760405162461bcd60e51b81526004016107c290612e76565b600061112b6109df565b90506000821161114d5760405162461bcd60e51b81526004016107c29061300d565b600d5482111561116f5760405162461bcd60e51b81526004016107c290612c3b565b600c5461117c8383613059565b111561119a5760405162461bcd60e51b81526004016107c290612c0b565b33600090815260106020526040902054600e546111b78483613059565b11156111d55760405162461bcd60e51b81526004016107c2906129db565b82600b546111e39190613085565b3410156112025760405162461bcd60e51b81526004016107c290612f0d565b60015b83811161124d5733600090815260106020526040812080549161122783613122565b9091555061123b9050336110b78386613059565b8061124581613122565b915050611205565b50505050565b61125b6116ae565b6001600160a01b0316826001600160a01b0316141561128c5760405162461bcd60e51b81526004016107c290612a56565b80600560006112996116ae565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112dd6116ae565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113159190612817565b60405180910390a35050565b6113296116ae565b6001600160a01b031661133a610e8e565b6001600160a01b0316146113605760405162461bcd60e51b81526004016107c290612d42565b600f805461ff001916610100179055565b61138261137c6116ae565b8361173d565b61139e5760405162461bcd60e51b81526004016107c290612f39565b61124d848484846119a7565b600e5481565b601380546108c0906130e7565b60606113c8826116b2565b6113e45760405162461bcd60e51b81526004016107c290612e27565b600f54610100900460ff166114855760148054611400906130e7565b80601f016020809104026020016040519081016040528092919081815260200182805461142c906130e7565b80156114795780601f1061144e57610100808354040283529160200191611479565b820191906000526020600020905b81548152906001019060200180831161145c57829003601f168201915b5050505050905061077e565b600061148f6119da565b905060008151116114af57604051806020016040528060008152506114dd565b806114b9846119e9565b60136040516020016114cd9392919061268c565b6040516020818303038152906040525b9392505050565b6114ec6116ae565b6001600160a01b03166114fd610e8e565b6001600160a01b0316146115235760405162461bcd60e51b81526004016107c290612d42565b600e55565b600c5481565b6115366116ae565b6001600160a01b0316611547610e8e565b6001600160a01b03161461156d5760405162461bcd60e51b81526004016107c290612d42565b8051610d6c906013906020840190612283565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6115b66116ae565b6001600160a01b03166115c7610e8e565b6001600160a01b0316146115ed5760405162461bcd60e51b81526004016107c290612d42565b8051610d6c906014906020840190612283565b6116086116ae565b6001600160a01b0316611619610e8e565b6001600160a01b03161461163f5760405162461bcd60e51b81526004016107c290612d42565b6001600160a01b0381166116655760405162461bcd60e51b81526004016107c29061295e565b610b91816118ef565b60006001600160e01b031982166380ac58cd60e01b148061169f57506001600160e01b03198216635b5e139f60e01b145b8061077b575061077b82611b04565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061170482610d79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611748826116b2565b6117645760405162461bcd60e51b81526004016107c290612acf565b600061176f83610d79565b9050806001600160a01b0316846001600160a01b031614806117aa5750836001600160a01b031661179f84610870565b6001600160a01b0316145b806117ba57506117ba8185611580565b949350505050565b826001600160a01b03166117d582610d79565b6001600160a01b0316146117fb5760405162461bcd60e51b81526004016107c290612dde565b6001600160a01b0382166118215760405162461bcd60e51b81526004016107c290612a12565b61182c838383611b1d565b6118376000826116cf565b6001600160a01b03831660009081526003602052604081208054600192906118609084906130a4565b90915550506001600160a01b038216600090815260036020526040812080546001929061188e908490613059565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081604051602001611954919061274e565b604051602081830303815290604052805190602001209050919050565b60008060006119808585611ba6565b91509150610c6581611c16565b610d6c828260405180602001604052806000815250611d43565b6119b28484846117c2565b6119be84848484611d76565b61124d5760405162461bcd60e51b81526004016107c29061290c565b6060601280546107ed906130e7565b606081611a0e57506040805180820190915260018152600360fc1b602082015261077e565b8160005b8115611a385780611a2281613122565b9150611a319050600a83613071565b9150611a12565b60008167ffffffffffffffff811115611a6157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a8b576020820181803683370190505b5090505b84156117ba57611aa06001836130a4565b9150611aad600a8661313d565b611ab8906030613059565b60f81b818381518110611adb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611afd600a86613071565b9450611a8f565b6001600160e01b031981166301ffc9a760e01b14919050565b611b288383836109d4565b6001600160a01b038316611b4457611b3f81611e91565b611b67565b816001600160a01b0316836001600160a01b031614611b6757611b678382611ed5565b6001600160a01b038216611b8357611b7e81611f72565b6109d4565b826001600160a01b0316826001600160a01b0316146109d4576109d4828261204b565b600080825160411415611bdd5760208301516040840151606085015160001a611bd18782858561208f565b94509450505050611c0f565b825160401415611c075760208301516040840151611bfc86838361216f565b935093505050611c0f565b506000905060025b9250929050565b6000816004811115611c3857634e487b7160e01b600052602160045260246000fd5b1415611c4357610b91565b6001816004811115611c6557634e487b7160e01b600052602160045260246000fd5b1415611c835760405162461bcd60e51b81526004016107c290612853565b6002816004811115611ca557634e487b7160e01b600052602160045260246000fd5b1415611cc35760405162461bcd60e51b81526004016107c29061288a565b6003816004811115611ce557634e487b7160e01b600052602160045260246000fd5b1415611d035760405162461bcd60e51b81526004016107c290612a8d565b6004816004811115611d2557634e487b7160e01b600052602160045260246000fd5b1415610b915760405162461bcd60e51b81526004016107c290612c7f565b611d4d838361219e565b611d5a6000848484611d76565b6109d45760405162461bcd60e51b81526004016107c29061290c565b6000611d8a846001600160a01b031661227d565b15611e8657836001600160a01b031663150b7a02611da66116ae565b8786866040518563ffffffff1660e01b8152600401611dc89493929190612796565b602060405180830381600087803b158015611de257600080fd5b505af1925050508015611e12575060408051601f3d908101601f19168201909252611e0f91810190612547565b60015b611e6c573d808015611e40576040519150601f19603f3d011682016040523d82523d6000602084013e611e45565b606091505b508051611e645760405162461bcd60e51b81526004016107c29061290c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ba565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611ee284610dbb565b611eec91906130a4565b600083815260076020526040902054909150808214611f3f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f84906001906130a4565b60008381526009602052604081205460088054939450909284908110611fba57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611fe957634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061202f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061205683610dbb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120c65750600090506003612166565b8460ff16601b141580156120de57508460ff16601c14155b156120ef5750600090506004612166565b6000600187878787604051600081526020016040526040516121149493929190612822565b6020604051602081039080840390855afa158015612136573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661215f57600060019250925050612166565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016121908782888561208f565b935093505050935093915050565b6001600160a01b0382166121c45760405162461bcd60e51b81526004016107c290612cc1565b6121cd816116b2565b156121ea5760405162461bcd60e51b81526004016107c2906129a4565b6121f660008383611b1d565b6001600160a01b038216600090815260036020526040812080546001929061221f908490613059565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461228f906130e7565b90600052602060002090601f0160209004810192826122b157600085556122f7565b82601f106122ca57805160ff19168380011785556122f7565b828001600101855582156122f7579182015b828111156122f75782518255916020019190600101906122dc565b50612303929150612307565b5090565b5b808211156123035760008155600101612308565b600067ffffffffffffffff808411156123375761233761317d565b604051601f8501601f19168101602001828111828210171561235b5761235b61317d565b60405284815291508183850186101561237357600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461077e57600080fd5b8035801515811461077e57600080fd5b600082601f8301126123c3578081fd5b6114dd8383356020850161231c565b6000602082840312156123e3578081fd5b6114dd8261238c565b600080604083850312156123fe578081fd5b6124078361238c565b91506124156020840161238c565b90509250929050565b600080600060608486031215612432578081fd5b61243b8461238c565b92506124496020850161238c565b9150604084013590509250925092565b6000806000806080858703121561246e578081fd5b6124778561238c565b93506124856020860161238c565b925060408501359150606085013567ffffffffffffffff8111156124a7578182fd5b6124b3878288016123b3565b91505092959194509250565b600080604083850312156124d1578182fd5b6124da8361238c565b9150612415602084016123a3565b600080604083850312156124fa578182fd5b6125038361238c565b946020939093013593505050565b600060208284031215612522578081fd5b6114dd826123a3565b60006020828403121561253c578081fd5b81356114dd81613193565b600060208284031215612558578081fd5b81516114dd81613193565b600060208284031215612574578081fd5b813567ffffffffffffffff81111561258a578182fd5b6117ba848285016123b3565b6000602082840312156125a7578081fd5b813567ffffffffffffffff8111156125bd578182fd5b8201601f810184136125cd578182fd5b6117ba8482356020840161231c565b6000602082840312156125ed578081fd5b5035919050565b60008060408385031215612606578182fd5b82359150602083013567ffffffffffffffff811115612623578182fd5b61262f858286016123b3565b9150509250929050565b600081518084526126518160208601602086016130bb565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b60008451602061269f8285838a016130bb565b8551918401916126b28184848a016130bb565b85549201918390600281046001808316806126ce57607f831692505b8583108114156126ec57634e487b7160e01b88526022600452602488fd5b80801561270057600181146127115761273d565b60ff1985168852838801955061273d565b61271a8b61304d565b895b858110156127355781548a82015290840190880161271c565b505083880195505b50939b9a5050505050505050505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127c990830184612639565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561280b578351835292840192918401916001016127ef565b50909695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526114dd6020830184612639565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526019908201527f57686974656c697374204d696e74206e6f742061637469766500000000000000604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526036908201527f5075626c6963206d696e74206973206e6f7420737461727465642c20706c656160408201527539b2903ab9b2903bb434ba32b634b9ba1036b4b73a1760511b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60009081526020902090565b6000821982111561306c5761306c613151565b500190565b60008261308057613080613167565b500490565b600081600019048311821515161561309f5761309f613151565b500290565b6000828210156130b6576130b6613151565b500390565b60005b838110156130d65781810151838201526020016130be565b8381111561124d5750506000910152565b6002810460018216806130fb57607f821691505b6020821081141561311c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561313657613136613151565b5060010190565b60008261314c5761314c613167565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9157600080fdfea2646970667358221220d45fd83e1c085429582248a333876272e4706e2067460cdc204eeae9bf6d4d8264736f6c6343000800003368747470733a2f2f617374726f61726d6164696c6c6f732e6d7970696e6174612e636c6f75642f697066732f516d4e70367974736d4239777733625a48364d43736a7639474148654535767441384c63424344757041746b4572

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636c0360eb11610144578063a475b5dd116100b6578063d0eb26b01161007a578063d0eb26b0146106a1578063d5abeb01146106c1578063da3ef23f146106d6578063e985e9c5146106f6578063f2c4ce1e14610716578063f2fde38b1461073657610267565b8063a475b5dd14610622578063b88d4fde14610637578063ba7d2c7614610657578063c66828621461066c578063c87b56dd1461068157610267565b8063932e88ad11610108578063932e88ad1461059257806395d89b41146105b25780639c70b512146105c75780639e852f75146105dc578063a0712d68146105ef578063a22cb4651461060257610267565b80636c0360eb1461051357806370a0823114610528578063715018a6146105485780637f00c7a61461055d5780638da5cb5b1461057d57610267565b80632f745c59116101dd57806344a0d68a116101a157806344a0d68a146104695780634f6ccce71461048957806351830227146104a957806355f804b3146104be5780635c975abb146104de5780636352211e146104f357610267565b80632f745c59146103d45780633c952764146103f45780633ccfd60b1461041457806342842e0e1461041c578063438b63001461043c57610267565b8063095ea7b31161022f578063095ea7b31461032857806313faede61461034857806318160ddd1461036a57806318cae2691461037f578063239c70ae1461039f57806323b872dd146103b457610267565b806301ffc9a71461026c57806302329a29146102a257806306fdde03146102c4578063081812fc146102e6578063081c8c4414610313575b600080fd5b34801561027857600080fd5b5061028c61028736600461252b565b610756565b6040516102999190612817565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004612511565b610783565b005b3480156102d057600080fd5b506102d96107de565b6040516102999190612840565b3480156102f257600080fd5b506103066103013660046125dc565b610870565b6040516102999190612782565b34801561031f57600080fd5b506102d96108b3565b34801561033457600080fd5b506102c26103433660046124e8565b610941565b34801561035457600080fd5b5061035d6109d9565b6040516102999190613044565b34801561037657600080fd5b5061035d6109df565b34801561038b57600080fd5b5061035d61039a3660046123d2565b6109e5565b3480156103ab57600080fd5b5061035d6109f7565b3480156103c057600080fd5b506102c26103cf36600461241e565b6109fd565b3480156103e057600080fd5b5061035d6103ef3660046124e8565b610a35565b34801561040057600080fd5b506102c261040f366004612511565b610a87565b6102c2610ae2565b34801561042857600080fd5b506102c261043736600461241e565b610b94565b34801561044857600080fd5b5061045c6104573660046123d2565b610baf565b60405161029991906127d3565b34801561047557600080fd5b506102c26104843660046125dc565b610c6d565b34801561049557600080fd5b5061035d6104a43660046125dc565b610cb1565b3480156104b557600080fd5b5061028c610d0c565b3480156104ca57600080fd5b506102c26104d9366004612596565b610d1a565b3480156104ea57600080fd5b5061028c610d70565b3480156104ff57600080fd5b5061030661050e3660046125dc565b610d79565b34801561051f57600080fd5b506102d9610dae565b34801561053457600080fd5b5061035d6105433660046123d2565b610dbb565b34801561055457600080fd5b506102c2610dff565b34801561056957600080fd5b506102c26105783660046125dc565b610e4a565b34801561058957600080fd5b50610306610e8e565b34801561059e57600080fd5b5061028c6105ad366004612563565b610e9d565b3480156105be57600080fd5b506102d9610f0f565b3480156105d357600080fd5b5061028c610f1e565b6102c26105ea3660046125f4565b610f2d565b6102c26105fd3660046125dc565b6110d5565b34801561060e57600080fd5b506102c261061d3660046124bf565b611253565b34801561062e57600080fd5b506102c2611321565b34801561064357600080fd5b506102c2610652366004612459565b611371565b34801561066357600080fd5b5061035d6113aa565b34801561067857600080fd5b506102d96113b0565b34801561068d57600080fd5b506102d961069c3660046125dc565b6113bd565b3480156106ad57600080fd5b506102c26106bc3660046125dc565b6114e4565b3480156106cd57600080fd5b5061035d611528565b3480156106e257600080fd5b506102c26106f1366004612596565b61152e565b34801561070257600080fd5b5061028c6107113660046123ec565b611580565b34801561072257600080fd5b506102c2610731366004612596565b6115ae565b34801561074257600080fd5b506102c26107513660046123d2565b611600565b60006001600160e01b0319821663780e9d6360e01b148061077b575061077b8261166e565b90505b919050565b61078b6116ae565b6001600160a01b031661079c610e8e565b6001600160a01b0316146107cb5760405162461bcd60e51b81526004016107c290612d42565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600080546107ed906130e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610819906130e7565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b5050505050905090565b600061087b826116b2565b6108975760405162461bcd60e51b81526004016107c290612cf6565b506000908152600460205260409020546001600160a01b031690565b601480546108c0906130e7565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906130e7565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b505050505081565b600061094c82610d79565b9050806001600160a01b0316836001600160a01b031614156109805760405162461bcd60e51b81526004016107c290612ecc565b806001600160a01b03166109926116ae565b6001600160a01b031614806109ae57506109ae816107116116ae565b6109ca5760405162461bcd60e51b81526004016107c290612b1b565b6109d483836116cf565b505050565b600b5481565b60085490565b60106020526000908152604090205481565b600d5481565b610a0e610a086116ae565b8261173d565b610a2a5760405162461bcd60e51b81526004016107c290612f39565b6109d48383836117c2565b6000610a4083610dbb565b8210610a5e5760405162461bcd60e51b81526004016107c2906128c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a8f6116ae565b6001600160a01b0316610aa0610e8e565b6001600160a01b031614610ac65760405162461bcd60e51b81526004016107c290612d42565b600f8054911515620100000262ff000019909216919091179055565b610aea6116ae565b6001600160a01b0316610afb610e8e565b6001600160a01b031614610b215760405162461bcd60e51b81526004016107c290612d42565b6000610b2b610e8e565b6001600160a01b031647604051610b419061277f565b60006040518083038185875af1925050503d8060008114610b7e576040519150601f19603f3d011682016040523d82523d6000602084013e610b83565b606091505b5050905080610b9157600080fd5b50565b6109d483838360405180602001604052806000815250611371565b60606000610bbc83610dbb565b905060008167ffffffffffffffff811115610be757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c10578160200160208202803683370190505b50905060005b82811015610c6557610c288582610a35565b828281518110610c4857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c5d81613122565b915050610c16565b509392505050565b610c756116ae565b6001600160a01b0316610c86610e8e565b6001600160a01b031614610cac5760405162461bcd60e51b81526004016107c290612d42565b600b55565b6000610cbb6109df565b8210610cd95760405162461bcd60e51b81526004016107c290612f8a565b60088281548110610cfa57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f54610100900460ff1681565b610d226116ae565b6001600160a01b0316610d33610e8e565b6001600160a01b031614610d595760405162461bcd60e51b81526004016107c290612d42565b8051610d6c906012906020840190612283565b5050565b600f5460ff1681565b6000818152600260205260408120546001600160a01b03168061077b5760405162461bcd60e51b81526004016107c290612bc2565b601280546108c0906130e7565b60006001600160a01b038216610de35760405162461bcd60e51b81526004016107c290612b78565b506001600160a01b031660009081526003602052604090205490565b610e076116ae565b6001600160a01b0316610e18610e8e565b6001600160a01b031614610e3e5760405162461bcd60e51b81526004016107c290612d42565b610e4860006118ef565b565b610e526116ae565b6001600160a01b0316610e63610e8e565b6001600160a01b031614610e895760405162461bcd60e51b81526004016107c290612d42565b600d55565b600a546001600160a01b031690565b6000803033604051602001610eb3929190612665565b6040516020818303038152906040528051906020012090506000610ee084610eda84611941565b90611971565b6011549091506001600160a01b0380831691161415610f045760019250505061077e565b60009250505061077e565b6060600180546107ed906130e7565b600f5462010000900460ff1681565b600f5460ff1615610f505760405162461bcd60e51b81526004016107c290612dae565b600f5462010000900460ff16610f785760405162461bcd60e51b81526004016107c290612d77565b6000610f826109df565b905060008311610fa45760405162461bcd60e51b81526004016107c29061300d565b600d54831115610fc65760405162461bcd60e51b81526004016107c290612c3b565b600c54610fd38483613059565b1115610ff15760405162461bcd60e51b81526004016107c290612c0b565b610ffa82610e9d565b6110165760405162461bcd60e51b81526004016107c290612fd6565b33600090815260106020526040902054600e546110338583613059565b11156110515760405162461bcd60e51b81526004016107c2906129db565b83600b5461105f9190613085565b34101561107e5760405162461bcd60e51b81526004016107c290612f0d565b60015b8481116110ce573360009081526010602052604081208054916110a383613122565b909155506110bc9050336110b78386613059565b61198d565b806110c681613122565b915050611081565b5050505050565b600f5460ff16156110f85760405162461bcd60e51b81526004016107c290612dae565b600f5462010000900460ff16156111215760405162461bcd60e51b81526004016107c290612e76565b600061112b6109df565b90506000821161114d5760405162461bcd60e51b81526004016107c29061300d565b600d5482111561116f5760405162461bcd60e51b81526004016107c290612c3b565b600c5461117c8383613059565b111561119a5760405162461bcd60e51b81526004016107c290612c0b565b33600090815260106020526040902054600e546111b78483613059565b11156111d55760405162461bcd60e51b81526004016107c2906129db565b82600b546111e39190613085565b3410156112025760405162461bcd60e51b81526004016107c290612f0d565b60015b83811161124d5733600090815260106020526040812080549161122783613122565b9091555061123b9050336110b78386613059565b8061124581613122565b915050611205565b50505050565b61125b6116ae565b6001600160a01b0316826001600160a01b0316141561128c5760405162461bcd60e51b81526004016107c290612a56565b80600560006112996116ae565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112dd6116ae565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113159190612817565b60405180910390a35050565b6113296116ae565b6001600160a01b031661133a610e8e565b6001600160a01b0316146113605760405162461bcd60e51b81526004016107c290612d42565b600f805461ff001916610100179055565b61138261137c6116ae565b8361173d565b61139e5760405162461bcd60e51b81526004016107c290612f39565b61124d848484846119a7565b600e5481565b601380546108c0906130e7565b60606113c8826116b2565b6113e45760405162461bcd60e51b81526004016107c290612e27565b600f54610100900460ff166114855760148054611400906130e7565b80601f016020809104026020016040519081016040528092919081815260200182805461142c906130e7565b80156114795780601f1061144e57610100808354040283529160200191611479565b820191906000526020600020905b81548152906001019060200180831161145c57829003601f168201915b5050505050905061077e565b600061148f6119da565b905060008151116114af57604051806020016040528060008152506114dd565b806114b9846119e9565b60136040516020016114cd9392919061268c565b6040516020818303038152906040525b9392505050565b6114ec6116ae565b6001600160a01b03166114fd610e8e565b6001600160a01b0316146115235760405162461bcd60e51b81526004016107c290612d42565b600e55565b600c5481565b6115366116ae565b6001600160a01b0316611547610e8e565b6001600160a01b03161461156d5760405162461bcd60e51b81526004016107c290612d42565b8051610d6c906013906020840190612283565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6115b66116ae565b6001600160a01b03166115c7610e8e565b6001600160a01b0316146115ed5760405162461bcd60e51b81526004016107c290612d42565b8051610d6c906014906020840190612283565b6116086116ae565b6001600160a01b0316611619610e8e565b6001600160a01b03161461163f5760405162461bcd60e51b81526004016107c290612d42565b6001600160a01b0381166116655760405162461bcd60e51b81526004016107c29061295e565b610b91816118ef565b60006001600160e01b031982166380ac58cd60e01b148061169f57506001600160e01b03198216635b5e139f60e01b145b8061077b575061077b82611b04565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061170482610d79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611748826116b2565b6117645760405162461bcd60e51b81526004016107c290612acf565b600061176f83610d79565b9050806001600160a01b0316846001600160a01b031614806117aa5750836001600160a01b031661179f84610870565b6001600160a01b0316145b806117ba57506117ba8185611580565b949350505050565b826001600160a01b03166117d582610d79565b6001600160a01b0316146117fb5760405162461bcd60e51b81526004016107c290612dde565b6001600160a01b0382166118215760405162461bcd60e51b81526004016107c290612a12565b61182c838383611b1d565b6118376000826116cf565b6001600160a01b03831660009081526003602052604081208054600192906118609084906130a4565b90915550506001600160a01b038216600090815260036020526040812080546001929061188e908490613059565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081604051602001611954919061274e565b604051602081830303815290604052805190602001209050919050565b60008060006119808585611ba6565b91509150610c6581611c16565b610d6c828260405180602001604052806000815250611d43565b6119b28484846117c2565b6119be84848484611d76565b61124d5760405162461bcd60e51b81526004016107c29061290c565b6060601280546107ed906130e7565b606081611a0e57506040805180820190915260018152600360fc1b602082015261077e565b8160005b8115611a385780611a2281613122565b9150611a319050600a83613071565b9150611a12565b60008167ffffffffffffffff811115611a6157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a8b576020820181803683370190505b5090505b84156117ba57611aa06001836130a4565b9150611aad600a8661313d565b611ab8906030613059565b60f81b818381518110611adb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611afd600a86613071565b9450611a8f565b6001600160e01b031981166301ffc9a760e01b14919050565b611b288383836109d4565b6001600160a01b038316611b4457611b3f81611e91565b611b67565b816001600160a01b0316836001600160a01b031614611b6757611b678382611ed5565b6001600160a01b038216611b8357611b7e81611f72565b6109d4565b826001600160a01b0316826001600160a01b0316146109d4576109d4828261204b565b600080825160411415611bdd5760208301516040840151606085015160001a611bd18782858561208f565b94509450505050611c0f565b825160401415611c075760208301516040840151611bfc86838361216f565b935093505050611c0f565b506000905060025b9250929050565b6000816004811115611c3857634e487b7160e01b600052602160045260246000fd5b1415611c4357610b91565b6001816004811115611c6557634e487b7160e01b600052602160045260246000fd5b1415611c835760405162461bcd60e51b81526004016107c290612853565b6002816004811115611ca557634e487b7160e01b600052602160045260246000fd5b1415611cc35760405162461bcd60e51b81526004016107c29061288a565b6003816004811115611ce557634e487b7160e01b600052602160045260246000fd5b1415611d035760405162461bcd60e51b81526004016107c290612a8d565b6004816004811115611d2557634e487b7160e01b600052602160045260246000fd5b1415610b915760405162461bcd60e51b81526004016107c290612c7f565b611d4d838361219e565b611d5a6000848484611d76565b6109d45760405162461bcd60e51b81526004016107c29061290c565b6000611d8a846001600160a01b031661227d565b15611e8657836001600160a01b031663150b7a02611da66116ae565b8786866040518563ffffffff1660e01b8152600401611dc89493929190612796565b602060405180830381600087803b158015611de257600080fd5b505af1925050508015611e12575060408051601f3d908101601f19168201909252611e0f91810190612547565b60015b611e6c573d808015611e40576040519150601f19603f3d011682016040523d82523d6000602084013e611e45565b606091505b508051611e645760405162461bcd60e51b81526004016107c29061290c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ba565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611ee284610dbb565b611eec91906130a4565b600083815260076020526040902054909150808214611f3f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f84906001906130a4565b60008381526009602052604081205460088054939450909284908110611fba57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611fe957634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061202f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061205683610dbb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120c65750600090506003612166565b8460ff16601b141580156120de57508460ff16601c14155b156120ef5750600090506004612166565b6000600187878787604051600081526020016040526040516121149493929190612822565b6020604051602081039080840390855afa158015612136573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661215f57600060019250925050612166565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016121908782888561208f565b935093505050935093915050565b6001600160a01b0382166121c45760405162461bcd60e51b81526004016107c290612cc1565b6121cd816116b2565b156121ea5760405162461bcd60e51b81526004016107c2906129a4565b6121f660008383611b1d565b6001600160a01b038216600090815260036020526040812080546001929061221f908490613059565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461228f906130e7565b90600052602060002090601f0160209004810192826122b157600085556122f7565b82601f106122ca57805160ff19168380011785556122f7565b828001600101855582156122f7579182015b828111156122f75782518255916020019190600101906122dc565b50612303929150612307565b5090565b5b808211156123035760008155600101612308565b600067ffffffffffffffff808411156123375761233761317d565b604051601f8501601f19168101602001828111828210171561235b5761235b61317d565b60405284815291508183850186101561237357600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461077e57600080fd5b8035801515811461077e57600080fd5b600082601f8301126123c3578081fd5b6114dd8383356020850161231c565b6000602082840312156123e3578081fd5b6114dd8261238c565b600080604083850312156123fe578081fd5b6124078361238c565b91506124156020840161238c565b90509250929050565b600080600060608486031215612432578081fd5b61243b8461238c565b92506124496020850161238c565b9150604084013590509250925092565b6000806000806080858703121561246e578081fd5b6124778561238c565b93506124856020860161238c565b925060408501359150606085013567ffffffffffffffff8111156124a7578182fd5b6124b3878288016123b3565b91505092959194509250565b600080604083850312156124d1578182fd5b6124da8361238c565b9150612415602084016123a3565b600080604083850312156124fa578182fd5b6125038361238c565b946020939093013593505050565b600060208284031215612522578081fd5b6114dd826123a3565b60006020828403121561253c578081fd5b81356114dd81613193565b600060208284031215612558578081fd5b81516114dd81613193565b600060208284031215612574578081fd5b813567ffffffffffffffff81111561258a578182fd5b6117ba848285016123b3565b6000602082840312156125a7578081fd5b813567ffffffffffffffff8111156125bd578182fd5b8201601f810184136125cd578182fd5b6117ba8482356020840161231c565b6000602082840312156125ed578081fd5b5035919050565b60008060408385031215612606578182fd5b82359150602083013567ffffffffffffffff811115612623578182fd5b61262f858286016123b3565b9150509250929050565b600081518084526126518160208601602086016130bb565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b60008451602061269f8285838a016130bb565b8551918401916126b28184848a016130bb565b85549201918390600281046001808316806126ce57607f831692505b8583108114156126ec57634e487b7160e01b88526022600452602488fd5b80801561270057600181146127115761273d565b60ff1985168852838801955061273d565b61271a8b61304d565b895b858110156127355781548a82015290840190880161271c565b505083880195505b50939b9a5050505050505050505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127c990830184612639565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561280b578351835292840192918401916001016127ef565b50909695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526114dd6020830184612639565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526019908201527f57686974656c697374204d696e74206e6f742061637469766500000000000000604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526036908201527f5075626c6963206d696e74206973206e6f7420737461727465642c20706c656160408201527539b2903ab9b2903bb434ba32b634b9ba1036b4b73a1760511b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60009081526020902090565b6000821982111561306c5761306c613151565b500190565b60008261308057613080613167565b500490565b600081600019048311821515161561309f5761309f613151565b500290565b6000828210156130b6576130b6613151565b500390565b60005b838110156130d65781810151838201526020016130be565b8381111561124d5750506000910152565b6002810460018216806130fb57607f821691505b6020821081141561311c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561313657613136613151565b5060010190565b60008261314c5761314c613167565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9157600080fdfea2646970667358221220d45fd83e1c085429582248a333876272e4706e2067460cdc204eeae9bf6d4d8264736f6c63430008000033

Deployed Bytecode Sourcemap

53154:5239:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:224;;;;;;;;;;-1:-1:-1;44699:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58063:73;;;;;;;;;;-1:-1:-1;58063:73:0;;;;;:::i;:::-;;:::i;:::-;;32591:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34150:221::-;;;;;;;;;;-1:-1:-1;34150:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53815:123::-;;;;;;;;;;;;;:::i;33673:411::-;;;;;;;;;;-1:-1:-1;33673:411:0;;;;;:::i;:::-;;:::i;53273:29::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45339:113::-;;;;;;;;;;;;;:::i;53524:55::-;;;;;;;;;;-1:-1:-1;53524:55:0;;;;;:::i;:::-;;:::i;53343:32::-;;;;;;;;;;;;;:::i;35040:339::-;;;;;;;;;;-1:-1:-1;35040:339:0;;;;;:::i;:::-;;:::i;45007:256::-;;;;;;;;;;-1:-1:-1;45007:256:0;;;;;:::i;:::-;;:::i;58142:95::-;;;;;;;;;;-1:-1:-1;58142:95:0;;;;;:::i;:::-;;:::i;58243:147::-;;;:::i;35450:185::-;;;;;;;;;;-1:-1:-1;35450:185:0;;;;;:::i;:::-;;:::i;56463:348::-;;;;;;;;;;-1:-1:-1;56463:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57497:80::-;;;;;;;;;;-1:-1:-1;57497:80:0;;;;;:::i;:::-;;:::i;45529:233::-;;;;;;;;;;-1:-1:-1;45529:233:0;;;;;:::i;:::-;;:::i;53452:28::-;;;;;;;;;;;;;:::i;57705:98::-;;;;;;;;;;-1:-1:-1;57705:98:0;;;;;:::i;:::-;;:::i;53422:25::-;;;;;;;;;;;;;:::i;32285:239::-;;;;;;;;;;-1:-1:-1;32285:239:0;;;;;:::i;:::-;;:::i;53652:116::-;;;;;;;;;;;;;:::i;32015:208::-;;;;;;;;;;-1:-1:-1;32015:208:0;;;;;:::i;:::-;;:::i;52488:94::-;;;;;;;;;;;;;:::i;57583:116::-;;;;;;;;;;-1:-1:-1;57583:116:0;;;;;:::i;:::-;;:::i;51837:87::-;;;;;;;;;;;;;:::i;56002:455::-;;;;;;;;;;-1:-1:-1;56002:455:0;;;;;:::i;:::-;;:::i;32760:104::-;;;;;;;;;;;;;:::i;53485:34::-;;;;;;;;;;;;;:::i;55027:967::-;;;;;;:::i;:::-;;:::i;54121:898::-;;;;;;:::i;:::-;;:::i;34443:295::-;;;;;;;;;;-1:-1:-1;34443:295:0;;;;;:::i;:::-;;:::i;57316:65::-;;;;;;;;;;;;;:::i;35706:328::-;;;;;;;;;;-1:-1:-1;35706:328:0;;;;;:::i;:::-;;:::i;53380:37::-;;;;;;;;;;;;;:::i;53773:::-;;;;;;;;;;;;;:::i;56817:493::-;;;;;;;;;;-1:-1:-1;56817:493:0;;;;;:::i;:::-;;:::i;57387:104::-;;;;;;;;;;-1:-1:-1;57387:104:0;;;;;:::i;:::-;;:::i;53307:31::-;;;;;;;;;;;;;:::i;57809:122::-;;;;;;;;;;-1:-1:-1;57809:122:0;;;;;:::i;:::-;;:::i;34809:164::-;;;;;;;;;;-1:-1:-1;34809:164:0;;;;;:::i;:::-;;:::i;57937:120::-;;;;;;;;;;-1:-1:-1;57937:120:0;;;;;:::i;:::-;;:::i;52737:192::-;;;;;;;;;;-1:-1:-1;52737:192:0;;;;;:::i;:::-;;:::i;44699:224::-;44801:4;-1:-1:-1;;;;;;44825:50:0;;-1:-1:-1;;;44825:50:0;;:90;;;44879:36;44903:11;44879:23;:36::i;:::-;44818:97;;44699:224;;;;:::o;58063:73::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;;;;;;;;;58115:6:::1;:15:::0;;-1:-1:-1;;58115:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58063:73::o;32591:100::-;32645:13;32678:5;32671:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32591:100;:::o;34150:221::-;34226:7;34254:16;34262:7;34254;:16::i;:::-;34246:73;;;;-1:-1:-1;;;34246:73:0;;;;;;;:::i;:::-;-1:-1:-1;34339:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34339:24:0;;34150:221::o;53815:123::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33673:411::-;33754:13;33770:23;33785:7;33770:14;:23::i;:::-;33754:39;;33818:5;-1:-1:-1;;;;;33812:11:0;:2;-1:-1:-1;;;;;33812:11:0;;;33804:57;;;;-1:-1:-1;;;33804:57:0;;;;;;;:::i;:::-;33912:5;-1:-1:-1;;;;;33896:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;33896:21:0;;:62;;;;33921:37;33938:5;33945:12;:10;:12::i;33921:37::-;33874:168;;;;-1:-1:-1;;;33874:168:0;;;;;;;:::i;:::-;34055:21;34064:2;34068:7;34055:8;:21::i;:::-;33673:411;;;:::o;53273:29::-;;;;:::o;45339:113::-;45427:10;:17;45339:113;:::o;53524:55::-;;;;;;;;;;;;;:::o;53343:32::-;;;;:::o;35040:339::-;35235:41;35254:12;:10;:12::i;:::-;35268:7;35235:18;:41::i;:::-;35227:103;;;;-1:-1:-1;;;35227:103:0;;;;;;;:::i;:::-;35343:28;35353:4;35359:2;35363:7;35343:9;:28::i;45007:256::-;45104:7;45140:23;45157:5;45140:16;:23::i;:::-;45132:5;:31;45124:87;;;;-1:-1:-1;;;45124:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;45229:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45007:256::o;58142:95::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;58207:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58207:24:0;;::::1;::::0;;;::::1;::::0;;58142:95::o;58243:147::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;58298:7:::1;58319;:5;:7::i;:::-;-1:-1:-1::0;;;;;58311:21:0::1;58340;58311:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58297:69;;;58381:2;58373:11;;;::::0;::::1;;52128:1;58243:147::o:0;35450:185::-;35588:39;35605:4;35611:2;35615:7;35588:39;;;;;;;;;;;;:16;:39::i;56463:348::-;56538:16;56566:23;56592:17;56602:6;56592:9;:17::i;:::-;56566:43;;56616:25;56658:15;56644:30;;;;;;-1:-1:-1;;;56644:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56644:30:0;;56616:58;;56686:9;56681:103;56701:15;56697:1;:19;56681:103;;;56746:30;56766:6;56774:1;56746:19;:30::i;:::-;56732:8;56741:1;56732:11;;;;;;-1:-1:-1;;;56732:11:0;;;;;;;;;;;;;;;;;;:44;56718:3;;;;:::i;:::-;;;;56681:103;;;-1:-1:-1;56797:8:0;56463:348;-1:-1:-1;;;56463:348:0:o;57497:80::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;57556:4:::1;:15:::0;57497:80::o;45529:233::-;45604:7;45640:30;:28;:30::i;:::-;45632:5;:38;45624:95;;;;-1:-1:-1;;;45624:95:0;;;;;;;:::i;:::-;45737:10;45748:5;45737:17;;;;;;-1:-1:-1;;;45737:17:0;;;;;;;;;;;;;;;;;45730:24;;45529:233;;;:::o;53452:28::-;;;;;;;;;:::o;57705:98::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;57776:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57705:98:::0;:::o;53422:25::-;;;;;;:::o;32285:239::-;32357:7;32393:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32393:16:0;32428:19;32420:73;;;;-1:-1:-1;;;32420:73:0;;;;;;;:::i;53652:116::-;;;;;;;:::i;32015:208::-;32087:7;-1:-1:-1;;;;;32115:19:0;;32107:74;;;;-1:-1:-1;;;32107:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;32199:16:0;;;;;:9;:16;;;;;;;32015:208::o;52488:94::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;52553:21:::1;52571:1;52553:9;:21::i;:::-;52488:94::o:0;57583:116::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;57660:13:::1;:33:::0;57583:116::o;51837:87::-;51910:6;;-1:-1:-1;;;;;51910:6:0;51837:87;:::o;56002:455::-;56098:4;56120:19;56191:4;56198:10;56166:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56142:78;;;;;;56120:100;;56231:14;56248:80;56307:10;56248:36;:11;:34;:36::i;:::-;:44;;:80::i;:::-;56345:10;;56231:97;;-1:-1:-1;;;;;;56345:20:0;;;:10;;:20;56341:109;;;56389:4;56382:11;;;;;;56341:109;56433:5;56426:12;;;;;;32760:104;32816:13;32849:7;32842:14;;;;;:::i;53485:34::-;;;;;;;;;:::o;55027:967::-;55131:6;;;;55130:7;55122:42;;;;-1:-1:-1;;;55122:42:0;;;;;;;:::i;:::-;55183:15;;;;;;;55175:53;;;;-1:-1:-1;;;55175:53:0;;;;;;;:::i;:::-;55239:14;55256:13;:11;:13::i;:::-;55239:30;;55302:1;55288:11;:15;55280:55;;;;-1:-1:-1;;;55280:55:0;;;;;;;:::i;:::-;55369:13;;55354:11;:28;;55346:77;;;;-1:-1:-1;;;55346:77:0;;;;;;;:::i;:::-;55466:9;;55442:20;55451:11;55442:6;:20;:::i;:::-;:33;;55434:68;;;;-1:-1:-1;;;55434:68:0;;;;;;;:::i;:::-;55521:25;55535:10;55521:13;:25::i;:::-;55513:61;;;;-1:-1:-1;;;55513:61:0;;;;;;;:::i;:::-;55633:10;55585:24;55612:32;;;:20;:32;;;;;;55698:18;;55664:30;55683:11;55612:32;55664:30;:::i;:::-;:52;;55656:93;;;;-1:-1:-1;;;55656:93:0;;;;;;;:::i;:::-;55788:11;55781:4;;:18;;;;:::i;:::-;55768:9;:31;;55760:62;;;;-1:-1:-1;;;55760:62:0;;;;;;;:::i;:::-;55852:1;55835:152;55860:11;55855:1;:16;55835:152;;55914:10;55893:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;55942:33:0;;-1:-1:-1;55952:10:0;55964;55973:1;55964:6;:10;:::i;:::-;55942:9;:33::i;:::-;55873:3;;;;:::i;:::-;;;;55835:152;;;;55027:967;;;;:::o;54121:898::-;54191:6;;;;54190:7;54182:42;;;;-1:-1:-1;;;54182:42:0;;;;;;;:::i;:::-;54243:15;;;;;;;:24;54235:91;;;;-1:-1:-1;;;54235:91:0;;;;;;;:::i;:::-;54337:14;54354:13;:11;:13::i;:::-;54337:30;;54400:1;54386:11;:15;54378:55;;;;-1:-1:-1;;;54378:55:0;;;;;;;:::i;:::-;54467:13;;54452:11;:28;;54444:77;;;;-1:-1:-1;;;54444:77:0;;;;;;;:::i;:::-;54564:9;;54540:20;54549:11;54540:6;:20;:::i;:::-;:33;;54532:68;;;;-1:-1:-1;;;54532:68:0;;;;;;;:::i;:::-;54659:10;54611:24;54638:32;;;:20;:32;;;;;;54723:18;;54689:30;54708:11;54638:32;54689:30;:::i;:::-;:52;;54681:93;;;;-1:-1:-1;;;54681:93:0;;;;;;;:::i;:::-;54813:11;54806:4;;:18;;;;:::i;:::-;54793:9;:31;;54785:62;;;;-1:-1:-1;;;54785:62:0;;;;;;;:::i;:::-;54877:1;54860:152;54885:11;54880:1;:16;54860:152;;54939:10;54918:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;54967:33:0;;-1:-1:-1;54977:10:0;54989;54998:1;54989:6;:10;:::i;54967:33::-;54898:3;;;;:::i;:::-;;;;54860:152;;;;54121:898;;;:::o;34443:295::-;34558:12;:10;:12::i;:::-;-1:-1:-1;;;;;34546:24:0;:8;-1:-1:-1;;;;;34546:24:0;;;34538:62;;;;-1:-1:-1;;;34538:62:0;;;;;;;:::i;:::-;34658:8;34613:18;:32;34632:12;:10;:12::i;:::-;-1:-1:-1;;;;;34613:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;34613:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;34613:53:0;;;;;;;;;;;34697:12;:10;:12::i;:::-;-1:-1:-1;;;;;34682:48:0;;34721:8;34682:48;;;;;;:::i;:::-;;;;;;;;34443:295;;:::o;57316:65::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;57360:8:::1;:15:::0;;-1:-1:-1;;57360:15:0::1;;;::::0;;57316:65::o;35706:328::-;35881:41;35900:12;:10;:12::i;:::-;35914:7;35881:18;:41::i;:::-;35873:103;;;;-1:-1:-1;;;35873:103:0;;;;;;;:::i;:::-;35987:39;36001:4;36007:2;36011:7;36020:5;35987:13;:39::i;53380:37::-;;;;:::o;53773:::-;;;;;;;:::i;56817:493::-;56915:13;56956:16;56964:7;56956;:16::i;:::-;56940:97;;;;-1:-1:-1;;;56940:97:0;;;;;;;:::i;:::-;57049:8;;;;;;;57046:62;;57086:14;57079:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57046:62;57116:28;57147:10;:8;:10::i;:::-;57116:41;;57202:1;57177:14;57171:28;:32;:133;;;;;;;;;;;;;;;;;57239:14;57255:18;:7;:16;:18::i;:::-;57275:13;57222:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57171:133;57164:140;56817:493;-1:-1:-1;;;56817:493:0:o;57387:104::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;57458:18:::1;:27:::0;57387:104::o;53307:31::-;;;;:::o;57809:122::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;57892:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;34809:164::-:0;-1:-1:-1;;;;;34930:25:0;;;34906:4;34930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34809:164::o;57937:120::-;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;58019:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;52737:192::-:0;52068:12;:10;:12::i;:::-;-1:-1:-1;;;;;52057:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;52057:23:0;;52049:68;;;;-1:-1:-1;;;52049:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52826:22:0;::::1;52818:73;;;;-1:-1:-1::0;;;52818:73:0::1;;;;;;;:::i;:::-;52902:19;52912:8;52902:9;:19::i;31646:305::-:0;31748:4;-1:-1:-1;;;;;;31785:40:0;;-1:-1:-1;;;31785:40:0;;:105;;-1:-1:-1;;;;;;;31842:48:0;;-1:-1:-1;;;31842:48:0;31785:105;:158;;;;31907:36;31931:11;31907:23;:36::i;30120:98::-;30200:10;30120:98;:::o;37544:127::-;37609:4;37633:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37633:16:0;:30;;;37544:127::o;41526:174::-;41601:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41601:29:0;-1:-1:-1;;;;;41601:29:0;;;;;;;;:24;;41655:23;41601:24;41655:14;:23::i;:::-;-1:-1:-1;;;;;41646:46:0;;;;;;;;;;;41526:174;;:::o;37838:348::-;37931:4;37956:16;37964:7;37956;:16::i;:::-;37948:73;;;;-1:-1:-1;;;37948:73:0;;;;;;;:::i;:::-;38032:13;38048:23;38063:7;38048:14;:23::i;:::-;38032:39;;38101:5;-1:-1:-1;;;;;38090:16:0;:7;-1:-1:-1;;;;;38090:16:0;;:51;;;;38134:7;-1:-1:-1;;;;;38110:31:0;:20;38122:7;38110:11;:20::i;:::-;-1:-1:-1;;;;;38110:31:0;;38090:51;:87;;;;38145:32;38162:5;38169:7;38145:16;:32::i;:::-;38082:96;37838:348;-1:-1:-1;;;;37838:348:0:o;40830:578::-;40989:4;-1:-1:-1;;;;;40962:31:0;:23;40977:7;40962:14;:23::i;:::-;-1:-1:-1;;;;;40962:31:0;;40954:85;;;;-1:-1:-1;;;40954:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41058:16:0;;41050:65;;;;-1:-1:-1;;;41050:65:0;;;;;;;:::i;:::-;41128:39;41149:4;41155:2;41159:7;41128:20;:39::i;:::-;41232:29;41249:1;41253:7;41232:8;:29::i;:::-;-1:-1:-1;;;;;41274:15:0;;;;;;:9;:15;;;;;:20;;41293:1;;41274:15;:20;;41293:1;;41274:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41305:13:0;;;;;;:9;:13;;;;;:18;;41322:1;;41305:13;:18;;41322:1;;41305:18;:::i;:::-;;;;-1:-1:-1;;41334:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41334:21:0;-1:-1:-1;;;;;41334:21:0;;;;;;;;;41373:27;;41334:16;;41373:27;;;;;;;40830:578;;;:::o;52937:173::-;53012:6;;;-1:-1:-1;;;;;53029:17:0;;;-1:-1:-1;;;;;;53029:17:0;;;;;;;53062:40;;53012:6;;;53029:17;53012:6;;53062:40;;52993:16;;53062:40;52937:173;;:::o;18083:346::-;18179:7;18401:4;18348:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;18320:101;;;;;;18300:121;;18083:346;;;:::o;14116:263::-;14221:7;14247:17;14266:18;14288:27;14299:4;14305:9;14288:10;:27::i;:::-;14246:69;;;;14326:18;14338:5;14326:11;:18::i;38528:110::-;38604:26;38614:2;38618:7;38604:26;;;;;;;;;;;;:9;:26::i;36916:315::-;37073:28;37083:4;37089:2;37093:7;37073:9;:28::i;:::-;37120:48;37143:4;37149:2;37153:7;37162:5;37120:22;:48::i;:::-;37112:111;;;;-1:-1:-1;;;37112:111:0;;;;;;;:::i;54005:108::-;54065:13;54098:7;54091:14;;;;;:::i;7921:723::-;7977:13;8198:10;8194:53;;-1:-1:-1;8225:10:0;;;;;;;;;;;;-1:-1:-1;;;8225:10:0;;;;;;8194:53;8272:5;8257:12;8313:78;8320:9;;8313:78;;8346:8;;;;:::i;:::-;;-1:-1:-1;8369:10:0;;-1:-1:-1;8377:2:0;8369:10;;:::i;:::-;;;8313:78;;;8401:19;8433:6;8423:17;;;;;;-1:-1:-1;;;8423:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8423:17:0;;8401:39;;8451:154;8458:10;;8451:154;;8485:11;8495:1;8485:11;;:::i;:::-;;-1:-1:-1;8554:10:0;8562:2;8554:5;:10;:::i;:::-;8541:24;;:2;:24;:::i;:::-;8528:39;;8511:6;8518;8511:14;;;;;;-1:-1:-1;;;8511:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8511:56:0;;;;;;;;-1:-1:-1;8582:11:0;8591:2;8582:11;;:::i;:::-;;;8451:154;;7446:157;-1:-1:-1;;;;;;7555:40:0;;-1:-1:-1;;;7555:40:0;7446:157;;;:::o;46375:589::-;46519:45;46546:4;46552:2;46556:7;46519:26;:45::i;:::-;-1:-1:-1;;;;;46581:18:0;;46577:187;;46616:40;46648:7;46616:31;:40::i;:::-;46577:187;;;46686:2;-1:-1:-1;;;;;46678:10:0;:4;-1:-1:-1;;;;;46678:10:0;;46674:90;;46705:47;46738:4;46744:7;46705:32;:47::i;:::-;-1:-1:-1;;;;;46778:16:0;;46774:183;;46811:45;46848:7;46811:36;:45::i;:::-;46774:183;;;46884:4;-1:-1:-1;;;;;46878:10:0;:2;-1:-1:-1;;;;;46878:10:0;;46874:83;;46905:40;46933:2;46937:7;46905:27;:40::i;11974:1340::-;12082:7;12091:12;12321:9;:16;12341:2;12321:22;12317:990;;;12617:4;12602:20;;12596:27;12667:4;12652:20;;12646:27;12725:4;12710:20;;12704:27;12360:9;12696:36;12768:25;12779:4;12696:36;12596:27;12646;12768:10;:25::i;:::-;12761:32;;;;;;;;;12317:990;12815:9;:16;12835:2;12815:22;12811:496;;;13090:4;13075:20;;13069:27;13141:4;13126:20;;13120:27;13183:23;13194:4;13069:27;13120;13183:10;:23::i;:::-;13176:30;;;;;;;;12811:496;-1:-1:-1;13255:1:0;;-1:-1:-1;13259:35:0;12811:496;11974:1340;;;;;:::o;10245:643::-;10323:20;10314:5;:29;;;;;;-1:-1:-1;;;10314:29:0;;;;;;;;;;10310:571;;;10360:7;;10310:571;10421:29;10412:5;:38;;;;;;-1:-1:-1;;;10412:38:0;;;;;;;;;;10408:473;;;10467:34;;-1:-1:-1;;;10467:34:0;;;;;;;:::i;10408:473::-;10532:35;10523:5;:44;;;;;;-1:-1:-1;;;10523:44:0;;;;;;;;;;10519:362;;;10584:41;;-1:-1:-1;;;10584:41:0;;;;;;;:::i;10519:362::-;10656:30;10647:5;:39;;;;;;-1:-1:-1;;;10647:39:0;;;;;;;;;;10643:238;;;10703:44;;-1:-1:-1;;;10703:44:0;;;;;;;:::i;10643:238::-;10778:30;10769:5;:39;;;;;;-1:-1:-1;;;10769:39:0;;;;;;;;;;10765:116;;;10825:44;;-1:-1:-1;;;10825:44:0;;;;;;;:::i;38865:321::-;38995:18;39001:2;39005:7;38995:5;:18::i;:::-;39046:54;39077:1;39081:2;39085:7;39094:5;39046:22;:54::i;:::-;39024:154;;;;-1:-1:-1;;;39024:154:0;;;;;;;:::i;42265:799::-;42420:4;42441:15;:2;-1:-1:-1;;;;;42441:13:0;;:15::i;:::-;42437:620;;;42493:2;-1:-1:-1;;;;;42477:36:0;;42514:12;:10;:12::i;:::-;42528:4;42534:7;42543:5;42477:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42477:72:0;;;;;;;;-1:-1:-1;;42477:72:0;;;;;;;;;;;;:::i;:::-;;;42473:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42719:13:0;;42715:272;;42762:60;;-1:-1:-1;;;42762:60:0;;;;;;;:::i;42715:272::-;42937:6;42931:13;42922:6;42918:2;42914:15;42907:38;42473:529;-1:-1:-1;;;;;;42600:51:0;-1:-1:-1;;;42600:51:0;;-1:-1:-1;42593:58:0;;42437:620;-1:-1:-1;43041:4:0;42265:799;;;;;;:::o;47687:164::-;47791:10;:17;;47764:24;;;;:15;:24;;;;;:44;;;47819:24;;;;;;;;;;;;47687:164::o;48478:988::-;48744:22;48794:1;48769:22;48786:4;48769:16;:22::i;:::-;:26;;;;:::i;:::-;48806:18;48827:26;;;:17;:26;;;;;;48744:51;;-1:-1:-1;48960:28:0;;;48956:328;;-1:-1:-1;;;;;49027:18:0;;49005:19;49027:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49078:30;;;;;;:44;;;49195:30;;:17;:30;;;;;:43;;;48956:328;-1:-1:-1;49380:26:0;;;;:17;:26;;;;;;;;49373:33;;;-1:-1:-1;;;;;49424:18:0;;;;;:12;:18;;;;;:34;;;;;;;49417:41;48478:988::o;49761:1079::-;50039:10;:17;50014:22;;50039:21;;50059:1;;50039:21;:::i;:::-;50071:18;50092:24;;;:15;:24;;;;;;50465:10;:26;;50014:46;;-1:-1:-1;50092:24:0;;50014:46;;50465:26;;;;-1:-1:-1;;;50465:26:0;;;;;;;;;;;;;;;;;50443:48;;50529:11;50504:10;50515;50504:22;;;;;;-1:-1:-1;;;50504:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;50609:28;;;:15;:28;;;;;;;:41;;;50781:24;;;;;50774:31;50816:10;:16;;;;;-1:-1:-1;;;50816:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;49761:1079;;;;:::o;47265:221::-;47350:14;47367:20;47384:2;47367:16;:20::i;:::-;-1:-1:-1;;;;;47398:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47443:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47265:221:0:o;15696:1669::-;15827:7;;16788:66;16762:92;;16744:200;;;-1:-1:-1;16897:1:0;;-1:-1:-1;16901:30:0;16881:51;;16744:200;16958:1;:7;;16963:2;16958:7;;:18;;;;;16969:1;:7;;16974:2;16969:7;;16958:18;16954:102;;;-1:-1:-1;17009:1:0;;-1:-1:-1;17013:30:0;16993:51;;16954:102;17153:14;17170:24;17180:4;17186:1;17189;17192;17170:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;17170:24:0;;-1:-1:-1;;17170:24:0;;;-1:-1:-1;;;;;;;17209:20:0;;17205:103;;17262:1;17266:29;17246:50;;;;;;;17205:103;17328:6;-1:-1:-1;17336:20:0;;-1:-1:-1;15696:1669:0;;;;;;;;:::o;14642:440::-;14756:7;;-1:-1:-1;;;;;14857:124:0;;15008:3;15004:12;;;15018:2;15000:21;15049:25;15060:4;15000:21;15069:1;14857:124;15049:10;:25::i;:::-;15042:32;;;;;;14642:440;;;;;;:::o;39522:382::-;-1:-1:-1;;;;;39602:16:0;;39594:61;;;;-1:-1:-1;;;39594:61:0;;;;;;;:::i;:::-;39675:16;39683:7;39675;:16::i;:::-;39674:17;39666:58;;;;-1:-1:-1;;;39666:58:0;;;;;;;:::i;:::-;39737:45;39766:1;39770:2;39774:7;39737:20;:45::i;:::-;-1:-1:-1;;;;;39795:13:0;;;;;;:9;:13;;;;;:18;;39812:1;;39795:13;:18;;39812:1;;39795:18;:::i;:::-;;;;-1:-1:-1;;39824:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39824:21:0;-1:-1:-1;;;;;39824:21:0;;;;;;;;39863:33;;39824:16;;;39863:33;;39824:16;;39863:33;39522:382;;:::o;20477:387::-;20800:20;20848:8;;;20477:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:232;;1070:3;1063:4;1055:6;1051:17;1047:27;1037:2;;1092:5;1085;1078:20;1037:2;1118:81;1195:3;1186:6;1173:20;1166:4;1158:6;1154:17;1118:81;:::i;1210:198::-;;1322:2;1310:9;1301:7;1297:23;1293:32;1290:2;;;1343:6;1335;1328:22;1290:2;1371:31;1392:9;1371:31;:::i;1413:274::-;;;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1591:31;1612:9;1591:31;:::i;:::-;1581:41;;1641:40;1677:2;1666:9;1662:18;1641:40;:::i;:::-;1631:50;;1500:187;;;;;:::o;1692:342::-;;;;1838:2;1826:9;1817:7;1813:23;1809:32;1806:2;;;1859:6;1851;1844:22;1806:2;1887:31;1908:9;1887:31;:::i;:::-;1877:41;;1937:40;1973:2;1962:9;1958:18;1937:40;:::i;:::-;1927:50;;2024:2;2013:9;2009:18;1996:32;1986:42;;1796:238;;;;;:::o;2039:563::-;;;;;2211:3;2199:9;2190:7;2186:23;2182:33;2179:2;;;2233:6;2225;2218:22;2179:2;2261:31;2282:9;2261:31;:::i;:::-;2251:41;;2311:40;2347:2;2336:9;2332:18;2311:40;:::i;:::-;2301:50;;2398:2;2387:9;2383:18;2370:32;2360:42;;2453:2;2442:9;2438:18;2425:32;2480:18;2472:6;2469:30;2466:2;;;2517:6;2509;2502:22;2466:2;2545:51;2588:7;2579:6;2568:9;2564:22;2545:51;:::i;:::-;2535:61;;;2169:433;;;;;;;:::o;2607:268::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2782:31;2803:9;2782:31;:::i;:::-;2772:41;;2832:37;2865:2;2854:9;2850:18;2832:37;:::i;2880:266::-;;;3009:2;2997:9;2988:7;2984:23;2980:32;2977:2;;;3030:6;3022;3015:22;2977:2;3058:31;3079:9;3058:31;:::i;:::-;3048:41;3136:2;3121:18;;;;3108:32;;-1:-1:-1;;;2967:179:1:o;3151:192::-;;3260:2;3248:9;3239:7;3235:23;3231:32;3228:2;;;3281:6;3273;3266:22;3228:2;3309:28;3327:9;3309:28;:::i;3348:257::-;;3459:2;3447:9;3438:7;3434:23;3430:32;3427:2;;;3480:6;3472;3465:22;3427:2;3524:9;3511:23;3543:32;3569:5;3543:32;:::i;3610:261::-;;3732:2;3720:9;3711:7;3707:23;3703:32;3700:2;;;3753:6;3745;3738:22;3700:2;3790:9;3784:16;3809:32;3835:5;3809:32;:::i;3876:342::-;;3997:2;3985:9;3976:7;3972:23;3968:32;3965:2;;;4018:6;4010;4003:22;3965:2;4063:9;4050:23;4096:18;4088:6;4085:30;4082:2;;;4133:6;4125;4118:22;4082:2;4161:51;4204:7;4195:6;4184:9;4180:22;4161:51;:::i;4223:482::-;;4345:2;4333:9;4324:7;4320:23;4316:32;4313:2;;;4366:6;4358;4351:22;4313:2;4411:9;4398:23;4444:18;4436:6;4433:30;4430:2;;;4481:6;4473;4466:22;4430:2;4509:22;;4562:4;4554:13;;4550:27;-1:-1:-1;4540:2:1;;4596:6;4588;4581:22;4540:2;4624:75;4691:7;4686:2;4673:16;4668:2;4664;4660:11;4624:75;:::i;4710:190::-;;4822:2;4810:9;4801:7;4797:23;4793:32;4790:2;;;4843:6;4835;4828:22;4790:2;-1:-1:-1;4871:23:1;;4780:120;-1:-1:-1;4780:120:1:o;4905:410::-;;;5043:2;5031:9;5022:7;5018:23;5014:32;5011:2;;;5064:6;5056;5049:22;5011:2;5105:9;5092:23;5082:33;;5166:2;5155:9;5151:18;5138:32;5193:18;5185:6;5182:30;5179:2;;;5230:6;5222;5215:22;5179:2;5258:51;5301:7;5292:6;5281:9;5277:22;5258:51;:::i;:::-;5248:61;;;5001:314;;;;;:::o;5320:259::-;;5401:5;5395:12;5428:6;5423:3;5416:19;5444:63;5500:6;5493:4;5488:3;5484:14;5477:4;5470:5;5466:16;5444:63;:::i;:::-;5561:2;5540:15;-1:-1:-1;;5536:29:1;5527:39;;;;5568:4;5523:50;;5371:208;-1:-1:-1;;5371:208:1:o;5584:333::-;-1:-1:-1;;5811:2:1;5807:15;;;5803:24;;5791:37;;5862:15;;;;5858:24;5853:2;5844:12;;5837:46;5908:2;5899:12;;5731:186::o;5922:1532::-;;6184:6;6178:13;6210:4;6223:51;6267:6;6262:3;6257:2;6249:6;6245:15;6223:51;:::i;:::-;6337:13;;6296:16;;;;6359:55;6337:13;6296:16;6381:15;;;6359:55;:::i;:::-;6505:13;;6436:20;;;6476:3;;6582:1;6567:17;;6603:1;6639:18;;;;6666:2;;6744:4;6734:8;6730:19;6718:31;;6666:2;6807;6797:8;6794:16;6774:18;6771:40;6768:2;;;-1:-1:-1;;;6834:33:1;;6890:4;6887:1;6880:15;6920:4;6841:3;6908:17;6768:2;6951:18;6978:110;;;;7102:1;7097:332;;;;6944:485;;6978:110;-1:-1:-1;;7013:24:1;;6999:39;;7058:20;;;;-1:-1:-1;6978:110:1;;7097:332;7133:39;7165:6;7133:39;:::i;:::-;7194:3;7210:169;7224:8;7221:1;7218:15;7210:169;;;7306:14;;7291:13;;;7284:37;7349:16;;;;7241:10;;7210:169;;;7214:3;;7410:8;7403:5;7399:20;7392:27;;6944:485;-1:-1:-1;7445:3:1;;6154:1300;-1:-1:-1;;;;;;;;;;;6154:1300:1:o;7459:380::-;7701:66;7689:79;;7793:2;7784:12;;7777:28;;;;7830:2;7821:12;;7679:160::o;7844:205::-;8044:3;8035:14::o;8054:203::-;-1:-1:-1;;;;;8218:32:1;;;;8200:51;;8188:2;8173:18;;8155:102::o;8262:490::-;-1:-1:-1;;;;;8531:15:1;;;8513:34;;8583:15;;8578:2;8563:18;;8556:43;8630:2;8615:18;;8608:34;;;8678:3;8673:2;8658:18;;8651:31;;;8262:490;;8699:47;;8726:19;;8718:6;8699:47;:::i;:::-;8691:55;8465:287;-1:-1:-1;;;;;;8465:287:1:o;8757:635::-;8928:2;8980:21;;;9050:13;;8953:18;;;9072:22;;;8757:635;;8928:2;9151:15;;;;9125:2;9110:18;;;8757:635;9197:169;9211:6;9208:1;9205:13;9197:169;;;9272:13;;9260:26;;9341:15;;;;9306:12;;;;9233:1;9226:9;9197:169;;;-1:-1:-1;9383:3:1;;8908:484;-1:-1:-1;;;;;;8908:484:1:o;9397:187::-;9562:14;;9555:22;9537:41;;9525:2;9510:18;;9492:92::o;9589:398::-;9816:25;;;9889:4;9877:17;;;;9872:2;9857:18;;9850:45;9926:2;9911:18;;9904:34;9969:2;9954:18;;9947:34;9803:3;9788:19;;9770:217::o;9992:221::-;;10141:2;10130:9;10123:21;10161:46;10203:2;10192:9;10188:18;10180:6;10161:46;:::i;10218:348::-;10420:2;10402:21;;;10459:2;10439:18;;;10432:30;10498:26;10493:2;10478:18;;10471:54;10557:2;10542:18;;10392:174::o;10571:355::-;10773:2;10755:21;;;10812:2;10792:18;;;10785:30;10851:33;10846:2;10831:18;;10824:61;10917:2;10902:18;;10745:181::o;10931:407::-;11133:2;11115:21;;;11172:2;11152:18;;;11145:30;11211:34;11206:2;11191:18;;11184:62;-1:-1:-1;;;11277:2:1;11262:18;;11255:41;11328:3;11313:19;;11105:233::o;11343:414::-;11545:2;11527:21;;;11584:2;11564:18;;;11557:30;11623:34;11618:2;11603:18;;11596:62;-1:-1:-1;;;11689:2:1;11674:18;;11667:48;11747:3;11732:19;;11517:240::o;11762:402::-;11964:2;11946:21;;;12003:2;11983:18;;;11976:30;12042:34;12037:2;12022:18;;12015:62;-1:-1:-1;;;12108:2:1;12093:18;;12086:36;12154:3;12139:19;;11936:228::o;12169:352::-;12371:2;12353:21;;;12410:2;12390:18;;;12383:30;12449;12444:2;12429:18;;12422:58;12512:2;12497:18;;12343:178::o;12526:352::-;12728:2;12710:21;;;12767:2;12747:18;;;12740:30;12806;12801:2;12786:18;;12779:58;12869:2;12854:18;;12700:178::o;12883:400::-;13085:2;13067:21;;;13124:2;13104:18;;;13097:30;13163:34;13158:2;13143:18;;13136:62;-1:-1:-1;;;13229:2:1;13214:18;;13207:34;13273:3;13258:19;;13057:226::o;13288:349::-;13490:2;13472:21;;;13529:2;13509:18;;;13502:30;13568:27;13563:2;13548:18;;13541:55;13628:2;13613:18;;13462:175::o;13642:398::-;13844:2;13826:21;;;13883:2;13863:18;;;13856:30;13922:34;13917:2;13902:18;;13895:62;-1:-1:-1;;;13988:2:1;13973:18;;13966:32;14030:3;14015:19;;13816:224::o;14045:408::-;14247:2;14229:21;;;14286:2;14266:18;;;14259:30;14325:34;14320:2;14305:18;;14298:62;-1:-1:-1;;;14391:2:1;14376:18;;14369:42;14443:3;14428:19;;14219:234::o;14458:420::-;14660:2;14642:21;;;14699:2;14679:18;;;14672:30;14738:34;14733:2;14718:18;;14711:62;14809:26;14804:2;14789:18;;14782:54;14868:3;14853:19;;14632:246::o;14883:406::-;15085:2;15067:21;;;15124:2;15104:18;;;15097:30;15163:34;15158:2;15143:18;;15136:62;-1:-1:-1;;;15229:2:1;15214:18;;15207:40;15279:3;15264:19;;15057:232::o;15294:405::-;15496:2;15478:21;;;15535:2;15515:18;;;15508:30;15574:34;15569:2;15554:18;;15547:62;-1:-1:-1;;;15640:2:1;15625:18;;15618:39;15689:3;15674:19;;15468:231::o;15704:346::-;15906:2;15888:21;;;15945:2;15925:18;;;15918:30;-1:-1:-1;;;15979:2:1;15964:18;;15957:52;16041:2;16026:18;;15878:172::o;16055:400::-;16257:2;16239:21;;;16296:2;16276:18;;;16269:30;16335:34;16330:2;16315:18;;16308:62;-1:-1:-1;;;16401:2:1;16386:18;;16379:34;16445:3;16430:19;;16229:226::o;16460:398::-;16662:2;16644:21;;;16701:2;16681:18;;;16674:30;16740:34;16735:2;16720:18;;16713:62;-1:-1:-1;;;16806:2:1;16791:18;;16784:32;16848:3;16833:19;;16634:224::o;16863:356::-;17065:2;17047:21;;;17084:18;;;17077:30;17143:34;17138:2;17123:18;;17116:62;17210:2;17195:18;;17037:182::o;17224:408::-;17426:2;17408:21;;;17465:2;17445:18;;;17438:30;17504:34;17499:2;17484:18;;17477:62;-1:-1:-1;;;17570:2:1;17555:18;;17548:42;17622:3;17607:19;;17398:234::o;17637:356::-;17839:2;17821:21;;;17858:18;;;17851:30;17917:34;17912:2;17897:18;;17890:62;17984:2;17969:18;;17811:182::o;17998:349::-;18200:2;18182:21;;;18239:2;18219:18;;;18212:30;18278:27;18273:2;18258:18;;18251:55;18338:2;18323:18;;18172:175::o;18352:346::-;18554:2;18536:21;;;18593:2;18573:18;;;18566:30;-1:-1:-1;;;18627:2:1;18612:18;;18605:52;18689:2;18674:18;;18526:172::o;18703:405::-;18905:2;18887:21;;;18944:2;18924:18;;;18917:30;18983:34;18978:2;18963:18;;18956:62;-1:-1:-1;;;19049:2:1;19034:18;;19027:39;19098:3;19083:19;;18877:231::o;19113:411::-;19315:2;19297:21;;;19354:2;19334:18;;;19327:30;19393:34;19388:2;19373:18;;19366:62;-1:-1:-1;;;19459:2:1;19444:18;;19437:45;19514:3;19499:19;;19287:237::o;19529:418::-;19731:2;19713:21;;;19770:2;19750:18;;;19743:30;19809:34;19804:2;19789:18;;19782:62;-1:-1:-1;;;19875:2:1;19860:18;;19853:52;19937:3;19922:19;;19703:244::o;19952:397::-;20154:2;20136:21;;;20193:2;20173:18;;;20166:30;20232:34;20227:2;20212:18;;20205:62;-1:-1:-1;;;20298:2:1;20283:18;;20276:31;20339:3;20324:19;;20126:223::o;20354:342::-;20556:2;20538:21;;;20595:2;20575:18;;;20568:30;-1:-1:-1;;;20629:2:1;20614:18;;20607:48;20687:2;20672:18;;20528:168::o;20701:413::-;20903:2;20885:21;;;20942:2;20922:18;;;20915:30;20981:34;20976:2;20961:18;;20954:62;-1:-1:-1;;;21047:2:1;21032:18;;21025:47;21104:3;21089:19;;20875:239::o;21119:408::-;21321:2;21303:21;;;21360:2;21340:18;;;21333:30;21399:34;21394:2;21379:18;;21372:62;-1:-1:-1;;;21465:2:1;21450:18;;21443:42;21517:3;21502:19;;21293:234::o;21532:347::-;21734:2;21716:21;;;21773:2;21753:18;;;21746:30;21812:25;21807:2;21792:18;;21785:53;21870:2;21855:18;;21706:173::o;21884:351::-;22086:2;22068:21;;;22125:2;22105:18;;;22098:30;22164:29;22159:2;22144:18;;22137:57;22226:2;22211:18;;22058:177::o;22240:::-;22386:25;;;22374:2;22359:18;;22341:76::o;22422:129::-;;22490:17;;;22540:4;22524:21;;;22480:71::o;22556:128::-;;22627:1;22623:6;22620:1;22617:13;22614:2;;;22633:18;;:::i;:::-;-1:-1:-1;22669:9:1;;22604:80::o;22689:120::-;;22755:1;22745:2;;22760:18;;:::i;:::-;-1:-1:-1;22794:9:1;;22735:74::o;22814:168::-;;22920:1;22916;22912:6;22908:14;22905:1;22902:21;22897:1;22890:9;22883:17;22879:45;22876:2;;;22927:18;;:::i;:::-;-1:-1:-1;22967:9:1;;22866:116::o;22987:125::-;;23055:1;23052;23049:8;23046:2;;;23060:18;;:::i;:::-;-1:-1:-1;23097:9:1;;23036:76::o;23117:258::-;23189:1;23199:113;23213:6;23210:1;23207:13;23199:113;;;23289:11;;;23283:18;23270:11;;;23263:39;23235:2;23228:10;23199:113;;;23330:6;23327:1;23324:13;23321:2;;;-1:-1:-1;;23365:1:1;23347:16;;23340:27;23170:205::o;23380:380::-;23465:1;23455:12;;23512:1;23502:12;;;23523:2;;23577:4;23569:6;23565:17;23555:27;;23523:2;23630;23622:6;23619:14;23599:18;23596:38;23593:2;;;23676:10;23671:3;23667:20;23664:1;23657:31;23711:4;23708:1;23701:15;23739:4;23736:1;23729:15;23593:2;;23435:325;;;:::o;23765:135::-;;-1:-1:-1;;23825:17:1;;23822:2;;;23845:18;;:::i;:::-;-1:-1:-1;23892:1:1;23881:13;;23812:88::o;23905:112::-;;23963:1;23953:2;;23968:18;;:::i;:::-;-1:-1:-1;24002:9:1;;23943:74::o;24022:127::-;24083:10;24078:3;24074:20;24071:1;24064:31;24114:4;24111:1;24104:15;24138:4;24135:1;24128:15;24154:127;24215:10;24210:3;24206:20;24203:1;24196:31;24246:4;24243:1;24236:15;24270:4;24267:1;24260:15;24286:127;24347:10;24342:3;24338:20;24335:1;24328:31;24378:4;24375:1;24368:15;24402:4;24399:1;24392:15;24418:133;-1:-1:-1;;;;;;24494:32:1;;24484:43;;24474:2;;24541:1;24538;24531:12

Swarm Source

ipfs://d45fd83e1c085429582248a333876272e4706e2067460cdc204eeae9bf6d4d82
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.