Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
197 FROGBORGS
Holders
101
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 FROGBORGSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FrogBorgs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-28 */ /** *Submitted for verification at Etherscan.io on 2022-02-11 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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.0 (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.0 (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.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `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.0 (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.0 (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.0 (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.0 (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.0 (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.0 (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.0 (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/FrogBorgs.sol pragma solidity ^0.8.4; contract FrogBorgs is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public tokenPrice = 0.05 ether; uint256 public totalTokensLeft = 10000; uint256 public maxTokensPerMint = 10000; uint256 public maxTokensPerWhitelistedAddress = 10000; string public tokenBaseURI = ""; bool public hasPresaleStarted = false; bool public hasPublicSaleStarted = false; mapping(address => bool) public presaleWhitelist; mapping(address => uint256) public presaleWhitelistPurchased; constructor() ERC721("FROGBORGS", "FROGBORGS") { } function setTokenPrice(uint256 val) external onlyOwner { tokenPrice = val; } function setMaxTokensPerMint(uint256 val) external onlyOwner { maxTokensPerMint = val; } function setMaxTokensPerWhitelistedAddress(uint256 val) external onlyOwner { maxTokensPerWhitelistedAddress = val; } function setPresale(bool val) external onlyOwner { hasPresaleStarted = val; } function setPublicSale(bool val) external onlyOwner { hasPublicSaleStarted = val; } function addToPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { presaleWhitelist[entries[i]] = true; } } function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { presaleWhitelist[entries[i]] = false; } } function mint(uint256 amount) external payable { require(hasPresaleStarted, "Cannot mint before presale"); require(hasPublicSaleStarted || presaleWhitelist[msg.sender], "Buyer not whitelisted for presale"); require(amount <= maxTokensPerMint, "Cannot mint more than the max tokens per mint"); require(amount <= totalTokensLeft, "No tokens left for minting"); require(hasPublicSaleStarted || (presaleWhitelistPurchased[msg.sender] + amount <= maxTokensPerWhitelistedAddress), "Cannot mint more than the max tokens per whitelisted address"); require(msg.value >= amount * tokenPrice, "Not enough ethers supplied for mint!"); uint256 supply = totalSupply(); for(uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, 1 + supply + i); } if (!hasPublicSaleStarted) { presaleWhitelistPurchased[msg.sender] += amount; } totalTokensLeft -= amount; } function gift(address[] calldata receivers) external onlyOwner { require(receivers.length <= totalTokensLeft, "Not enough tokens to gift"); uint256 supply = totalSupply(); for (uint256 i = 0; i < receivers.length; i++) { _safeMint(receivers[i], 1 + supply + i); } totalTokensLeft -= receivers.length; } function _baseURI() internal view override(ERC721) returns (string memory) { return tokenBaseURI; } function setBaseURI(string calldata URI) external onlyOwner { tokenBaseURI = URI; } function withdraw() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasPresaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWhitelistedAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistPurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","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":[],"name":"tokenPrice","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":[],"name":"totalTokensLeft","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"}]
Contract Creation Code
66b1a2bc2ec50000600b55612710600c819055600d819055600e5560a06040819052600060808190526200003691600f9162000123565b506010805461ffff191690553480156200004f57600080fd5b5060408051808201825260098082526846524f47424f52475360b81b602080840182815285518087019096529285528401528151919291620000949160009162000123565b508051620000aa90600190602084019062000123565b505050620000c7620000c1620000cd60201b60201c565b620000d1565b62000206565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013190620001c9565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b600181811c90821680620001de57607f821691505b602082108114156200020057634e487b7160e01b600052602260045260246000fd5b50919050565b61272f80620002166000396000f3fe6080604052600436106102305760003560e01c80636a61e5fc1161012e578063a22cb465116100ab578063e985e9c51161006f578063e985e9c51461064d578063eb8835ab14610696578063f2fde38b146106c6578063fdd4b0f0146106e6578063ffc22fa81461070557600080fd5b8063a22cb465146105b3578063b0220015146105d3578063b88d4fde146105ed578063c54e73e31461060d578063c87b56dd1461062d57600080fd5b80638da5cb5b116100f25780638da5cb5b1461052d5780638e07484c1461054b5780638f65fe0a1461056b57806395d89b411461058b578063a0712d68146105a057600080fd5b80636a61e5fc146104a257806370a08231146104c2578063715018a6146104e2578063762cda3c146104f75780637ff9b5961461051757600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461040c57806355f804b31461042c5780635aca1bb61461044c578063600334001461046c5780636352211e1461048257600080fd5b80632f745c59146103755780633ccfd60b1461039557806342842e0e146103aa57806348df7424146103ca5780634e99b800146103f757600080fd5b8063163e1e6111610203578063163e1e61146102e6578063174654711461030657806318160ddd1461032a57806323b872dd1461033f5780632cbc279f1461035f57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612347565b610725565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610750565b6040516102619190612492565b34801561029857600080fd5b506102ac6102a73660046123e1565b6107e2565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461228d565b61087c565b005b3480156102f257600080fd5b506102e46103013660046122b7565b610992565b34801561031257600080fd5b5061031c600d5481565b604051908152602001610261565b34801561033657600080fd5b5060085461031c565b34801561034b57600080fd5b506102e461035a36600461214b565b610a9d565b34801561036b57600080fd5b5061031c600c5481565b34801561038157600080fd5b5061031c61039036600461228d565b610ace565b3480156103a157600080fd5b506102e4610b64565b3480156103b657600080fd5b506102e46103c536600461214b565b610bb4565b3480156103d657600080fd5b5061031c6103e53660046120fd565b60126020526000908152604090205481565b34801561040357600080fd5b5061027f610bcf565b34801561041857600080fd5b5061031c6104273660046123e1565b610c5d565b34801561043857600080fd5b506102e4610447366004612381565b610cf0565b34801561045857600080fd5b506102e461046736600461232c565b610d26565b34801561047857600080fd5b5061031c600e5481565b34801561048e57600080fd5b506102ac61049d3660046123e1565b610d6a565b3480156104ae57600080fd5b506102e46104bd3660046123e1565b610de1565b3480156104ce57600080fd5b5061031c6104dd3660046120fd565b610e10565b3480156104ee57600080fd5b506102e4610e97565b34801561050357600080fd5b506102e46105123660046123e1565b610ecb565b34801561052357600080fd5b5061031c600b5481565b34801561053957600080fd5b50600a546001600160a01b03166102ac565b34801561055757600080fd5b506102e46105663660046122b7565b610efa565b34801561057757600080fd5b506102e46105863660046122b7565b610f96565b34801561059757600080fd5b5061027f611032565b6102e46105ae3660046123e1565b611041565b3480156105bf57600080fd5b506102e46105ce366004612263565b61135e565b3480156105df57600080fd5b506010546102559060ff1681565b3480156105f957600080fd5b506102e4610608366004612187565b61136d565b34801561061957600080fd5b506102e461062836600461232c565b6113a5565b34801561063957600080fd5b5061027f6106483660046123e1565b6113e2565b34801561065957600080fd5b50610255610668366004612118565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a257600080fd5b506102556106b13660046120fd565b60116020526000908152604090205460ff1681565b3480156106d257600080fd5b506102e46106e13660046120fd565b6114bd565b3480156106f257600080fd5b5060105461025590610100900460ff1681565b34801561071157600080fd5b506102e46107203660046123e1565b611558565b60006001600160e01b0319821663780e9d6360e01b148061074a575061074a82611587565b92915050565b60606000805461075f9061260b565b80601f016020809104026020016040519081016040528092919081815260200182805461078b9061260b565b80156107d85780601f106107ad576101008083540402835291602001916107d8565b820191906000526020600020905b8154815290600101906020018083116107bb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088782610d6a565b9050806001600160a01b0316836001600160a01b031614156108f55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610857565b336001600160a01b038216148061091157506109118133610668565b6109835760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610857565b61098d83836115d7565b505050565b600a546001600160a01b031633146109bc5760405162461bcd60e51b8152600401610857906124f7565b600c54811115610a0e5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f2067696674000000000000006044820152606401610857565b6000610a1960085490565b905060005b82811015610a7d57610a6b848483818110610a3b57610a3b6126b7565b9050602002016020810190610a5091906120fd565b82610a5c85600161257d565b610a66919061257d565b611645565b80610a7581612646565b915050610a1e565b5082829050600c6000828254610a9391906125c8565b9091555050505050565b610aa7338261165f565b610ac35760405162461bcd60e51b81526004016108579061252c565b61098d838383611756565b6000610ad983610e10565b8210610b3b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610857565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b8e5760405162461bcd60e51b8152600401610857906124f7565b60405133904780156108fc02916000818181858888f19350505050610bb257600080fd5b565b61098d8383836040518060200160405280600081525061136d565b600f8054610bdc9061260b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c089061260b565b8015610c555780601f10610c2a57610100808354040283529160200191610c55565b820191906000526020600020905b815481529060010190602001808311610c3857829003601f168201915b505050505081565b6000610c6860085490565b8210610ccb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610857565b60088281548110610cde57610cde6126b7565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1a5760405162461bcd60e51b8152600401610857906124f7565b61098d600f8383612038565b600a546001600160a01b03163314610d505760405162461bcd60e51b8152600401610857906124f7565b601080549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b03168061074a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610857565b600a546001600160a01b03163314610e0b5760405162461bcd60e51b8152600401610857906124f7565b600b55565b60006001600160a01b038216610e7b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610857565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ec15760405162461bcd60e51b8152600401610857906124f7565b610bb26000611901565b600a546001600160a01b03163314610ef55760405162461bcd60e51b8152600401610857906124f7565b600d55565b600a546001600160a01b03163314610f245760405162461bcd60e51b8152600401610857906124f7565b60005b8181101561098d57600160116000858585818110610f4757610f476126b7565b9050602002016020810190610f5c91906120fd565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f8e81612646565b915050610f27565b600a546001600160a01b03163314610fc05760405162461bcd60e51b8152600401610857906124f7565b60005b8181101561098d57600060116000858585818110610fe357610fe36126b7565b9050602002016020810190610ff891906120fd565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061102a81612646565b915050610fc3565b60606001805461075f9061260b565b60105460ff166110935760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206d696e74206265666f72652070726573616c650000000000006044820152606401610857565b601054610100900460ff16806110b857503360009081526011602052604090205460ff165b61110e5760405162461bcd60e51b815260206004820152602160248201527f4275796572206e6f742077686974656c697374656420666f722070726573616c6044820152606560f81b6064820152608401610857565b600d548111156111765760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201526c1ad95b9cc81c195c881b5a5b9d609a1b6064820152608401610857565b600c548111156111c85760405162461bcd60e51b815260206004820152601a60248201527f4e6f20746f6b656e73206c65667420666f72206d696e74696e670000000000006044820152606401610857565b601054610100900460ff16806111fa5750600e54336000908152601260205260409020546111f790839061257d565b11155b61126c5760405162461bcd60e51b815260206004820152603c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201527f6b656e73207065722077686974656c69737465642061646472657373000000006064820152608401610857565b600b5461127990826125a9565b3410156112d45760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f7567682065746865727320737570706c69656420666f72206d604482015263696e742160e01b6064820152608401610857565b60006112df60085490565b905060005b8281101561130e576112fc3382610a5c85600161257d565b8061130681612646565b9150506112e4565b50601054610100900460ff1661134357336000908152601260205260408120805484929061133d90849061257d565b90915550505b81600c600082825461135591906125c8565b90915550505050565b611369338383611953565b5050565b611377338361165f565b6113935760405162461bcd60e51b81526004016108579061252c565b61139f84848484611a22565b50505050565b600a546001600160a01b031633146113cf5760405162461bcd60e51b8152600401610857906124f7565b6010805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166114615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610857565b600061146b611a55565b9050600081511161148b57604051806020016040528060008152506114b6565b8061149584611a64565b6040516020016114a6929190612426565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114e75760405162461bcd60e51b8152600401610857906124f7565b6001600160a01b03811661154c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610857565b61155581611901565b50565b600a546001600160a01b031633146115825760405162461bcd60e51b8152600401610857906124f7565b600e55565b60006001600160e01b031982166380ac58cd60e01b14806115b857506001600160e01b03198216635b5e139f60e01b145b8061074a57506301ffc9a760e01b6001600160e01b031983161461074a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160c82610d6a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611369828260405180602001604052806000815250611b62565b6000818152600260205260408120546001600160a01b03166116d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610857565b60006116e383610d6a565b9050806001600160a01b0316846001600160a01b0316148061171e5750836001600160a01b0316611713846107e2565b6001600160a01b0316145b8061174e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176982610d6a565b6001600160a01b0316146117d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610857565b6001600160a01b0382166118335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610857565b61183e838383611b95565b6118496000826115d7565b6001600160a01b03831660009081526003602052604081208054600192906118729084906125c8565b90915550506001600160a01b03821660009081526003602052604081208054600192906118a090849061257d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119b55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610857565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a2d848484611756565b611a3984848484611c4d565b61139f5760405162461bcd60e51b8152600401610857906124a5565b6060600f805461075f9061260b565b606081611a885750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ab25780611a9c81612646565b9150611aab9050600a83612595565b9150611a8c565b60008167ffffffffffffffff811115611acd57611acd6126cd565b6040519080825280601f01601f191660200182016040528015611af7576020820181803683370190505b5090505b841561174e57611b0c6001836125c8565b9150611b19600a86612661565b611b2490603061257d565b60f81b818381518110611b3957611b396126b7565b60200101906001600160f81b031916908160001a905350611b5b600a86612595565b9450611afb565b611b6c8383611d5a565b611b796000848484611c4d565b61098d5760405162461bcd60e51b8152600401610857906124a5565b6001600160a01b038316611bf057611beb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c13565b816001600160a01b0316836001600160a01b031614611c1357611c138382611ea8565b6001600160a01b038216611c2a5761098d81611f45565b826001600160a01b0316826001600160a01b03161461098d5761098d8282611ff4565b60006001600160a01b0384163b15611d4f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c91903390899088908890600401612455565b602060405180830381600087803b158015611cab57600080fd5b505af1925050508015611cdb575060408051601f3d908101601f19168201909252611cd891810190612364565b60015b611d35573d808015611d09576040519150601f19603f3d011682016040523d82523d6000602084013e611d0e565b606091505b508051611d2d5760405162461bcd60e51b8152600401610857906124a5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174e565b506001949350505050565b6001600160a01b038216611db05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610857565b6000818152600260205260409020546001600160a01b031615611e155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610857565b611e2160008383611b95565b6001600160a01b0382166000908152600360205260408120805460019290611e4a90849061257d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611eb584610e10565b611ebf91906125c8565b600083815260076020526040902054909150808214611f12576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f57906001906125c8565b60008381526009602052604081205460088054939450909284908110611f7f57611f7f6126b7565b906000526020600020015490508060088381548110611fa057611fa06126b7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fd857611fd86126a1565b6001900381819060005260206000200160009055905550505050565b6000611fff83610e10565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120449061260b565b90600052602060002090601f01602090048101928261206657600085556120ac565b82601f1061207f5782800160ff198235161785556120ac565b828001600101855582156120ac579182015b828111156120ac578235825591602001919060010190612091565b506120b89291506120bc565b5090565b5b808211156120b857600081556001016120bd565b80356001600160a01b03811681146120e857600080fd5b919050565b803580151581146120e857600080fd5b60006020828403121561210f57600080fd5b6114b6826120d1565b6000806040838503121561212b57600080fd5b612134836120d1565b9150612142602084016120d1565b90509250929050565b60008060006060848603121561216057600080fd5b612169846120d1565b9250612177602085016120d1565b9150604084013590509250925092565b6000806000806080858703121561219d57600080fd5b6121a6856120d1565b93506121b4602086016120d1565b925060408501359150606085013567ffffffffffffffff808211156121d857600080fd5b818701915087601f8301126121ec57600080fd5b8135818111156121fe576121fe6126cd565b604051601f8201601f19908116603f01168101908382118183101715612226576122266126cd565b816040528281528a602084870101111561223f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561227657600080fd5b61227f836120d1565b9150612142602084016120ed565b600080604083850312156122a057600080fd5b6122a9836120d1565b946020939093013593505050565b600080602083850312156122ca57600080fd5b823567ffffffffffffffff808211156122e257600080fd5b818501915085601f8301126122f657600080fd5b81358181111561230557600080fd5b8660208260051b850101111561231a57600080fd5b60209290920196919550909350505050565b60006020828403121561233e57600080fd5b6114b6826120ed565b60006020828403121561235957600080fd5b81356114b6816126e3565b60006020828403121561237657600080fd5b81516114b6816126e3565b6000806020838503121561239457600080fd5b823567ffffffffffffffff808211156123ac57600080fd5b818501915085601f8301126123c057600080fd5b8135818111156123cf57600080fd5b86602082850101111561231a57600080fd5b6000602082840312156123f357600080fd5b5035919050565b600081518084526124128160208601602086016125df565b601f01601f19169290920160200192915050565b600083516124388184602088016125df565b83519083019061244c8183602088016125df565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612488908301846123fa565b9695505050505050565b6020815260006114b660208301846123fa565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561259057612590612675565b500190565b6000826125a4576125a461268b565b500490565b60008160001904831182151516156125c3576125c3612675565b500290565b6000828210156125da576125da612675565b500390565b60005b838110156125fa5781810151838201526020016125e2565b8381111561139f5750506000910152565b600181811c9082168061261f57607f821691505b6020821081141561264057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561265a5761265a612675565b5060010190565b6000826126705761267061268b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461155557600080fdfea2646970667358221220e12d203b0d89a8f9996ea0c5b36b2a23e56a9792053b54aa9d14544f0fe6ea2264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102305760003560e01c80636a61e5fc1161012e578063a22cb465116100ab578063e985e9c51161006f578063e985e9c51461064d578063eb8835ab14610696578063f2fde38b146106c6578063fdd4b0f0146106e6578063ffc22fa81461070557600080fd5b8063a22cb465146105b3578063b0220015146105d3578063b88d4fde146105ed578063c54e73e31461060d578063c87b56dd1461062d57600080fd5b80638da5cb5b116100f25780638da5cb5b1461052d5780638e07484c1461054b5780638f65fe0a1461056b57806395d89b411461058b578063a0712d68146105a057600080fd5b80636a61e5fc146104a257806370a08231146104c2578063715018a6146104e2578063762cda3c146104f75780637ff9b5961461051757600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461040c57806355f804b31461042c5780635aca1bb61461044c578063600334001461046c5780636352211e1461048257600080fd5b80632f745c59146103755780633ccfd60b1461039557806342842e0e146103aa57806348df7424146103ca5780634e99b800146103f757600080fd5b8063163e1e6111610203578063163e1e61146102e6578063174654711461030657806318160ddd1461032a57806323b872dd1461033f5780632cbc279f1461035f57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612347565b610725565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610750565b6040516102619190612492565b34801561029857600080fd5b506102ac6102a73660046123e1565b6107e2565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461228d565b61087c565b005b3480156102f257600080fd5b506102e46103013660046122b7565b610992565b34801561031257600080fd5b5061031c600d5481565b604051908152602001610261565b34801561033657600080fd5b5060085461031c565b34801561034b57600080fd5b506102e461035a36600461214b565b610a9d565b34801561036b57600080fd5b5061031c600c5481565b34801561038157600080fd5b5061031c61039036600461228d565b610ace565b3480156103a157600080fd5b506102e4610b64565b3480156103b657600080fd5b506102e46103c536600461214b565b610bb4565b3480156103d657600080fd5b5061031c6103e53660046120fd565b60126020526000908152604090205481565b34801561040357600080fd5b5061027f610bcf565b34801561041857600080fd5b5061031c6104273660046123e1565b610c5d565b34801561043857600080fd5b506102e4610447366004612381565b610cf0565b34801561045857600080fd5b506102e461046736600461232c565b610d26565b34801561047857600080fd5b5061031c600e5481565b34801561048e57600080fd5b506102ac61049d3660046123e1565b610d6a565b3480156104ae57600080fd5b506102e46104bd3660046123e1565b610de1565b3480156104ce57600080fd5b5061031c6104dd3660046120fd565b610e10565b3480156104ee57600080fd5b506102e4610e97565b34801561050357600080fd5b506102e46105123660046123e1565b610ecb565b34801561052357600080fd5b5061031c600b5481565b34801561053957600080fd5b50600a546001600160a01b03166102ac565b34801561055757600080fd5b506102e46105663660046122b7565b610efa565b34801561057757600080fd5b506102e46105863660046122b7565b610f96565b34801561059757600080fd5b5061027f611032565b6102e46105ae3660046123e1565b611041565b3480156105bf57600080fd5b506102e46105ce366004612263565b61135e565b3480156105df57600080fd5b506010546102559060ff1681565b3480156105f957600080fd5b506102e4610608366004612187565b61136d565b34801561061957600080fd5b506102e461062836600461232c565b6113a5565b34801561063957600080fd5b5061027f6106483660046123e1565b6113e2565b34801561065957600080fd5b50610255610668366004612118565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a257600080fd5b506102556106b13660046120fd565b60116020526000908152604090205460ff1681565b3480156106d257600080fd5b506102e46106e13660046120fd565b6114bd565b3480156106f257600080fd5b5060105461025590610100900460ff1681565b34801561071157600080fd5b506102e46107203660046123e1565b611558565b60006001600160e01b0319821663780e9d6360e01b148061074a575061074a82611587565b92915050565b60606000805461075f9061260b565b80601f016020809104026020016040519081016040528092919081815260200182805461078b9061260b565b80156107d85780601f106107ad576101008083540402835291602001916107d8565b820191906000526020600020905b8154815290600101906020018083116107bb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088782610d6a565b9050806001600160a01b0316836001600160a01b031614156108f55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610857565b336001600160a01b038216148061091157506109118133610668565b6109835760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610857565b61098d83836115d7565b505050565b600a546001600160a01b031633146109bc5760405162461bcd60e51b8152600401610857906124f7565b600c54811115610a0e5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f2067696674000000000000006044820152606401610857565b6000610a1960085490565b905060005b82811015610a7d57610a6b848483818110610a3b57610a3b6126b7565b9050602002016020810190610a5091906120fd565b82610a5c85600161257d565b610a66919061257d565b611645565b80610a7581612646565b915050610a1e565b5082829050600c6000828254610a9391906125c8565b9091555050505050565b610aa7338261165f565b610ac35760405162461bcd60e51b81526004016108579061252c565b61098d838383611756565b6000610ad983610e10565b8210610b3b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610857565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b8e5760405162461bcd60e51b8152600401610857906124f7565b60405133904780156108fc02916000818181858888f19350505050610bb257600080fd5b565b61098d8383836040518060200160405280600081525061136d565b600f8054610bdc9061260b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c089061260b565b8015610c555780601f10610c2a57610100808354040283529160200191610c55565b820191906000526020600020905b815481529060010190602001808311610c3857829003601f168201915b505050505081565b6000610c6860085490565b8210610ccb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610857565b60088281548110610cde57610cde6126b7565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1a5760405162461bcd60e51b8152600401610857906124f7565b61098d600f8383612038565b600a546001600160a01b03163314610d505760405162461bcd60e51b8152600401610857906124f7565b601080549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b03168061074a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610857565b600a546001600160a01b03163314610e0b5760405162461bcd60e51b8152600401610857906124f7565b600b55565b60006001600160a01b038216610e7b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610857565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ec15760405162461bcd60e51b8152600401610857906124f7565b610bb26000611901565b600a546001600160a01b03163314610ef55760405162461bcd60e51b8152600401610857906124f7565b600d55565b600a546001600160a01b03163314610f245760405162461bcd60e51b8152600401610857906124f7565b60005b8181101561098d57600160116000858585818110610f4757610f476126b7565b9050602002016020810190610f5c91906120fd565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f8e81612646565b915050610f27565b600a546001600160a01b03163314610fc05760405162461bcd60e51b8152600401610857906124f7565b60005b8181101561098d57600060116000858585818110610fe357610fe36126b7565b9050602002016020810190610ff891906120fd565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061102a81612646565b915050610fc3565b60606001805461075f9061260b565b60105460ff166110935760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206d696e74206265666f72652070726573616c650000000000006044820152606401610857565b601054610100900460ff16806110b857503360009081526011602052604090205460ff165b61110e5760405162461bcd60e51b815260206004820152602160248201527f4275796572206e6f742077686974656c697374656420666f722070726573616c6044820152606560f81b6064820152608401610857565b600d548111156111765760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201526c1ad95b9cc81c195c881b5a5b9d609a1b6064820152608401610857565b600c548111156111c85760405162461bcd60e51b815260206004820152601a60248201527f4e6f20746f6b656e73206c65667420666f72206d696e74696e670000000000006044820152606401610857565b601054610100900460ff16806111fa5750600e54336000908152601260205260409020546111f790839061257d565b11155b61126c5760405162461bcd60e51b815260206004820152603c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201527f6b656e73207065722077686974656c69737465642061646472657373000000006064820152608401610857565b600b5461127990826125a9565b3410156112d45760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f7567682065746865727320737570706c69656420666f72206d604482015263696e742160e01b6064820152608401610857565b60006112df60085490565b905060005b8281101561130e576112fc3382610a5c85600161257d565b8061130681612646565b9150506112e4565b50601054610100900460ff1661134357336000908152601260205260408120805484929061133d90849061257d565b90915550505b81600c600082825461135591906125c8565b90915550505050565b611369338383611953565b5050565b611377338361165f565b6113935760405162461bcd60e51b81526004016108579061252c565b61139f84848484611a22565b50505050565b600a546001600160a01b031633146113cf5760405162461bcd60e51b8152600401610857906124f7565b6010805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166114615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610857565b600061146b611a55565b9050600081511161148b57604051806020016040528060008152506114b6565b8061149584611a64565b6040516020016114a6929190612426565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114e75760405162461bcd60e51b8152600401610857906124f7565b6001600160a01b03811661154c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610857565b61155581611901565b50565b600a546001600160a01b031633146115825760405162461bcd60e51b8152600401610857906124f7565b600e55565b60006001600160e01b031982166380ac58cd60e01b14806115b857506001600160e01b03198216635b5e139f60e01b145b8061074a57506301ffc9a760e01b6001600160e01b031983161461074a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160c82610d6a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611369828260405180602001604052806000815250611b62565b6000818152600260205260408120546001600160a01b03166116d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610857565b60006116e383610d6a565b9050806001600160a01b0316846001600160a01b0316148061171e5750836001600160a01b0316611713846107e2565b6001600160a01b0316145b8061174e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176982610d6a565b6001600160a01b0316146117d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610857565b6001600160a01b0382166118335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610857565b61183e838383611b95565b6118496000826115d7565b6001600160a01b03831660009081526003602052604081208054600192906118729084906125c8565b90915550506001600160a01b03821660009081526003602052604081208054600192906118a090849061257d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119b55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610857565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a2d848484611756565b611a3984848484611c4d565b61139f5760405162461bcd60e51b8152600401610857906124a5565b6060600f805461075f9061260b565b606081611a885750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ab25780611a9c81612646565b9150611aab9050600a83612595565b9150611a8c565b60008167ffffffffffffffff811115611acd57611acd6126cd565b6040519080825280601f01601f191660200182016040528015611af7576020820181803683370190505b5090505b841561174e57611b0c6001836125c8565b9150611b19600a86612661565b611b2490603061257d565b60f81b818381518110611b3957611b396126b7565b60200101906001600160f81b031916908160001a905350611b5b600a86612595565b9450611afb565b611b6c8383611d5a565b611b796000848484611c4d565b61098d5760405162461bcd60e51b8152600401610857906124a5565b6001600160a01b038316611bf057611beb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c13565b816001600160a01b0316836001600160a01b031614611c1357611c138382611ea8565b6001600160a01b038216611c2a5761098d81611f45565b826001600160a01b0316826001600160a01b03161461098d5761098d8282611ff4565b60006001600160a01b0384163b15611d4f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c91903390899088908890600401612455565b602060405180830381600087803b158015611cab57600080fd5b505af1925050508015611cdb575060408051601f3d908101601f19168201909252611cd891810190612364565b60015b611d35573d808015611d09576040519150601f19603f3d011682016040523d82523d6000602084013e611d0e565b606091505b508051611d2d5760405162461bcd60e51b8152600401610857906124a5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174e565b506001949350505050565b6001600160a01b038216611db05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610857565b6000818152600260205260409020546001600160a01b031615611e155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610857565b611e2160008383611b95565b6001600160a01b0382166000908152600360205260408120805460019290611e4a90849061257d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611eb584610e10565b611ebf91906125c8565b600083815260076020526040902054909150808214611f12576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f57906001906125c8565b60008381526009602052604081205460088054939450909284908110611f7f57611f7f6126b7565b906000526020600020015490508060088381548110611fa057611fa06126b7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fd857611fd86126a1565b6001900381819060005260206000200160009055905550505050565b6000611fff83610e10565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120449061260b565b90600052602060002090601f01602090048101928261206657600085556120ac565b82601f1061207f5782800160ff198235161785556120ac565b828001600101855582156120ac579182015b828111156120ac578235825591602001919060010190612091565b506120b89291506120bc565b5090565b5b808211156120b857600081556001016120bd565b80356001600160a01b03811681146120e857600080fd5b919050565b803580151581146120e857600080fd5b60006020828403121561210f57600080fd5b6114b6826120d1565b6000806040838503121561212b57600080fd5b612134836120d1565b9150612142602084016120d1565b90509250929050565b60008060006060848603121561216057600080fd5b612169846120d1565b9250612177602085016120d1565b9150604084013590509250925092565b6000806000806080858703121561219d57600080fd5b6121a6856120d1565b93506121b4602086016120d1565b925060408501359150606085013567ffffffffffffffff808211156121d857600080fd5b818701915087601f8301126121ec57600080fd5b8135818111156121fe576121fe6126cd565b604051601f8201601f19908116603f01168101908382118183101715612226576122266126cd565b816040528281528a602084870101111561223f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561227657600080fd5b61227f836120d1565b9150612142602084016120ed565b600080604083850312156122a057600080fd5b6122a9836120d1565b946020939093013593505050565b600080602083850312156122ca57600080fd5b823567ffffffffffffffff808211156122e257600080fd5b818501915085601f8301126122f657600080fd5b81358181111561230557600080fd5b8660208260051b850101111561231a57600080fd5b60209290920196919550909350505050565b60006020828403121561233e57600080fd5b6114b6826120ed565b60006020828403121561235957600080fd5b81356114b6816126e3565b60006020828403121561237657600080fd5b81516114b6816126e3565b6000806020838503121561239457600080fd5b823567ffffffffffffffff808211156123ac57600080fd5b818501915085601f8301126123c057600080fd5b8135818111156123cf57600080fd5b86602082850101111561231a57600080fd5b6000602082840312156123f357600080fd5b5035919050565b600081518084526124128160208601602086016125df565b601f01601f19169290920160200192915050565b600083516124388184602088016125df565b83519083019061244c8183602088016125df565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612488908301846123fa565b9695505050505050565b6020815260006114b660208301846123fa565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561259057612590612675565b500190565b6000826125a4576125a461268b565b500490565b60008160001904831182151516156125c3576125c3612675565b500290565b6000828210156125da576125da612675565b500390565b60005b838110156125fa5781810151838201526020016125e2565b8381111561139f5750506000910152565b600181811c9082168061261f57607f821691505b6020821081141561264057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561265a5761265a612675565b5060010190565b6000826126705761267061268b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461155557600080fdfea2646970667358221220e12d203b0d89a8f9996ea0c5b36b2a23e56a9792053b54aa9d14544f0fe6ea2264736f6c63430008070033
Deployed Bytecode Sourcemap
54159:3327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47936:224;;;;;;;;;;-1:-1:-1;47936:224:0;;;;;:::i;:::-;;:::i;:::-;;;6501:14:1;;6494:22;6476:41;;6464:2;6449:18;47936:224:0;;;;;;;;35430:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36989:221::-;;;;;;;;;;-1:-1:-1;36989:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5799:32:1;;;5781:51;;5769:2;5754:18;36989:221:0;5635:203:1;36512:411:0;;;;;;;;;;-1:-1:-1;36512:411:0;;;;;:::i;:::-;;:::i;:::-;;56763:369;;;;;;;;;;-1:-1:-1;56763:369:0;;;;;:::i;:::-;;:::i;54338:39::-;;;;;;;;;;;;;;;;;;;16819:25:1;;;16807:2;16792:18;54338:39:0;16673:177:1;48576:113:0;;;;;;;;;;-1:-1:-1;48664:10:0;:17;48576:113;;37739:339;;;;;;;;;;-1:-1:-1;37739:339:0;;;;;:::i;:::-;;:::i;54293:38::-;;;;;;;;;;;;;;;;48244:256;;;;;;;;;;-1:-1:-1;48244:256:0;;;;;:::i;:::-;;:::i;57369:114::-;;;;;;;;;;;;;:::i;38149:185::-;;;;;;;;;;-1:-1:-1;38149:185:0;;;;;:::i;:::-;;:::i;54634:60::-;;;;;;;;;;-1:-1:-1;54634:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;54446:31;;;;;;;;;;;;;:::i;48766:233::-;;;;;;;;;;-1:-1:-1;48766:233:0;;;;;:::i;:::-;;:::i;57264:97::-;;;;;;;;;;-1:-1:-1;57264:97:0;;;;;:::i;:::-;;:::i;55221:::-;;;;;;;;;;-1:-1:-1;55221:97:0;;;;;:::i;:::-;;:::i;54384:53::-;;;;;;;;;;;;;;;;35124:239;;;;;;;;;;-1:-1:-1;35124:239:0;;;;;:::i;:::-;;:::i;54776:90::-;;;;;;;;;;-1:-1:-1;54776:90:0;;;;;:::i;:::-;;:::i;34854:208::-;;;;;;;;;;-1:-1:-1;34854:208:0;;;;;:::i;:::-;;:::i;14400:103::-;;;;;;;;;;;;;:::i;54874:102::-;;;;;;;;;;-1:-1:-1;54874:102:0;;;;;:::i;:::-;;:::i;54248:38::-;;;;;;;;;;;;;;;;13749:87;;;;;;;;;;-1:-1:-1;13822:6:0;;-1:-1:-1;;;;;13822:6:0;13749:87;;55326:205;;;;;;;;;;-1:-1:-1;55326:205:0;;;;;:::i;:::-;;:::i;55539:208::-;;;;;;;;;;-1:-1:-1;55539:208:0;;;;;:::i;:::-;;:::i;35599:104::-;;;;;;;;;;;;;:::i;55755:1000::-;;;;;;:::i;:::-;;:::i;37282:155::-;;;;;;;;;;-1:-1:-1;37282:155:0;;;;;:::i;:::-;;:::i;54486:37::-;;;;;;;;;;-1:-1:-1;54486:37:0;;;;;;;;38405:328;;;;;;;;;;-1:-1:-1;38405:328:0;;;;;:::i;:::-;;:::i;55122:91::-;;;;;;;;;;-1:-1:-1;55122:91:0;;;;;:::i;:::-;;:::i;35774:334::-;;;;;;;;;;-1:-1:-1;35774:334:0;;;;;:::i;:::-;;:::i;37508:164::-;;;;;;;;;;-1:-1:-1;37508:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37629:25:0;;;37605:4;37629:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37508:164;54579:48;;;;;;;;;;-1:-1:-1;54579:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14658:201;;;;;;;;;;-1:-1:-1;14658:201:0;;;;;:::i;:::-;;:::i;54530:40::-;;;;;;;;;;-1:-1:-1;54530:40:0;;;;;;;;;;;54984:130;;;;;;;;;;-1:-1:-1;54984:130:0;;;;;:::i;:::-;;:::i;47936:224::-;48038:4;-1:-1:-1;;;;;;48062:50:0;;-1:-1:-1;;;48062:50:0;;:90;;;48116:36;48140:11;48116:23;:36::i;:::-;48055:97;47936:224;-1:-1:-1;;47936:224:0:o;35430:100::-;35484:13;35517:5;35510:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35430:100;:::o;36989:221::-;37065:7;40332:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40332:16:0;37085:73;;;;-1:-1:-1;;;37085:73:0;;12853:2:1;37085:73:0;;;12835:21:1;12892:2;12872:18;;;12865:30;12931:34;12911:18;;;12904:62;-1:-1:-1;;;12982:18:1;;;12975:42;13034:19;;37085:73:0;;;;;;;;;-1:-1:-1;37178:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37178:24:0;;36989:221::o;36512:411::-;36593:13;36609:23;36624:7;36609:14;:23::i;:::-;36593:39;;36657:5;-1:-1:-1;;;;;36651:11:0;:2;-1:-1:-1;;;;;36651:11:0;;;36643:57;;;;-1:-1:-1;;;36643:57:0;;14453:2:1;36643:57:0;;;14435:21:1;14492:2;14472:18;;;14465:30;14531:34;14511:18;;;14504:62;-1:-1:-1;;;14582:18:1;;;14575:31;14623:19;;36643:57:0;14251:397:1;36643:57:0;12553:10;-1:-1:-1;;;;;36735:21:0;;;;:62;;-1:-1:-1;36760:37:0;36777:5;12553:10;37508:164;:::i;36760:37::-;36713:168;;;;-1:-1:-1;;;36713:168:0;;11246:2:1;36713:168:0;;;11228:21:1;11285:2;11265:18;;;11258:30;11324:34;11304:18;;;11297:62;11395:26;11375:18;;;11368:54;11439:19;;36713:168:0;11044:420:1;36713:168:0;36894:21;36903:2;36907:7;36894:8;:21::i;:::-;36582:341;36512:411;;:::o;56763:369::-;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;56865:15:::1;::::0;56845:35;::::1;;56837:73;;;::::0;-1:-1:-1;;;56837:73:0;;7309:2:1;56837:73:0::1;::::0;::::1;7291:21:1::0;7348:2;7328:18;;;7321:30;7387:27;7367:18;;;7360:55;7432:18;;56837:73:0::1;7107:349:1::0;56837:73:0::1;56923:14;56940:13;48664:10:::0;:17;;48576:113;56940:13:::1;56923:30;;56969:9;56964:113;56984:20:::0;;::::1;56964:113;;;57026:39;57036:9;;57046:1;57036:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57063:1:::0;57050:10:::1;57054:6:::0;57050:1:::1;:10;:::i;:::-;:14;;;;:::i;:::-;57026:9;:39::i;:::-;57006:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56964:113;;;;57108:9;;:16;;57089:15;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;56763:369:0:o;37739:339::-;37934:41;12553:10;37967:7;37934:18;:41::i;:::-;37926:103;;;;-1:-1:-1;;;37926:103:0;;;;;;;:::i;:::-;38042:28;38052:4;38058:2;38062:7;38042:9;:28::i;48244:256::-;48341:7;48377:23;48394:5;48377:16;:23::i;:::-;48369:5;:31;48361:87;;;;-1:-1:-1;;;48361:87:0;;8077:2:1;48361:87:0;;;8059:21:1;8116:2;8096:18;;;8089:30;8155:34;8135:18;;;8128:62;-1:-1:-1;;;8206:18:1;;;8199:41;8257:19;;48361:87:0;7875:407:1;48361:87:0;-1:-1:-1;;;;;;48466:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48244:256::o;57369:114::-;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;57427:47:::1;::::0;57435:10:::1;::::0;57452:21:::1;57427:47:::0;::::1;;;::::0;::::1;::::0;;;57452:21;57435:10;57427:47;::::1;;;;;;57419:56;;;::::0;::::1;;57369:114::o:0;38149:185::-;38287:39;38304:4;38310:2;38314:7;38287:39;;;;;;;;;;;;:16;:39::i;54446:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48766:233::-;48841:7;48877:30;48664:10;:17;;48576:113;48877:30;48869:5;:38;48861:95;;;;-1:-1:-1;;;48861:95:0;;15273:2:1;48861:95:0;;;15255:21:1;15312:2;15292:18;;;15285:30;15351:34;15331:18;;;15324:62;-1:-1:-1;;;15402:18:1;;;15395:42;15454:19;;48861:95:0;15071:408:1;48861:95:0;48974:10;48985:5;48974:17;;;;;;;;:::i;:::-;;;;;;;;;48967:24;;48766:233;;;:::o;57264:97::-;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;57335:18:::1;:12;57350:3:::0;;57335:18:::1;:::i;55221:97::-:0;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;55284:20:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;55284:26:0;;::::1;::::0;;;::::1;::::0;;55221:97::o;35124:239::-;35196:7;35232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35232:16:0;35267:19;35259:73;;;;-1:-1:-1;;;35259:73:0;;12082:2:1;35259:73:0;;;12064:21:1;12121:2;12101:18;;;12094:30;12160:34;12140:18;;;12133:62;-1:-1:-1;;;12211:18:1;;;12204:39;12260:19;;35259:73:0;11880:405:1;54776:90:0;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;54842:10:::1;:16:::0;54776:90::o;34854:208::-;34926:7;-1:-1:-1;;;;;34954:19:0;;34946:74;;;;-1:-1:-1;;;34946:74:0;;11671:2:1;34946:74:0;;;11653:21:1;11710:2;11690:18;;;11683:30;11749:34;11729:18;;;11722:62;-1:-1:-1;;;11800:18:1;;;11793:40;11850:19;;34946:74:0;11469:406:1;34946:74:0;-1:-1:-1;;;;;;35038:16:0;;;;;:9;:16;;;;;;;34854:208::o;14400:103::-;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;14465:30:::1;14492:1;14465:18;:30::i;54874:102::-:0;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;54946:16:::1;:22:::0;54874:102::o;55326:205::-;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;55419:9:::1;55415:106;55434:18:::0;;::::1;55415:106;;;55505:4;55474:16;:28;55491:7;;55499:1;55491:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55474:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;55474:28:0;:35;;-1:-1:-1;;55474:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55454:3;::::1;::::0;::::1;:::i;:::-;;;;55415:106;;55539:208:::0;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;55637:9:::1;55633:107;55652:18:::0;;::::1;55633:107;;;55723:5;55692:16;:28;55709:7;;55717:1;55709:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55692:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;55692:28:0;:36;;-1:-1:-1;;55692:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55672:3;::::1;::::0;::::1;:::i;:::-;;;;55633:107;;35599:104:::0;35655:13;35688:7;35681:14;;;;;:::i;55755:1000::-;55821:17;;;;55813:56;;;;-1:-1:-1;;;55813:56:0;;6954:2:1;55813:56:0;;;6936:21:1;6993:2;6973:18;;;6966:30;7032:28;7012:18;;;7005:56;7078:18;;55813:56:0;6752:350:1;55813:56:0;55888:20;;;;;;;;:52;;-1:-1:-1;55929:10:0;55912:28;;;;:16;:28;;;;;;;;55888:52;55880:98;;;;-1:-1:-1;;;55880:98:0;;10844:2:1;55880:98:0;;;10826:21:1;10883:2;10863:18;;;10856:30;10922:34;10902:18;;;10895:62;-1:-1:-1;;;10973:18:1;;;10966:31;11014:19;;55880:98:0;10642:397:1;55880:98:0;56007:16;;55997:6;:26;;55989:84;;;;-1:-1:-1;;;55989:84:0;;7663:2:1;55989:84:0;;;7645:21:1;7702:2;7682:18;;;7675:30;7741:34;7721:18;;;7714:62;-1:-1:-1;;;7792:18:1;;;7785:43;7845:19;;55989:84:0;7461:409:1;55989:84:0;56102:15;;56092:6;:25;;56084:64;;;;-1:-1:-1;;;56084:64:0;;16091:2:1;56084:64:0;;;16073:21:1;16130:2;16110:18;;;16103:30;16169:28;16149:18;;;16142:56;16215:18;;56084:64:0;15889:350:1;56084:64:0;56167:20;;;;;;;;:106;;-1:-1:-1;56242:30:0;;56218:10;56192:37;;;;:25;:37;;;;;;:46;;56232:6;;56192:46;:::i;:::-;:80;;56167:106;56159:192;;;;-1:-1:-1;;;56159:192:0;;16446:2:1;56159:192:0;;;16428:21:1;16485:2;16465:18;;;16458:30;16524:34;16504:18;;;16497:62;16595:30;16575:18;;;16568:58;16643:19;;56159:192:0;16244:424:1;56159:192:0;56392:10;;56383:19;;:6;:19;:::i;:::-;56370:9;:32;;56362:81;;;;-1:-1:-1;;;56362:81:0;;15686:2:1;56362:81:0;;;15668:21:1;15725:2;15705:18;;;15698:30;15764:34;15744:18;;;15737:62;-1:-1:-1;;;15815:18:1;;;15808:34;15859:19;;56362:81:0;15484:400:1;56362:81:0;56456:14;56473:13;48664:10;:17;;48576:113;56473:13;56456:30;;56501:9;56497:100;56520:6;56516:1;:10;56497:100;;;56548:37;56558:10;56583:1;56570:10;56574:6;56570:1;:10;:::i;56548:37::-;56528:3;;;;:::i;:::-;;;;56497:100;;;-1:-1:-1;56614:20:0;;;;;;;56609:101;;56677:10;56651:37;;;;:25;:37;;;;;:47;;56692:6;;56651:37;:47;;56692:6;;56651:47;:::i;:::-;;;;-1:-1:-1;;56609:101:0;56741:6;56722:15;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;55755:1000:0:o;37282:155::-;37377:52;12553:10;37410:8;37420;37377:18;:52::i;:::-;37282:155;;:::o;38405:328::-;38580:41;12553:10;38613:7;38580:18;:41::i;:::-;38572:103;;;;-1:-1:-1;;;38572:103:0;;;;;;;:::i;:::-;38686:39;38700:4;38706:2;38710:7;38719:5;38686:13;:39::i;:::-;38405:328;;;;:::o;55122:91::-;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;55182:17:::1;:23:::0;;-1:-1:-1;;55182:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55122:91::o;35774:334::-;40308:4;40332:16;;;:7;:16;;;;;;35847:13;;-1:-1:-1;;;;;40332:16:0;35873:76;;;;-1:-1:-1;;;35873:76:0;;14037:2:1;35873:76:0;;;14019:21:1;14076:2;14056:18;;;14049:30;14115:34;14095:18;;;14088:62;-1:-1:-1;;;14166:18:1;;;14159:45;14221:19;;35873:76:0;13835:411:1;35873:76:0;35962:21;35986:10;:8;:10::i;:::-;35962:34;;36038:1;36020:7;36014:21;:25;:86;;;;;;;;;;;;;;;;;36066:7;36075:18;:7;:16;:18::i;:::-;36049:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36014:86;36007:93;35774:334;-1:-1:-1;;;35774:334:0:o;14658:201::-;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14747:22:0;::::1;14739:73;;;::::0;-1:-1:-1;;;14739:73:0;;8908:2:1;14739:73:0::1;::::0;::::1;8890:21:1::0;8947:2;8927:18;;;8920:30;8986:34;8966:18;;;8959:62;-1:-1:-1;;;9037:18:1;;;9030:36;9083:19;;14739:73:0::1;8706:402:1::0;14739:73:0::1;14823:28;14842:8;14823:18;:28::i;:::-;14658:201:::0;:::o;54984:130::-;13822:6;;-1:-1:-1;;;;;13822:6:0;12553:10;13969:23;13961:68;;;;-1:-1:-1;;;13961:68:0;;;;;;;:::i;:::-;55070:30:::1;:36:::0;54984:130::o;34485:305::-;34587:4;-1:-1:-1;;;;;;34624:40:0;;-1:-1:-1;;;34624:40:0;;:105;;-1:-1:-1;;;;;;;34681:48:0;;-1:-1:-1;;;34681:48:0;34624:105;:158;;;-1:-1:-1;;;;;;;;;;26290:40:0;;;34746:36;26181:157;44225:174;44300:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44300:29:0;-1:-1:-1;;;;;44300:29:0;;;;;;;;:24;;44354:23;44300:24;44354:14;:23::i;:::-;-1:-1:-1;;;;;44345:46:0;;;;;;;;;;;44225:174;;:::o;41227:110::-;41303:26;41313:2;41317:7;41303:26;;;;;;;;;;;;:9;:26::i;40537:348::-;40630:4;40332:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40332:16:0;40647:73;;;;-1:-1:-1;;;40647:73:0;;10431:2:1;40647:73:0;;;10413:21:1;10470:2;10450:18;;;10443:30;10509:34;10489:18;;;10482:62;-1:-1:-1;;;10560:18:1;;;10553:42;10612:19;;40647:73:0;10229:408:1;40647:73:0;40731:13;40747:23;40762:7;40747:14;:23::i;:::-;40731:39;;40800:5;-1:-1:-1;;;;;40789:16:0;:7;-1:-1:-1;;;;;40789:16:0;;:51;;;;40833:7;-1:-1:-1;;;;;40809:31:0;:20;40821:7;40809:11;:20::i;:::-;-1:-1:-1;;;;;40809:31:0;;40789:51;:87;;;-1:-1:-1;;;;;;37629:25:0;;;37605:4;37629:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40844:32;40781:96;40537:348;-1:-1:-1;;;;40537:348:0:o;43529:578::-;43688:4;-1:-1:-1;;;;;43661:31:0;:23;43676:7;43661:14;:23::i;:::-;-1:-1:-1;;;;;43661:31:0;;43653:85;;;;-1:-1:-1;;;43653:85:0;;13627:2:1;43653:85:0;;;13609:21:1;13666:2;13646:18;;;13639:30;13705:34;13685:18;;;13678:62;-1:-1:-1;;;13756:18:1;;;13749:39;13805:19;;43653:85:0;13425:405:1;43653:85:0;-1:-1:-1;;;;;43757:16:0;;43749:65;;;;-1:-1:-1;;;43749:65:0;;9672:2:1;43749:65:0;;;9654:21:1;9711:2;9691:18;;;9684:30;9750:34;9730:18;;;9723:62;-1:-1:-1;;;9801:18:1;;;9794:34;9845:19;;43749:65:0;9470:400:1;43749:65:0;43827:39;43848:4;43854:2;43858:7;43827:20;:39::i;:::-;43931:29;43948:1;43952:7;43931:8;:29::i;:::-;-1:-1:-1;;;;;43973:15:0;;;;;;:9;:15;;;;;:20;;43992:1;;43973:15;:20;;43992:1;;43973:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44004:13:0;;;;;;:9;:13;;;;;:18;;44021:1;;44004:13;:18;;44021:1;;44004:18;:::i;:::-;;;;-1:-1:-1;;44033:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44033:21:0;-1:-1:-1;;;;;44033:21:0;;;;;;;;;44072:27;;44033:16;;44072:27;;;;;;;43529:578;;;:::o;15019:191::-;15112:6;;;-1:-1:-1;;;;;15129:17:0;;;-1:-1:-1;;;;;;15129:17:0;;;;;;;15162:40;;15112:6;;;15129:17;15112:6;;15162:40;;15093:16;;15162:40;15082:128;15019:191;:::o;44541:315::-;44696:8;-1:-1:-1;;;;;44687:17:0;:5;-1:-1:-1;;;;;44687:17:0;;;44679:55;;;;-1:-1:-1;;;44679:55:0;;10077:2:1;44679:55:0;;;10059:21:1;10116:2;10096:18;;;10089:30;10155:27;10135:18;;;10128:55;10200:18;;44679:55:0;9875:349:1;44679:55:0;-1:-1:-1;;;;;44745:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44745:46:0;;;;;;;;;;44807:41;;6476::1;;;44807::0;;6449:18:1;44807:41:0;;;;;;;44541:315;;;:::o;39615:::-;39772:28;39782:4;39788:2;39792:7;39772:9;:28::i;:::-;39819:48;39842:4;39848:2;39852:7;39861:5;39819:22;:48::i;:::-;39811:111;;;;-1:-1:-1;;;39811:111:0;;;;;;;:::i;57140:113::-;57200:13;57233:12;57226:19;;;;;:::i;469:723::-;525:13;746:10;742:53;;-1:-1:-1;;773:10:0;;;;;;;;;;;;-1:-1:-1;;;773:10:0;;;;;469:723::o;742:53::-;820:5;805:12;861:78;868:9;;861:78;;894:8;;;;:::i;:::-;;-1:-1:-1;917:10:0;;-1:-1:-1;925:2:0;917:10;;:::i;:::-;;;861:78;;;949:19;981:6;971:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;971:17:0;;949:39;;999:154;1006:10;;999:154;;1033:11;1043:1;1033:11;;:::i;:::-;;-1:-1:-1;1102:10:0;1110:2;1102:5;:10;:::i;:::-;1089:24;;:2;:24;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1059:56:0;;;;;;;;-1:-1:-1;1130:11:0;1139:2;1130:11;;:::i;:::-;;;999:154;;41564:321;41694:18;41700:2;41704:7;41694:5;:18::i;:::-;41745:54;41776:1;41780:2;41784:7;41793:5;41745:22;:54::i;:::-;41723:154;;;;-1:-1:-1;;;41723:154:0;;;;;;;:::i;49612:589::-;-1:-1:-1;;;;;49818:18:0;;49814:187;;49853:40;49885:7;51028:10;:17;;51001:24;;;;:15;:24;;;;;:44;;;51056:24;;;;;;;;;;;;50924:164;49853:40;49814:187;;;49923:2;-1:-1:-1;;;;;49915:10:0;:4;-1:-1:-1;;;;;49915:10:0;;49911:90;;49942:47;49975:4;49981:7;49942:32;:47::i;:::-;-1:-1:-1;;;;;50015:16:0;;50011:183;;50048:45;50085:7;50048:36;:45::i;50011:183::-;50121:4;-1:-1:-1;;;;;50115:10:0;:2;-1:-1:-1;;;;;50115:10:0;;50111:83;;50142:40;50170:2;50174:7;50142:27;:40::i;45421:799::-;45576:4;-1:-1:-1;;;;;45597:13:0;;16360:20;16408:8;45593:620;;45633:72;;-1:-1:-1;;;45633:72:0;;-1:-1:-1;;;;;45633:36:0;;;;;:72;;12553:10;;45684:4;;45690:7;;45699:5;;45633:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45633:72:0;;;;;;;;-1:-1:-1;;45633:72:0;;;;;;;;;;;;:::i;:::-;;;45629:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45875:13:0;;45871:272;;45918:60;;-1:-1:-1;;;45918:60:0;;;;;;;:::i;45871:272::-;46093:6;46087:13;46078:6;46074:2;46070:15;46063:38;45629:529;-1:-1:-1;;;;;;45756:51:0;-1:-1:-1;;;45756:51:0;;-1:-1:-1;45749:58:0;;45593:620;-1:-1:-1;46197:4:0;45421:799;;;;;;:::o;42221:382::-;-1:-1:-1;;;;;42301:16:0;;42293:61;;;;-1:-1:-1;;;42293:61:0;;12492:2:1;42293:61:0;;;12474:21:1;;;12511:18;;;12504:30;12570:34;12550:18;;;12543:62;12622:18;;42293:61:0;12290:356:1;42293:61:0;40308:4;40332:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40332:16:0;:30;42365:58;;;;-1:-1:-1;;;42365:58:0;;9315:2:1;42365:58:0;;;9297:21:1;9354:2;9334:18;;;9327:30;9393;9373:18;;;9366:58;9441:18;;42365:58:0;9113:352:1;42365:58:0;42436:45;42465:1;42469:2;42473:7;42436:20;:45::i;:::-;-1:-1:-1;;;;;42494:13:0;;;;;;:9;:13;;;;;:18;;42511:1;;42494:13;:18;;42511:1;;42494:18;:::i;:::-;;;;-1:-1:-1;;42523:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42523:21:0;-1:-1:-1;;;;;42523:21:0;;;;;;;;42562:33;;42523:16;;;42562:33;;42523:16;;42562:33;42221:382;;:::o;51715:988::-;51981:22;52031:1;52006:22;52023:4;52006:16;:22::i;:::-;:26;;;;:::i;:::-;52043:18;52064:26;;;:17;:26;;;;;;51981:51;;-1:-1:-1;52197:28:0;;;52193:328;;-1:-1:-1;;;;;52264:18:0;;52242:19;52264:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52315:30;;;;;;:44;;;52432:30;;:17;:30;;;;;:43;;;52193:328;-1:-1:-1;52617:26:0;;;;:17;:26;;;;;;;;52610:33;;;-1:-1:-1;;;;;52661:18:0;;;;;:12;:18;;;;;:34;;;;;;;52654:41;51715:988::o;52998:1079::-;53276:10;:17;53251:22;;53276:21;;53296:1;;53276:21;:::i;:::-;53308:18;53329:24;;;:15;:24;;;;;;53702:10;:26;;53251:46;;-1:-1:-1;53329:24:0;;53251:46;;53702:26;;;;;;:::i;:::-;;;;;;;;;53680:48;;53766:11;53741:10;53752;53741:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53846:28;;;:15;:28;;;;;;;:41;;;54018:24;;;;;54011:31;54053:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53069:1008;;;52998:1079;:::o;50502:221::-;50587:14;50604:20;50621:2;50604:16;:20::i;:::-;-1:-1:-1;;;;;50635:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50680:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50502:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:615::-;2893:6;2901;2954:2;2942:9;2933:7;2929:23;2925:32;2922:52;;;2970:1;2967;2960:12;2922:52;3010:9;2997:23;3039:18;3080:2;3072:6;3069:14;3066:34;;;3096:1;3093;3086:12;3066:34;3134:6;3123:9;3119:22;3109:32;;3179:7;3172:4;3168:2;3164:13;3160:27;3150:55;;3201:1;3198;3191:12;3150:55;3241:2;3228:16;3267:2;3259:6;3256:14;3253:34;;;3283:1;3280;3273:12;3253:34;3336:7;3331:2;3321:6;3318:1;3314:14;3310:2;3306:23;3302:32;3299:45;3296:65;;;3357:1;3354;3347:12;3296:65;3388:2;3380:11;;;;;3410:6;;-1:-1:-1;2807:615:1;;-1:-1:-1;;;;2807:615:1:o;3427:180::-;3483:6;3536:2;3524:9;3515:7;3511:23;3507:32;3504:52;;;3552:1;3549;3542:12;3504:52;3575:26;3591:9;3575:26;:::i;3612:245::-;3670:6;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3778:9;3765:23;3797:30;3821:5;3797:30;:::i;3862:249::-;3931:6;3984:2;3972:9;3963:7;3959:23;3955:32;3952:52;;;4000:1;3997;3990:12;3952:52;4032:9;4026:16;4051:30;4075:5;4051:30;:::i;4116:592::-;4187:6;4195;4248:2;4236:9;4227:7;4223:23;4219:32;4216:52;;;4264:1;4261;4254:12;4216:52;4304:9;4291:23;4333:18;4374:2;4366:6;4363:14;4360:34;;;4390:1;4387;4380:12;4360:34;4428:6;4417:9;4413:22;4403:32;;4473:7;4466:4;4462:2;4458:13;4454:27;4444:55;;4495:1;4492;4485:12;4444:55;4535:2;4522:16;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4622:7;4617:2;4608:6;4604:2;4600:15;4596:24;4593:37;4590:57;;;4643:1;4640;4633:12;4713:180;4772:6;4825:2;4813:9;4804:7;4800:23;4796:32;4793:52;;;4841:1;4838;4831:12;4793:52;-1:-1:-1;4864:23:1;;4713:180;-1:-1:-1;4713:180:1:o;4898:257::-;4939:3;4977:5;4971:12;5004:6;4999:3;4992:19;5020:63;5076:6;5069:4;5064:3;5060:14;5053:4;5046:5;5042:16;5020:63;:::i;:::-;5137:2;5116:15;-1:-1:-1;;5112:29:1;5103:39;;;;5144:4;5099:50;;4898:257;-1:-1:-1;;4898:257:1:o;5160:470::-;5339:3;5377:6;5371:13;5393:53;5439:6;5434:3;5427:4;5419:6;5415:17;5393:53;:::i;:::-;5509:13;;5468:16;;;;5531:57;5509:13;5468:16;5565:4;5553:17;;5531:57;:::i;:::-;5604:20;;5160:470;-1:-1:-1;;;;5160:470:1:o;5843:488::-;-1:-1:-1;;;;;6112:15:1;;;6094:34;;6164:15;;6159:2;6144:18;;6137:43;6211:2;6196:18;;6189:34;;;6259:3;6254:2;6239:18;;6232:31;;;6037:4;;6280:45;;6305:19;;6297:6;6280:45;:::i;:::-;6272:53;5843:488;-1:-1:-1;;;;;;5843:488:1:o;6528:219::-;6677:2;6666:9;6659:21;6640:4;6697:44;6737:2;6726:9;6722:18;6714:6;6697:44;:::i;8287:414::-;8489:2;8471:21;;;8528:2;8508:18;;;8501:30;8567:34;8562:2;8547:18;;8540:62;-1:-1:-1;;;8633:2:1;8618:18;;8611:48;8691:3;8676:19;;8287:414::o;13064:356::-;13266:2;13248:21;;;13285:18;;;13278:30;13344:34;13339:2;13324:18;;13317:62;13411:2;13396:18;;13064:356::o;14653:413::-;14855:2;14837:21;;;14894:2;14874:18;;;14867:30;14933:34;14928:2;14913:18;;14906:62;-1:-1:-1;;;14999:2:1;14984:18;;14977:47;15056:3;15041:19;;14653:413::o;16855:128::-;16895:3;16926:1;16922:6;16919:1;16916:13;16913:39;;;16932:18;;:::i;:::-;-1:-1:-1;16968:9:1;;16855:128::o;16988:120::-;17028:1;17054;17044:35;;17059:18;;:::i;:::-;-1:-1:-1;17093:9:1;;16988:120::o;17113:168::-;17153:7;17219:1;17215;17211:6;17207:14;17204:1;17201:21;17196:1;17189:9;17182:17;17178:45;17175:71;;;17226:18;;:::i;:::-;-1:-1:-1;17266:9:1;;17113:168::o;17286:125::-;17326:4;17354:1;17351;17348:8;17345:34;;;17359:18;;:::i;:::-;-1:-1:-1;17396:9:1;;17286:125::o;17416:258::-;17488:1;17498:113;17512:6;17509:1;17506:13;17498:113;;;17588:11;;;17582:18;17569:11;;;17562:39;17534:2;17527:10;17498:113;;;17629:6;17626:1;17623:13;17620:48;;;-1:-1:-1;;17664:1:1;17646:16;;17639:27;17416:258::o;17679:380::-;17758:1;17754:12;;;;17801;;;17822:61;;17876:4;17868:6;17864:17;17854:27;;17822:61;17929:2;17921:6;17918:14;17898:18;17895:38;17892:161;;;17975:10;17970:3;17966:20;17963:1;17956:31;18010:4;18007:1;18000:15;18038:4;18035:1;18028:15;17892:161;;17679:380;;;:::o;18064:135::-;18103:3;-1:-1:-1;;18124:17:1;;18121:43;;;18144:18;;:::i;:::-;-1:-1:-1;18191:1:1;18180:13;;18064:135::o;18204:112::-;18236:1;18262;18252:35;;18267:18;;:::i;:::-;-1:-1:-1;18301:9:1;;18204:112::o;18321:127::-;18382:10;18377:3;18373:20;18370:1;18363:31;18413:4;18410:1;18403:15;18437:4;18434:1;18427:15;18453:127;18514:10;18509:3;18505:20;18502:1;18495:31;18545:4;18542:1;18535:15;18569:4;18566:1;18559:15;18585:127;18646:10;18641:3;18637:20;18634:1;18627:31;18677:4;18674:1;18667:15;18701:4;18698:1;18691:15;18717:127;18778:10;18773:3;18769:20;18766:1;18759:31;18809:4;18806:1;18799:15;18833:4;18830:1;18823:15;18849:127;18910:10;18905:3;18901:20;18898:1;18891:31;18941:4;18938:1;18931:15;18965:4;18962:1;18955:15;18981:131;-1:-1:-1;;;;;;19055:32:1;;19045:43;;19035:71;;19102:1;19099;19092:12
Swarm Source
ipfs://e12d203b0d89a8f9996ea0c5b36b2a23e56a9792053b54aa9d14544f0fe6ea22
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.