ERC-721
NFT
Overview
Max Total Supply
3,828 GRUMPL
Holders
1,873
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GRUMPLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
grumpls
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-27 */ // SPDX-License-Identifier: MIT //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////(///////#@%#&&&&&&&&&&&&&&&//////#@%#&&&&&&#@%#&&&/////(////////////////////// /////////////##%&&%////((#&&&(///(//////////////////(/////////////(///(&#///#@%#(%////////////////// //////////(%(/(((((#@@%%(//(//////////////////////////////(//////////(///(##&//(((%///////////////// //////////(&#(/#@&((/((////////////////////////////////////////////////(////#///#((#//////////////// ////////(//@&##//%#//////////(/////////////////////////////(////////////(////(///((///////////////// ////////(%@#@#///(///////////#/////////////////////////////(/////////////(//(//(//((//////////////// ///////((%#(/#//(////////////#///////////////////////////////////////////////(//(//(((////////////// ///////(%@%(((/(/////////////#////////////////////////////////////////////(///(//#/(%(////////////// ////////@@#/#(/(/////////////(//////////////////////////////(/(///////////(////(//(/##////////////// ////////%@%((((///////////////(/////////////////////////////(//(///////////////(////(%////////////// ////////#@%#/((///////////////(//////////////////////////////(/(////////////////(///(%#///////////// ////////(@%#/(///////////////////////////////////////////////(///////////////////(///&(///////////// ////////(@&#/#///////////////////////////////////////////////(//(////////////////(///#////////////// ////////(@&(/(///////////////////////////////////////////////(//(//////////(//////(//##///////////// ///////((@&(((//////////////////////////((((/////////////////(/////////////(//////(/(%%///////////// ////////(@&#((////////////////////////(((////((//////////////(///(//////((##/////////%%///////////// ////////(&&#((/////////////////////////#///////(/////////////(///(/////(#(/(%//////((#%///////////// ////////##&#/#//////////////////////////####(//////////////////////////(#(/(#//////((%#///////////// ////////(#&#/(///(//////////////////////////////////////////((((((((((((///////////(/@////////////// ////////(#%(/(///(/////////////////////////(#%&&%%#//#%#/////(#%#/(//(%&%&&&&#(////((%////////////// ////////(&&(//(///////////////////(%%&#(##(/%%%//////%&&%////%@#@%(//(&(%(////#&@@%(&/////////////// ////////(&%##(///////////////##%#/#%&@//////@@&%@&&&%%&%%@&&&@&%#%%%#(((#&#(%&&(//#@%/////////////// /////////%(%//////////////#&%%(////%@&@@&&&@&@@@&@@@@@&&%&%&@@#########((((((#%@%@#(((////////////// //////////%(//(/////////(&&@@&(///@@@@@@@@@&&&&%@@@&&&&&%%&&&&(((((((((((((###(@///(##////////////// //////////#(////////////%&@&@@@@@@@@@&%(((((///((%@&@@@@&%%%%&@&%#(((((((((((&%@///#(((///////////// /////////(///////////////@&@&&&%(//((////////////////((%#(//////(/#(@%#(((((#@(&///#(/#///////////// /////////(((//////////////@#&@//////////////////////////(##///////(/##&((((((&%@//(#/##(//////////// /////////#(////////////////%%#@(/////////////////////////(##/////////(&#(////%(@(//%(%(%//////////// /////////%#/////////////////#@@&@#////////////////////////(#%//////////@(////&(&(/((#%#%//////////// /////////&#//////////////////#%%(/@(///////////////////////###//////////@(////@@(//(%%%&&/////////// ////////(#(///////////////////((&%(@##(/////////////////////%&//////////%#///&(#(//((&#&##////////// ////////%(/////////(////////////#(&&(/#@%///////////////////(%(//////////&///&##(////%@&&%////////// ///////(&(/(//////(%&(////////////#(#%#/%%(/////////////////(%#//////////&//(&&#/////(&@#@(///////// ///////%%(/(/////(#(%//////////////(((#(%&&&&#///////////////##/////////(%/(#/(///////%@&(&///////// ///////%((/(///((%//@%/////////////////#((##//&&(///////////(##/////////(@&&&%//////(/%&(#&(//////// //////(%(/////(%@&(((/////////////////(//(##(#&#%&###(////(///(///(((##&((&(%///////(/%@#%(@//////// ///////#(///((@@////////////////////////(////%(#(////(&(#&##&&&((&#////#@##/////////(/%&&@@%//////// ///////%@%%@%%#////////////////////////////(/////#&&(##&///(///&&%//(&&(/(//////////((%#/((///////// ///////(/((/(//////////////////////////////////////////(%&&&%&%@@&&(////////////////((%///(///////// /////////((((//////////////////////////////////////////////(////////////////////////((#//(////////// /////////(/((/////////////////////////////////////////////////////////////((((//(((//&#///////////// /////////#//(/(///////////////////////////////////////////////(%#((//////////////(/#%(////////////// ///////////(#//((///((/((//////////////////////////////////((#&&%(#//////////////%@%//////////////// ///////////#(//#/(/(////((/(////////////////////////(////////%##(#(//////////(%%&%(///////////////// ///////////&#//////////////(#%%((((////((//////////////////////(////////(%#%#&#%//#///////////////// ///////////&#(////////////////////#(#%&%#(////////////////////////(#////#%#(((////%///////////////// ///////////#%///////////////%//////////(#(///(%%#%&%((///(((((##%&&@&#((/(///////(#(//////////////// //////////((&////////////((////////////////////(((//////////////////////#%((//////(#//////////////// //////////((%(////(//(/#(////////////////////////////////////////////////(@((//////(#@(///////////// //////////////////////////////////////////////////////////////////////////////////////////////////// pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: ECDSA.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 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: 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: Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: 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: 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: 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: 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: 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: 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: ERC721A.sol pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.2; abstract contract DATOLTINGEE { function ownerOf(uint256 tokenId) public virtual view returns(address); function NOMZ(uint256 distinghear) external virtual; function oopsy(uint256) public virtual view returns(bool); function frizewitdat(uint256) public virtual view returns(uint); function SLOPstufs(uint256) public virtual view returns(uint); function MEEEEEET(uint256) public virtual view returns(uint); function mellteeGUDnesses(uint256) public virtual view returns(uint); function stufonnaTOP(uint256) public virtual view returns(uint); function grippeebits(uint256) public virtual view returns(uint); } abstract contract DATUDDEROLDTINGEE { function ownerOf(uint256 tokenId) public virtual view returns(address); } contract grumpls is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public ALLDATstuffs; DATOLTINGEE private datoltingee; DATUDDEROLDTINGEE private dattudderoldtingee; error dattunbesidewaez(uint256 stuffs); error cantMEKaburgrADOGG(uint256 SIDWAEZ); error kinchooKOUNT(); error distingOFF(); error yooAINTdabossoHIM(); error needayoosatoppin(); error speshululreddyclaimed(); error goblinNOSTEALIN(); uint256 private trowDISindaTRAPP = 0; bool public izzitON; bool public izzitINdere; address datoltingeeadriss = 0xc5B52253f5225835cc81C52cdb3d6A22bc3B0c93; address dattudderoldtingeeadriss = 0xbCe3781ae7Ca1a5e050Bd9C4c77369867eBc307e; address daKing = 0x9478b25707fE50043d34b38F28765616c47f88BD; mapping(uint256 => uint) public stakkinUPdaGREEDyintsfrizewitdat; mapping(uint256 => uint) public stakkinUPdaGREEDyintsSLOPstufs; mapping(uint256 => uint) public stakkinUPdaGREEDyintsMEEEEEET; mapping(uint256 => uint) public stakkinUPdaGREEDyintsmellteeGUDnesses; mapping(uint256 => uint) public stakkinUPdaGREEDyintsstufonnaTOP; mapping(uint256 => uint) public stakkinUPdaGREEDyintsgrippeebits; mapping(uint256 => bool) public oooooshynee; mapping(uint256 => uint256) public watgotTROWNin; mapping(uint256 => uint256) public watToppinsgotTROWNin; mapping(uint256 => bool) public HOODIDdis; constructor() ERC721A("grumpls", "GRUMPL") { datoltingee = DATOLTINGEE(datoltingeeadriss); dattudderoldtingee = DATUDDEROLDTINGEE(dattudderoldtingeeadriss); } function _baseURI() internal view virtual override returns(string memory) { return ALLDATstuffs; } function watzaSPESHUL(uint256[] calldata speshulz) public onlyOwner { for (uint256 i = 0; i < speshulz.length; i++) { oooooshynee[speshulz[i]] = true; } } function ternItINdere(bool dere) public onlyOwner { izzitINdere = dere; } function ternON(bool itzON) public onlyOwner { izzitON = itzON; } function itsabrgrr(uint ORDURRnumbr, uint256[] calldata stuffs, uint frize, uint slop, uint meet, uint meltee, uint stuf, uint gripee) external { if(msg.sender != daKing){ if (!izzitON) { revert distingOFF(); } } uint howMENNYzit = totalSupply(); if (dattudderoldtingee.ownerOf(ORDURRnumbr) != msg.sender) { revert yooAINTdabossoHIM(); } if (stuffs.length != 1) { revert kinchooKOUNT(); } uint daTingys = frize + slop + meet + meltee + stuf + gripee; if (daTingys < 1 || daTingys > 6) { revert needayoosatoppin(); } nomNOMNOMnomnom(stuffs); watToppinsgotTROWNin[howMENNYzit] = daTingys; if (frize > trowDISindaTRAPP) { stakkinUPdaGREEDyintsfrizewitdat[howMENNYzit] = datoltingee.frizewitdat(stuffs[0]); } if (slop > trowDISindaTRAPP) { stakkinUPdaGREEDyintsSLOPstufs[howMENNYzit] = datoltingee.SLOPstufs(stuffs[0]); } if (meet > trowDISindaTRAPP) { stakkinUPdaGREEDyintsMEEEEEET[howMENNYzit] = datoltingee.MEEEEEET(stuffs[0]); } if (meltee > trowDISindaTRAPP) { stakkinUPdaGREEDyintsmellteeGUDnesses[howMENNYzit] = datoltingee.mellteeGUDnesses(stuffs[0]); } if (stuf > trowDISindaTRAPP) { stakkinUPdaGREEDyintsstufonnaTOP[howMENNYzit] = datoltingee.stufonnaTOP(stuffs[0]); } if (gripee > trowDISindaTRAPP) { stakkinUPdaGREEDyintsgrippeebits[howMENNYzit] = datoltingee.grippeebits(stuffs[0]); } if (!oooooshynee[ORDURRnumbr]) { watgotTROWNin[howMENNYzit] = 1; } else { if (HOODIDdis[ORDURRnumbr]) { revert speshululreddyclaimed(); } watgotTROWNin[howMENNYzit] = 0; HOODIDdis[ORDURRnumbr] = true; } _safeMint(msg.sender, 1); } function itsadubble(uint ORDURRnumbr, uint256[] calldata stuffs) external { if (!izzitON) { revert distingOFF(); } require(!oooooshynee[ORDURRnumbr]); if (dattudderoldtingee.ownerOf(ORDURRnumbr) != msg.sender) { revert yooAINTdabossoHIM(); } if (stuffs.length != 2) { revert kinchooKOUNT(); } nomNOMNOMnomnom(stuffs); uint256 howMENNYzit = totalSupply(); watgotTROWNin[howMENNYzit] = 2; _safeMint(msg.sender, 1); } function ohfukwatsHAPNIN(uint ORDURRnumbr, uint256[] calldata stuffs) external { if (!izzitON) { revert distingOFF(); } require(!oooooshynee[ORDURRnumbr]); if (dattudderoldtingee.ownerOf(ORDURRnumbr) != msg.sender) { revert yooAINTdabossoHIM(); } require(stuffs.length == 3); nomNOMNOMnomnom(stuffs); uint256 howMENNYzit = totalSupply(); watgotTROWNin[howMENNYzit] = 3; _safeMint(msg.sender, 1); } function stikitINSIDWAEZ(uint ORDURRnumbr, uint peepeezNstuff) external { if (!izzitON) { revert distingOFF(); } require(datoltingee.ownerOf(peepeezNstuff) == msg.sender); if (dattudderoldtingee.ownerOf(ORDURRnumbr) != msg.sender) { revert yooAINTdabossoHIM(); } if (!datoltingee.oopsy(peepeezNstuff)) { revert cantMEKaburgrADOGG(peepeezNstuff); } datoltingee.NOMZ(peepeezNstuff); uint256 howMENNYzit = totalSupply(); if (oooooshynee[ORDURRnumbr]) { if (HOODIDdis[ORDURRnumbr]) { revert speshululreddyclaimed(); } watgotTROWNin[howMENNYzit] = 5; HOODIDdis[ORDURRnumbr] = true; } else { watgotTROWNin[howMENNYzit] = 4; } _safeMint(msg.sender, 1); } function sompinNOOcummin(string memory datPikturethingy) external onlyOwner { ALLDATstuffs = datPikturethingy; } function tokenURI(uint256 grumpl) public view virtual override returns(string memory) { require(_exists(grumpl), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); uint256 dagotTROWNin = watgotTROWNin[grumpl]; uint burgrrr = watToppinsgotTROWNin[grumpl]; if (izzitINdere) { return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, grumpl.toString())) : ''; } else { if (dagotTROWNin < 2) { return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, dagotTROWNin.toString(), "-", burgrrr.toString())) : ''; } else { return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, dagotTROWNin.toString())) : ''; } } } function nomNOMNOMnomnom(uint256[] calldata stuffs) internal { for (uint8 i = 0; i < stuffs.length; i++) { if (datoltingee.oopsy(stuffs[i])) { revert dattunbesidewaez(stuffs[i]); } if (datoltingee.ownerOf(stuffs[i]) != msg.sender) { revert goblinNOSTEALIN(); } datoltingee.NOMZ(stuffs[i]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"SIDWAEZ","type":"uint256"}],"name":"cantMEKaburgrADOGG","type":"error"},{"inputs":[{"internalType":"uint256","name":"stuffs","type":"uint256"}],"name":"dattunbesidewaez","type":"error"},{"inputs":[],"name":"distingOFF","type":"error"},{"inputs":[],"name":"goblinNOSTEALIN","type":"error"},{"inputs":[],"name":"kinchooKOUNT","type":"error"},{"inputs":[],"name":"needayoosatoppin","type":"error"},{"inputs":[],"name":"speshululreddyclaimed","type":"error"},{"inputs":[],"name":"yooAINTdabossoHIM","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ALLDATstuffs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"HOODIDdis","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ORDURRnumbr","type":"uint256"},{"internalType":"uint256[]","name":"stuffs","type":"uint256[]"},{"internalType":"uint256","name":"frize","type":"uint256"},{"internalType":"uint256","name":"slop","type":"uint256"},{"internalType":"uint256","name":"meet","type":"uint256"},{"internalType":"uint256","name":"meltee","type":"uint256"},{"internalType":"uint256","name":"stuf","type":"uint256"},{"internalType":"uint256","name":"gripee","type":"uint256"}],"name":"itsabrgrr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ORDURRnumbr","type":"uint256"},{"internalType":"uint256[]","name":"stuffs","type":"uint256[]"}],"name":"itsadubble","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"izzitINdere","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"izzitON","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ORDURRnumbr","type":"uint256"},{"internalType":"uint256[]","name":"stuffs","type":"uint256[]"}],"name":"ohfukwatsHAPNIN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"oooooshynee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"datPikturethingy","type":"string"}],"name":"sompinNOOcummin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakkinUPdaGREEDyintsMEEEEEET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakkinUPdaGREEDyintsSLOPstufs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakkinUPdaGREEDyintsfrizewitdat","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakkinUPdaGREEDyintsgrippeebits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakkinUPdaGREEDyintsmellteeGUDnesses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakkinUPdaGREEDyintsstufonnaTOP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ORDURRnumbr","type":"uint256"},{"internalType":"uint256","name":"peepeezNstuff","type":"uint256"}],"name":"stikitINSIDWAEZ","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"dere","type":"bool"}],"name":"ternItINdere","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"itzON","type":"bool"}],"name":"ternON","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"grumpl","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"watToppinsgotTROWNin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"watgotTROWNin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"speshulz","type":"uint256[]"}],"name":"watzaSPESHUL","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600c55600d805475c5b52253f5225835cc81c52cdb3d6a22bc3b0c93000062010000600160b01b0319909116179055600e80546001600160a01b031990811673bce3781ae7ca1a5e050bd9c4c77369867ebc307e17909155600f8054909116739478b25707fe50043d34b38f28765616c47f88bd1790553480156200008a57600080fd5b5060408051808201825260078152666772756d706c7360c81b60208083019182528351808501909452600684526511d49553541360d21b908401528151919291620000d891600191620001a6565b508051620000ee906002906020840190620001a6565b5050506200010b620001056200015060201b60201c565b62000154565b6001600855600d54600a80546001600160a01b03199081166001600160a01b0362010000909404841617909155600e54600b8054909216921691909117905562000288565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b4906200024c565b90600052602060002090601f016020900481019282620001d8576000855562000223565b82601f10620001f357805160ff191683800117855562000223565b8280016001018555821562000223579182015b828111156200022357825182559160200191906001019062000206565b506200023192915062000235565b5090565b5b8082111562000231576000815560010162000236565b600181811c908216806200026157607f821691505b6020821081036200028257634e487b7160e01b600052602260045260246000fd5b50919050565b612dd780620002986000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063877e0a3d1161013b578063b88d4fde116100b8578063e985e9c51161007c578063e985e9c514610557578063eaed501814610593578063f0f31c0b146105b6578063f2fde38b146105c9578063f3d29037146105dc57600080fd5b8063b88d4fde146104eb578063c23b978e146104fe578063c4ee3fe214610511578063c87b56dd14610531578063c8a943411461054457600080fd5b806395d89b41116100ff57806395d89b4114610490578063a22cb46514610498578063aa3ccba3146104ab578063ac5bcc2c146104be578063b3a9fda0146104de57600080fd5b8063877e0a3d14610419578063890a85921461042c5780638da5cb5b1461044c5780638f52156d1461045d5780639383a2481461047057600080fd5b806342842e0e116101c95780636352211e1161018d5780636352211e146103ab57806365cc274f146103be57806370a08231146103de578063715018a6146103f15780638701cb03146103f957600080fd5b806342842e0e146103405780634abddab1146103535780634f6ccce7146103735780634fcc2103146103865780635fbb5a4e1461039857600080fd5b806318160ddd1161021057806318160ddd146102ed5780631eb7f1a9146102ff57806323b872dd146103125780632a4bb1c6146103255780632f745c591461032d57600080fd5b806301ffc9a71461024d578063053822951461027557806306fdde0314610298578063081812fc146102ad578063095ea7b3146102d8575b600080fd5b61026061025b36600461263e565b6105fc565b60405190151581526020015b60405180910390f35b610260610283366004612662565b60166020526000908152604090205460ff1681565b6102a0610669565b60405161026c91906126d3565b6102c06102bb366004612662565b6106fb565b6040516001600160a01b03909116815260200161026c565b6102eb6102e63660046126fb565b61078b565b005b6000545b60405190815260200161026c565b6102eb61030d366004612772565b6108a2565b6102eb6103203660046127b3565b61092e565b6102a0610939565b6102f161033b3660046126fb565b6109c7565b6102eb61034e3660046127b3565b610b21565b6102f1610361366004612662565b60146020526000908152604090205481565b6102f1610381366004612662565b610b3c565b600d5461026090610100900460ff1681565b6102eb6103a63660046127f4565b610b9e565b6102c06103b9366004612662565b610cc2565b6102f16103cc366004612662565b60136020526000908152604090205481565b6102f16103ec36600461283f565b610cd4565b6102eb610d65565b6102f1610407366004612662565b60116020526000908152604090205481565b6102eb6104273660046127f4565b610d9b565b6102f161043a366004612662565b60156020526000908152604090205481565b6007546001600160a01b03166102c0565b6102eb61046b36600461285c565b610ea5565b6102f161047e366004612662565b60106020526000908152604090205481565b6102a0611169565b6102eb6104a636600461288c565b611178565b6102eb6104b93660046128c5565b61123c565b6102f16104cc366004612662565b60186020526000908152604090205481565b600d546102609060ff1681565b6102eb6104f936600461296d565b611279565b6102eb61050c3660046129ec565b6112ac565b6102f161051f366004612662565b60176020526000908152604090205481565b6102a061053f366004612662565b61188c565b6102eb610552366004612a6c565b6119fd565b610260610565366004612ab4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102606105a1366004612662565b60196020526000908152604090205460ff1681565b6102eb6105c43660046128c5565b611a3e565b6102eb6105d736600461283f565b611a82565b6102f16105ea366004612662565b60126020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061062d57506001600160e01b03198216635b5e139f60e01b145b8061064857506001600160e01b0319821663780e9d6360e01b145b8061066357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461067890612ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546106a490612ae2565b80156106f15780601f106106c6576101008083540402835291602001916106f1565b820191906000526020600020905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b6000610708826000541190565b61076f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061079682610cc2565b9050806001600160a01b0316836001600160a01b0316036108045760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610766565b336001600160a01b038216148061082057506108208133610565565b6108925760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610766565b61089d838383611b1d565b505050565b6007546001600160a01b031633146108cc5760405162461bcd60e51b815260040161076690612b1c565b60005b8181101561089d576001601660008585858181106108ef576108ef612b51565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061092690612b7d565b9150506108cf565b61089d838383611b79565b6009805461094690612ae2565b80601f016020809104026020016040519081016040528092919081815260200182805461097290612ae2565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b505050505081565b60006109d283610cd4565b8210610a2b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610766565b600080549080805b83811015610ac1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a8557805192505b876001600160a01b0316836001600160a01b031603610ab857868403610ab15750935061066392505050565b6001909301925b50600101610a33565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610766565b61089d83838360405180602001604052806000815250611279565b600080548210610b9a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610766565b5090565b600d5460ff16610bc157604051635d733d0760e01b815260040160405180910390fd5b60008381526016602052604090205460ff1615610bdd57600080fd5b600b546040516331a9108f60e11b81526004810185905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4a9190612b96565b6001600160a01b031614610c715760405163fa73208560e01b815260040160405180910390fd5b60028114610c9257604051630b7e41b560e21b815260040160405180910390fd5b610c9c8282611e5c565b600080548082526017602052604090912060029055610cbc336001612078565b50505050565b6000610ccd82612092565b5192915050565b60006001600160a01b038216610d405760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610766565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d8f5760405162461bcd60e51b815260040161076690612b1c565b610d996000612168565b565b600d5460ff16610dbe57604051635d733d0760e01b815260040160405180910390fd5b60008381526016602052604090205460ff1615610dda57600080fd5b600b546040516331a9108f60e11b81526004810185905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e479190612b96565b6001600160a01b031614610e6e5760405163fa73208560e01b815260040160405180910390fd5b60038114610e7b57600080fd5b610e858282611e5c565b600080548082526017602052604090912060039055610cbc336001612078565b600d5460ff16610ec857604051635d733d0760e01b815260040160405180910390fd5b600a546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610f11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f359190612b96565b6001600160a01b031614610f4857600080fd5b600b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610f91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb59190612b96565b6001600160a01b031614610fdc5760405163fa73208560e01b815260040160405180910390fd5b600a546040516397f0923560e01b8152600481018390526001600160a01b03909116906397f0923590602401602060405180830381865afa158015611025573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110499190612bb3565b6110695760405163f9cfb28760e01b815260048101829052602401610766565b600a546040516349be9ee960e11b8152600481018390526001600160a01b039091169063937d3dd290602401600060405180830381600087803b1580156110af57600080fd5b505af11580156110c3573d6000803e3d6000fd5b5050505060006110d260005490565b60008481526016602052604090205490915060ff161561114b5760008381526019602052604090205460ff161561111c5760405163ad9a1a6160e01b815260040160405180910390fd5b60008181526017602090815260408083206005905585835260199091529020805460ff1916600117905561115e565b6000818152601760205260409020600490555b61089d336001612078565b60606002805461067890612ae2565b336001600160a01b038316036111d05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610766565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146112665760405162461bcd60e51b815260040161076690612b1c565b600d805460ff1916911515919091179055565b611284848484611b79565b611290848484846121ba565b610cbc5760405162461bcd60e51b815260040161076690612bd0565b600f546001600160a01b031633146112e157600d5460ff166112e157604051635d733d0760e01b815260040160405180910390fd5b60008054600b546040516331a9108f60e11b8152600481018d905291925033916001600160a01b0390911690636352211e90602401602060405180830381865afa158015611333573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113579190612b96565b6001600160a01b03161461137e5760405163fa73208560e01b815260040160405180910390fd5b6001881461139f57604051630b7e41b560e21b815260040160405180910390fd5b6000828486886113af8b8d612c23565b6113b99190612c23565b6113c39190612c23565b6113cd9190612c23565b6113d79190612c23565b905060018110806113e85750600681115b1561140657604051630540928d60e31b815260040160405180910390fd5b6114108a8a611e5c565b6000828152601860205260409020819055600c548811156114c357600a546001600160a01b031663b47ab36d8b8b60008161144d5761144d612b51565b905060200201356040518263ffffffff1660e01b815260040161147291815260200190565b602060405180830381865afa15801561148f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b39190612c3b565b6000838152601060205260409020555b600c5487111561156557600a546001600160a01b0316635c1dd5db8b8b6000816114ef576114ef612b51565b905060200201356040518263ffffffff1660e01b815260040161151491815260200190565b602060405180830381865afa158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190612c3b565b6000838152601160205260409020555b600c5486111561160757600a546001600160a01b0316632ebfb7168b8b60008161159157611591612b51565b905060200201356040518263ffffffff1660e01b81526004016115b691815260200190565b602060405180830381865afa1580156115d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f79190612c3b565b6000838152601260205260409020555b600c548511156116a957600a546001600160a01b0316635f572afc8b8b60008161163357611633612b51565b905060200201356040518263ffffffff1660e01b815260040161165891815260200190565b602060405180830381865afa158015611675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116999190612c3b565b6000838152601360205260409020555b600c5484111561174b57600a546001600160a01b031663d4db363a8b8b6000816116d5576116d5612b51565b905060200201356040518263ffffffff1660e01b81526004016116fa91815260200190565b602060405180830381865afa158015611717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173b9190612c3b565b6000838152601460205260409020555b600c548311156117ed57600a546001600160a01b03166391073a5c8b8b60008161177757611777612b51565b905060200201356040518263ffffffff1660e01b815260040161179c91815260200190565b602060405180830381865afa1580156117b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dd9190612c3b565b6000838152601560205260409020555b60008b81526016602052604090205460ff1661181a57600082815260176020526040902060019055611874565b60008b81526019602052604090205460ff161561184a5760405163ad9a1a6160e01b815260040160405180910390fd5b60008281526017602090815260408083208390558d835260199091529020805460ff191660011790555b61187f336001612078565b5050505050505050505050565b6060611899826000541190565b6118fd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610766565b60006119076122bc565b600084815260176020908152604080832054601890925290912054600d549293509091610100900460ff16156119895782516000036119555760405180602001604052806000815250611980565b8261195f866122cb565b604051602001611970929190612c54565b6040516020818303038152906040525b95945050505050565b60028210156119d55782516000036119b05760405180602001604052806000815250611980565b826119ba836122cb565b6119c3836122cb565b60405160200161197093929190612c83565b82516000036119f35760405180602001604052806000815250611980565b8261195f836122cb565b6007546001600160a01b03163314611a275760405162461bcd60e51b815260040161076690612b1c565b8051611a3a906009906020840190612598565b5050565b6007546001600160a01b03163314611a685760405162461bcd60e51b815260040161076690612b1c565b600d80549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611aac5760405162461bcd60e51b815260040161076690612b1c565b6001600160a01b038116611b115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610766565b611b1a81612168565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b8482612092565b80519091506000906001600160a01b0316336001600160a01b03161480611bbb575033611bb0846106fb565b6001600160a01b0316145b80611bcd57508151611bcd9033610565565b905080611c375760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610766565b846001600160a01b031682600001516001600160a01b031614611cab5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610766565b6001600160a01b038416611d0f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610766565b611d1f6000848460000151611b1d565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611e1257611dc6816000541190565b15611e1257825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60005b60ff811682111561089d57600a546001600160a01b03166397f09235848460ff8516818110611e9057611e90612b51565b905060200201356040518263ffffffff1660e01b8152600401611eb591815260200190565b602060405180830381865afa158015611ed2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef69190612bb3565b15611f335782828260ff16818110611f1057611f10612b51565b905060200201356040516336dd588560e01b815260040161076691815260200190565b600a5433906001600160a01b0316636352211e858560ff8616818110611f5b57611f5b612b51565b905060200201356040518263ffffffff1660e01b8152600401611f8091815260200190565b602060405180830381865afa158015611f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc19190612b96565b6001600160a01b031614611fe857604051630720a37360e51b815260040160405180910390fd5b600a546001600160a01b031663937d3dd2848460ff851681811061200e5761200e612b51565b905060200201356040518263ffffffff1660e01b815260040161203391815260200190565b600060405180830381600087803b15801561204d57600080fd5b505af1158015612061573d6000803e3d6000fd5b50505050808061207090612cd3565b915050611e5f565b611a3a8282604051806020016040528060008152506123cb565b60408051808201909152600080825260208201526120b1826000541190565b6121105760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610766565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561215e579392505050565b5060001901612112565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156122b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121fe903390899088908890600401612cf2565b6020604051808303816000875af1925050508015612239575060408051601f3d908101601f1916820190925261223691810190612d2f565b60015b612296573d808015612267576040519150601f19603f3d011682016040523d82523d6000602084013e61226c565b606091505b50805160000361228e5760405162461bcd60e51b815260040161076690612bd0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122b4565b5060015b949350505050565b60606009805461067890612ae2565b6060816000036122f25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561231c578061230681612b7d565b91506123159050600a83612d62565b91506122f6565b6000816001600160401b03811115612336576123366128e2565b6040519080825280601f01601f191660200182016040528015612360576020820181803683370190505b5090505b84156122b457612375600183612d76565b9150612382600a86612d8d565b61238d906030612c23565b60f81b8183815181106123a2576123a2612b51565b60200101906001600160f81b031916908160001a9053506123c4600a86612d62565b9450612364565b61089d83838360016000546001600160a01b0385166124365760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610766565b836000036124975760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610766565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b8581101561258f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156125835761256760008884886121ba565b6125835760405162461bcd60e51b815260040161076690612bd0565b60019182019101612514565b50600055611e55565b8280546125a490612ae2565b90600052602060002090601f0160209004810192826125c6576000855561260c565b82601f106125df57805160ff191683800117855561260c565b8280016001018555821561260c579182015b8281111561260c5782518255916020019190600101906125f1565b50610b9a9291505b80821115610b9a5760008155600101612614565b6001600160e01b031981168114611b1a57600080fd5b60006020828403121561265057600080fd5b813561265b81612628565b9392505050565b60006020828403121561267457600080fd5b5035919050565b60005b8381101561269657818101518382015260200161267e565b83811115610cbc5750506000910152565b600081518084526126bf81602086016020860161267b565b601f01601f19169290920160200192915050565b60208152600061265b60208301846126a7565b6001600160a01b0381168114611b1a57600080fd5b6000806040838503121561270e57600080fd5b8235612719816126e6565b946020939093013593505050565b60008083601f84011261273957600080fd5b5081356001600160401b0381111561275057600080fd5b6020830191508360208260051b850101111561276b57600080fd5b9250929050565b6000806020838503121561278557600080fd5b82356001600160401b0381111561279b57600080fd5b6127a785828601612727565b90969095509350505050565b6000806000606084860312156127c857600080fd5b83356127d3816126e6565b925060208401356127e3816126e6565b929592945050506040919091013590565b60008060006040848603121561280957600080fd5b8335925060208401356001600160401b0381111561282657600080fd5b61283286828701612727565b9497909650939450505050565b60006020828403121561285157600080fd5b813561265b816126e6565b6000806040838503121561286f57600080fd5b50508035926020909101359150565b8015158114611b1a57600080fd5b6000806040838503121561289f57600080fd5b82356128aa816126e6565b915060208301356128ba8161287e565b809150509250929050565b6000602082840312156128d757600080fd5b813561265b8161287e565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612912576129126128e2565b604051601f8501601f19908116603f0116810190828211818310171561293a5761293a6128e2565b8160405280935085815286868601111561295357600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561298357600080fd5b843561298e816126e6565b9350602085013561299e816126e6565b92506040850135915060608501356001600160401b038111156129c057600080fd5b8501601f810187136129d157600080fd5b6129e0878235602084016128f8565b91505092959194509250565b60008060008060008060008060006101008a8c031215612a0b57600080fd5b8935985060208a01356001600160401b03811115612a2857600080fd5b612a348c828d01612727565b9a9d909c50999a60408101359a60608201359a506080820135995060a0820135985060c0820135975060e09091013595509350505050565b600060208284031215612a7e57600080fd5b81356001600160401b03811115612a9457600080fd5b8201601f81018413612aa557600080fd5b6122b4848235602084016128f8565b60008060408385031215612ac757600080fd5b8235612ad2816126e6565b915060208301356128ba816126e6565b600181811c90821680612af657607f821691505b602082108103612b1657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612b8f57612b8f612b67565b5060010190565b600060208284031215612ba857600080fd5b815161265b816126e6565b600060208284031215612bc557600080fd5b815161265b8161287e565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115612c3657612c36612b67565b500190565b600060208284031215612c4d57600080fd5b5051919050565b60008351612c6681846020880161267b565b835190830190612c7a81836020880161267b565b01949350505050565b60008451612c9581846020890161267b565b845190830190612ca981836020890161267b565b602d60f81b91019081528351612cc681600184016020880161267b565b0160010195945050505050565b600060ff821660ff8103612ce957612ce9612b67565b60010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d25908301846126a7565b9695505050505050565b600060208284031215612d4157600080fd5b815161265b81612628565b634e487b7160e01b600052601260045260246000fd5b600082612d7157612d71612d4c565b500490565b600082821015612d8857612d88612b67565b500390565b600082612d9c57612d9c612d4c565b50069056fea264697066735822122088faba40a8c1034a974f246afa8d5cd7901bc328a5c3c5d61df6cd2dd2fc119264736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063877e0a3d1161013b578063b88d4fde116100b8578063e985e9c51161007c578063e985e9c514610557578063eaed501814610593578063f0f31c0b146105b6578063f2fde38b146105c9578063f3d29037146105dc57600080fd5b8063b88d4fde146104eb578063c23b978e146104fe578063c4ee3fe214610511578063c87b56dd14610531578063c8a943411461054457600080fd5b806395d89b41116100ff57806395d89b4114610490578063a22cb46514610498578063aa3ccba3146104ab578063ac5bcc2c146104be578063b3a9fda0146104de57600080fd5b8063877e0a3d14610419578063890a85921461042c5780638da5cb5b1461044c5780638f52156d1461045d5780639383a2481461047057600080fd5b806342842e0e116101c95780636352211e1161018d5780636352211e146103ab57806365cc274f146103be57806370a08231146103de578063715018a6146103f15780638701cb03146103f957600080fd5b806342842e0e146103405780634abddab1146103535780634f6ccce7146103735780634fcc2103146103865780635fbb5a4e1461039857600080fd5b806318160ddd1161021057806318160ddd146102ed5780631eb7f1a9146102ff57806323b872dd146103125780632a4bb1c6146103255780632f745c591461032d57600080fd5b806301ffc9a71461024d578063053822951461027557806306fdde0314610298578063081812fc146102ad578063095ea7b3146102d8575b600080fd5b61026061025b36600461263e565b6105fc565b60405190151581526020015b60405180910390f35b610260610283366004612662565b60166020526000908152604090205460ff1681565b6102a0610669565b60405161026c91906126d3565b6102c06102bb366004612662565b6106fb565b6040516001600160a01b03909116815260200161026c565b6102eb6102e63660046126fb565b61078b565b005b6000545b60405190815260200161026c565b6102eb61030d366004612772565b6108a2565b6102eb6103203660046127b3565b61092e565b6102a0610939565b6102f161033b3660046126fb565b6109c7565b6102eb61034e3660046127b3565b610b21565b6102f1610361366004612662565b60146020526000908152604090205481565b6102f1610381366004612662565b610b3c565b600d5461026090610100900460ff1681565b6102eb6103a63660046127f4565b610b9e565b6102c06103b9366004612662565b610cc2565b6102f16103cc366004612662565b60136020526000908152604090205481565b6102f16103ec36600461283f565b610cd4565b6102eb610d65565b6102f1610407366004612662565b60116020526000908152604090205481565b6102eb6104273660046127f4565b610d9b565b6102f161043a366004612662565b60156020526000908152604090205481565b6007546001600160a01b03166102c0565b6102eb61046b36600461285c565b610ea5565b6102f161047e366004612662565b60106020526000908152604090205481565b6102a0611169565b6102eb6104a636600461288c565b611178565b6102eb6104b93660046128c5565b61123c565b6102f16104cc366004612662565b60186020526000908152604090205481565b600d546102609060ff1681565b6102eb6104f936600461296d565b611279565b6102eb61050c3660046129ec565b6112ac565b6102f161051f366004612662565b60176020526000908152604090205481565b6102a061053f366004612662565b61188c565b6102eb610552366004612a6c565b6119fd565b610260610565366004612ab4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102606105a1366004612662565b60196020526000908152604090205460ff1681565b6102eb6105c43660046128c5565b611a3e565b6102eb6105d736600461283f565b611a82565b6102f16105ea366004612662565b60126020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061062d57506001600160e01b03198216635b5e139f60e01b145b8061064857506001600160e01b0319821663780e9d6360e01b145b8061066357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461067890612ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546106a490612ae2565b80156106f15780601f106106c6576101008083540402835291602001916106f1565b820191906000526020600020905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b6000610708826000541190565b61076f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061079682610cc2565b9050806001600160a01b0316836001600160a01b0316036108045760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610766565b336001600160a01b038216148061082057506108208133610565565b6108925760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610766565b61089d838383611b1d565b505050565b6007546001600160a01b031633146108cc5760405162461bcd60e51b815260040161076690612b1c565b60005b8181101561089d576001601660008585858181106108ef576108ef612b51565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061092690612b7d565b9150506108cf565b61089d838383611b79565b6009805461094690612ae2565b80601f016020809104026020016040519081016040528092919081815260200182805461097290612ae2565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b505050505081565b60006109d283610cd4565b8210610a2b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610766565b600080549080805b83811015610ac1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a8557805192505b876001600160a01b0316836001600160a01b031603610ab857868403610ab15750935061066392505050565b6001909301925b50600101610a33565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610766565b61089d83838360405180602001604052806000815250611279565b600080548210610b9a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610766565b5090565b600d5460ff16610bc157604051635d733d0760e01b815260040160405180910390fd5b60008381526016602052604090205460ff1615610bdd57600080fd5b600b546040516331a9108f60e11b81526004810185905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4a9190612b96565b6001600160a01b031614610c715760405163fa73208560e01b815260040160405180910390fd5b60028114610c9257604051630b7e41b560e21b815260040160405180910390fd5b610c9c8282611e5c565b600080548082526017602052604090912060029055610cbc336001612078565b50505050565b6000610ccd82612092565b5192915050565b60006001600160a01b038216610d405760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610766565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d8f5760405162461bcd60e51b815260040161076690612b1c565b610d996000612168565b565b600d5460ff16610dbe57604051635d733d0760e01b815260040160405180910390fd5b60008381526016602052604090205460ff1615610dda57600080fd5b600b546040516331a9108f60e11b81526004810185905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e479190612b96565b6001600160a01b031614610e6e5760405163fa73208560e01b815260040160405180910390fd5b60038114610e7b57600080fd5b610e858282611e5c565b600080548082526017602052604090912060039055610cbc336001612078565b600d5460ff16610ec857604051635d733d0760e01b815260040160405180910390fd5b600a546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610f11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f359190612b96565b6001600160a01b031614610f4857600080fd5b600b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610f91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb59190612b96565b6001600160a01b031614610fdc5760405163fa73208560e01b815260040160405180910390fd5b600a546040516397f0923560e01b8152600481018390526001600160a01b03909116906397f0923590602401602060405180830381865afa158015611025573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110499190612bb3565b6110695760405163f9cfb28760e01b815260048101829052602401610766565b600a546040516349be9ee960e11b8152600481018390526001600160a01b039091169063937d3dd290602401600060405180830381600087803b1580156110af57600080fd5b505af11580156110c3573d6000803e3d6000fd5b5050505060006110d260005490565b60008481526016602052604090205490915060ff161561114b5760008381526019602052604090205460ff161561111c5760405163ad9a1a6160e01b815260040160405180910390fd5b60008181526017602090815260408083206005905585835260199091529020805460ff1916600117905561115e565b6000818152601760205260409020600490555b61089d336001612078565b60606002805461067890612ae2565b336001600160a01b038316036111d05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610766565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146112665760405162461bcd60e51b815260040161076690612b1c565b600d805460ff1916911515919091179055565b611284848484611b79565b611290848484846121ba565b610cbc5760405162461bcd60e51b815260040161076690612bd0565b600f546001600160a01b031633146112e157600d5460ff166112e157604051635d733d0760e01b815260040160405180910390fd5b60008054600b546040516331a9108f60e11b8152600481018d905291925033916001600160a01b0390911690636352211e90602401602060405180830381865afa158015611333573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113579190612b96565b6001600160a01b03161461137e5760405163fa73208560e01b815260040160405180910390fd5b6001881461139f57604051630b7e41b560e21b815260040160405180910390fd5b6000828486886113af8b8d612c23565b6113b99190612c23565b6113c39190612c23565b6113cd9190612c23565b6113d79190612c23565b905060018110806113e85750600681115b1561140657604051630540928d60e31b815260040160405180910390fd5b6114108a8a611e5c565b6000828152601860205260409020819055600c548811156114c357600a546001600160a01b031663b47ab36d8b8b60008161144d5761144d612b51565b905060200201356040518263ffffffff1660e01b815260040161147291815260200190565b602060405180830381865afa15801561148f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b39190612c3b565b6000838152601060205260409020555b600c5487111561156557600a546001600160a01b0316635c1dd5db8b8b6000816114ef576114ef612b51565b905060200201356040518263ffffffff1660e01b815260040161151491815260200190565b602060405180830381865afa158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190612c3b565b6000838152601160205260409020555b600c5486111561160757600a546001600160a01b0316632ebfb7168b8b60008161159157611591612b51565b905060200201356040518263ffffffff1660e01b81526004016115b691815260200190565b602060405180830381865afa1580156115d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f79190612c3b565b6000838152601260205260409020555b600c548511156116a957600a546001600160a01b0316635f572afc8b8b60008161163357611633612b51565b905060200201356040518263ffffffff1660e01b815260040161165891815260200190565b602060405180830381865afa158015611675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116999190612c3b565b6000838152601360205260409020555b600c5484111561174b57600a546001600160a01b031663d4db363a8b8b6000816116d5576116d5612b51565b905060200201356040518263ffffffff1660e01b81526004016116fa91815260200190565b602060405180830381865afa158015611717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173b9190612c3b565b6000838152601460205260409020555b600c548311156117ed57600a546001600160a01b03166391073a5c8b8b60008161177757611777612b51565b905060200201356040518263ffffffff1660e01b815260040161179c91815260200190565b602060405180830381865afa1580156117b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dd9190612c3b565b6000838152601560205260409020555b60008b81526016602052604090205460ff1661181a57600082815260176020526040902060019055611874565b60008b81526019602052604090205460ff161561184a5760405163ad9a1a6160e01b815260040160405180910390fd5b60008281526017602090815260408083208390558d835260199091529020805460ff191660011790555b61187f336001612078565b5050505050505050505050565b6060611899826000541190565b6118fd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610766565b60006119076122bc565b600084815260176020908152604080832054601890925290912054600d549293509091610100900460ff16156119895782516000036119555760405180602001604052806000815250611980565b8261195f866122cb565b604051602001611970929190612c54565b6040516020818303038152906040525b95945050505050565b60028210156119d55782516000036119b05760405180602001604052806000815250611980565b826119ba836122cb565b6119c3836122cb565b60405160200161197093929190612c83565b82516000036119f35760405180602001604052806000815250611980565b8261195f836122cb565b6007546001600160a01b03163314611a275760405162461bcd60e51b815260040161076690612b1c565b8051611a3a906009906020840190612598565b5050565b6007546001600160a01b03163314611a685760405162461bcd60e51b815260040161076690612b1c565b600d80549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611aac5760405162461bcd60e51b815260040161076690612b1c565b6001600160a01b038116611b115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610766565b611b1a81612168565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b8482612092565b80519091506000906001600160a01b0316336001600160a01b03161480611bbb575033611bb0846106fb565b6001600160a01b0316145b80611bcd57508151611bcd9033610565565b905080611c375760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610766565b846001600160a01b031682600001516001600160a01b031614611cab5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610766565b6001600160a01b038416611d0f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610766565b611d1f6000848460000151611b1d565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611e1257611dc6816000541190565b15611e1257825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60005b60ff811682111561089d57600a546001600160a01b03166397f09235848460ff8516818110611e9057611e90612b51565b905060200201356040518263ffffffff1660e01b8152600401611eb591815260200190565b602060405180830381865afa158015611ed2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef69190612bb3565b15611f335782828260ff16818110611f1057611f10612b51565b905060200201356040516336dd588560e01b815260040161076691815260200190565b600a5433906001600160a01b0316636352211e858560ff8616818110611f5b57611f5b612b51565b905060200201356040518263ffffffff1660e01b8152600401611f8091815260200190565b602060405180830381865afa158015611f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc19190612b96565b6001600160a01b031614611fe857604051630720a37360e51b815260040160405180910390fd5b600a546001600160a01b031663937d3dd2848460ff851681811061200e5761200e612b51565b905060200201356040518263ffffffff1660e01b815260040161203391815260200190565b600060405180830381600087803b15801561204d57600080fd5b505af1158015612061573d6000803e3d6000fd5b50505050808061207090612cd3565b915050611e5f565b611a3a8282604051806020016040528060008152506123cb565b60408051808201909152600080825260208201526120b1826000541190565b6121105760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610766565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561215e579392505050565b5060001901612112565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156122b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121fe903390899088908890600401612cf2565b6020604051808303816000875af1925050508015612239575060408051601f3d908101601f1916820190925261223691810190612d2f565b60015b612296573d808015612267576040519150601f19603f3d011682016040523d82523d6000602084013e61226c565b606091505b50805160000361228e5760405162461bcd60e51b815260040161076690612bd0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122b4565b5060015b949350505050565b60606009805461067890612ae2565b6060816000036122f25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561231c578061230681612b7d565b91506123159050600a83612d62565b91506122f6565b6000816001600160401b03811115612336576123366128e2565b6040519080825280601f01601f191660200182016040528015612360576020820181803683370190505b5090505b84156122b457612375600183612d76565b9150612382600a86612d8d565b61238d906030612c23565b60f81b8183815181106123a2576123a2612b51565b60200101906001600160f81b031916908160001a9053506123c4600a86612d62565b9450612364565b61089d83838360016000546001600160a01b0385166124365760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610766565b836000036124975760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610766565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b8581101561258f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156125835761256760008884886121ba565b6125835760405162461bcd60e51b815260040161076690612bd0565b60019182019101612514565b50600055611e55565b8280546125a490612ae2565b90600052602060002090601f0160209004810192826125c6576000855561260c565b82601f106125df57805160ff191683800117855561260c565b8280016001018555821561260c579182015b8281111561260c5782518255916020019190600101906125f1565b50610b9a9291505b80821115610b9a5760008155600101612614565b6001600160e01b031981168114611b1a57600080fd5b60006020828403121561265057600080fd5b813561265b81612628565b9392505050565b60006020828403121561267457600080fd5b5035919050565b60005b8381101561269657818101518382015260200161267e565b83811115610cbc5750506000910152565b600081518084526126bf81602086016020860161267b565b601f01601f19169290920160200192915050565b60208152600061265b60208301846126a7565b6001600160a01b0381168114611b1a57600080fd5b6000806040838503121561270e57600080fd5b8235612719816126e6565b946020939093013593505050565b60008083601f84011261273957600080fd5b5081356001600160401b0381111561275057600080fd5b6020830191508360208260051b850101111561276b57600080fd5b9250929050565b6000806020838503121561278557600080fd5b82356001600160401b0381111561279b57600080fd5b6127a785828601612727565b90969095509350505050565b6000806000606084860312156127c857600080fd5b83356127d3816126e6565b925060208401356127e3816126e6565b929592945050506040919091013590565b60008060006040848603121561280957600080fd5b8335925060208401356001600160401b0381111561282657600080fd5b61283286828701612727565b9497909650939450505050565b60006020828403121561285157600080fd5b813561265b816126e6565b6000806040838503121561286f57600080fd5b50508035926020909101359150565b8015158114611b1a57600080fd5b6000806040838503121561289f57600080fd5b82356128aa816126e6565b915060208301356128ba8161287e565b809150509250929050565b6000602082840312156128d757600080fd5b813561265b8161287e565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612912576129126128e2565b604051601f8501601f19908116603f0116810190828211818310171561293a5761293a6128e2565b8160405280935085815286868601111561295357600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561298357600080fd5b843561298e816126e6565b9350602085013561299e816126e6565b92506040850135915060608501356001600160401b038111156129c057600080fd5b8501601f810187136129d157600080fd5b6129e0878235602084016128f8565b91505092959194509250565b60008060008060008060008060006101008a8c031215612a0b57600080fd5b8935985060208a01356001600160401b03811115612a2857600080fd5b612a348c828d01612727565b9a9d909c50999a60408101359a60608201359a506080820135995060a0820135985060c0820135975060e09091013595509350505050565b600060208284031215612a7e57600080fd5b81356001600160401b03811115612a9457600080fd5b8201601f81018413612aa557600080fd5b6122b4848235602084016128f8565b60008060408385031215612ac757600080fd5b8235612ad2816126e6565b915060208301356128ba816126e6565b600181811c90821680612af657607f821691505b602082108103612b1657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612b8f57612b8f612b67565b5060010190565b600060208284031215612ba857600080fd5b815161265b816126e6565b600060208284031215612bc557600080fd5b815161265b8161287e565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115612c3657612c36612b67565b500190565b600060208284031215612c4d57600080fd5b5051919050565b60008351612c6681846020880161267b565b835190830190612c7a81836020880161267b565b01949350505050565b60008451612c9581846020890161267b565b845190830190612ca981836020890161267b565b602d60f81b91019081528351612cc681600184016020880161267b565b0160010195945050505050565b600060ff821660ff8103612ce957612ce9612b67565b60010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d25908301846126a7565b9695505050505050565b600060208284031215612d4157600080fd5b815161265b81612628565b634e487b7160e01b600052601260045260246000fd5b600082612d7157612d71612d4c565b500490565b600082821015612d8857612d88612b67565b500390565b600082612d9c57612d9c612d4c565b50069056fea264697066735822122088faba40a8c1034a974f246afa8d5cd7901bc328a5c3c5d61df6cd2dd2fc119264736f6c634300080d0033
Deployed Bytecode Sourcemap
56336:7638:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39699:372;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39699:372:0;;;;;;;;57589:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;41585:100;;;:::i;:::-;;;;;;;:::i;43147:214::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;43147:214:0;1528:203:1;42668:413:0;;;;;;:::i;:::-;;:::i;:::-;;37956:100;38009:7;38036:12;37956:100;;;2338:25:1;;;2326:2;2311:18;37956:100:0;2192:177:1;58117:190:0;;;;;;:::i;:::-;;:::i;44023:162::-;;;;;;:::i;:::-;;:::i;56429:26::-;;;:::i;38620:1007::-;;;;;;:::i;:::-;;:::i;44256:177::-;;;;;;:::i;:::-;;:::i;57445:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;38133:187;;;;;;:::i;:::-;;:::i;56900:23::-;;;;;;;;;;;;60572:559;;;;;;:::i;:::-;;:::i;41394:124::-;;;;;;:::i;:::-;;:::i;57369:69::-;;;;;;:::i;:::-;;;;;;;;;;;;;;40135:221;;;;;;:::i;:::-;;:::i;19148:94::-;;;:::i;57232:62::-;;;;;;:::i;:::-;;;;;;;;;;;;;;61139:522;;;;;;:::i;:::-;;:::i;57516:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18497:87;18570:6;;-1:-1:-1;;;;;18570:6:0;18497:87;;61669:896;;;;;;:::i;:::-;;:::i;57161:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;41754:104;;;:::i;43433:288::-;;;;;;:::i;:::-;;:::i;58410:79::-;;;;;;:::i;:::-;;:::i;57694:55::-;;;;;;:::i;:::-;;;;;;;;;;;;;;56874:19;;;;;;;;;44504:355;;;;;;:::i;:::-;;:::i;58497:2067::-;;;;;;:::i;:::-;;:::i;57639:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;62707:838;;;;;;:::i;:::-;;:::i;62573:126::-;;;;;;:::i;:::-;;:::i;43792:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;43913:25:0;;;43889:4;43913:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43792:164;57758:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;58315:87;;;;;;:::i;:::-;;:::i;19397:192::-;;;;;;:::i;:::-;;:::i;57301:61::-;;;;;;:::i;:::-;;;;;;;;;;;;;;39699:372;39801:4;-1:-1:-1;;;;;;39838:40:0;;-1:-1:-1;;;39838:40:0;;:105;;-1:-1:-1;;;;;;;39895:48:0;;-1:-1:-1;;;39895:48:0;39838:105;:172;;;-1:-1:-1;;;;;;;39960:50:0;;-1:-1:-1;;;39960:50:0;39838:172;:225;;;-1:-1:-1;;;;;;;;;;30210:40:0;;;40027:36;39818:245;39699:372;-1:-1:-1;;39699:372:0:o;41585:100::-;41639:13;41672:5;41665:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41585:100;:::o;43147:214::-;43215:7;43243:16;43251:7;45171:4;45205:12;-1:-1:-1;45195:22:0;45114:111;43243:16;43235:74;;;;-1:-1:-1;;;43235:74:0;;9345:2:1;43235:74:0;;;9327:21:1;9384:2;9364:18;;;9357:30;9423:34;9403:18;;;9396:62;-1:-1:-1;;;9474:18:1;;;9467:43;9527:19;;43235:74:0;;;;;;;;;-1:-1:-1;43329:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43329:24:0;;43147:214::o;42668:413::-;42741:13;42757:24;42773:7;42757:15;:24::i;:::-;42741:40;;42806:5;-1:-1:-1;;;;;42800:11:0;:2;-1:-1:-1;;;;;42800:11:0;;42792:58;;;;-1:-1:-1;;;42792:58:0;;9759:2:1;42792:58:0;;;9741:21:1;9798:2;9778:18;;;9771:30;9837:34;9817:18;;;9810:62;-1:-1:-1;;;9888:18:1;;;9881:32;9930:19;;42792:58:0;9557:398:1;42792:58:0;17398:10;-1:-1:-1;;;;;42885:21:0;;;;:62;;-1:-1:-1;42910:37:0;42927:5;17398:10;43792:164;:::i;42910:37::-;42863:169;;;;-1:-1:-1;;;42863:169:0;;10162:2:1;42863:169:0;;;10144:21:1;10201:2;10181:18;;;10174:30;10240:34;10220:18;;;10213:62;10311:27;10291:18;;;10284:55;10356:19;;42863:169:0;9960:421:1;42863:169:0;43045:28;43054:2;43058:7;43067:5;43045:8;:28::i;:::-;42730:351;42668:413;;:::o;58117:190::-;18570:6;;-1:-1:-1;;;;;18570:6:0;17398:10;18717:23;18709:68;;;;-1:-1:-1;;;18709:68:0;;;;;;;:::i;:::-;58201:9:::1;58196:104;58216:19:::0;;::::1;58196:104;;;58284:4;58257:11;:24;58269:8;;58278:1;58269:11;;;;;;;:::i;:::-;;;;;;;58257:24;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;58237:3;;;;;:::i;:::-;;;;58196:104;;44023:162:::0;44149:28;44159:4;44165:2;44169:7;44149:9;:28::i;56429:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38620:1007::-;38709:7;38745:16;38755:5;38745:9;:16::i;:::-;38737:5;:24;38729:71;;;;-1:-1:-1;;;38729:71:0;;11353:2:1;38729:71:0;;;11335:21:1;11392:2;11372:18;;;11365:30;11431:34;11411:18;;;11404:62;-1:-1:-1;;;11482:18:1;;;11475:32;11524:19;;38729:71:0;11151:398:1;38729:71:0;38811:22;38036:12;;;38811:22;;39074:466;39094:14;39090:1;:18;39074:466;;;39134:31;39168:14;;;:11;:14;;;;;;;;;39134:48;;;;;;;;;-1:-1:-1;;;;;39134:48:0;;;;;-1:-1:-1;;;39134:48:0;;;-1:-1:-1;;;;;39134:48:0;;;;;;;;39205:28;39201:111;;39278:14;;;-1:-1:-1;39201:111:0;39355:5;-1:-1:-1;;;;;39334:26:0;:17;-1:-1:-1;;;;;39334:26:0;;39330:195;;39404:5;39389:11;:20;39385:85;;-1:-1:-1;39445:1:0;-1:-1:-1;39438:8:0;;-1:-1:-1;;;39438:8:0;39385:85;39492:13;;;;;39330:195;-1:-1:-1;39110:3:0;;39074:466;;;-1:-1:-1;39563:56:0;;-1:-1:-1;;;39563:56:0;;11756:2:1;39563:56:0;;;11738:21:1;11795:2;11775:18;;;11768:30;11834:34;11814:18;;;11807:62;-1:-1:-1;;;11885:18:1;;;11878:44;11939:19;;39563:56:0;11554:410:1;44256:177:0;44386:39;44403:4;44409:2;44413:7;44386:39;;;;;;;;;;;;:16;:39::i;38133:187::-;38200:7;38036:12;;38228:5;:21;38220:69;;;;-1:-1:-1;;;38220:69:0;;12171:2:1;38220:69:0;;;12153:21:1;12210:2;12190:18;;;12183:30;12249:34;12229:18;;;12222:62;-1:-1:-1;;;12300:18:1;;;12293:33;12343:19;;38220:69:0;11969:399:1;38220:69:0;-1:-1:-1;38307:5:0;38133:187::o;60572:559::-;60662:7;;;;60657:60;;60693:12;;-1:-1:-1;;;60693:12:0;;;;;;;;;;;60657:60;60736:24;;;;:11;:24;;;;;;;;60735:25;60727:34;;;;;;60776:18;;:39;;-1:-1:-1;;;60776:39:0;;;;;2338:25:1;;;60819:10:0;;-1:-1:-1;;;;;60776:18:0;;:26;;2311:18:1;;60776:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60776:53:0;;60772:112;;60853:19;;-1:-1:-1;;;60853:19:0;;;;;;;;;;;60772:112;60915:1;60898:18;;60894:72;;60940:14;;-1:-1:-1;;;60940:14:0;;;;;;;;;;;60894:72;60976:23;60992:6;;60976:15;:23::i;:::-;61012:19;38036:12;;61058:26;;;:13;:26;;;;;;61087:1;61058:30;;61099:24;61109:10;61121:1;61099:9;:24::i;:::-;60646:485;60572:559;;;:::o;41394:124::-;41458:7;41485:20;41497:7;41485:11;:20::i;:::-;:25;;41394:124;-1:-1:-1;;41394:124:0:o;40135:221::-;40199:7;-1:-1:-1;;;;;40227:19:0;;40219:75;;;;-1:-1:-1;;;40219:75:0;;12831:2:1;40219:75:0;;;12813:21:1;12870:2;12850:18;;;12843:30;12909:34;12889:18;;;12882:62;-1:-1:-1;;;12960:18:1;;;12953:41;13011:19;;40219:75:0;12629:407:1;40219:75:0;-1:-1:-1;;;;;;40320:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40320:27:0;;40135:221::o;19148:94::-;18570:6;;-1:-1:-1;;;;;18570:6:0;17398:10;18717:23;18709:68;;;;-1:-1:-1;;;18709:68:0;;;;;;;:::i;:::-;19213:21:::1;19231:1;19213:9;:21::i;:::-;19148:94::o:0;61139:522::-;61234:7;;;;61229:60;;61265:12;;-1:-1:-1;;;61265:12:0;;;;;;;;;;;61229:60;61308:24;;;;:11;:24;;;;;;;;61307:25;61299:34;;;;;;61348:18;;:39;;-1:-1:-1;;;61348:39:0;;;;;2338:25:1;;;61391:10:0;;-1:-1:-1;;;;;61348:18:0;;:26;;2311:18:1;;61348:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61348:53:0;;61344:112;;61425:19;;-1:-1:-1;;;61425:19:0;;;;;;;;;;;61344:112;61491:1;61474:18;;61466:27;;;;;;61504:23;61520:6;;61504:15;:23::i;:::-;61540:19;38036:12;;61586:26;;;:13;:26;;;;;;61615:1;61586:30;;61629:24;61639:10;61651:1;61629:9;:24::i;61669:896::-;61757:7;;;;61752:60;;61788:12;;-1:-1:-1;;;61788:12:0;;;;;;;;;;;61752:60;61830:11;;:34;;-1:-1:-1;;;61830:34:0;;;;;2338:25:1;;;61868:10:0;;-1:-1:-1;;;;;61830:11:0;;:19;;2311:18:1;;61830:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61830:48:0;;61822:57;;;;;;61894:18;;:39;;-1:-1:-1;;;61894:39:0;;;;;2338:25:1;;;61937:10:0;;-1:-1:-1;;;;;61894:18:0;;:26;;2311:18:1;;61894:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61894:53:0;;61890:112;;61971:19;;-1:-1:-1;;;61971:19:0;;;;;;;;;;;61890:112;62017:11;;:32;;-1:-1:-1;;;62017:32:0;;;;;2338:25:1;;;-1:-1:-1;;;;;62017:11:0;;;;:17;;2311:18:1;;62017:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62012:106;;62073:33;;-1:-1:-1;;;62073:33:0;;;;;2338:25:1;;;2311:18;;62073:33:0;2192:177:1;62012:106:0;62130:11;;:31;;-1:-1:-1;;;62130:31:0;;;;;2338:25:1;;;-1:-1:-1;;;;;62130:11:0;;;;:16;;2311:18:1;;62130:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62172:19;62194:13;38009:7;38036:12;;37956:100;62194:13;62224:24;;;;:11;:24;;;;;;62172:35;;-1:-1:-1;62224:24:0;;62220:301;;;62269:22;;;;:9;:22;;;;;;;;62265:93;;;62319:23;;-1:-1:-1;;;62319:23:0;;;;;;;;;;;62265:93;62372:26;;;;:13;:26;;;;;;;;62401:1;62372:30;;62417:22;;;:9;:22;;;;;:29;;-1:-1:-1;;62417:29:0;62442:4;62417:29;;;62220:301;;;62479:26;;;;:13;:26;;;;;62508:1;62479:30;;62220:301;62533:24;62543:10;62555:1;62533:9;:24::i;41754:104::-;41810:13;41843:7;41836:14;;;;;:::i;43433:288::-;17398:10;-1:-1:-1;;;;;43528:24:0;;;43520:63;;;;-1:-1:-1;;;43520:63:0;;13493:2:1;43520:63:0;;;13475:21:1;13532:2;13512:18;;;13505:30;13571:28;13551:18;;;13544:56;13617:18;;43520:63:0;13291:350:1;43520:63:0;17398:10;43596:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43596:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43596:53:0;;;;;;;;;;43665:48;;540:41:1;;;43596:42:0;;17398:10;43665:48;;513:18:1;43665:48:0;;;;;;;43433:288;;:::o;58410:79::-;18570:6;;-1:-1:-1;;;;;18570:6:0;17398:10;18717:23;18709:68;;;;-1:-1:-1;;;18709:68:0;;;;;;;:::i;:::-;58466:7:::1;:15:::0;;-1:-1:-1;;58466:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58410:79::o;44504:355::-;44663:28;44673:4;44679:2;44683:7;44663:9;:28::i;:::-;44724:48;44747:4;44753:2;44757:7;44766:5;44724:22;:48::i;:::-;44702:149;;;;-1:-1:-1;;;44702:149:0;;;;;;;:::i;58497:2067::-;58675:6;;-1:-1:-1;;;;;58675:6:0;58661:10;:20;58658:118;;58702:7;;;;58697:68;;58737:12;;-1:-1:-1;;;58737:12:0;;;;;;;;;;;58697:68;58792:16;38036:12;;58841:18;;:39;;-1:-1:-1;;;58841:39:0;;;;;2338:25:1;;;58792:32:0;;-1:-1:-1;58884:10:0;;-1:-1:-1;;;;;58841:18:0;;;;:26;;2311:18:1;;58841:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58841:53:0;;58837:112;;58918:19;;-1:-1:-1;;;58918:19:0;;;;;;;;;;;58837:112;58982:1;58965:18;;58961:72;;59007:14;;-1:-1:-1;;;59007:14:0;;;;;;;;;;;58961:72;59047:13;59101:6;59094:4;59085:6;59078:4;59063:12;59071:4;59063:5;:12;:::i;:::-;:19;;;;:::i;:::-;:28;;;;:::i;:::-;:35;;;;:::i;:::-;:44;;;;:::i;:::-;59047:60;;59135:1;59124:8;:12;:28;;;;59151:1;59140:8;:12;59124:28;59120:86;;;59176:18;;-1:-1:-1;;;59176:18:0;;;;;;;;;;;59120:86;59218:23;59234:6;;59218:15;:23::i;:::-;59254:33;;;;:20;:33;;;;;:44;;;59323:16;;59315:24;;59311:139;;;59404:11;;-1:-1:-1;;;;;59404:11:0;:23;59428:6;;59404:11;59428:9;;;;;:::i;:::-;;;;;;;59404:34;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;59404:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59356:45;;;;:32;:45;;;;;:82;59311:139;59473:16;;59466:4;:23;59462:134;;;59552:11;;-1:-1:-1;;;;;59552:11:0;:21;59574:6;;59552:11;59574:9;;;;;:::i;:::-;;;;;;;59552:32;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;59552:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59506:43;;;;:30;:43;;;;;:78;59462:134;59619:16;;59612:4;:23;59608:132;;;59697:11;;-1:-1:-1;;;;;59697:11:0;:20;59718:6;;59697:11;59718:9;;;;;:::i;:::-;;;;;;;59697:31;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;59697:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59652:42;;;;:29;:42;;;;;:76;59608:132;59765:16;;59756:6;:25;59752:150;;;59851:11;;-1:-1:-1;;;;;59851:11:0;:28;59880:6;;59851:11;59880:9;;;;;:::i;:::-;;;;;;;59851:39;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;59851:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59798:50;;;;:37;:50;;;;;:92;59752:150;59925:16;;59918:4;:23;59914:138;;;60006:11;;-1:-1:-1;;;;;60006:11:0;:23;60030:6;;60006:11;60030:9;;;;;:::i;:::-;;;;;;;60006:34;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;60006:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59958:45;;;;:32;:45;;;;;:82;59914:138;60077:16;;60068:6;:25;60064:140;;;60158:11;;-1:-1:-1;;;;;60158:11:0;:23;60182:6;;60158:11;60182:9;;;;;:::i;:::-;;;;;;;60158:34;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;60158:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60110:45;;;;:32;:45;;;;;:82;60064:140;60221:24;;;;:11;:24;;;;;;;;60216:304;;60262:26;;;;:13;:26;;;;;60291:1;60262:30;;60216:304;;;60329:22;;;;:9;:22;;;;;;;;60325:93;;;60379:23;;-1:-1:-1;;;60379:23:0;;;;;;;;;;;60325:93;60463:1;60434:26;;;:13;:26;;;;;;;;:30;;;60479:22;;;:9;:22;;;;;:29;;-1:-1:-1;;60479:29:0;60504:4;60479:29;;;60216:304;60532:24;60542:10;60554:1;60532:9;:24::i;:::-;58641:1923;;58497:2067;;;;;;;;;:::o;62707:838::-;62778:13;62812:15;62820:6;45171:4;45205:12;-1:-1:-1;45195:22:0;45114:111;62812:15;62804:75;;;;-1:-1:-1;;;62804:75:0;;14590:2:1;62804:75:0;;;14572:21:1;14629:2;14609:18;;;14602:30;14668:34;14648:18;;;14641:62;-1:-1:-1;;;14719:18:1;;;14712:45;14774:19;;62804:75:0;14388:411:1;62804:75:0;62892:21;62916:10;:8;:10::i;:::-;62937:20;62960:21;;;:13;:21;;;;;;;;;63007:20;:28;;;;;;;63052:11;;62892:34;;-1:-1:-1;62960:21:0;;63052:11;;;;;63048:490;;;63093:7;63087:21;63112:1;63087:26;:86;;;;;;;;;;;;;;;;;63140:7;63149:17;:6;:15;:17::i;:::-;63123:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63087:86;63080:93;62707:838;-1:-1:-1;;;;;62707:838:0:o;63048:490::-;63225:1;63210:12;:16;63206:321;;;63260:7;63254:21;63279:1;63254:26;:117;;;;;;;;;;;;;;;;;63307:7;63316:23;:12;:21;:23::i;:::-;63346:18;:7;:16;:18::i;:::-;63290:75;;;;;;;;;;:::i;63206:321::-;63425:7;63419:21;63444:1;63419:26;:92;;;;;;;;;;;;;;;;;63472:7;63481:23;:12;:21;:23::i;62573:126::-;18570:6;;-1:-1:-1;;;;;18570:6:0;17398:10;18717:23;18709:68;;;;-1:-1:-1;;;18709:68:0;;;;;;;:::i;:::-;62660:31;;::::1;::::0;:12:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62573:126:::0;:::o;58315:87::-;18570:6;;-1:-1:-1;;;;;18570:6:0;17398:10;18717:23;18709:68;;;;-1:-1:-1;;;18709:68:0;;;;;;;:::i;:::-;58376:11:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;58376:18:0;;::::1;::::0;;;::::1;::::0;;58315:87::o;19397:192::-;18570:6;;-1:-1:-1;;;;;18570:6:0;17398:10;18717:23;18709:68;;;;-1:-1:-1;;;18709:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19486:22:0;::::1;19478:73;;;::::0;-1:-1:-1;;;19478:73:0;;16294:2:1;19478:73:0::1;::::0;::::1;16276:21:1::0;16333:2;16313:18;;;16306:30;16372:34;16352:18;;;16345:62;-1:-1:-1;;;16423:18:1;;;16416:36;16469:19;;19478:73:0::1;16092:402:1::0;19478:73:0::1;19562:19;19572:8;19562:9;:19::i;:::-;19397:192:::0;:::o;50034:196::-;50149:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50149:29:0;-1:-1:-1;;;;;50149:29:0;;;;;;;;;50194:28;;50149:24;;50194:28;;;;;;;50034:196;;;:::o;47914:2002::-;48029:35;48067:20;48079:7;48067:11;:20::i;:::-;48142:18;;48029:58;;-1:-1:-1;48100:22:0;;-1:-1:-1;;;;;48126:34:0;17398:10;-1:-1:-1;;;;;48126:34:0;;:87;;;-1:-1:-1;17398:10:0;48177:20;48189:7;48177:11;:20::i;:::-;-1:-1:-1;;;;;48177:36:0;;48126:87;:154;;;-1:-1:-1;48247:18:0;;48230:50;;17398:10;43792:164;:::i;48230:50::-;48100:181;;48302:17;48294:80;;;;-1:-1:-1;;;48294:80:0;;16701:2:1;48294:80:0;;;16683:21:1;16740:2;16720:18;;;16713:30;16779:34;16759:18;;;16752:62;-1:-1:-1;;;16830:18:1;;;16823:48;16888:19;;48294:80:0;16499:414:1;48294:80:0;48417:4;-1:-1:-1;;;;;48395:26:0;:13;:18;;;-1:-1:-1;;;;;48395:26:0;;48387:77;;;;-1:-1:-1;;;48387:77:0;;17120:2:1;48387:77:0;;;17102:21:1;17159:2;17139:18;;;17132:30;17198:34;17178:18;;;17171:62;-1:-1:-1;;;17249:18:1;;;17242:36;17295:19;;48387:77:0;16918:402:1;48387:77:0;-1:-1:-1;;;;;48483:16:0;;48475:66;;;;-1:-1:-1;;;48475:66:0;;17527:2:1;48475:66:0;;;17509:21:1;17566:2;17546:18;;;17539:30;17605:34;17585:18;;;17578:62;-1:-1:-1;;;17656:18:1;;;17649:35;17701:19;;48475:66:0;17325:401:1;48475:66:0;48662:49;48679:1;48683:7;48692:13;:18;;;48662:8;:49::i;:::-;-1:-1:-1;;;;;49007:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;49007:31:0;;;-1:-1:-1;;;;;49007:31:0;;;-1:-1:-1;;49007:31:0;;;;;;;49053:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49053:29:0;;;;;;;;;;;;;49099:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;49144:61:0;;;;-1:-1:-1;;;49189:15:0;-1:-1:-1;;;;;49144:61:0;;;;;49479:11;;;49509:24;;;;;:29;49479:11;;49509:29;49505:295;;49577:20;49585:11;45171:4;45205:12;-1:-1:-1;45195:22:0;45114:111;49577:20;49573:212;;;49654:18;;;49622:24;;;:11;:24;;;;;;;;:50;;49737:28;;;;-1:-1:-1;;;;;49695:70:0;-1:-1:-1;;;49695:70:0;-1:-1:-1;;;;;;49695:70:0;;;-1:-1:-1;;;;;49622:50:0;;;49695:70;;;;;;;49573:212;48982:829;49847:7;49843:2;-1:-1:-1;;;;;49828:27:0;49837:4;-1:-1:-1;;;;;49828:27:0;;;;;;;;;;;49866:42;48018:1898;;47914:2002;;;:::o;63553:416::-;63630:7;63625:337;63643:17;;;;-1:-1:-1;63625:337:0;;;63686:11;;-1:-1:-1;;;;;63686:11:0;:17;63704:6;;:9;;;;;;;;;;:::i;:::-;;;;;;;63686:28;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;63686:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63682:103;;;63759:6;;63766:1;63759:9;;;;;;;;;:::i;:::-;;;;;;;63742:27;;-1:-1:-1;;;63742:27:0;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;63682:103:0;63804:11;;63838:10;;-1:-1:-1;;;;;63804:11:0;:19;63824:6;;:9;;;;;;;;;;:::i;:::-;;;;;;;63804:30;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;63804:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;63804:44:0;;63800:109;;63876:17;;-1:-1:-1;;;63876:17:0;;;;;;;;;;;63800:109;63923:11;;-1:-1:-1;;;;;63923:11:0;:16;63940:6;;:9;;;;;;;;;;:::i;:::-;;;;;;;63923:27;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;63923:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63662:3;;;;;:::i;:::-;;;;63625:337;;45233:104;45302:27;45312:2;45316:8;45302:27;;;;;;;;;;;;:9;:27::i;40795:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;40898:16:0;40906:7;45171:4;45205:12;-1:-1:-1;45195:22:0;45114:111;40898:16;40890:71;;;;-1:-1:-1;;;40890:71:0;;18113:2:1;40890:71:0;;;18095:21:1;18152:2;18132:18;;;18125:30;18191:34;18171:18;;;18164:62;-1:-1:-1;;;18242:18:1;;;18235:40;18292:19;;40890:71:0;17911:406:1;40890:71:0;41019:7;40999:245;41066:31;41100:17;;;:11;:17;;;;;;;;;41066:51;;;;;;;;;-1:-1:-1;;;;;41066:51:0;;;;;-1:-1:-1;;;41066:51:0;;;-1:-1:-1;;;;;41066:51:0;;;;;;;;41140:28;41136:93;;41200:9;40795:537;-1:-1:-1;;;40795:537:0:o;41136:93::-;-1:-1:-1;;;41039:6:0;40999:245;;19597:173;19672:6;;;-1:-1:-1;;;;;19689:17:0;;;-1:-1:-1;;;;;;19689:17:0;;;;;;;19722:40;;19672:6;;;19689:17;19672:6;;19722:40;;19653:16;;19722:40;19642:128;19597:173;:::o;50795:804::-;50950:4;-1:-1:-1;;;;;50971:13:0;;20834:20;20882:8;50967:625;;51007:72;;-1:-1:-1;;;51007:72:0;;-1:-1:-1;;;;;51007:36:0;;;;;:72;;17398:10;;51058:4;;51064:7;;51073:5;;51007:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51007:72:0;;;;;;;;-1:-1:-1;;51007:72:0;;;;;;;;;;;;:::i;:::-;;;51003:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51253:6;:13;51270:1;51253:18;51249:273;;51296:61;;-1:-1:-1;;;51296:61:0;;;;;;;:::i;51249:273::-;51472:6;51466:13;51457:6;51453:2;51449:15;51442:38;51003:534;-1:-1:-1;;;;;;51130:55:0;-1:-1:-1;;;51130:55:0;;-1:-1:-1;51123:62:0;;50967:625;-1:-1:-1;51576:4:0;50967:625;50795:804;;;;;;:::o;57997:112::-;58056:13;58089:12;58082:19;;;;;:::i;5492:723::-;5548:13;5769:5;5778:1;5769:10;5765:53;;-1:-1:-1;;5796:10:0;;;;;;;;;;;;-1:-1:-1;;;5796:10:0;;;;;5492:723::o;5765:53::-;5843:5;5828:12;5884:78;5891:9;;5884:78;;5917:8;;;;:::i;:::-;;-1:-1:-1;5940:10:0;;-1:-1:-1;5948:2:0;5940:10;;:::i;:::-;;;5884:78;;;5972:19;6004:6;-1:-1:-1;;;;;5994:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5994:17:0;;5972:39;;6022:154;6029:10;;6022:154;;6056:11;6066:1;6056:11;;:::i;:::-;;-1:-1:-1;6125:10:0;6133:2;6125:5;:10;:::i;:::-;6112:24;;:2;:24;:::i;:::-;6099:39;;6082:6;6089;6082:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6082:56:0;;;;;;;;-1:-1:-1;6153:11:0;6162:2;6153:11;;:::i;:::-;;;6022:154;;45700:163;45823:32;45829:2;45833:8;45843:5;45850:4;46261:20;46284:12;-1:-1:-1;;;;;46315:16:0;;46307:62;;;;-1:-1:-1;;;46307:62:0;;20192:2:1;46307:62:0;;;20174:21:1;20231:2;20211:18;;;20204:30;20270:34;20250:18;;;20243:62;-1:-1:-1;;;20321:18:1;;;20314:31;20362:19;;46307:62:0;19990:397:1;46307:62:0;46388:8;46400:1;46388:13;46380:66;;;;-1:-1:-1;;;46380:66:0;;20594:2:1;46380:66:0;;;20576:21:1;20633:2;20613:18;;;20606:30;20672:34;20652:18;;;20645:62;-1:-1:-1;;;20723:18:1;;;20716:38;20771:19;;46380:66:0;20392:404:1;46380:66:0;-1:-1:-1;;;;;46798:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;46798:45:0;;-1:-1:-1;;;;;46798:45:0;;;;;;;;;;46858:50;;;;;;;;;;;;;;46925:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;46975:66:0;;;;-1:-1:-1;;;47025:15:0;-1:-1:-1;;;;;46975:66:0;;;;;;46925:25;;47110:415;47130:8;47126:1;:12;47110:415;;;47169:38;;47194:12;;-1:-1:-1;;;;;47169:38:0;;;47186:1;;47169:38;;47186:1;;47169:38;47230:4;47226:249;;;47293:59;47324:1;47328:2;47332:12;47346:5;47293:22;:59::i;:::-;47259:196;;;;-1:-1:-1;;;47259:196:0;;;;;;;:::i;:::-;47495:14;;;;;47140:3;47110:415;;;-1:-1:-1;47541:12:0;:27;47592:60;60572:559;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:367::-;2437:8;2447:6;2501:3;2494:4;2486:6;2482:17;2478:27;2468:55;;2519:1;2516;2509:12;2468:55;-1:-1:-1;2542:20:1;;-1:-1:-1;;;;;2574:30:1;;2571:50;;;2617:1;2614;2607:12;2571:50;2654:4;2646:6;2642:17;2630:29;;2714:3;2707:4;2697:6;2694:1;2690:14;2682:6;2678:27;2674:38;2671:47;2668:67;;;2731:1;2728;2721:12;2668:67;2374:367;;;;;:::o;2746:437::-;2832:6;2840;2893:2;2881:9;2872:7;2868:23;2864:32;2861:52;;;2909:1;2906;2899:12;2861:52;2949:9;2936:23;-1:-1:-1;;;;;2974:6:1;2971:30;2968:50;;;3014:1;3011;3004:12;2968:50;3053:70;3115:7;3106:6;3095:9;3091:22;3053:70;:::i;:::-;3142:8;;3027:96;;-1:-1:-1;2746:437:1;-1:-1:-1;;;;2746:437:1:o;3188:456::-;3265:6;3273;3281;3334:2;3322:9;3313:7;3309:23;3305:32;3302:52;;;3350:1;3347;3340:12;3302:52;3389:9;3376:23;3408:31;3433:5;3408:31;:::i;:::-;3458:5;-1:-1:-1;3515:2:1;3500:18;;3487:32;3528:33;3487:32;3528:33;:::i;:::-;3188:456;;3580:7;;-1:-1:-1;;;3634:2:1;3619:18;;;;3606:32;;3188:456::o;3649:505::-;3744:6;3752;3760;3813:2;3801:9;3792:7;3788:23;3784:32;3781:52;;;3829:1;3826;3819:12;3781:52;3865:9;3852:23;3842:33;;3926:2;3915:9;3911:18;3898:32;-1:-1:-1;;;;;3945:6:1;3942:30;3939:50;;;3985:1;3982;3975:12;3939:50;4024:70;4086:7;4077:6;4066:9;4062:22;4024:70;:::i;:::-;3649:505;;4113:8;;-1:-1:-1;3998:96:1;;-1:-1:-1;;;;3649:505:1:o;4159:247::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4326:9;4313:23;4345:31;4370:5;4345:31;:::i;4411:248::-;4479:6;4487;4540:2;4528:9;4519:7;4515:23;4511:32;4508:52;;;4556:1;4553;4546:12;4508:52;-1:-1:-1;;4579:23:1;;;4649:2;4634:18;;;4621:32;;-1:-1:-1;4411:248:1:o;4664:118::-;4750:5;4743:13;4736:21;4729:5;4726:32;4716:60;;4772:1;4769;4762:12;4787:382;4852:6;4860;4913:2;4901:9;4892:7;4888:23;4884:32;4881:52;;;4929:1;4926;4919:12;4881:52;4968:9;4955:23;4987:31;5012:5;4987:31;:::i;:::-;5037:5;-1:-1:-1;5094:2:1;5079:18;;5066:32;5107:30;5066:32;5107:30;:::i;:::-;5156:7;5146:17;;;4787:382;;;;;:::o;5174:241::-;5230:6;5283:2;5271:9;5262:7;5258:23;5254:32;5251:52;;;5299:1;5296;5289:12;5251:52;5338:9;5325:23;5357:28;5379:5;5357:28;:::i;5420:127::-;5481:10;5476:3;5472:20;5469:1;5462:31;5512:4;5509:1;5502:15;5536:4;5533:1;5526:15;5552:631;5616:5;-1:-1:-1;;;;;5687:2:1;5679:6;5676:14;5673:40;;;5693:18;;:::i;:::-;5768:2;5762:9;5736:2;5822:15;;-1:-1:-1;;5818:24:1;;;5844:2;5814:33;5810:42;5798:55;;;5868:18;;;5888:22;;;5865:46;5862:72;;;5914:18;;:::i;:::-;5954:10;5950:2;5943:22;5983:6;5974:15;;6013:6;6005;5998:22;6053:3;6044:6;6039:3;6035:16;6032:25;6029:45;;;6070:1;6067;6060:12;6029:45;6120:6;6115:3;6108:4;6100:6;6096:17;6083:44;6175:1;6168:4;6159:6;6151;6147:19;6143:30;6136:41;;;;5552:631;;;;;:::o;6188:794::-;6283:6;6291;6299;6307;6360:3;6348:9;6339:7;6335:23;6331:33;6328:53;;;6377:1;6374;6367:12;6328:53;6416:9;6403:23;6435:31;6460:5;6435:31;:::i;:::-;6485:5;-1:-1:-1;6542:2:1;6527:18;;6514:32;6555:33;6514:32;6555:33;:::i;:::-;6607:7;-1:-1:-1;6661:2:1;6646:18;;6633:32;;-1:-1:-1;6716:2:1;6701:18;;6688:32;-1:-1:-1;;;;;6732:30:1;;6729:50;;;6775:1;6772;6765:12;6729:50;6798:22;;6851:4;6843:13;;6839:27;-1:-1:-1;6829:55:1;;6880:1;6877;6870:12;6829:55;6903:73;6968:7;6963:2;6950:16;6945:2;6941;6937:11;6903:73;:::i;:::-;6893:83;;;6188:794;;;;;;;:::o;6987:918::-;7136:6;7144;7152;7160;7168;7176;7184;7192;7200;7253:3;7241:9;7232:7;7228:23;7224:33;7221:53;;;7270:1;7267;7260:12;7221:53;7306:9;7293:23;7283:33;;7367:2;7356:9;7352:18;7339:32;-1:-1:-1;;;;;7386:6:1;7383:30;7380:50;;;7426:1;7423;7416:12;7380:50;7465:70;7527:7;7518:6;7507:9;7503:22;7465:70;:::i;:::-;6987:918;;7554:8;;-1:-1:-1;7439:96:1;;7636:2;7621:18;;7608:32;;7687:2;7672:18;;7659:32;;-1:-1:-1;7738:3:1;7723:19;;7710:33;;-1:-1:-1;7790:3:1;7775:19;;7762:33;;-1:-1:-1;7842:3:1;7827:19;;7814:33;;-1:-1:-1;7894:3:1;7879:19;;;7866:33;;-1:-1:-1;6987:918:1;-1:-1:-1;;;;6987:918:1:o;7910:450::-;7979:6;8032:2;8020:9;8011:7;8007:23;8003:32;8000:52;;;8048:1;8045;8038:12;8000:52;8088:9;8075:23;-1:-1:-1;;;;;8113:6:1;8110:30;8107:50;;;8153:1;8150;8143:12;8107:50;8176:22;;8229:4;8221:13;;8217:27;-1:-1:-1;8207:55:1;;8258:1;8255;8248:12;8207:55;8281:73;8346:7;8341:2;8328:16;8323:2;8319;8315:11;8281:73;:::i;8365:388::-;8433:6;8441;8494:2;8482:9;8473:7;8469:23;8465:32;8462:52;;;8510:1;8507;8500:12;8462:52;8549:9;8536:23;8568:31;8593:5;8568:31;:::i;:::-;8618:5;-1:-1:-1;8675:2:1;8660:18;;8647:32;8688:33;8647:32;8688:33;:::i;8758:380::-;8837:1;8833:12;;;;8880;;;8901:61;;8955:4;8947:6;8943:17;8933:27;;8901:61;9008:2;9000:6;8997:14;8977:18;8974:38;8971:161;;9054:10;9049:3;9045:20;9042:1;9035:31;9089:4;9086:1;9079:15;9117:4;9114:1;9107:15;8971:161;;8758:380;;;:::o;10386:356::-;10588:2;10570:21;;;10607:18;;;10600:30;10666:34;10661:2;10646:18;;10639:62;10733:2;10718:18;;10386:356::o;10747:127::-;10808:10;10803:3;10799:20;10796:1;10789:31;10839:4;10836:1;10829:15;10863:4;10860:1;10853:15;10879:127;10940:10;10935:3;10931:20;10928:1;10921:31;10971:4;10968:1;10961:15;10995:4;10992:1;10985:15;11011:135;11050:3;11071:17;;;11068:43;;11091:18;;:::i;:::-;-1:-1:-1;11138:1:1;11127:13;;11011:135::o;12373:251::-;12443:6;12496:2;12484:9;12475:7;12471:23;12467:32;12464:52;;;12512:1;12509;12502:12;12464:52;12544:9;12538:16;12563:31;12588:5;12563:31;:::i;13041:245::-;13108:6;13161:2;13149:9;13140:7;13136:23;13132:32;13129:52;;;13177:1;13174;13167:12;13129:52;13209:9;13203:16;13228:28;13250:5;13228:28;:::i;13646:415::-;13848:2;13830:21;;;13887:2;13867:18;;;13860:30;13926:34;13921:2;13906:18;;13899:62;-1:-1:-1;;;13992:2:1;13977:18;;13970:49;14051:3;14036:19;;13646:415::o;14066:128::-;14106:3;14137:1;14133:6;14130:1;14127:13;14124:39;;;14143:18;;:::i;:::-;-1:-1:-1;14179:9:1;;14066:128::o;14199:184::-;14269:6;14322:2;14310:9;14301:7;14297:23;14293:32;14290:52;;;14338:1;14335;14328:12;14290:52;-1:-1:-1;14361:16:1;;14199:184;-1:-1:-1;14199:184:1:o;14804:470::-;14983:3;15021:6;15015:13;15037:53;15083:6;15078:3;15071:4;15063:6;15059:17;15037:53;:::i;:::-;15153:13;;15112:16;;;;15175:57;15153:13;15112:16;15209:4;15197:17;;15175:57;:::i;:::-;15248:20;;14804:470;-1:-1:-1;;;;14804:470:1:o;15279:808::-;15607:3;15645:6;15639:13;15661:53;15707:6;15702:3;15695:4;15687:6;15683:17;15661:53;:::i;:::-;15777:13;;15736:16;;;;15799:57;15777:13;15736:16;15833:4;15821:17;;15799:57;:::i;:::-;-1:-1:-1;;;15878:20:1;;15907:18;;;15950:13;;15972:65;15950:13;16024:1;16013:13;;16006:4;15994:17;;15972:65;:::i;:::-;16057:20;16079:1;16053:28;;15279:808;-1:-1:-1;;;;;15279:808:1:o;17731:175::-;17768:3;17812:4;17805:5;17801:16;17841:4;17832:7;17829:17;17826:43;;17849:18;;:::i;:::-;17898:1;17885:15;;17731:175;-1:-1:-1;;17731:175:1:o;18738:489::-;-1:-1:-1;;;;;19007:15:1;;;18989:34;;19059:15;;19054:2;19039:18;;19032:43;19106:2;19091:18;;19084:34;;;19154:3;19149:2;19134:18;;19127:31;;;18932:4;;19175:46;;19201:19;;19193:6;19175:46;:::i;:::-;19167:54;18738:489;-1:-1:-1;;;;;;18738:489:1:o;19232:249::-;19301:6;19354:2;19342:9;19333:7;19329:23;19325:32;19322:52;;;19370:1;19367;19360:12;19322:52;19402:9;19396:16;19421:30;19445:5;19421:30;:::i;19486:127::-;19547:10;19542:3;19538:20;19535:1;19528:31;19578:4;19575:1;19568:15;19602:4;19599:1;19592:15;19618:120;19658:1;19684;19674:35;;19689:18;;:::i;:::-;-1:-1:-1;19723:9:1;;19618:120::o;19743:125::-;19783:4;19811:1;19808;19805:8;19802:34;;;19816:18;;:::i;:::-;-1:-1:-1;19853:9:1;;19743:125::o;19873:112::-;19905:1;19931;19921:35;;19936:18;;:::i;:::-;-1:-1:-1;19970:9:1;;19873:112::o
Swarm Source
ipfs://88faba40a8c1034a974f246afa8d5cd7901bc328a5c3c5d61df6cd2dd2fc1192
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.