ETH Price: $3,236.46 (+1.69%)

Token

Night World (NWT)
 

Overview

Max Total Supply

166 NWT

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NWT
0xef23e43c58ec9929aa6b51aa5695dcc24d2645ae
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:
NightWorld

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-19
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// 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/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (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: contracts/nightworld.sol


pragma solidity ^0.8.0;





contract NightWorld is ERC721Enumerable, Ownable {
  using Strings for uint256;

  uint256 public NW_PRESALE = 1000;
  uint256 public NW_PUBLIC = 9894;
  uint256 public NW_MAX = NW_PRESALE + NW_PUBLIC;
  uint256 public PURCHASE_LIMIT = 10;
  uint256 public PRICE = 0.07 ether;

  bool public _PreSaleOpen = false;
  bool public _PubSaleOpen = false;
  
  uint256 public _CurrPreSupply;
  uint256 public _CurrPubSupply;

  uint256 public _rewardAmount = 1 ether;
  uint256 public _rewardGap = 100;

  mapping(address => uint256) private _WhilteList;
  address[] private _rewardList;

  string public _contractURI = '';
  string public _tokenBaseURI = '';
  string public _tokenPreSaleURI = '';
  string public _tokenPubSaleURI = '';
  address public _signAddress;

  constructor() ERC721("Night World", "NWT") {}
  
  function setSignAddress(address signAddress) external onlyOwner {
    _signAddress = signAddress;
  }

  function openPresale() external onlyOwner {
    _PreSaleOpen = true;
  }

  function openPubsale() external onlyOwner {
    _PubSaleOpen = true;
  }

  function getSaleInfo() external view returns(uint256, uint256) {
    return(_CurrPreSupply, _CurrPubSupply);
  }

  function getPresaleInfo() external view returns (uint256 current, uint256 total) {
    return(_CurrPreSupply, NW_PRESALE);
  }

  function getPubsaleInfo() external view returns (uint256 current, uint256 total) {
    return(_CurrPubSupply, NW_PUBLIC);
  }

  function queryRewardList(uint256 start) external view returns (address[32] memory result) {
    if (start >= _rewardList.length) {
      return result;
    }

    for (uint256 i=0; i<32; ++i) {
      if (start + i >= _rewardList.length) {
        return result;
      }

      result[i] = _rewardList[start + i];
    }
  }

  function addWL(address[] calldata addresses, uint256 disCount) external onlyOwner {
    require(0 < disCount && disCount<= 101, 'disCount err');

    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), 'Can not add the null address');
      _WhilteList[addresses[i]] = disCount;
    }
  }

  function checkWL(address addr) external view returns (bool isExist, uint256 discount) {
      discount = _WhilteList[addr];
      if (discount == 101) {
          return (true, 0);
      }

      return discount == 0 ? (false, 100) : (true, discount);
  }

  function mintWL(uint256 numberOfTokens, bytes memory signature) external payable {
    require(numberOfTokens > 0, 'numberOfTokens err');
    require(_PreSaleOpen, 'Contract is not active');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Cannot purchase this many tokens');
    require(_CurrPreSupply + numberOfTokens <= NW_PRESALE, 'Purchase would exceed Limit');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');
    require(checkSignatureWallet(msg.sender, signature), 'WhiteList check err');

    uint256 discount = _WhilteList[msg.sender];
    if (discount == 101) {
      uint256 tokenId = ++_CurrPreSupply;

      _safeMint(msg.sender, tokenId);
      payable(msg.sender).transfer(PRICE);

      --numberOfTokens;
      _WhilteList[msg.sender] = 100;

      if (_CurrPreSupply % _rewardGap == 0) {
        uint256 random = _getRandom(string(abi.encodePacked("Reward", block.number.toString(), uint256(uint160(msg.sender)).toString()))) % 100 + 1;
        address rewardOwner = ownerOf(tokenId - _rewardGap + random);
        payable(rewardOwner).transfer(_rewardAmount);
        _rewardList.push(rewardOwner);
      }
    }

    for (uint256 i = 0; i < numberOfTokens; i++) {
      uint256 tokenId = ++_CurrPreSupply;
      _safeMint(msg.sender, tokenId);

      if (_CurrPreSupply % _rewardGap == 0) {
        uint256 random = _getRandom(string(abi.encodePacked("Reward", block.number.toString(), uint256(uint160(msg.sender)).toString()))) % 100 + 1;
        address rewardOwner = ownerOf(tokenId - _rewardGap + random);
        payable(rewardOwner).transfer(_rewardAmount);
        _rewardList.push(rewardOwner);
      }
    }
  }

  function mint(uint256 numberOfTokens) external payable {
    require(numberOfTokens > 0, 'numberOfTokens err.');
    require(_PubSaleOpen, 'Contract is not active');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Would exceed PURCHASE_LIMIT');
    require(_CurrPubSupply + numberOfTokens < NW_PUBLIC, 'Purchase would exceed NW_PUBLIC');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {
      uint256 tokenId = NW_PRESALE + _CurrPubSupply + 1;

      _safeMint(msg.sender, tokenId);
      ++_CurrPubSupply;

      if (_CurrPubSupply % _rewardGap == 0) {
        uint256 random = _getRandom(string(abi.encodePacked("Reward", block.number.toString(), uint256(uint160(msg.sender)).toString()))) % 100 + 1;
        address rewardOwner = ownerOf(tokenId - _rewardGap + random);
        payable(rewardOwner).transfer(_rewardAmount);
        _rewardList.push(rewardOwner);
      }
    }
  }

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

  function setContractURI(string calldata URI) external onlyOwner {
    _contractURI = URI;
  }

  function setBaseURI(string calldata URI) external onlyOwner {
    _tokenBaseURI = URI;
  }

  function setPreSaleURI(string calldata URI) external onlyOwner {
    _tokenPreSaleURI = URI;
  }

  function setPubSaleBaseURI(string calldata URI) external onlyOwner {
    _tokenPubSaleURI = URI;
  }

  function contractURI() public view returns (string memory) {
    return _contractURI;
  }

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    if (tokenId <= NW_PRESALE) {
      return bytes(_tokenPreSaleURI).length > 0 ? string(abi.encodePacked(_tokenPreSaleURI, tokenId.toString())) : _tokenBaseURI;
    } else {
      return bytes(_tokenPubSaleURI).length > 0 ? string(abi.encodePacked(_tokenPubSaleURI, tokenId.toString())) : _tokenBaseURI;
    }
  }

  function _getRandom(string memory purpose) internal view returns (uint256) {
    return uint256(keccak256(abi.encodePacked(block.timestamp, tx.gasprice, purpose)));
  }

  function checkSignatureWallet(address wallet, bytes memory signature) public view returns (bool) {
    return _signAddress == ECDSA.recover(keccak256(abi.encode(wallet)), signature);
  }
}

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":[],"name":"NW_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NW_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NW_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CurrPreSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CurrPubSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_PreSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_PubSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardGap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_signAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenPreSaleURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenPubSaleURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"disCount","type":"uint256"}],"name":"addWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"checkSignatureWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkWL","outputs":[{"internalType":"bool","name":"isExist","type":"bool"},{"internalType":"uint256","name":"discount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleInfo","outputs":[{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPubsaleInfo","outputs":[{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openPubsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"}],"name":"queryRewardList","outputs":[{"internalType":"address[32]","name":"result","type":"address[32]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setPreSaleURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setPubSaleBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signAddress","type":"address"}],"name":"setSignAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e8600b8190556126a6600c8190556200001f9162000263565b600d55600a600e5566f8b0a10e470000600f556010805461ffff19169055670de0b6b3a764000060135560646014556040805160208101918290526000908190526200006e91601791620001bd565b506040805160208101918290526000908190526200008f91601891620001bd565b50604080516020810191829052600090819052620000b091601991620001bd565b50604080516020810191829052600090819052620000d191601a91620001bd565b50348015620000df57600080fd5b50604080518082018252600b81526a139a59da1d0815dbdc9b1960aa1b6020808301918252835180850190945260038452621395d560ea1b9084015281519192916200012e91600091620001bd565b50805162000144906001906020840190620001bd565b505050620001616200015b6200016760201b60201c565b6200016b565b620002c5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001cb9062000288565b90600052602060002090601f016020900481019282620001ef57600085556200023a565b82601f106200020a57805160ff19168380011785556200023a565b828001600101855582156200023a579182015b828111156200023a5782518255916020019190600101906200021d565b50620002489291506200024c565b5090565b5b808211156200024857600081556001016200024d565b600082198211156200028357634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200029d57607f821691505b60208210811415620002bf57634e487b7160e01b600052602260045260246000fd5b50919050565b61378880620002d56000396000f3fe60806040526004361061031a5760003560e01c8063715018a6116101ab578063a3c1b069116100f7578063d75e611011610095578063e8a3d4851161006f578063e8a3d4851461086f578063e985e9c514610884578063f2fde38b146108a4578063fca8a9b6146108c45761031a565b8063d75e611014610825578063db83694c1461083a578063dc24dfda1461084f5761031a565b8063c0e72740116100d1578063c0e72740146107c6578063c11a6607146107db578063c6206a55146107f0578063c87b56dd146108055761031a565b8063a3c1b0691461077c578063b12620b714610791578063b88d4fde146107a65761031a565b80638df35728116101645780639768eb141161013e5780639768eb14146107145780639b6aa92f14610734578063a0712d6814610749578063a22cb4651461075c5761031a565b80638df35728146106ca578063938e3d7b146106df57806395d89b41146106ff5761031a565b8063715018a61461064c578063767fa723146106615780638247dcc4146106765780638d859f3e1461068b5780638da5cb5b146106a05780638dd98312146106b55761031a565b8063296af34c1161026a57806349db98fa1161022357806355f804b3116101fd57806355f804b3146105cc5780636352211e146105ec578063649268a41461060c57806370a082311461062c5761031a565b806349db98fa1461056a5780634f6ccce71461057f57806351ebdddc1461059f5761031a565b8063296af34c146104d85780632f745c59146104ed5780633ca4fb761461050d5780633ccfd60b146105225780633ceaba261461053757806342842e0e1461054a5761031a565b806315137045116102d757806318c63f24116102b157806318c63f24146104525780631a2cb10c146104805780631ec13ab31461049557806323b872dd146104b85761031a565b806315137045146103fd57806318160ddd1461041d57806318339aab146104325761031a565b806301ffc9a71461031f57806302bd5ff11461035557806306fdde0314610377578063081812fc14610399578063095ea7b3146103c657806310b0dbee146103e8575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612ab5565b6108d9565b60405161034c9190612d90565b60405180910390f35b34801561036157600080fd5b5061036a610906565b60405161034c91906135ce565b34801561038357600080fd5b5061038c61090c565b60405161034c9190612dc9565b3480156103a557600080fd5b506103b96103b4366004612b5a565b61099e565b60405161034c9190612d00565b3480156103d257600080fd5b506103e66103e1366004612a17565b6109ea565b005b3480156103f457600080fd5b506103e6610a82565b34801561040957600080fd5b506103e661041836600461289d565b610ad2565b34801561042957600080fd5b5061036a610b33565b34801561043e57600080fd5b5061033f61044d3660046129cb565b610b39565b34801561045e57600080fd5b5061047261046d36600461289d565b610b83565b60405161034c929190612d9b565b34801561048c57600080fd5b5061036a610bce565b3480156104a157600080fd5b506104aa610bd4565b60405161034c9291906135d7565b3480156104c457600080fd5b506103e66104d33660046128f0565b610bde565b3480156104e457600080fd5b5061038c610c16565b3480156104f957600080fd5b5061036a610508366004612a17565b610ca4565b34801561051957600080fd5b5061038c610cf6565b34801561052e57600080fd5b506103e6610d03565b6103e6610545366004612b72565b610d75565b34801561055657600080fd5b506103e66105653660046128f0565b61111d565b34801561057657600080fd5b5061036a611138565b34801561058b57600080fd5b5061036a61059a366004612b5a565b61113e565b3480156105ab57600080fd5b506105bf6105ba366004612b5a565b611199565b60405161034c9190612d51565b3480156105d857600080fd5b506103e66105e7366004612aed565b61125d565b3480156105f857600080fd5b506103b9610607366004612b5a565b6112a8565b34801561061857600080fd5b506103e6610627366004612a40565b6112dd565b34801561063857600080fd5b5061036a61064736600461289d565b611418565b34801561065857600080fd5b506103e661145c565b34801561066d57600080fd5b506104aa6114a7565b34801561068257600080fd5b5061036a6114b1565b34801561069757600080fd5b5061036a6114b7565b3480156106ac57600080fd5b506103b96114bd565b3480156106c157600080fd5b506103e66114cc565b3480156106d657600080fd5b5061038c61151a565b3480156106eb57600080fd5b506103e66106fa366004612aed565b611527565b34801561070b57600080fd5b5061038c611572565b34801561072057600080fd5b506103e661072f366004612aed565b611581565b34801561074057600080fd5b5061036a6115cc565b6103e6610757366004612b5a565b6115d2565b34801561076857600080fd5b506103e6610777366004612991565b6117cd565b34801561078857600080fd5b5061036a6117df565b34801561079d57600080fd5b506103b96117e5565b3480156107b257600080fd5b506103e66107c136600461292b565b6117f4565b3480156107d257600080fd5b5061038c61182d565b3480156107e757600080fd5b5061033f61183a565b3480156107fc57600080fd5b5061036a611848565b34801561081157600080fd5b5061038c610820366004612b5a565b61184e565b34801561083157600080fd5b5061036a611985565b34801561084657600080fd5b506104aa61198b565b34801561085b57600080fd5b506103e661086a366004612aed565b611995565b34801561087b57600080fd5b5061038c6119e0565b34801561089057600080fd5b5061033f61089f3660046128be565b6119ef565b3480156108b057600080fd5b506103e66108bf36600461289d565b611a1d565b3480156108d057600080fd5b5061033f611a8e565b60006001600160e01b0319821663780e9d6360e01b14806108fe57506108fe82611a97565b90505b919050565b60115481565b60606000805461091b90613696565b80601f016020809104026020016040519081016040528092919081815260200182805461094790613696565b80156109945780601f1061096957610100808354040283529160200191610994565b820191906000526020600020905b81548152906001019060200180831161097757829003601f168201915b5050505050905090565b60006109a982611ad7565b6109ce5760405162461bcd60e51b81526004016109c590613371565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109f5826112a8565b9050806001600160a01b0316836001600160a01b03161415610a295760405162461bcd60e51b81526004016109c59061343b565b806001600160a01b0316610a3b611af4565b6001600160a01b03161480610a575750610a578161089f611af4565b610a735760405162461bcd60e51b81526004016109c5906131da565b610a7d8383611af8565b505050565b610a8a611af4565b6001600160a01b0316610a9b6114bd565b6001600160a01b031614610ac15760405162461bcd60e51b81526004016109c5906133bd565b6010805461ff001916610100179055565b610ada611af4565b6001600160a01b0316610aeb6114bd565b6001600160a01b031614610b115760405162461bcd60e51b81526004016109c5906133bd565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b60085490565b6000610b6b83604051602001610b4f9190612d00565b6040516020818303038152906040528051906020012083611b66565b601b546001600160a01b039182169116149392505050565b6001600160a01b0381166000908152601560205260408120546065811415610bb15750600190506000610bc9565b8015610bbf57600181610bc4565b600060645b915091505b915091565b60125481565b601254600c549091565b610bef610be9611af4565b82611b8a565b610c0b5760405162461bcd60e51b81526004016109c5906134cf565b610a7d838383611c0f565b60198054610c2390613696565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4f90613696565b8015610c9c5780601f10610c7157610100808354040283529160200191610c9c565b820191906000526020600020905b815481529060010190602001808311610c7f57829003601f168201915b505050505081565b6000610caf83611418565b8210610ccd5760405162461bcd60e51b81526004016109c590612eb8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60188054610c2390613696565b610d0b611af4565b6001600160a01b0316610d1c6114bd565b6001600160a01b031614610d425760405162461bcd60e51b81526004016109c5906133bd565b6040514790339082156108fc029083906000818181858888f19350505050158015610d71573d6000803e3d6000fd5b5050565b60008211610d955760405162461bcd60e51b81526004016109c590613040565b60105460ff16610db75760405162461bcd60e51b81526004016109c590613341565b600e54821115610dd95760405162461bcd60e51b81526004016109c590613599565b600b5482601154610dea91906135f1565b1115610e085760405162461bcd60e51b81526004016109c590612e4a565b3482600f54610e17919061361d565b1115610e355760405162461bcd60e51b81526004016109c590613157565b610e3f3382610b39565b610e5b5760405162461bcd60e51b81526004016109c5906134a2565b336000908152601560205260409020546065811415610ffa576000601160008154610e85906136cb565b91829055509050610e963382611d3c565b600f54604051339180156108fc02916000818181858888f19350505050158015610ec4573d6000803e3d6000fd5b50610ece8461367f565b33600090815260156020526040902060649055601454601154919550610ef3916136e6565b610ff85760006064610f35610f0743611d56565b610f1033611d56565b604051602001610f21929190612c8f565b604051602081830303815290604052611e71565b610f3f91906136e6565b610f4a9060016135f1565b90506000610f6a8260145485610f60919061363c565b61060791906135f1565b6013546040519192506001600160a01b0383169181156108fc0291906000818181858888f19350505050158015610fa5573d6000803e3d6000fd5b50601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0392909216919091179055505b505b60005b83811015611117576000601160008154611016906136cb565b918290555090506110273382611d3c565b60145460115461103791906136e6565b611104576000606461104b610f0743611d56565b61105591906136e6565b6110609060016135f1565b905060006110768260145485610f60919061363c565b6013546040519192506001600160a01b0383169181156108fc0291906000818181858888f193505050501580156110b1573d6000803e3d6000fd5b50601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0392909216919091179055505b508061110f816136cb565b915050610ffd565b50505050565b610a7d838383604051806020016040528060008152506117f4565b60135481565b6000611148610b33565b82106111665760405162461bcd60e51b81526004016109c590613520565b6008828154811061118757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6111a161274d565b60165482106111af57610901565b60005b6020811015611257576016546111c882856135f1565b106111d35750610901565b60166111df82856135f1565b815481106111fd57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001546001600160a01b03169083908390811061123457634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020929092020152611250816136cb565b90506111b2565b50919050565b611265611af4565b6001600160a01b03166112766114bd565b6001600160a01b03161461129c5760405162461bcd60e51b81526004016109c5906133bd565b610a7d6018838361276c565b6000818152600260205260408120546001600160a01b0316806108fe5760405162461bcd60e51b81526004016109c590613281565b6112e5611af4565b6001600160a01b03166112f66114bd565b6001600160a01b03161461131c5760405162461bcd60e51b81526004016109c5906133bd565b80600010801561132d575060658111155b6113495760405162461bcd60e51b81526004016109c59061347c565b60005b8281101561111757600084848381811061137657634e487b7160e01b600052603260045260246000fd5b905060200201602081019061138b919061289d565b6001600160a01b031614156113b25760405162461bcd60e51b81526004016109c590612e13565b81601560008686858181106113d757634e487b7160e01b600052603260045260246000fd5b90506020020160208101906113ec919061289d565b6001600160a01b0316815260208101919091526040016000205580611410816136cb565b91505061134c565b60006001600160a01b0382166114405760405162461bcd60e51b81526004016109c590613237565b506001600160a01b031660009081526003602052604090205490565b611464611af4565b6001600160a01b03166114756114bd565b6001600160a01b03161461149b5760405162461bcd60e51b81526004016109c5906133bd565b6114a56000611ea6565b565b601154600b549091565b600c5481565b600f5481565b600a546001600160a01b031690565b6114d4611af4565b6001600160a01b03166114e56114bd565b6001600160a01b03161461150b5760405162461bcd60e51b81526004016109c5906133bd565b6010805460ff19166001179055565b601a8054610c2390613696565b61152f611af4565b6001600160a01b03166115406114bd565b6001600160a01b0316146115665760405162461bcd60e51b81526004016109c5906133bd565b610a7d6017838361276c565b60606001805461091b90613696565b611589611af4565b6001600160a01b031661159a6114bd565b6001600160a01b0316146115c05760405162461bcd60e51b81526004016109c5906133bd565b610a7d601a838361276c565b600b5481565b600081116115f25760405162461bcd60e51b81526004016109c59061356c565b601054610100900460ff166116195760405162461bcd60e51b81526004016109c590613341565b600e5481111561163b5760405162461bcd60e51b81526004016109c590612fd2565b600c548160125461164c91906135f1565b106116695760405162461bcd60e51b81526004016109c590613009565b3481600f54611678919061361d565b11156116965760405162461bcd60e51b81526004016109c590613157565b60005b81811015610d71576000601254600b546116b391906135f1565b6116be9060016135f1565b90506116ca3382611d3c565b6012600081546116d9906136cb565b909155506014546012546116ed91906136e6565b6117ba5760006064611701610f0743611d56565b61170b91906136e6565b6117169060016135f1565b9050600061172c8260145485610f60919061363c565b6013546040519192506001600160a01b0383169181156108fc0291906000818181858888f19350505050158015611767573d6000803e3d6000fd5b50601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0392909216919091179055505b50806117c5816136cb565b915050611699565b610d716117d8611af4565b8383611ef8565b600d5481565b601b546001600160a01b031681565b6118056117ff611af4565b83611b8a565b6118215760405162461bcd60e51b81526004016109c5906134cf565b61111784848484611f9b565b60178054610c2390613696565b601054610100900460ff1681565b60145481565b606061185982611ad7565b6118755760405162461bcd60e51b81526004016109c590613129565b600b5482116119575760006019805461188d90613696565b90501161192457601880546118a190613696565b80601f01602080910402602001604051908101604052809291908181526020018280546118cd90613696565b801561191a5780601f106118ef5761010080835404028352916020019161191a565b820191906000526020600020905b8154815290600101906020018083116118fd57829003601f168201915b5050505050611950565b601961192f83611d56565b604051602001611940929190612be9565b6040516020818303038152906040525b9050610901565b6000601a805461196690613696565b90501161197a57601880546118a190613696565b601a61192f83611d56565b600e5481565b6011546012549091565b61199d611af4565b6001600160a01b03166119ae6114bd565b6001600160a01b0316146119d45760405162461bcd60e51b81526004016109c5906133bd565b610a7d6019838361276c565b60606017805461091b90613696565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611a25611af4565b6001600160a01b0316611a366114bd565b6001600160a01b031614611a5c5760405162461bcd60e51b81526004016109c5906133bd565b6001600160a01b038116611a825760405162461bcd60e51b81526004016109c590612f55565b611a8b81611ea6565b50565b60105460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480611ac857506001600160e01b03198216635b5e139f60e01b145b806108fe57506108fe82611fce565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b2d826112a8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806000611b758585611fe7565b91509150611b8281612057565b509392505050565b6000611b9582611ad7565b611bb15760405162461bcd60e51b81526004016109c59061318e565b6000611bbc836112a8565b9050806001600160a01b0316846001600160a01b03161480611bf75750836001600160a01b0316611bec8461099e565b6001600160a01b0316145b80611c075750611c0781856119ef565b949350505050565b826001600160a01b0316611c22826112a8565b6001600160a01b031614611c485760405162461bcd60e51b81526004016109c5906133f2565b6001600160a01b038216611c6e5760405162461bcd60e51b81526004016109c59061306c565b611c79838383612184565b611c84600082611af8565b6001600160a01b0383166000908152600360205260408120805460019290611cad90849061363c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cdb9084906135f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d7182826040518060200160405280600081525061220d565b606081611d7b57506040805180820190915260018152600360fc1b6020820152610901565b8160005b8115611da55780611d8f816136cb565b9150611d9e9050600a83613609565b9150611d7f565b60008167ffffffffffffffff811115611dce57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611df8576020820181803683370190505b5090505b8415611c0757611e0d60018361363c565b9150611e1a600a866136e6565b611e259060306135f1565b60f81b818381518110611e4857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e6a600a86613609565b9450611dfc565b6000423a83604051602001611e8893929190612cd3565b60408051601f19818403018152919052805160209091012092915050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f2a5760405162461bcd60e51b81526004016109c5906130b0565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611f8e908590612d90565b60405180910390a3505050565b611fa6848484611c0f565b611fb284848484612240565b6111175760405162461bcd60e51b81526004016109c590612f03565b6001600160e01b031981166301ffc9a760e01b14919050565b60008082516041141561201e5760208301516040840151606085015160001a6120128782858561235b565b94509450505050612050565b825160401415612048576020830151604084015161203d86838361243b565b935093505050612050565b506000905060025b9250929050565b600081600481111561207957634e487b7160e01b600052602160045260246000fd5b141561208457611a8b565b60018160048111156120a657634e487b7160e01b600052602160045260246000fd5b14156120c45760405162461bcd60e51b81526004016109c590612ddc565b60028160048111156120e657634e487b7160e01b600052602160045260246000fd5b14156121045760405162461bcd60e51b81526004016109c590612e81565b600381600481111561212657634e487b7160e01b600052602160045260246000fd5b14156121445760405162461bcd60e51b81526004016109c5906130e7565b600481600481111561216657634e487b7160e01b600052602160045260246000fd5b1415611a8b5760405162461bcd60e51b81526004016109c5906132ca565b61218f838383610a7d565b6001600160a01b0383166121ab576121a68161246a565b6121ce565b816001600160a01b0316836001600160a01b0316146121ce576121ce83826124ae565b6001600160a01b0382166121ea576121e58161254b565b610a7d565b826001600160a01b0316826001600160a01b031614610a7d57610a7d8282612624565b6122178383612668565b6122246000848484612240565b610a7d5760405162461bcd60e51b81526004016109c590612f03565b6000612254846001600160a01b0316612747565b1561235057836001600160a01b031663150b7a02612270611af4565b8786866040518563ffffffff1660e01b81526004016122929493929190612d14565b602060405180830381600087803b1580156122ac57600080fd5b505af19250505080156122dc575060408051601f3d908101601f191682019092526122d991810190612ad1565b60015b612336573d80801561230a576040519150601f19603f3d011682016040523d82523d6000602084013e61230f565b606091505b50805161232e5760405162461bcd60e51b81526004016109c590612f03565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c07565b506001949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156123925750600090506003612432565b8460ff16601b141580156123aa57508460ff16601c14155b156123bb5750600090506004612432565b6000600187878787604051600081526020016040526040516123e09493929190612dab565b6020604051602081039080840390855afa158015612402573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661242b57600060019250925050612432565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161245c8782888561235b565b935093505050935093915050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016124bb84611418565b6124c5919061363c565b600083815260076020526040902054909150808214612518576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061255d9060019061363c565b6000838152600960205260408120546008805493945090928490811061259357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106125c257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061260857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061262f83611418565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661268e5760405162461bcd60e51b81526004016109c59061330c565b61269781611ad7565b156126b45760405162461bcd60e51b81526004016109c590612f9b565b6126c060008383612184565b6001600160a01b03821660009081526003602052604081208054600192906126e99084906135f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6040518061040001604052806020906020820280368337509192915050565b82805461277890613696565b90600052602060002090601f01602090048101928261279a57600085556127e0565b82601f106127b35782800160ff198235161785556127e0565b828001600101855582156127e0579182015b828111156127e05782358255916020019190600101906127c5565b506127ec9291506127f0565b5090565b5b808211156127ec57600081556001016127f1565b80356001600160a01b038116811461090157600080fd5b600082601f83011261282c578081fd5b813567ffffffffffffffff8082111561284757612847613726565b604051601f8301601f19168101602001828111828210171561286b5761286b613726565b604052828152848301602001861015612882578384fd5b82602086016020830137918201602001929092529392505050565b6000602082840312156128ae578081fd5b6128b782612805565b9392505050565b600080604083850312156128d0578081fd5b6128d983612805565b91506128e760208401612805565b90509250929050565b600080600060608486031215612904578081fd5b61290d84612805565b925061291b60208501612805565b9150604084013590509250925092565b60008060008060808587031215612940578081fd5b61294985612805565b935061295760208601612805565b925060408501359150606085013567ffffffffffffffff811115612979578182fd5b6129858782880161281c565b91505092959194509250565b600080604083850312156129a3578182fd5b6129ac83612805565b9150602083013580151581146129c0578182fd5b809150509250929050565b600080604083850312156129dd578182fd5b6129e683612805565b9150602083013567ffffffffffffffff811115612a01578182fd5b612a0d8582860161281c565b9150509250929050565b60008060408385031215612a29578182fd5b612a3283612805565b946020939093013593505050565b600080600060408486031215612a54578283fd5b833567ffffffffffffffff80821115612a6b578485fd5b818601915086601f830112612a7e578485fd5b813581811115612a8c578586fd5b8760208083028501011115612a9f578586fd5b6020928301989097509590910135949350505050565b600060208284031215612ac6578081fd5b81356128b78161373c565b600060208284031215612ae2578081fd5b81516128b78161373c565b60008060208385031215612aff578182fd5b823567ffffffffffffffff80821115612b16578384fd5b818501915085601f830112612b29578384fd5b813581811115612b37578485fd5b866020828501011115612b48578485fd5b60209290920196919550909350505050565b600060208284031215612b6b578081fd5b5035919050565b60008060408385031215612b84578182fd5b82359150602083013567ffffffffffffffff811115612a01578182fd5b60008151808452612bb9816020860160208601613653565b601f01601f19169290920160200192915050565b60008151612bdf818560208601613653565b9290920192915050565b8254600090819060028104600180831680612c0557607f831692505b6020808410821415612c2557634e487b7160e01b87526022600452602487fd5b818015612c395760018114612c4a57612c76565b60ff19861689528489019650612c76565b612c538b6135e5565b885b86811015612c6e5781548b820152908501908301612c55565b505084890196505b505050505050612c868185612bcd565b95945050505050565b60006514995dd85c9960d21b82528351612cb0816006850160208801613653565b835190830190612cc7816006840160208801613653565b01600601949350505050565b60008482528360208301528251612cf1816040850160208701613653565b91909101604001949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d4790830184612ba1565b9695505050505050565b6104008101818360005b6020808210612d6a5750612d87565b82516001600160a01b031684529283019290910190600101612d5b565b50505092915050565b901515815260200190565b9115158252602082015260400190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526128b76020830184612ba1565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252601c908201527f43616e206e6f742061646420746865206e756c6c206164647265737300000000604082015260600190565b6020808252601b908201527f507572636861736520776f756c6420657863656564204c696d69740000000000604082015260600190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f576f756c64206578636565642050555243484153455f4c494d49540000000000604082015260600190565b6020808252601f908201527f507572636861736520776f756c6420657863656564204e575f5055424c494300604082015260600190565b602080825260129082015271373ab6b132b927b32a37b5b2b7399032b93960711b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600c908201526b3234b9a1b7bab73a1032b93960a11b604082015260600190565b6020808252601390820152722bb434ba32a634b9ba1031b432b1b59032b93960691b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b602080825260139082015272373ab6b132b927b32a37b5b2b7399032b9391760691b604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b918252602082015260400190565b60009081526020902090565b60008219821115613604576136046136fa565b500190565b60008261361857613618613710565b500490565b6000816000190483118215151615613637576136376136fa565b500290565b60008282101561364e5761364e6136fa565b500390565b60005b8381101561366e578181015183820152602001613656565b838111156111175750506000910152565b60008161368e5761368e6136fa565b506000190190565b6002810460018216806136aa57607f821691505b6020821081141561125757634e487b7160e01b600052602260045260246000fd5b60006000198214156136df576136df6136fa565b5060010190565b6000826136f5576136f5613710565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a8b57600080fdfea2646970667358221220c27264d16174285c28bf40d339ae4a5b9ac4fbf34c124746332cd4edad8e1f7a64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061031a5760003560e01c8063715018a6116101ab578063a3c1b069116100f7578063d75e611011610095578063e8a3d4851161006f578063e8a3d4851461086f578063e985e9c514610884578063f2fde38b146108a4578063fca8a9b6146108c45761031a565b8063d75e611014610825578063db83694c1461083a578063dc24dfda1461084f5761031a565b8063c0e72740116100d1578063c0e72740146107c6578063c11a6607146107db578063c6206a55146107f0578063c87b56dd146108055761031a565b8063a3c1b0691461077c578063b12620b714610791578063b88d4fde146107a65761031a565b80638df35728116101645780639768eb141161013e5780639768eb14146107145780639b6aa92f14610734578063a0712d6814610749578063a22cb4651461075c5761031a565b80638df35728146106ca578063938e3d7b146106df57806395d89b41146106ff5761031a565b8063715018a61461064c578063767fa723146106615780638247dcc4146106765780638d859f3e1461068b5780638da5cb5b146106a05780638dd98312146106b55761031a565b8063296af34c1161026a57806349db98fa1161022357806355f804b3116101fd57806355f804b3146105cc5780636352211e146105ec578063649268a41461060c57806370a082311461062c5761031a565b806349db98fa1461056a5780634f6ccce71461057f57806351ebdddc1461059f5761031a565b8063296af34c146104d85780632f745c59146104ed5780633ca4fb761461050d5780633ccfd60b146105225780633ceaba261461053757806342842e0e1461054a5761031a565b806315137045116102d757806318c63f24116102b157806318c63f24146104525780631a2cb10c146104805780631ec13ab31461049557806323b872dd146104b85761031a565b806315137045146103fd57806318160ddd1461041d57806318339aab146104325761031a565b806301ffc9a71461031f57806302bd5ff11461035557806306fdde0314610377578063081812fc14610399578063095ea7b3146103c657806310b0dbee146103e8575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612ab5565b6108d9565b60405161034c9190612d90565b60405180910390f35b34801561036157600080fd5b5061036a610906565b60405161034c91906135ce565b34801561038357600080fd5b5061038c61090c565b60405161034c9190612dc9565b3480156103a557600080fd5b506103b96103b4366004612b5a565b61099e565b60405161034c9190612d00565b3480156103d257600080fd5b506103e66103e1366004612a17565b6109ea565b005b3480156103f457600080fd5b506103e6610a82565b34801561040957600080fd5b506103e661041836600461289d565b610ad2565b34801561042957600080fd5b5061036a610b33565b34801561043e57600080fd5b5061033f61044d3660046129cb565b610b39565b34801561045e57600080fd5b5061047261046d36600461289d565b610b83565b60405161034c929190612d9b565b34801561048c57600080fd5b5061036a610bce565b3480156104a157600080fd5b506104aa610bd4565b60405161034c9291906135d7565b3480156104c457600080fd5b506103e66104d33660046128f0565b610bde565b3480156104e457600080fd5b5061038c610c16565b3480156104f957600080fd5b5061036a610508366004612a17565b610ca4565b34801561051957600080fd5b5061038c610cf6565b34801561052e57600080fd5b506103e6610d03565b6103e6610545366004612b72565b610d75565b34801561055657600080fd5b506103e66105653660046128f0565b61111d565b34801561057657600080fd5b5061036a611138565b34801561058b57600080fd5b5061036a61059a366004612b5a565b61113e565b3480156105ab57600080fd5b506105bf6105ba366004612b5a565b611199565b60405161034c9190612d51565b3480156105d857600080fd5b506103e66105e7366004612aed565b61125d565b3480156105f857600080fd5b506103b9610607366004612b5a565b6112a8565b34801561061857600080fd5b506103e6610627366004612a40565b6112dd565b34801561063857600080fd5b5061036a61064736600461289d565b611418565b34801561065857600080fd5b506103e661145c565b34801561066d57600080fd5b506104aa6114a7565b34801561068257600080fd5b5061036a6114b1565b34801561069757600080fd5b5061036a6114b7565b3480156106ac57600080fd5b506103b96114bd565b3480156106c157600080fd5b506103e66114cc565b3480156106d657600080fd5b5061038c61151a565b3480156106eb57600080fd5b506103e66106fa366004612aed565b611527565b34801561070b57600080fd5b5061038c611572565b34801561072057600080fd5b506103e661072f366004612aed565b611581565b34801561074057600080fd5b5061036a6115cc565b6103e6610757366004612b5a565b6115d2565b34801561076857600080fd5b506103e6610777366004612991565b6117cd565b34801561078857600080fd5b5061036a6117df565b34801561079d57600080fd5b506103b96117e5565b3480156107b257600080fd5b506103e66107c136600461292b565b6117f4565b3480156107d257600080fd5b5061038c61182d565b3480156107e757600080fd5b5061033f61183a565b3480156107fc57600080fd5b5061036a611848565b34801561081157600080fd5b5061038c610820366004612b5a565b61184e565b34801561083157600080fd5b5061036a611985565b34801561084657600080fd5b506104aa61198b565b34801561085b57600080fd5b506103e661086a366004612aed565b611995565b34801561087b57600080fd5b5061038c6119e0565b34801561089057600080fd5b5061033f61089f3660046128be565b6119ef565b3480156108b057600080fd5b506103e66108bf36600461289d565b611a1d565b3480156108d057600080fd5b5061033f611a8e565b60006001600160e01b0319821663780e9d6360e01b14806108fe57506108fe82611a97565b90505b919050565b60115481565b60606000805461091b90613696565b80601f016020809104026020016040519081016040528092919081815260200182805461094790613696565b80156109945780601f1061096957610100808354040283529160200191610994565b820191906000526020600020905b81548152906001019060200180831161097757829003601f168201915b5050505050905090565b60006109a982611ad7565b6109ce5760405162461bcd60e51b81526004016109c590613371565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109f5826112a8565b9050806001600160a01b0316836001600160a01b03161415610a295760405162461bcd60e51b81526004016109c59061343b565b806001600160a01b0316610a3b611af4565b6001600160a01b03161480610a575750610a578161089f611af4565b610a735760405162461bcd60e51b81526004016109c5906131da565b610a7d8383611af8565b505050565b610a8a611af4565b6001600160a01b0316610a9b6114bd565b6001600160a01b031614610ac15760405162461bcd60e51b81526004016109c5906133bd565b6010805461ff001916610100179055565b610ada611af4565b6001600160a01b0316610aeb6114bd565b6001600160a01b031614610b115760405162461bcd60e51b81526004016109c5906133bd565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b60085490565b6000610b6b83604051602001610b4f9190612d00565b6040516020818303038152906040528051906020012083611b66565b601b546001600160a01b039182169116149392505050565b6001600160a01b0381166000908152601560205260408120546065811415610bb15750600190506000610bc9565b8015610bbf57600181610bc4565b600060645b915091505b915091565b60125481565b601254600c549091565b610bef610be9611af4565b82611b8a565b610c0b5760405162461bcd60e51b81526004016109c5906134cf565b610a7d838383611c0f565b60198054610c2390613696565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4f90613696565b8015610c9c5780601f10610c7157610100808354040283529160200191610c9c565b820191906000526020600020905b815481529060010190602001808311610c7f57829003601f168201915b505050505081565b6000610caf83611418565b8210610ccd5760405162461bcd60e51b81526004016109c590612eb8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60188054610c2390613696565b610d0b611af4565b6001600160a01b0316610d1c6114bd565b6001600160a01b031614610d425760405162461bcd60e51b81526004016109c5906133bd565b6040514790339082156108fc029083906000818181858888f19350505050158015610d71573d6000803e3d6000fd5b5050565b60008211610d955760405162461bcd60e51b81526004016109c590613040565b60105460ff16610db75760405162461bcd60e51b81526004016109c590613341565b600e54821115610dd95760405162461bcd60e51b81526004016109c590613599565b600b5482601154610dea91906135f1565b1115610e085760405162461bcd60e51b81526004016109c590612e4a565b3482600f54610e17919061361d565b1115610e355760405162461bcd60e51b81526004016109c590613157565b610e3f3382610b39565b610e5b5760405162461bcd60e51b81526004016109c5906134a2565b336000908152601560205260409020546065811415610ffa576000601160008154610e85906136cb565b91829055509050610e963382611d3c565b600f54604051339180156108fc02916000818181858888f19350505050158015610ec4573d6000803e3d6000fd5b50610ece8461367f565b33600090815260156020526040902060649055601454601154919550610ef3916136e6565b610ff85760006064610f35610f0743611d56565b610f1033611d56565b604051602001610f21929190612c8f565b604051602081830303815290604052611e71565b610f3f91906136e6565b610f4a9060016135f1565b90506000610f6a8260145485610f60919061363c565b61060791906135f1565b6013546040519192506001600160a01b0383169181156108fc0291906000818181858888f19350505050158015610fa5573d6000803e3d6000fd5b50601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0392909216919091179055505b505b60005b83811015611117576000601160008154611016906136cb565b918290555090506110273382611d3c565b60145460115461103791906136e6565b611104576000606461104b610f0743611d56565b61105591906136e6565b6110609060016135f1565b905060006110768260145485610f60919061363c565b6013546040519192506001600160a01b0383169181156108fc0291906000818181858888f193505050501580156110b1573d6000803e3d6000fd5b50601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0392909216919091179055505b508061110f816136cb565b915050610ffd565b50505050565b610a7d838383604051806020016040528060008152506117f4565b60135481565b6000611148610b33565b82106111665760405162461bcd60e51b81526004016109c590613520565b6008828154811061118757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6111a161274d565b60165482106111af57610901565b60005b6020811015611257576016546111c882856135f1565b106111d35750610901565b60166111df82856135f1565b815481106111fd57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001546001600160a01b03169083908390811061123457634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020929092020152611250816136cb565b90506111b2565b50919050565b611265611af4565b6001600160a01b03166112766114bd565b6001600160a01b03161461129c5760405162461bcd60e51b81526004016109c5906133bd565b610a7d6018838361276c565b6000818152600260205260408120546001600160a01b0316806108fe5760405162461bcd60e51b81526004016109c590613281565b6112e5611af4565b6001600160a01b03166112f66114bd565b6001600160a01b03161461131c5760405162461bcd60e51b81526004016109c5906133bd565b80600010801561132d575060658111155b6113495760405162461bcd60e51b81526004016109c59061347c565b60005b8281101561111757600084848381811061137657634e487b7160e01b600052603260045260246000fd5b905060200201602081019061138b919061289d565b6001600160a01b031614156113b25760405162461bcd60e51b81526004016109c590612e13565b81601560008686858181106113d757634e487b7160e01b600052603260045260246000fd5b90506020020160208101906113ec919061289d565b6001600160a01b0316815260208101919091526040016000205580611410816136cb565b91505061134c565b60006001600160a01b0382166114405760405162461bcd60e51b81526004016109c590613237565b506001600160a01b031660009081526003602052604090205490565b611464611af4565b6001600160a01b03166114756114bd565b6001600160a01b03161461149b5760405162461bcd60e51b81526004016109c5906133bd565b6114a56000611ea6565b565b601154600b549091565b600c5481565b600f5481565b600a546001600160a01b031690565b6114d4611af4565b6001600160a01b03166114e56114bd565b6001600160a01b03161461150b5760405162461bcd60e51b81526004016109c5906133bd565b6010805460ff19166001179055565b601a8054610c2390613696565b61152f611af4565b6001600160a01b03166115406114bd565b6001600160a01b0316146115665760405162461bcd60e51b81526004016109c5906133bd565b610a7d6017838361276c565b60606001805461091b90613696565b611589611af4565b6001600160a01b031661159a6114bd565b6001600160a01b0316146115c05760405162461bcd60e51b81526004016109c5906133bd565b610a7d601a838361276c565b600b5481565b600081116115f25760405162461bcd60e51b81526004016109c59061356c565b601054610100900460ff166116195760405162461bcd60e51b81526004016109c590613341565b600e5481111561163b5760405162461bcd60e51b81526004016109c590612fd2565b600c548160125461164c91906135f1565b106116695760405162461bcd60e51b81526004016109c590613009565b3481600f54611678919061361d565b11156116965760405162461bcd60e51b81526004016109c590613157565b60005b81811015610d71576000601254600b546116b391906135f1565b6116be9060016135f1565b90506116ca3382611d3c565b6012600081546116d9906136cb565b909155506014546012546116ed91906136e6565b6117ba5760006064611701610f0743611d56565b61170b91906136e6565b6117169060016135f1565b9050600061172c8260145485610f60919061363c565b6013546040519192506001600160a01b0383169181156108fc0291906000818181858888f19350505050158015611767573d6000803e3d6000fd5b50601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0392909216919091179055505b50806117c5816136cb565b915050611699565b610d716117d8611af4565b8383611ef8565b600d5481565b601b546001600160a01b031681565b6118056117ff611af4565b83611b8a565b6118215760405162461bcd60e51b81526004016109c5906134cf565b61111784848484611f9b565b60178054610c2390613696565b601054610100900460ff1681565b60145481565b606061185982611ad7565b6118755760405162461bcd60e51b81526004016109c590613129565b600b5482116119575760006019805461188d90613696565b90501161192457601880546118a190613696565b80601f01602080910402602001604051908101604052809291908181526020018280546118cd90613696565b801561191a5780601f106118ef5761010080835404028352916020019161191a565b820191906000526020600020905b8154815290600101906020018083116118fd57829003601f168201915b5050505050611950565b601961192f83611d56565b604051602001611940929190612be9565b6040516020818303038152906040525b9050610901565b6000601a805461196690613696565b90501161197a57601880546118a190613696565b601a61192f83611d56565b600e5481565b6011546012549091565b61199d611af4565b6001600160a01b03166119ae6114bd565b6001600160a01b0316146119d45760405162461bcd60e51b81526004016109c5906133bd565b610a7d6019838361276c565b60606017805461091b90613696565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611a25611af4565b6001600160a01b0316611a366114bd565b6001600160a01b031614611a5c5760405162461bcd60e51b81526004016109c5906133bd565b6001600160a01b038116611a825760405162461bcd60e51b81526004016109c590612f55565b611a8b81611ea6565b50565b60105460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480611ac857506001600160e01b03198216635b5e139f60e01b145b806108fe57506108fe82611fce565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b2d826112a8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806000611b758585611fe7565b91509150611b8281612057565b509392505050565b6000611b9582611ad7565b611bb15760405162461bcd60e51b81526004016109c59061318e565b6000611bbc836112a8565b9050806001600160a01b0316846001600160a01b03161480611bf75750836001600160a01b0316611bec8461099e565b6001600160a01b0316145b80611c075750611c0781856119ef565b949350505050565b826001600160a01b0316611c22826112a8565b6001600160a01b031614611c485760405162461bcd60e51b81526004016109c5906133f2565b6001600160a01b038216611c6e5760405162461bcd60e51b81526004016109c59061306c565b611c79838383612184565b611c84600082611af8565b6001600160a01b0383166000908152600360205260408120805460019290611cad90849061363c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cdb9084906135f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d7182826040518060200160405280600081525061220d565b606081611d7b57506040805180820190915260018152600360fc1b6020820152610901565b8160005b8115611da55780611d8f816136cb565b9150611d9e9050600a83613609565b9150611d7f565b60008167ffffffffffffffff811115611dce57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611df8576020820181803683370190505b5090505b8415611c0757611e0d60018361363c565b9150611e1a600a866136e6565b611e259060306135f1565b60f81b818381518110611e4857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e6a600a86613609565b9450611dfc565b6000423a83604051602001611e8893929190612cd3565b60408051601f19818403018152919052805160209091012092915050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f2a5760405162461bcd60e51b81526004016109c5906130b0565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611f8e908590612d90565b60405180910390a3505050565b611fa6848484611c0f565b611fb284848484612240565b6111175760405162461bcd60e51b81526004016109c590612f03565b6001600160e01b031981166301ffc9a760e01b14919050565b60008082516041141561201e5760208301516040840151606085015160001a6120128782858561235b565b94509450505050612050565b825160401415612048576020830151604084015161203d86838361243b565b935093505050612050565b506000905060025b9250929050565b600081600481111561207957634e487b7160e01b600052602160045260246000fd5b141561208457611a8b565b60018160048111156120a657634e487b7160e01b600052602160045260246000fd5b14156120c45760405162461bcd60e51b81526004016109c590612ddc565b60028160048111156120e657634e487b7160e01b600052602160045260246000fd5b14156121045760405162461bcd60e51b81526004016109c590612e81565b600381600481111561212657634e487b7160e01b600052602160045260246000fd5b14156121445760405162461bcd60e51b81526004016109c5906130e7565b600481600481111561216657634e487b7160e01b600052602160045260246000fd5b1415611a8b5760405162461bcd60e51b81526004016109c5906132ca565b61218f838383610a7d565b6001600160a01b0383166121ab576121a68161246a565b6121ce565b816001600160a01b0316836001600160a01b0316146121ce576121ce83826124ae565b6001600160a01b0382166121ea576121e58161254b565b610a7d565b826001600160a01b0316826001600160a01b031614610a7d57610a7d8282612624565b6122178383612668565b6122246000848484612240565b610a7d5760405162461bcd60e51b81526004016109c590612f03565b6000612254846001600160a01b0316612747565b1561235057836001600160a01b031663150b7a02612270611af4565b8786866040518563ffffffff1660e01b81526004016122929493929190612d14565b602060405180830381600087803b1580156122ac57600080fd5b505af19250505080156122dc575060408051601f3d908101601f191682019092526122d991810190612ad1565b60015b612336573d80801561230a576040519150601f19603f3d011682016040523d82523d6000602084013e61230f565b606091505b50805161232e5760405162461bcd60e51b81526004016109c590612f03565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c07565b506001949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156123925750600090506003612432565b8460ff16601b141580156123aa57508460ff16601c14155b156123bb5750600090506004612432565b6000600187878787604051600081526020016040526040516123e09493929190612dab565b6020604051602081039080840390855afa158015612402573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661242b57600060019250925050612432565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161245c8782888561235b565b935093505050935093915050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016124bb84611418565b6124c5919061363c565b600083815260076020526040902054909150808214612518576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061255d9060019061363c565b6000838152600960205260408120546008805493945090928490811061259357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106125c257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061260857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061262f83611418565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661268e5760405162461bcd60e51b81526004016109c59061330c565b61269781611ad7565b156126b45760405162461bcd60e51b81526004016109c590612f9b565b6126c060008383612184565b6001600160a01b03821660009081526003602052604081208054600192906126e99084906135f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6040518061040001604052806020906020820280368337509192915050565b82805461277890613696565b90600052602060002090601f01602090048101928261279a57600085556127e0565b82601f106127b35782800160ff198235161785556127e0565b828001600101855582156127e0579182015b828111156127e05782358255916020019190600101906127c5565b506127ec9291506127f0565b5090565b5b808211156127ec57600081556001016127f1565b80356001600160a01b038116811461090157600080fd5b600082601f83011261282c578081fd5b813567ffffffffffffffff8082111561284757612847613726565b604051601f8301601f19168101602001828111828210171561286b5761286b613726565b604052828152848301602001861015612882578384fd5b82602086016020830137918201602001929092529392505050565b6000602082840312156128ae578081fd5b6128b782612805565b9392505050565b600080604083850312156128d0578081fd5b6128d983612805565b91506128e760208401612805565b90509250929050565b600080600060608486031215612904578081fd5b61290d84612805565b925061291b60208501612805565b9150604084013590509250925092565b60008060008060808587031215612940578081fd5b61294985612805565b935061295760208601612805565b925060408501359150606085013567ffffffffffffffff811115612979578182fd5b6129858782880161281c565b91505092959194509250565b600080604083850312156129a3578182fd5b6129ac83612805565b9150602083013580151581146129c0578182fd5b809150509250929050565b600080604083850312156129dd578182fd5b6129e683612805565b9150602083013567ffffffffffffffff811115612a01578182fd5b612a0d8582860161281c565b9150509250929050565b60008060408385031215612a29578182fd5b612a3283612805565b946020939093013593505050565b600080600060408486031215612a54578283fd5b833567ffffffffffffffff80821115612a6b578485fd5b818601915086601f830112612a7e578485fd5b813581811115612a8c578586fd5b8760208083028501011115612a9f578586fd5b6020928301989097509590910135949350505050565b600060208284031215612ac6578081fd5b81356128b78161373c565b600060208284031215612ae2578081fd5b81516128b78161373c565b60008060208385031215612aff578182fd5b823567ffffffffffffffff80821115612b16578384fd5b818501915085601f830112612b29578384fd5b813581811115612b37578485fd5b866020828501011115612b48578485fd5b60209290920196919550909350505050565b600060208284031215612b6b578081fd5b5035919050565b60008060408385031215612b84578182fd5b82359150602083013567ffffffffffffffff811115612a01578182fd5b60008151808452612bb9816020860160208601613653565b601f01601f19169290920160200192915050565b60008151612bdf818560208601613653565b9290920192915050565b8254600090819060028104600180831680612c0557607f831692505b6020808410821415612c2557634e487b7160e01b87526022600452602487fd5b818015612c395760018114612c4a57612c76565b60ff19861689528489019650612c76565b612c538b6135e5565b885b86811015612c6e5781548b820152908501908301612c55565b505084890196505b505050505050612c868185612bcd565b95945050505050565b60006514995dd85c9960d21b82528351612cb0816006850160208801613653565b835190830190612cc7816006840160208801613653565b01600601949350505050565b60008482528360208301528251612cf1816040850160208701613653565b91909101604001949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d4790830184612ba1565b9695505050505050565b6104008101818360005b6020808210612d6a5750612d87565b82516001600160a01b031684529283019290910190600101612d5b565b50505092915050565b901515815260200190565b9115158252602082015260400190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526128b76020830184612ba1565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252601c908201527f43616e206e6f742061646420746865206e756c6c206164647265737300000000604082015260600190565b6020808252601b908201527f507572636861736520776f756c6420657863656564204c696d69740000000000604082015260600190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f576f756c64206578636565642050555243484153455f4c494d49540000000000604082015260600190565b6020808252601f908201527f507572636861736520776f756c6420657863656564204e575f5055424c494300604082015260600190565b602080825260129082015271373ab6b132b927b32a37b5b2b7399032b93960711b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600c908201526b3234b9a1b7bab73a1032b93960a11b604082015260600190565b6020808252601390820152722bb434ba32a634b9ba1031b432b1b59032b93960691b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b602080825260139082015272373ab6b132b927b32a37b5b2b7399032b9391760691b604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b918252602082015260400190565b60009081526020902090565b60008219821115613604576136046136fa565b500190565b60008261361857613618613710565b500490565b6000816000190483118215151615613637576136376136fa565b500290565b60008282101561364e5761364e6136fa565b500390565b60005b8381101561366e578181015183820152602001613656565b838111156111175750506000910152565b60008161368e5761368e6136fa565b506000190190565b6002810460018216806136aa57607f821691505b6020821081141561125757634e487b7160e01b600052602260045260246000fd5b60006000198214156136df576136df6136fa565b5060010190565b6000826136f5576136f5613710565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a8b57600080fdfea2646970667358221220c27264d16174285c28bf40d339ae4a5b9ac4fbf34c124746332cd4edad8e1f7a64736f6c63430008000033

Deployed Bytecode Sourcemap

54054:6648:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47832:224;;;;;;;;;;-1:-1:-1;47832:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54421:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35326:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36885:221::-;;;;;;;;;;-1:-1:-1;36885:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36408:411::-;;;;;;;;;;-1:-1:-1;36408:411:0;;;;;:::i;:::-;;:::i;:::-;;55089:74;;;;;;;;;;;;;:::i;54900:103::-;;;;;;;;;;-1:-1:-1;54900:103:0;;;;;:::i;:::-;;:::i;48472:113::-;;;;;;;;;;;;;:::i;60511:188::-;;;;;;;;;;-1:-1:-1;60511:188:0;;;;;:::i;:::-;;:::i;56236:262::-;;;;;;;;;;-1:-1:-1;56236:262:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;54455:29::-;;;;;;;;;;;;;:::i;55423:127::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;37635:339::-;;;;;;;;;;-1:-1:-1;37635:339:0;;;;;:::i;:::-;;:::i;54733:35::-;;;;;;;;;;;;;:::i;48140:256::-;;;;;;;;;;-1:-1:-1;48140:256:0;;;;;:::i;:::-;;:::i;54696:32::-;;;;;;;;;;;;;:::i;59211:135::-;;;;;;;;;;;;;:::i;56504:1708::-;;;;;;:::i;:::-;;:::i;38045:185::-;;;;;;;;;;-1:-1:-1;38045:185:0;;;;;:::i;:::-;;:::i;54491:38::-;;;;;;;;;;;;;:::i;48662:233::-;;;;;;;;;;-1:-1:-1;48662:233:0;;;;;:::i;:::-;;:::i;55556:334::-;;;;;;;;;;-1:-1:-1;55556:334:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59453:92::-;;;;;;;;;;-1:-1:-1;59453:92:0;;;;;:::i;:::-;;:::i;35020:239::-;;;;;;;;;;-1:-1:-1;35020:239:0;;;;;:::i;:::-;;:::i;55896:334::-;;;;;;;;;;-1:-1:-1;55896:334:0;;;;;:::i;:::-;;:::i;34750:208::-;;;;;;;;;;-1:-1:-1;34750:208:0;;;;;:::i;:::-;;:::i;14296:103::-;;;;;;;;;;;;;:::i;55289:128::-;;;;;;;;;;;;;:::i;54177:31::-;;;;;;;;;;;;;:::i;54303:33::-;;;;;;;;;;;;;:::i;13645:87::-;;;;;;;;;;;;;:::i;55009:74::-;;;;;;;;;;;;;:::i;54773:35::-;;;;;;;;;;;;;:::i;59352:95::-;;;;;;;;;;-1:-1:-1;59352:95:0;;;;;:::i;:::-;;:::i;35495:104::-;;;;;;;;;;;;;:::i;59655:102::-;;;;;;;;;;-1:-1:-1;59655:102:0;;;;;:::i;:::-;;:::i;54140:32::-;;;;;;;;;;;;;:::i;58218:987::-;;;;;;:::i;:::-;;:::i;37178:155::-;;;;;;;;;;-1:-1:-1;37178:155:0;;;;;:::i;:::-;;:::i;54213:46::-;;;;;;;;;;;;;:::i;54813:27::-;;;;;;;;;;;;;:::i;38301:328::-;;;;;;;;;;-1:-1:-1;38301:328:0;;;;;:::i;:::-;;:::i;54660:31::-;;;;;;;;;;;;;:::i;54380:32::-;;;;;;;;;;;;;:::i;54534:31::-;;;;;;;;;;;;;:::i;59860:469::-;;;;;;;;;;-1:-1:-1;59860:469:0;;;;;:::i;:::-;;:::i;54264:34::-;;;;;;;;;;;;;:::i;55169:114::-;;;;;;;;;;;;;:::i;59551:98::-;;;;;;;;;;-1:-1:-1;59551:98:0;;;;;:::i;:::-;;:::i;59763:91::-;;;;;;;;;;;;;:::i;37404:164::-;;;;;;;;;;-1:-1:-1;37404:164:0;;;;;:::i;:::-;;:::i;14554:201::-;;;;;;;;;;-1:-1:-1;14554:201:0;;;;;:::i;:::-;;:::i;54343:32::-;;;;;;;;;;;;;:::i;47832:224::-;47934:4;-1:-1:-1;;;;;;47958:50:0;;-1:-1:-1;;;47958:50:0;;:90;;;48012:36;48036:11;48012:23;:36::i;:::-;47951:97;;47832:224;;;;:::o;54421:29::-;;;;:::o;35326:100::-;35380:13;35413:5;35406:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35326:100;:::o;36885:221::-;36961:7;36989:16;36997:7;36989;:16::i;:::-;36981:73;;;;-1:-1:-1;;;36981:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;37074:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37074:24:0;;36885:221::o;36408:411::-;36489:13;36505:23;36520:7;36505:14;:23::i;:::-;36489:39;;36553:5;-1:-1:-1;;;;;36547:11:0;:2;-1:-1:-1;;;;;36547:11:0;;;36539:57;;;;-1:-1:-1;;;36539:57:0;;;;;;;:::i;:::-;36647:5;-1:-1:-1;;;;;36631:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;36631:21:0;;:62;;;;36656:37;36673:5;36680:12;:10;:12::i;36656:37::-;36609:168;;;;-1:-1:-1;;;36609:168:0;;;;;;;:::i;:::-;36790:21;36799:2;36803:7;36790:8;:21::i;:::-;36408:411;;;:::o;55089:74::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;55138:12:::1;:19:::0;;-1:-1:-1;;55138:19:0::1;;;::::0;;55089:74::o;54900:103::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;54971:12:::1;:26:::0;;-1:-1:-1;;;;;;54971:26:0::1;-1:-1:-1::0;;;;;54971:26:0;;;::::1;::::0;;;::::1;::::0;;54900:103::o;48472:113::-;48560:10;:17;48472:113;:::o;60511:188::-;60602:4;60638:55;60673:6;60662:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;60652:29;;;;;;60683:9;60638:13;:55::i;:::-;60622:12;;-1:-1:-1;;;;;60622:71:0;;;:12;;:71;;60511:188;-1:-1:-1;;;60511:188:0:o;56236:262::-;-1:-1:-1;;;;;56342:17:0;;56290:12;56342:17;;;:11;:17;;;;;;56384:3;56372:15;;56368:60;;;-1:-1:-1;56410:4:0;;-1:-1:-1;56416:1:0;56402:16;;56368:60;56445:13;;:47;;56477:4;56483:8;56445:47;;;56462:5;56469:3;56445:47;56438:54;;;;56236:262;;;;:::o;54455:29::-;;;;:::o;55423:127::-;55518:14;;55534:9;;55423:127;;:::o;37635:339::-;37830:41;37849:12;:10;:12::i;:::-;37863:7;37830:18;:41::i;:::-;37822:103;;;;-1:-1:-1;;;37822:103:0;;;;;;;:::i;:::-;37938:28;37948:4;37954:2;37958:7;37938:9;:28::i;54733:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48140:256::-;48237:7;48273:23;48290:5;48273:16;:23::i;:::-;48265:5;:31;48257:87;;;;-1:-1:-1;;;48257:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;48362:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48140:256::o;54696:32::-;;;;;;;:::i;59211:135::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;59303:37:::1;::::0;59275:21:::1;::::0;59311:10:::1;::::0;59303:37;::::1;;;::::0;59275:21;;59257:15:::1;59303:37:::0;59257:15;59303:37;59275:21;59311:10;59303:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;13936:1;59211:135::o:0;56504:1708::-;56617:1;56600:14;:18;56592:49;;;;-1:-1:-1;;;56592:49:0;;;;;;;:::i;:::-;56656:12;;;;56648:47;;;;-1:-1:-1;;;56648:47:0;;;;;;;:::i;:::-;56728:14;;56710;:32;;56702:77;;;;-1:-1:-1;;;56702:77:0;;;;;;;:::i;:::-;56829:10;;56811:14;56794;;:31;;;;:::i;:::-;:45;;56786:85;;;;-1:-1:-1;;;56786:85:0;;;;;;;:::i;:::-;56912:9;56894:14;56886:5;;:22;;;;:::i;:::-;:35;;56878:76;;;;-1:-1:-1;;;56878:76:0;;;;;;;:::i;:::-;56969:43;56990:10;57002:9;56969:20;:43::i;:::-;56961:75;;;;-1:-1:-1;;;56961:75:0;;;;;;;:::i;:::-;57076:10;57045:16;57064:23;;;:11;:23;;;;;;57110:3;57098:15;;57094:596;;;57124:15;57144:14;;57142:16;;;;;:::i;:::-;;;;;-1:-1:-1;57142:16:0;-1:-1:-1;57169:30:0;57179:10;57142:16;57169:9;:30::i;:::-;57237:5;;57208:35;;57216:10;;57208:35;;;;;;;;;57237:5;57216:10;57208:35;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57254:16:0;;;:::i;:::-;57291:10;57279:23;;;;:11;:23;;;;;57305:3;57279:29;;57340:10;;57323:14;;57254:16;;-1:-1:-1;57323:27:0;;;:::i;:::-;57319:364;;57368:14;57500:3;57385:112;57430:23;:12;:21;:23::i;:::-;57455:39;57471:10;57455:37;:39::i;:::-;57403:92;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57385:10;:112::i;:::-;:118;;;;:::i;:::-;:122;;57506:1;57385:122;:::i;:::-;57368:139;;57518:19;57540:38;57571:6;57558:10;;57548:7;:20;;;;:::i;:::-;:29;;;;:::i;57540:38::-;57619:13;;57589:44;;57518:60;;-1:-1:-1;;;;;;57589:29:0;;;:44;;;;;57619:13;57589:44;;;;57619:13;57589:29;:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57644:11:0;:29;;;;;;;-1:-1:-1;57644:29:0;;;;;;;;-1:-1:-1;;;;;;57644:29:0;-1:-1:-1;;;;;57644:29:0;;;;;;;;;;-1:-1:-1;57319:364:0;57094:596;;57703:9;57698:509;57722:14;57718:1;:18;57698:509;;;57752:15;57772:14;;57770:16;;;;;:::i;:::-;;;;;-1:-1:-1;57770:16:0;-1:-1:-1;57795:30:0;57805:10;57770:16;57795:9;:30::i;:::-;57857:10;;57840:14;;:27;;;;:::i;:::-;57836:364;;57885:14;58017:3;57902:112;57947:23;:12;:21;:23::i;57902:112::-;:118;;;;:::i;:::-;:122;;58023:1;57902:122;:::i;:::-;57885:139;;58035:19;58057:38;58088:6;58075:10;;58065:7;:20;;;;:::i;58057:38::-;58136:13;;58106:44;;58035:60;;-1:-1:-1;;;;;;58106:29:0;;;:44;;;;;58136:13;58106:44;;;;58136:13;58106:29;:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58161:11:0;:29;;;;;;;-1:-1:-1;58161:29:0;;;;;;;;-1:-1:-1;;;;;;58161:29:0;-1:-1:-1;;;;;58161:29:0;;;;;;;;;;-1:-1:-1;57836:364:0;-1:-1:-1;57738:3:0;;;;:::i;:::-;;;;57698:509;;;;56504:1708;;;:::o;38045:185::-;38183:39;38200:4;38206:2;38210:7;38183:39;;;;;;;;;;;;:16;:39::i;54491:38::-;;;;:::o;48662:233::-;48737:7;48773:30;:28;:30::i;:::-;48765:5;:38;48757:95;;;;-1:-1:-1;;;48757:95:0;;;;;;;:::i;:::-;48870:10;48881:5;48870:17;;;;;;-1:-1:-1;;;48870:17:0;;;;;;;;;;;;;;;;;48863:24;;48662:233;;;:::o;55556:334::-;55619:25;;:::i;:::-;55666:11;:18;55657:27;;55653:63;;55695:13;;55653:63;55729:9;55724:161;55744:2;55742:1;:4;55724:161;;;55779:11;:18;55766:9;55774:1;55766:5;:9;:::i;:::-;:31;55762:71;;55810:13;;;55762:71;55855:11;55867:9;55875:1;55867:5;:9;:::i;:::-;55855:22;;;;;;-1:-1:-1;;;55855:22:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55855:22:0;;55843:6;;55850:1;;55843:9;;;;-1:-1:-1;;;55843:9:0;;;;;;;;;-1:-1:-1;;;;;55843:34:0;;;:9;;;;;;:34;55748:3;;;:::i;:::-;;;55724:161;;;;55556:334;;;:::o;59453:92::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;59520:19:::1;:13;59536:3:::0;;59520:19:::1;:::i;35020:239::-:0;35092:7;35128:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35128:16:0;35163:19;35155:73;;;;-1:-1:-1;;;35155:73:0;;;;;;;:::i;55896:334::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;55997:8:::1;55993:1;:12;:30;;;;;56020:3;56009:8;:14;;55993:30;55985:55;;;;-1:-1:-1::0;;;55985:55:0::1;;;;;;;:::i;:::-;56054:9;56049:176;56069:20:::0;;::::1;56049:176;;;56137:1;56113:9:::0;;56123:1;56113:12;;::::1;;;-1:-1:-1::0;;;56113:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56113:26:0::1;;;56105:67;;;;-1:-1:-1::0;;;56105:67:0::1;;;;;;;:::i;:::-;56209:8;56181:11;:25;56193:9;;56203:1;56193:12;;;;;-1:-1:-1::0;;;56193:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56181:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56181:25:0;:36;56091:3;::::1;::::0;::::1;:::i;:::-;;;;56049:176;;34750:208:::0;34822:7;-1:-1:-1;;;;;34850:19:0;;34842:74;;;;-1:-1:-1;;;34842:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;34934:16:0;;;;;:9;:16;;;;;;;34750:208::o;14296:103::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;14361:30:::1;14388:1;14361:18;:30::i;:::-;14296:103::o:0;55289:128::-;55384:14;;55400:10;;55289:128;;:::o;54177:31::-;;;;:::o;54303:33::-;;;;:::o;13645:87::-;13718:6;;-1:-1:-1;;;;;13718:6:0;13645:87;:::o;55009:74::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;55058:12:::1;:19:::0;;-1:-1:-1;;55058:19:0::1;55073:4;55058:19;::::0;;55009:74::o;54773:35::-;;;;;;;:::i;59352:95::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;59423:18:::1;:12;59438:3:::0;;59423:18:::1;:::i;35495:104::-:0;35551:13;35584:7;35577:14;;;;;:::i;59655:102::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;59729:22:::1;:16;59748:3:::0;;59729:22:::1;:::i;54140:32::-:0;;;;:::o;58218:987::-;58305:1;58288:14;:18;58280:50;;;;-1:-1:-1;;;58280:50:0;;;;;;;:::i;:::-;58345:12;;;;;;;58337:47;;;;-1:-1:-1;;;58337:47:0;;;;;;;:::i;:::-;58417:14;;58399;:32;;58391:72;;;;-1:-1:-1;;;58391:72:0;;;;;;;:::i;:::-;58512:9;;58495:14;58478;;:31;;;;:::i;:::-;:43;58470:87;;;;-1:-1:-1;;;58470:87:0;;;;;;;:::i;:::-;58598:9;58580:14;58572:5;;:22;;;;:::i;:::-;:35;;58564:76;;;;-1:-1:-1;;;58564:76:0;;;;;;;:::i;:::-;58654:9;58649:551;58673:14;58669:1;:18;58649:551;;;58703:15;58734:14;;58721:10;;:27;;;;:::i;:::-;:31;;58751:1;58721:31;:::i;:::-;58703:49;;58763:30;58773:10;58785:7;58763:9;:30::i;:::-;58804:14;;58802:16;;;;;:::i;:::-;;;;-1:-1:-1;58850:10:0;;58833:14;;:27;;58850:10;58833:27;:::i;:::-;58829:364;;58878:14;59010:3;58895:112;58940:23;:12;:21;:23::i;58895:112::-;:118;;;;:::i;:::-;:122;;59016:1;58895:122;:::i;:::-;58878:139;;59028:19;59050:38;59081:6;59068:10;;59058:7;:20;;;;:::i;59050:38::-;59129:13;;59099:44;;59028:60;;-1:-1:-1;;;;;;59099:29:0;;;:44;;;;;59129:13;59099:44;;;;59129:13;59099:29;:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59154:11:0;:29;;;;;;;-1:-1:-1;59154:29:0;;;;;;;;-1:-1:-1;;;;;;59154:29:0;-1:-1:-1;;;;;59154:29:0;;;;;;;;;;-1:-1:-1;58829:364:0;-1:-1:-1;58689:3:0;;;;:::i;:::-;;;;58649:551;;37178:155;37273:52;37292:12;:10;:12::i;:::-;37306:8;37316;37273:18;:52::i;54213:46::-;;;;:::o;54813:27::-;;;-1:-1:-1;;;;;54813:27:0;;:::o;38301:328::-;38476:41;38495:12;:10;:12::i;:::-;38509:7;38476:18;:41::i;:::-;38468:103;;;;-1:-1:-1;;;38468:103:0;;;;;;;:::i;:::-;38582:39;38596:4;38602:2;38606:7;38615:5;38582:13;:39::i;54660:31::-;;;;;;;:::i;54380:32::-;;;;;;;;;:::o;54534:31::-;;;;:::o;59860:469::-;59933:13;59963:16;59971:7;59963;:16::i;:::-;59955:49;;;;-1:-1:-1;;;59955:49:0;;;;;;;:::i;:::-;60028:10;;60017:7;:21;60013:311;;60089:1;60062:16;60056:30;;;;;:::i;:::-;;;:34;:115;;60158:13;60056:115;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60117:16;60135:18;:7;:16;:18::i;:::-;60100:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60056:115;60049:122;;;;60013:311;60234:1;60207:16;60201:30;;;;;:::i;:::-;;;:34;:115;;60303:13;60201:115;;;;;:::i;:::-;60262:16;60280:18;:7;:16;:18::i;54264:34::-;;;;:::o;55169:114::-;55246:14;;55262;;55169:114;;:::o;59551:98::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;59621:22:::1;:16;59640:3:::0;;59621:22:::1;:::i;59763:91::-:0;59807:13;59836:12;59829:19;;;;;:::i;37404:164::-;-1:-1:-1;;;;;37525:25:0;;;37501:4;37525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37404:164::o;14554:201::-;13876:12;:10;:12::i;:::-;-1:-1:-1;;;;;13865:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;13865:23:0;;13857:68;;;;-1:-1:-1;;;13857:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14643:22:0;::::1;14635:73;;;;-1:-1:-1::0;;;14635:73:0::1;;;;;;;:::i;:::-;14719:28;14738:8;14719:18;:28::i;:::-;14554:201:::0;:::o;54343:32::-;;;;;;:::o;34381:305::-;34483:4;-1:-1:-1;;;;;;34520:40:0;;-1:-1:-1;;;34520:40:0;;:105;;-1:-1:-1;;;;;;;34577:48:0;;-1:-1:-1;;;34577:48:0;34520:105;:158;;;;34642:36;34666:11;34642:23;:36::i;40139:127::-;40204:4;40228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40228:16:0;:30;;;40139:127::o;12369:98::-;12449:10;12369:98;:::o;44121:174::-;44196:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44196:29:0;-1:-1:-1;;;;;44196:29:0;;;;;;;;:24;;44250:23;44196:24;44250:14;:23::i;:::-;-1:-1:-1;;;;;44241:46:0;;;;;;;;;;;44121:174;;:::o;6526:231::-;6604:7;6625:17;6644:18;6666:27;6677:4;6683:9;6666:10;:27::i;:::-;6624:69;;;;6704:18;6716:5;6704:11;:18::i;:::-;-1:-1:-1;6740:9:0;6526:231;-1:-1:-1;;;6526:231:0:o;40433:348::-;40526:4;40551:16;40559:7;40551;:16::i;:::-;40543:73;;;;-1:-1:-1;;;40543:73:0;;;;;;;:::i;:::-;40627:13;40643:23;40658:7;40643:14;:23::i;:::-;40627:39;;40696:5;-1:-1:-1;;;;;40685:16:0;:7;-1:-1:-1;;;;;40685:16:0;;:51;;;;40729:7;-1:-1:-1;;;;;40705:31:0;:20;40717:7;40705:11;:20::i;:::-;-1:-1:-1;;;;;40705:31:0;;40685:51;:87;;;;40740:32;40757:5;40764:7;40740:16;:32::i;:::-;40677:96;40433:348;-1:-1:-1;;;;40433:348:0:o;43425:578::-;43584:4;-1:-1:-1;;;;;43557:31:0;:23;43572:7;43557:14;:23::i;:::-;-1:-1:-1;;;;;43557:31:0;;43549:85;;;;-1:-1:-1;;;43549:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43653:16:0;;43645:65;;;;-1:-1:-1;;;43645:65:0;;;;;;;:::i;:::-;43723:39;43744:4;43750:2;43754:7;43723:20;:39::i;:::-;43827:29;43844:1;43848:7;43827:8;:29::i;:::-;-1:-1:-1;;;;;43869:15:0;;;;;;:9;:15;;;;;:20;;43888:1;;43869:15;:20;;43888:1;;43869:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43900:13:0;;;;;;:9;:13;;;;;:18;;43917:1;;43900:13;:18;;43917:1;;43900:18;:::i;:::-;;;;-1:-1:-1;;43929:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43929:21:0;-1:-1:-1;;;;;43929:21:0;;;;;;;;;43968:27;;43929:16;;43968:27;;;;;;;43425:578;;;:::o;41123:110::-;41199:26;41209:2;41213:7;41199:26;;;;;;;;;;;;:9;:26::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;;638:53;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;60335:170;60401:7;60459:15;60476:11;60489:7;60442:55;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;60442:55:0;;;;;;;;;60432:66;;60442:55;60432:66;;;;;60335:170;-1:-1:-1;;60335:170:0:o;14915:191::-;15008:6;;;-1:-1:-1;;;;;15025:17:0;;;-1:-1:-1;;;;;;15025:17:0;;;;;;;15058:40;;15008:6;;;15025:17;15008:6;;15058:40;;14989:16;;15058:40;14915:191;;:::o;44437:315::-;44592:8;-1:-1:-1;;;;;44583:17:0;:5;-1:-1:-1;;;;;44583:17:0;;;44575:55;;;;-1:-1:-1;;;44575:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44641:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;44641:46:0;;;;;;;44703:41;;;;;44641:46;;44703:41;:::i;:::-;;;;;;;;44437:315;;;:::o;39511:::-;39668:28;39678:4;39684:2;39688:7;39668:9;:28::i;:::-;39715:48;39738:4;39744:2;39748:7;39757:5;39715:22;:48::i;:::-;39707:111;;;;-1:-1:-1;;;39707:111:0;;;;;;;:::i;26077:157::-;-1:-1:-1;;;;;;26186:40:0;;-1:-1:-1;;;26186:40:0;26077:157;;;:::o;4416:1308::-;4497:7;4506:12;4731:9;:16;4751:2;4731:22;4727:990;;;5027:4;5012:20;;5006:27;5077:4;5062:20;;5056:27;5135:4;5120:20;;5114:27;4770:9;5106:36;5178:25;5189:4;5106:36;5006:27;5056;5178:10;:25::i;:::-;5171:32;;;;;;;;;4727:990;5225:9;:16;5245:2;5225:22;5221:496;;;5500:4;5485:20;;5479:27;5551:4;5536:20;;5530:27;5593:23;5604:4;5479:27;5530;5593:10;:23::i;:::-;5586:30;;;;;;;;5221:496;-1:-1:-1;5665:1:0;;-1:-1:-1;5669:35:0;5221:496;4416:1308;;;;;:::o;2687:643::-;2765:20;2756:5;:29;;;;;;-1:-1:-1;;;2756:29:0;;;;;;;;;;2752:571;;;2802:7;;2752:571;2863:29;2854:5;:38;;;;;;-1:-1:-1;;;2854:38:0;;;;;;;;;;2850:473;;;2909:34;;-1:-1:-1;;;2909:34:0;;;;;;;:::i;2850:473::-;2974:35;2965:5;:44;;;;;;-1:-1:-1;;;2965:44:0;;;;;;;;;;2961:362;;;3026:41;;-1:-1:-1;;;3026:41:0;;;;;;;:::i;2961:362::-;3098:30;3089:5;:39;;;;;;-1:-1:-1;;;3089:39:0;;;;;;;;;;3085:238;;;3145:44;;-1:-1:-1;;;3145:44:0;;;;;;;:::i;3085:238::-;3220:30;3211:5;:39;;;;;;-1:-1:-1;;;3211:39:0;;;;;;;;;;3207:116;;;3267:44;;-1:-1:-1;;;3267:44:0;;;;;;;:::i;49508:589::-;49652:45;49679:4;49685:2;49689:7;49652:26;:45::i;:::-;-1:-1:-1;;;;;49714:18:0;;49710:187;;49749:40;49781:7;49749:31;:40::i;:::-;49710:187;;;49819:2;-1:-1:-1;;;;;49811:10:0;:4;-1:-1:-1;;;;;49811:10:0;;49807:90;;49838:47;49871:4;49877:7;49838:32;:47::i;:::-;-1:-1:-1;;;;;49911:16:0;;49907:183;;49944:45;49981:7;49944:36;:45::i;:::-;49907:183;;;50017:4;-1:-1:-1;;;;;50011:10:0;:2;-1:-1:-1;;;;;50011:10:0;;50007:83;;50038:40;50066:2;50070:7;50038:27;:40::i;41460:321::-;41590:18;41596:2;41600:7;41590:5;:18::i;:::-;41641:54;41672:1;41676:2;41680:7;41689:5;41641:22;:54::i;:::-;41619:154;;;;-1:-1:-1;;;41619:154:0;;;;;;;:::i;45317:799::-;45472:4;45493:15;:2;-1:-1:-1;;;;;45493:13:0;;:15::i;:::-;45489:620;;;45545:2;-1:-1:-1;;;;;45529:36:0;;45566:12;:10;:12::i;:::-;45580:4;45586:7;45595:5;45529:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45529:72:0;;;;;;;;-1:-1:-1;;45529:72:0;;;;;;;;;;;;:::i;:::-;;;45525:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45771:13:0;;45767:272;;45814:60;;-1:-1:-1;;;45814:60:0;;;;;;;:::i;45767:272::-;45989:6;45983:13;45974:6;45970:2;45966:15;45959:38;45525:529;-1:-1:-1;;;;;;45652:51:0;-1:-1:-1;;;45652:51:0;;-1:-1:-1;45645:58:0;;45489:620;-1:-1:-1;46093:4:0;45317:799;;;;;;:::o;8025:1632::-;8156:7;;9090:66;9077:79;;9073:163;;;-1:-1:-1;9189:1:0;;-1:-1:-1;9193:30:0;9173:51;;9073:163;9250:1;:7;;9255:2;9250:7;;:18;;;;;9261:1;:7;;9266:2;9261:7;;9250:18;9246:102;;;-1:-1:-1;9301:1:0;;-1:-1:-1;9305:30:0;9285:51;;9246:102;9445:14;9462:24;9472:4;9478:1;9481;9484;9462:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9462:24:0;;-1:-1:-1;;9462:24:0;;;-1:-1:-1;;;;;;;9501:20:0;;9497:103;;9554:1;9558:29;9538:50;;;;;;;9497:103;9620:6;-1:-1:-1;9628:20:0;;-1:-1:-1;8025:1632:0;;;;;;;;:::o;7020:391::-;7134:7;;-1:-1:-1;;;;;7235:75:0;;7337:3;7333:12;;;7347:2;7329:21;7378:25;7389:4;7329:21;7398:1;7235:75;7378:10;:25::i;:::-;7371:32;;;;;;7020:391;;;;;;:::o;50820:164::-;50924:10;:17;;50897:24;;;;:15;:24;;;;;:44;;;50952:24;;;;;;;;;;;;50820:164::o;51611:988::-;51877:22;51927:1;51902:22;51919:4;51902:16;:22::i;:::-;:26;;;;:::i;:::-;51939:18;51960:26;;;:17;:26;;;;;;51877:51;;-1:-1:-1;52093:28:0;;;52089:328;;-1:-1:-1;;;;;52160:18:0;;52138:19;52160:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52211:30;;;;;;:44;;;52328:30;;:17;:30;;;;;:43;;;52089:328;-1:-1:-1;52513:26:0;;;;:17;:26;;;;;;;;52506:33;;;-1:-1:-1;;;;;52557:18:0;;;;;:12;:18;;;;;:34;;;;;;;52550:41;51611:988::o;52894:1079::-;53172:10;:17;53147:22;;53172:21;;53192:1;;53172:21;:::i;:::-;53204:18;53225:24;;;:15;:24;;;;;;53598:10;:26;;53147:46;;-1:-1:-1;53225:24:0;;53147:46;;53598:26;;;;-1:-1:-1;;;53598:26:0;;;;;;;;;;;;;;;;;53576:48;;53662:11;53637:10;53648;53637:22;;;;;;-1:-1:-1;;;53637:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;53742:28;;;:15;:28;;;;;;;:41;;;53914:24;;;;;53907:31;53949:10;:16;;;;;-1:-1:-1;;;53949:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;52894:1079;;;;:::o;50398:221::-;50483:14;50500:20;50517:2;50500:16;:20::i;:::-;-1:-1:-1;;;;;50531:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50576:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50398:221:0:o;42117:382::-;-1:-1:-1;;;;;42197:16:0;;42189:61;;;;-1:-1:-1;;;42189:61:0;;;;;;;:::i;:::-;42270:16;42278:7;42270;:16::i;:::-;42269:17;42261:58;;;;-1:-1:-1;;;42261:58:0;;;;;;;:::i;:::-;42332:45;42361:1;42365:2;42369:7;42332:20;:45::i;:::-;-1:-1:-1;;;;;42390:13:0;;;;;;:9;:13;;;;;:18;;42407:1;;42390:13;:18;;42407:1;;42390:18;:::i;:::-;;;;-1:-1:-1;;42419:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42419:21:0;-1:-1:-1;;;;;42419:21:0;;;;;;;;42458:33;;42419:16;;;42458:33;;42419:16;;42458:33;42117:382;;:::o;15933:387::-;16256:20;16304:8;;;15933:387::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:175:1;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:712;;291:3;284:4;276:6;272:17;268:27;258:2;;313:5;306;299:20;258:2;353:6;340:20;379:18;416:2;412;409:10;406:2;;;422:18;;:::i;:::-;471:2;465:9;540:2;521:13;;-1:-1:-1;;517:27:1;505:40;;547:4;501:51;567:18;;;587:22;;;564:46;561:2;;;613:18;;:::i;:::-;649:2;642:22;673:18;;;710:15;;;727:4;706:26;703:35;-1:-1:-1;700:2:1;;;755:5;748;741:20;700:2;823;816:4;808:6;804:17;797:4;789:6;785:17;772:54;846:15;;;863:4;842:26;835:41;;;;850:6;248:658;-1:-1:-1;;;248:658:1:o;911:198::-;;1023:2;1011:9;1002:7;998:23;994:32;991:2;;;1044:6;1036;1029:22;991:2;1072:31;1093:9;1072:31;:::i;:::-;1062:41;981:128;-1:-1:-1;;;981:128:1:o;1114:274::-;;;1243:2;1231:9;1222:7;1218:23;1214:32;1211:2;;;1264:6;1256;1249:22;1211:2;1292:31;1313:9;1292:31;:::i;:::-;1282:41;;1342:40;1378:2;1367:9;1363:18;1342:40;:::i;:::-;1332:50;;1201:187;;;;;:::o;1393:342::-;;;;1539:2;1527:9;1518:7;1514:23;1510:32;1507:2;;;1560:6;1552;1545:22;1507:2;1588:31;1609:9;1588:31;:::i;:::-;1578:41;;1638:40;1674:2;1663:9;1659:18;1638:40;:::i;:::-;1628:50;;1725:2;1714:9;1710:18;1697:32;1687:42;;1497:238;;;;;:::o;1740:563::-;;;;;1912:3;1900:9;1891:7;1887:23;1883:33;1880:2;;;1934:6;1926;1919:22;1880:2;1962:31;1983:9;1962:31;:::i;:::-;1952:41;;2012:40;2048:2;2037:9;2033:18;2012:40;:::i;:::-;2002:50;;2099:2;2088:9;2084:18;2071:32;2061:42;;2154:2;2143:9;2139:18;2126:32;2181:18;2173:6;2170:30;2167:2;;;2218:6;2210;2203:22;2167:2;2246:51;2289:7;2280:6;2269:9;2265:22;2246:51;:::i;:::-;2236:61;;;1870:433;;;;;;;:::o;2308:369::-;;;2434:2;2422:9;2413:7;2409:23;2405:32;2402:2;;;2455:6;2447;2440:22;2402:2;2483:31;2504:9;2483:31;:::i;:::-;2473:41;;2564:2;2553:9;2549:18;2536:32;2611:5;2604:13;2597:21;2590:5;2587:32;2577:2;;2638:6;2630;2623:22;2577:2;2666:5;2656:15;;;2392:285;;;;;:::o;2682:418::-;;;2820:2;2808:9;2799:7;2795:23;2791:32;2788:2;;;2841:6;2833;2826:22;2788:2;2869:31;2890:9;2869:31;:::i;:::-;2859:41;;2951:2;2940:9;2936:18;2923:32;2978:18;2970:6;2967:30;2964:2;;;3015:6;3007;3000:22;2964:2;3043:51;3086:7;3077:6;3066:9;3062:22;3043:51;:::i;:::-;3033:61;;;2778:322;;;;;:::o;3105:266::-;;;3234:2;3222:9;3213:7;3209:23;3205:32;3202:2;;;3255:6;3247;3240:22;3202:2;3283:31;3304:9;3283:31;:::i;:::-;3273:41;3361:2;3346:18;;;;3333:32;;-1:-1:-1;;;3192:179:1:o;3376:742::-;;;;3540:2;3528:9;3519:7;3515:23;3511:32;3508:2;;;3561:6;3553;3546:22;3508:2;3606:9;3593:23;3635:18;3676:2;3668:6;3665:14;3662:2;;;3697:6;3689;3682:22;3662:2;3740:6;3729:9;3725:22;3715:32;;3785:7;3778:4;3774:2;3770:13;3766:27;3756:2;;3812:6;3804;3797:22;3756:2;3857;3844:16;3883:2;3875:6;3872:14;3869:2;;;3904:6;3896;3889:22;3869:2;3967:7;3960:4;3952;3944:6;3940:17;3936:2;3932:26;3928:37;3925:50;3922:2;;;3993:6;3985;3978:22;3922:2;4029:4;4021:13;;;;4053:6;;-1:-1:-1;4091:20:1;;;;4078:34;;3498:620;-1:-1:-1;;;;3498:620:1:o;4123:257::-;;4234:2;4222:9;4213:7;4209:23;4205:32;4202:2;;;4255:6;4247;4240:22;4202:2;4299:9;4286:23;4318:32;4344:5;4318:32;:::i;4385:261::-;;4507:2;4495:9;4486:7;4482:23;4478:32;4475:2;;;4528:6;4520;4513:22;4475:2;4565:9;4559:16;4584:32;4610:5;4584:32;:::i;4651:642::-;;;4783:2;4771:9;4762:7;4758:23;4754:32;4751:2;;;4804:6;4796;4789:22;4751:2;4849:9;4836:23;4878:18;4919:2;4911:6;4908:14;4905:2;;;4940:6;4932;4925:22;4905:2;4983:6;4972:9;4968:22;4958:32;;5028:7;5021:4;5017:2;5013:13;5009:27;4999:2;;5055:6;5047;5040:22;4999:2;5100;5087:16;5126:2;5118:6;5115:14;5112:2;;;5147:6;5139;5132:22;5112:2;5197:7;5192:2;5183:6;5179:2;5175:15;5171:24;5168:37;5165:2;;;5223:6;5215;5208:22;5165:2;5259;5251:11;;;;;5281:6;;-1:-1:-1;4741:552:1;;-1:-1:-1;;;;4741:552:1:o;5298:190::-;;5410:2;5398:9;5389:7;5385:23;5381:32;5378:2;;;5431:6;5423;5416:22;5378:2;-1:-1:-1;5459:23:1;;5368:120;-1:-1:-1;5368:120:1:o;5493:410::-;;;5631:2;5619:9;5610:7;5606:23;5602:32;5599:2;;;5652:6;5644;5637:22;5599:2;5693:9;5680:23;5670:33;;5754:2;5743:9;5739:18;5726:32;5781:18;5773:6;5770:30;5767:2;;;5818:6;5810;5803:22;5908:259;;5989:5;5983:12;6016:6;6011:3;6004:19;6032:63;6088:6;6081:4;6076:3;6072:14;6065:4;6058:5;6054:16;6032:63;:::i;:::-;6149:2;6128:15;-1:-1:-1;;6124:29:1;6115:39;;;;6156:4;6111:50;;5959:208;-1:-1:-1;;5959:208:1:o;6172:187::-;;6254:5;6248:12;6269:52;6314:6;6309:3;6302:4;6295:5;6291:16;6269:52;:::i;:::-;6337:16;;;;;6224:135;-1:-1:-1;;6224:135:1:o;6364:1181::-;6598:13;;6364:1181;;;;6671:1;6656:17;;6692:1;6728:18;;;;6755:2;;6809:4;6801:6;6797:17;6787:27;;6755:2;6835;6883;6875:6;6872:14;6852:18;6849:38;6846:2;;;-1:-1:-1;;;6910:33:1;;6966:4;6963:1;6956:15;6996:4;6917:3;6984:17;6846:2;7027:18;7054:104;;;;7172:1;7167:324;;;;7020:471;;7054:104;-1:-1:-1;;7087:24:1;;7075:37;;7132:16;;;;-1:-1:-1;7054:104:1;;7167:324;7203:39;7235:6;7203:39;:::i;:::-;7264:3;7280:165;7294:6;7291:1;7288:13;7280:165;;;7372:14;;7359:11;;;7352:35;7415:16;;;;7309:10;;7280:165;;;7284:3;;7474:6;7469:3;7465:16;7458:23;;7020:471;;;;;;;7507:32;7535:3;7527:6;7507:32;:::i;:::-;7500:39;6548:997;-1:-1:-1;;;;;6548:997:1:o;7550:616::-;;-1:-1:-1;;;7855:3:1;7848:21;7898:6;7892:13;7914:61;7968:6;7964:1;7959:3;7955:11;7948:4;7940:6;7936:17;7914:61;:::i;:::-;8035:13;;7994:16;;;;8057:62;8035:13;8106:1;8098:10;;8091:4;8079:17;;8057:62;:::i;:::-;8139:17;8158:1;8135:25;;7838:328;-1:-1:-1;;;;7838:328:1:o;8171:413::-;;8388:6;8383:3;8376:19;8425:6;8420:2;8415:3;8411:12;8404:28;8461:6;8455:13;8477:60;8530:6;8525:2;8520:3;8516:12;8511:2;8503:6;8499:15;8477:60;:::i;:::-;8557:16;;;;8575:2;8553:25;;8366:218;-1:-1:-1;;;;8366:218:1:o;8589:203::-;-1:-1:-1;;;;;8753:32:1;;;;8735:51;;8723:2;8708:18;;8690:102::o;8797:490::-;-1:-1:-1;;;;;9066:15:1;;;9048:34;;9118:15;;9113:2;9098:18;;9091:43;9165:2;9150:18;;9143:34;;;9213:3;9208:2;9193:18;;9186:31;;;8797:490;;9234:47;;9261:19;;9253:6;9234:47;:::i;:::-;9226:55;9000:287;-1:-1:-1;;;;;;9000:287:1:o;9292:560::-;9474:4;9459:20;;9463:9;9556:6;9292:560;9590:256;9654:4;9687:2;9684:1;9681:9;9671:2;;9694:5;;;9671:2;9730:13;;-1:-1:-1;;;;;9726:39:1;9714:52;;9786:12;;;;9821:15;;;;9762:1;9610:9;9590:256;;;9594:3;;;9441:411;;;;:::o;9857:187::-;10022:14;;10015:22;9997:41;;9985:2;9970:18;;9952:92::o;10049:258::-;10242:14;;10235:22;10217:41;;10289:2;10274:18;;10267:34;10205:2;10190:18;;10172:135::o;10312:398::-;10539:25;;;10612:4;10600:17;;;;10595:2;10580:18;;10573:45;10649:2;10634:18;;10627:34;10692:2;10677:18;;10670:34;10526:3;10511:19;;10493:217::o;10715:221::-;;10864:2;10853:9;10846:21;10884:46;10926:2;10915:9;10911:18;10903:6;10884:46;:::i;10941:348::-;11143:2;11125:21;;;11182:2;11162:18;;;11155:30;11221:26;11216:2;11201:18;;11194:54;11280:2;11265:18;;11115:174::o;11294:352::-;11496:2;11478:21;;;11535:2;11515:18;;;11508:30;11574;11569:2;11554:18;;11547:58;11637:2;11622:18;;11468:178::o;11651:351::-;11853:2;11835:21;;;11892:2;11872:18;;;11865:30;11931:29;11926:2;11911:18;;11904:57;11993:2;11978:18;;11825:177::o;12007:355::-;12209:2;12191:21;;;12248:2;12228:18;;;12221:30;12287:33;12282:2;12267:18;;12260:61;12353:2;12338:18;;12181:181::o;12367:407::-;12569:2;12551:21;;;12608:2;12588:18;;;12581:30;12647:34;12642:2;12627:18;;12620:62;-1:-1:-1;;;12713:2:1;12698:18;;12691:41;12764:3;12749:19;;12541:233::o;12779:414::-;12981:2;12963:21;;;13020:2;13000:18;;;12993:30;13059:34;13054:2;13039:18;;13032:62;-1:-1:-1;;;13125:2:1;13110:18;;13103:48;13183:3;13168:19;;12953:240::o;13198:402::-;13400:2;13382:21;;;13439:2;13419:18;;;13412:30;13478:34;13473:2;13458:18;;13451:62;-1:-1:-1;;;13544:2:1;13529:18;;13522:36;13590:3;13575:19;;13372:228::o;13605:352::-;13807:2;13789:21;;;13846:2;13826:18;;;13819:30;13885;13880:2;13865:18;;13858:58;13948:2;13933:18;;13779:178::o;13962:351::-;14164:2;14146:21;;;14203:2;14183:18;;;14176:30;14242:29;14237:2;14222:18;;14215:57;14304:2;14289:18;;14136:177::o;14318:355::-;14520:2;14502:21;;;14559:2;14539:18;;;14532:30;14598:33;14593:2;14578:18;;14571:61;14664:2;14649:18;;14492:181::o;14678:342::-;14880:2;14862:21;;;14919:2;14899:18;;;14892:30;-1:-1:-1;;;14953:2:1;14938:18;;14931:48;15011:2;14996:18;;14852:168::o;15025:400::-;15227:2;15209:21;;;15266:2;15246:18;;;15239:30;15305:34;15300:2;15285:18;;15278:62;-1:-1:-1;;;15371:2:1;15356:18;;15349:34;15415:3;15400:19;;15199:226::o;15430:349::-;15632:2;15614:21;;;15671:2;15651:18;;;15644:30;15710:27;15705:2;15690:18;;15683:55;15770:2;15755:18;;15604:175::o;15784:398::-;15986:2;15968:21;;;16025:2;16005:18;;;15998:30;16064:34;16059:2;16044:18;;16037:62;-1:-1:-1;;;16130:2:1;16115:18;;16108:32;16172:3;16157:19;;15958:224::o;16187:344::-;16389:2;16371:21;;;16428:2;16408:18;;;16401:30;-1:-1:-1;;;16462:2:1;16447:18;;16440:50;16522:2;16507:18;;16361:170::o;16536:352::-;16738:2;16720:21;;;16777:2;16757:18;;;16750:30;16816;16811:2;16796:18;;16789:58;16879:2;16864:18;;16710:178::o;16893:408::-;17095:2;17077:21;;;17134:2;17114:18;;;17107:30;17173:34;17168:2;17153:18;;17146:62;-1:-1:-1;;;17239:2:1;17224:18;;17217:42;17291:3;17276:19;;17067:234::o;17306:420::-;17508:2;17490:21;;;17547:2;17527:18;;;17520:30;17586:34;17581:2;17566:18;;17559:62;17657:26;17652:2;17637:18;;17630:54;17716:3;17701:19;;17480:246::o;17731:406::-;17933:2;17915:21;;;17972:2;17952:18;;;17945:30;18011:34;18006:2;17991:18;;17984:62;-1:-1:-1;;;18077:2:1;18062:18;;18055:40;18127:3;18112:19;;17905:232::o;18142:405::-;18344:2;18326:21;;;18383:2;18363:18;;;18356:30;18422:34;18417:2;18402:18;;18395:62;-1:-1:-1;;;18488:2:1;18473:18;;18466:39;18537:3;18522:19;;18316:231::o;18552:398::-;18754:2;18736:21;;;18793:2;18773:18;;;18766:30;18832:34;18827:2;18812:18;;18805:62;-1:-1:-1;;;18898:2:1;18883:18;;18876:32;18940:3;18925:19;;18726:224::o;18955:356::-;19157:2;19139:21;;;19176:18;;;19169:30;19235:34;19230:2;19215:18;;19208:62;19302:2;19287:18;;19129:182::o;19316:346::-;19518:2;19500:21;;;19557:2;19537:18;;;19530:30;-1:-1:-1;;;19591:2:1;19576:18;;19569:52;19653:2;19638:18;;19490:172::o;19667:408::-;19869:2;19851:21;;;19908:2;19888:18;;;19881:30;19947:34;19942:2;19927:18;;19920:62;-1:-1:-1;;;20013:2:1;19998:18;;19991:42;20065:3;20050:19;;19841:234::o;20080:356::-;20282:2;20264:21;;;20301:18;;;20294:30;20360:34;20355:2;20340:18;;20333:62;20427:2;20412:18;;20254:182::o;20441:405::-;20643:2;20625:21;;;20682:2;20662:18;;;20655:30;20721:34;20716:2;20701:18;;20694:62;-1:-1:-1;;;20787:2:1;20772:18;;20765:39;20836:3;20821:19;;20615:231::o;20851:397::-;21053:2;21035:21;;;21092:2;21072:18;;;21065:30;21131:34;21126:2;21111:18;;21104:62;-1:-1:-1;;;21197:2:1;21182:18;;21175:31;21238:3;21223:19;;21025:223::o;21253:336::-;21455:2;21437:21;;;21494:2;21474:18;;;21467:30;-1:-1:-1;;;21528:2:1;21513:18;;21506:42;21580:2;21565:18;;21427:162::o;21594:343::-;21796:2;21778:21;;;21835:2;21815:18;;;21808:30;-1:-1:-1;;;21869:2:1;21854:18;;21847:49;21928:2;21913:18;;21768:169::o;21942:413::-;22144:2;22126:21;;;22183:2;22163:18;;;22156:30;22222:34;22217:2;22202:18;;22195:62;-1:-1:-1;;;22288:2:1;22273:18;;22266:47;22345:3;22330:19;;22116:239::o;22360:408::-;22562:2;22544:21;;;22601:2;22581:18;;;22574:30;22640:34;22635:2;22620:18;;22613:62;-1:-1:-1;;;22706:2:1;22691:18;;22684:42;22758:3;22743:19;;22534:234::o;22773:343::-;22975:2;22957:21;;;23014:2;22994:18;;;22987:30;-1:-1:-1;;;23048:2:1;23033:18;;23026:49;23107:2;23092:18;;22947:169::o;23121:356::-;23323:2;23305:21;;;23342:18;;;23335:30;23401:34;23396:2;23381:18;;23374:62;23468:2;23453:18;;23295:182::o;23482:177::-;23628:25;;;23616:2;23601:18;;23583:76::o;23664:248::-;23838:25;;;23894:2;23879:18;;23872:34;23826:2;23811:18;;23793:119::o;23917:129::-;;23985:17;;;24035:4;24019:21;;;23975:71::o;24051:128::-;;24122:1;24118:6;24115:1;24112:13;24109:2;;;24128:18;;:::i;:::-;-1:-1:-1;24164:9:1;;24099:80::o;24184:120::-;;24250:1;24240:2;;24255:18;;:::i;:::-;-1:-1:-1;24289:9:1;;24230:74::o;24309:168::-;;24415:1;24411;24407:6;24403:14;24400:1;24397:21;24392:1;24385:9;24378:17;24374:45;24371:2;;;24422:18;;:::i;:::-;-1:-1:-1;24462:9:1;;24361:116::o;24482:125::-;;24550:1;24547;24544:8;24541:2;;;24555:18;;:::i;:::-;-1:-1:-1;24592:9:1;;24531:76::o;24612:258::-;24684:1;24694:113;24708:6;24705:1;24702:13;24694:113;;;24784:11;;;24778:18;24765:11;;;24758:39;24730:2;24723:10;24694:113;;;24825:6;24822:1;24819:13;24816:2;;;-1:-1:-1;;24860:1:1;24842:16;;24835:27;24665:205::o;24875:136::-;;24942:5;24932:2;;24951:18;;:::i;:::-;-1:-1:-1;;;24987:18:1;;24922:89::o;25016:380::-;25101:1;25091:12;;25148:1;25138:12;;;25159:2;;25213:4;25205:6;25201:17;25191:27;;25159:2;25266;25258:6;25255:14;25235:18;25232:38;25229:2;;;25312:10;25307:3;25303:20;25300:1;25293:31;25347:4;25344:1;25337:15;25375:4;25372:1;25365:15;25401:135;;-1:-1:-1;;25461:17:1;;25458:2;;;25481:18;;:::i;:::-;-1:-1:-1;25528:1:1;25517:13;;25448:88::o;25541:112::-;;25599:1;25589:2;;25604:18;;:::i;:::-;-1:-1:-1;25638:9:1;;25579:74::o;25658:127::-;25719:10;25714:3;25710:20;25707:1;25700:31;25750:4;25747:1;25740:15;25774:4;25771:1;25764:15;25790:127;25851:10;25846:3;25842:20;25839:1;25832:31;25882:4;25879:1;25872:15;25906:4;25903:1;25896:15;25922:127;25983:10;25978:3;25974:20;25971:1;25964:31;26014:4;26011:1;26004:15;26038:4;26035:1;26028:15;26054:133;-1:-1:-1;;;;;;26130:32:1;;26120:43;;26110:2;;26177:1;26174;26167:12

Swarm Source

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