Overview
TokenID
8853
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RealAssetNFTV2
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-21 */ // File: @openzeppelin/contracts/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 make 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; } } // File: @chainlink/contracts/src/v0.8/VRFRequestIDBase.sol pragma solidity ^0.8.0; contract VRFRequestIDBase { /** * @notice returns the seed which is actually input to the VRF coordinator * * @dev To prevent repetition of VRF output due to repetition of the * @dev user-supplied seed, that seed is combined in a hash with the * @dev user-specific nonce, and the address of the consuming contract. The * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in * @dev the final seed, but the nonce does protect against repetition in * @dev requests which are included in a single block. * * @param _userSeed VRF seed input provided by user * @param _requester Address of the requesting contract * @param _nonce User-specific nonce at the time of the request */ function makeVRFInputSeed( bytes32 _keyHash, uint256 _userSeed, address _requester, uint256 _nonce ) internal pure returns ( uint256 ) { return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce))); } /** * @notice Returns the id for this request * @param _keyHash The serviceAgreement ID to be used for this request * @param _vRFInputSeed The seed to be passed directly to the VRF * @return The id for this request * * @dev Note that _vRFInputSeed is not the seed passed by the consuming * @dev contract, but the one generated by makeVRFInputSeed */ function makeRequestId( bytes32 _keyHash, uint256 _vRFInputSeed ) internal pure returns ( bytes32 ) { return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed)); } } // File: @chainlink/contracts/src/v0.8/interfaces/LinkTokenInterface.sol pragma solidity ^0.8.0; interface LinkTokenInterface { function allowance( address owner, address spender ) external view returns ( uint256 remaining ); function approve( address spender, uint256 value ) external returns ( bool success ); function balanceOf( address owner ) external view returns ( uint256 balance ); function decimals() external view returns ( uint8 decimalPlaces ); function decreaseApproval( address spender, uint256 addedValue ) external returns ( bool success ); function increaseApproval( address spender, uint256 subtractedValue ) external; function name() external view returns ( string memory tokenName ); function symbol() external view returns ( string memory tokenSymbol ); function totalSupply() external view returns ( uint256 totalTokensIssued ); function transfer( address to, uint256 value ) external returns ( bool success ); function transferAndCall( address to, uint256 value, bytes calldata data ) external returns ( bool success ); function transferFrom( address from, address to, uint256 value ) external returns ( bool success ); } // File: @chainlink/contracts/src/v0.8/VRFConsumerBase.sol pragma solidity ^0.8.0; /** **************************************************************************** * @notice Interface for contracts using VRF randomness * ***************************************************************************** * @dev PURPOSE * * @dev Reggie the Random Oracle (not his real job) wants to provide randomness * @dev to Vera the verifier in such a way that Vera can be sure he's not * @dev making his output up to suit himself. Reggie provides Vera a public key * @dev to which he knows the secret key. Each time Vera provides a seed to * @dev Reggie, he gives back a value which is computed completely * @dev deterministically from the seed and the secret key. * * @dev Reggie provides a proof by which Vera can verify that the output was * @dev correctly computed once Reggie tells it to her, but without that proof, * @dev the output is indistinguishable to her from a uniform random sample * @dev from the output space. * * @dev The purpose of this contract is to make it easy for unrelated contracts * @dev to talk to Vera the verifier about the work Reggie is doing, to provide * @dev simple access to a verifiable source of randomness. * ***************************************************************************** * @dev USAGE * * @dev Calling contracts must inherit from VRFConsumerBase, and can * @dev initialize VRFConsumerBase's attributes in their constructor as * @dev shown: * * @dev contract VRFConsumer { * @dev constuctor(<other arguments>, address _vrfCoordinator, address _link) * @dev VRFConsumerBase(_vrfCoordinator, _link) public { * @dev <initialization with other arguments goes here> * @dev } * @dev } * * @dev The oracle will have given you an ID for the VRF keypair they have * @dev committed to (let's call it keyHash), and have told you the minimum LINK * @dev price for VRF service. Make sure your contract has sufficient LINK, and * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you * @dev want to generate randomness from. * * @dev Once the VRFCoordinator has received and validated the oracle's response * @dev to your request, it will call your contract's fulfillRandomness method. * * @dev The randomness argument to fulfillRandomness is the actual random value * @dev generated from your seed. * * @dev The requestId argument is generated from the keyHash and the seed by * @dev makeRequestId(keyHash, seed). If your contract could have concurrent * @dev requests open, you can use the requestId to track which seed is * @dev associated with which randomness. See VRFRequestIDBase.sol for more * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind, * @dev if your contract could have multiple requests in flight simultaneously.) * * @dev Colliding `requestId`s are cryptographically impossible as long as seeds * @dev differ. (Which is critical to making unpredictable randomness! See the * @dev next section.) * * ***************************************************************************** * @dev SECURITY CONSIDERATIONS * * @dev A method with the ability to call your fulfillRandomness method directly * @dev could spoof a VRF response with any random value, so it's critical that * @dev it cannot be directly called by anything other than this base contract * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method). * * @dev For your users to trust that your contract's random behavior is free * @dev from malicious interference, it's best if you can write it so that all * @dev behaviors implied by a VRF response are executed *during* your * @dev fulfillRandomness method. If your contract must store the response (or * @dev anything derived from it) and use it later, you must ensure that any * @dev user-significant behavior which depends on that stored value cannot be * @dev manipulated by a subsequent VRF request. * * @dev Similarly, both miners and the VRF oracle itself have some influence * @dev over the order in which VRF responses appear on the blockchain, so if * @dev your contract could have multiple VRF requests in flight simultaneously, * @dev you must ensure that the order in which the VRF responses arrive cannot * @dev be used to manipulate your contract's user-significant behavior. * * @dev Since the ultimate input to the VRF is mixed with the block hash of the * @dev block in which the request is made, user-provided seeds have no impact * @dev on its economic security properties. They are only included for API * @dev compatability with previous versions of this contract. * * @dev Since the block hash of the block which contains the requestRandomness * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful * @dev miner could, in principle, fork the blockchain to evict the block * @dev containing the request, forcing the request to be included in a * @dev different block with a different hash, and therefore a different input * @dev to the VRF. However, such an attack would incur a substantial economic * @dev cost. This cost scales with the number of blocks the VRF oracle waits * @dev until it calls responds to a request. */ abstract contract VRFConsumerBase is VRFRequestIDBase { /** * @notice fulfillRandomness handles the VRF response. Your contract must * @notice implement it. See "SECURITY CONSIDERATIONS" above for important * @notice principles to keep in mind when implementing your fulfillRandomness * @notice method. * * @dev VRFConsumerBase expects its subcontracts to have a method with this * @dev signature, and will call it once it has verified the proof * @dev associated with the randomness. (It is triggered via a call to * @dev rawFulfillRandomness, below.) * * @param requestId The Id initially returned by requestRandomness * @param randomness the VRF output */ function fulfillRandomness( bytes32 requestId, uint256 randomness ) internal virtual; /** * @dev In order to keep backwards compatibility we have kept the user * seed field around. We remove the use of it because given that the blockhash * enters later, it overrides whatever randomness the used seed provides. * Given that it adds no security, and can easily lead to misunderstandings, * we have removed it from usage and can now provide a simpler API. */ uint256 constant private USER_SEED_PLACEHOLDER = 0; /** * @notice requestRandomness initiates a request for VRF output given _seed * * @dev The fulfillRandomness method receives the output, once it's provided * @dev by the Oracle, and verified by the vrfCoordinator. * * @dev The _keyHash must already be registered with the VRFCoordinator, and * @dev the _fee must exceed the fee specified during registration of the * @dev _keyHash. * * @dev The _seed parameter is vestigial, and is kept only for API * @dev compatibility with older versions. It can't *hurt* to mix in some of * @dev your own randomness, here, but it's not necessary because the VRF * @dev oracle will mix the hash of the block containing your request into the * @dev VRF seed it ultimately uses. * * @param _keyHash ID of public key against which randomness is generated * @param _fee The amount of LINK to send with the request * * @return requestId unique ID for this request * * @dev The returned requestId can be used to distinguish responses to * @dev concurrent requests. It is passed as the first argument to * @dev fulfillRandomness. */ function requestRandomness( bytes32 _keyHash, uint256 _fee ) internal returns ( bytes32 requestId ) { LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER)); // This is the seed passed to VRFCoordinator. The oracle will mix this with // the hash of the block containing this request to obtain the seed/input // which is finally passed to the VRF cryptographic machinery. uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]); // nonces[_keyHash] must stay in sync with // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest). // This provides protection against the user repeating their input seed, // which would result in a predictable/duplicate output, if multiple such // requests appeared in the same block. nonces[_keyHash] = nonces[_keyHash] + 1; return makeRequestId(_keyHash, vRFSeed); } LinkTokenInterface immutable internal LINK; address immutable private vrfCoordinator; // Nonces for each VRF key from which randomness has been requested. // // Must stay in sync with VRFCoordinator[_keyHash][this] mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces; /** * @param _vrfCoordinator address of VRFCoordinator contract * @param _link address of LINK token contract * * @dev https://docs.chain.link/docs/link-token-contracts */ constructor( address _vrfCoordinator, address _link ) { vrfCoordinator = _vrfCoordinator; LINK = LinkTokenInterface(_link); } // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF // proof. rawFulfillRandomness then calls fulfillRandomness, after validating // the origin of the call function rawFulfillRandomness( bytes32 requestId, uint256 randomness ) external { require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill"); fulfillRandomness(requestId, randomness); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol 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: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/Bluprint_phase2.sol pragma solidity ^0.8.1; contract RealAssetNFTV2 is VRFConsumerBase, ERC721, Ownable, ReentrancyGuard { // Total NFTs claimed by users (max 8888) uint256 public totalClaimed; // To check if Chainlink random number request has been fullfilled bool private isrequestfulfilled; // Public key against which random number is generated bytes32 internal keyHash; // Request ID against which random number will be supplied bytes32 public vrfRequestId; // Big prime number to be used in mapping token IDs to Asset IDs uint256 public constant bigPrimeNumber = 9973; // LINK fee required to fulfill a VRF request uint256 private constant fee = 2 * 10**18; // Random number to be used in mapping token IDs to Asset IDs (this is requested from Chainlink) uint256 private randomNumber; // Max supply of tokens uint256 public immutable maxSupply; // Epoch timestamp after which users can claim NFTs uint256 public immutable claimStartTime; // Base URI for token metadata string public baseTokenURI; // Contract address of RealAssetNFT contract (v1) address public parentContractAddress; // Mapping to check if a tokenID has been claimed mapping(uint256 => bool) isClaimed; // Mapping to check if an address has claimed tokens mapping(address => bool) hasClaimed; // To check if claim has started modifier claimStarted() { require( block.timestamp >= claimStartTime, "Sorry, claim has not started." ); _; } event URI(string uri); event RandomNumberRequested(address indexed sender, bytes32 indexed vrfRequestId); event RandomNumberCompleted(bytes32 indexed requestId, uint256 randomNumber); event TokensRevealed(uint256 time); constructor( address _vrfCoordinator, address _link, bytes32 _keyHash, string memory _metadataBaseUri, uint256 _maxSupply, uint256 _claimStartTime, address _parentContractAddress ) VRFConsumerBase(_vrfCoordinator, _link) ERC721("BLUPRINT", "BPRINT") { require( block.timestamp <= _claimStartTime, "Claim start time must be greater than current time" ); require( _maxSupply > 0, "Maximum token supply must be greater than zero" ); keyHash = _keyHash; baseTokenURI = _metadataBaseUri; maxSupply = _maxSupply; claimStartTime = _claimStartTime; parentContractAddress = _parentContractAddress; } /** @notice Checks if claim is live @return true if claim is live, else false */ function isClaimLive() external view returns (bool) { return (block.timestamp >= claimStartTime); } /** @notice Users can claim tokens against owned tokens of v1 contract @dev Checks if tokenIDs in input array are owned by the function caller @dev Can only be called once by an address @dev Checks which of the tokenIDs in input array are already claimed @param claimTokenIDs input token IDs against which claim is to be processed */ function claim(uint256[] memory claimTokenIDs) external claimStarted nonReentrant { require(!hasClaimed[msg.sender], "claim: sorry, you have already claimed tokens"); require(verifyOwnership(claimTokenIDs), "claim: failed ownership check for provided IDs"); uint256[8] memory tokenIDs; for (uint256 i = 0; i < claimTokenIDs.length; i++) { if (!isClaimed[claimTokenIDs[i]]) { tokenIDs = mapClaimIDs(claimTokenIDs[i]); for (uint256 j = 0; j < 8; j++) { _mint(msg.sender, tokenIDs[j]); } isClaimed[claimTokenIDs[i]] = true; totalClaimed += 8; } } hasClaimed[msg.sender] = true; } /** @notice Requests a random number from chain link @dev Can only be called by the contract owner @dev Random number can only be assigned once @return a tuple of vrfRequestId and block number at which this function was called */ function requestRandomNumber() external onlyOwner returns (bytes32, uint32) { require(!isrequestfulfilled, "requestRandomNumber: already obtained the random number"); require( LINK.balanceOf(address(this)) >= fee, "requestRandomNumber: LINK token balance less than required" ); uint32 lockBlock = uint32(block.number); vrfRequestId = requestRandomness(keyHash, fee); emit RandomNumberRequested(msg.sender, vrfRequestId); return (vrfRequestId, lockBlock); } /** @notice Callback function used by the Chainlink vrfCoordinator @dev Can only be called by the Chainlink vrfCoordinator @dev Sets isrequestfulfilled to true, thereby enabling the tokenID to assetID mapping @param _requestId vrfRequestId against which random number is being supplied @param _randomness random number generated by Chainlink */ function fulfillRandomness(bytes32 _requestId, uint256 _randomness) internal override { randomNumber = _randomness; isrequestfulfilled = true; emit RandomNumberCompleted(_requestId, _randomness); } /** @notice Maps tokenIDs to assetIDs @dev Ensures random allocation of assetIDs against tokenIDs @param _tokenID tokenID against which assetID is requested @return assetID against input tokenID */ function getAssetId(uint256 _tokenID) external view returns (uint256) { require(_tokenID > 0 && _tokenID <= maxSupply, "getAssetId: invalid token Id"); require( isrequestfulfilled, "getAssetId: please wait for random number to be assigned" ); uint256 assetID = bigPrimeNumber * _tokenID + (randomNumber % bigPrimeNumber); assetID = assetID % maxSupply; if (assetID == 0) assetID = maxSupply; return assetID; } /** @notice Returns random number generated by Chainlink */ function getRandomNumber() external view returns (uint256) { require( isrequestfulfilled, "getRandomNumber: please wait for random number to be assigned" ); return randomNumber; } /** @notice Sets metadata base URI @dev Can only be called by the contract owner */ function setURI(string memory _uri) external onlyOwner { baseTokenURI = _uri; emit URI(_uri); } /** @notice Returns metadata base URI */ function _baseURI() internal view override returns (string memory) { return baseTokenURI; } /** @notice Returns LINK balance of the contract @dev Can only be called by the contract owner */ function getBalanceLink() external view onlyOwner returns (uint256) { return LINK.balanceOf(address(this)); } /** @notice Returns LINK address */ function getLinkAddress() external view returns (address) { return address(LINK); } /** @notice Withdraw LINK tokens from the contract @dev Can only be called by the contract owner @param _amount amount of LINK tokens to be withdrawn */ function withdrawLink(uint256 _amount) external onlyOwner nonReentrant { require(_amount > 0, "withdrawLink: amount should be greater than zero"); require( LINK.balanceOf(address(this)) >= _amount, "withdrawLink: withdrawal amount is greater than balance" ); LINK.transfer(msg.sender, _amount); } /** @notice Calculates tokenIDs to be minted against input tokenID @dev Maps 8 tokenIDs against 1 input tokenID @param tokenID input tokenID @return array of tokenIDs to be minted */ function mapClaimIDs(uint256 tokenID) internal pure returns (uint256[8] memory) { uint256[8] memory result; result[0] = tokenID; for (uint256 i = 1; i <= 7; i++) { result[i] = (1111 + (tokenID - 1) * 7 + i); } return result; } /** @notice Verifies if the function caller is the owner of all input tokenIDs @dev Calls the v1 contract to check ownership @param tokenIDs array of tokenIDs against which ownership is to be verified @return true if caller owns all tokenIDs, else false */ function verifyOwnership(uint256[] memory tokenIDs) internal view returns (bool) { ERC721 parentContract = ERC721(parentContractAddress); for (uint256 i = 0; i < tokenIDs.length; i++) { address owner = parentContract.ownerOf(tokenIDs[i]); if (owner != msg.sender) return false; } return true; } /** @notice Returns claim status of all input tokenIDs @param tokenIDs array of tokenIDs against which claim status is to be checked @return Array representing claim status of each of the input tokenIDs */ function getClaimStatus(uint256[] memory tokenIDs) external view returns (bool[] memory) { bool[] memory result = new bool[](tokenIDs.length); for (uint256 j = 0; j < tokenIDs.length; j++) { result[j] = isClaimed[tokenIDs[j]]; } return result; } /** @notice Returns claim status of an address @param caller address against which claim status is to be checked @return true if address has already claimed, else false */ function checkAddressClaim(address caller) external view returns (bool) { return hasClaimed[caller]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_vrfCoordinator","type":"address"},{"internalType":"address","name":"_link","type":"address"},{"internalType":"bytes32","name":"_keyHash","type":"bytes32"},{"internalType":"string","name":"_metadataBaseUri","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_claimStartTime","type":"uint256"},{"internalType":"address","name":"_parentContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"randomNumber","type":"uint256"}],"name":"RandomNumberCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"bytes32","name":"vrfRequestId","type":"bytes32"}],"name":"RandomNumberRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"TokensRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bigPrimeNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"checkAddressClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"claimTokenIDs","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimStartTime","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":"uint256","name":"_tokenID","type":"uint256"}],"name":"getAssetId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalanceLink","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"}],"name":"getClaimStatus","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLinkAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClaimLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parentContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestRandomNumber","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vrfRequestId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawLink","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040523480156200001257600080fd5b5060405162002fb138038062002fb1833981016040819052620000359162000325565b6040805180820182526008815267109315541492539560c21b60208083019182528351808501909452600684526510941492539560d21b908401526001600160a01b03808b1660a0528916608052815191929162000096916001916200024c565b508051620000ac9060029060208401906200024c565b505050620000c9620000c3620001f660201b60201c565b620001fa565b6001600855428210156200013f5760405162461bcd60e51b815260206004820152603260248201527f436c61696d2073746172742074696d65206d7573742062652067726561746572604482015271207468616e2063757272656e742074696d6560701b60648201526084015b60405180910390fd5b60008311620001a85760405162461bcd60e51b815260206004820152602e60248201527f4d6178696d756d20746f6b656e20737570706c79206d7573742062652067726560448201526d61746572207468616e207a65726f60901b606482015260840162000136565b600b8590558351620001c290600e9060208701906200024c565b5060c09290925260e052600f80546001600160a01b0319166001600160a01b03909216919091179055506200049692505050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025a9062000459565b90600052602060002090601f0160209004810192826200027e5760008555620002c9565b82601f106200029957805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c9578251825591602001919060010190620002ac565b50620002d7929150620002db565b5090565b5b80821115620002d75760008155600101620002dc565b80516001600160a01b03811681146200030a57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600080600080600080600060e0888a0312156200034157600080fd5b6200034c88620002f2565b965060206200035d818a01620002f2565b60408a015160608b015191985096506001600160401b03808211156200038257600080fd5b818b0191508b601f8301126200039757600080fd5b815181811115620003ac57620003ac6200030f565b604051601f8201601f19908116603f01168101908382118183101715620003d757620003d76200030f565b816040528281528e86848701011115620003f057600080fd5b600093505b82841015620004145784840186015181850187015292850192620003f5565b82841115620004265760008684830101525b8099505050505050506080880151925060a088015191506200044b60c08901620002f2565b905092959891949750929550565b600181811c908216806200046e57607f821691505b602082108114156200049057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612a946200051d600039600081816103a9015281816104360152610c180152600081816104cd01528181610a3501528181610b4b0152610b7a0152600081816114620152611dd301526000818161049301528181610898015281816110c0015281816111c30152818161131e0152611da40152612a946000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80637e5d297b11610125578063b88d4fde116100ad578063d54ad2a11161007c578063d54ad2a1146104bf578063d5abeb01146104c8578063dbdff2c1146104ef578063e985e9c5146104f7578063f2fde38b1461053357600080fd5b8063b88d4fde1461046b578063c87b56dd1461047e578063ca30e60314610491578063d547cfb7146104b757600080fd5b806394985ddd116100f457806394985ddd1461040357806395d89b4114610416578063a22cb4651461041e578063a6a11bb114610431578063ae596d4e1461045857600080fd5b80637e5d297b1461039e5780638567d17d146103a75780638678a7b2146103d05780638da5cb5b146103f257600080fd5b806323b872dd116101a85780636352211e116101775780636352211e1461034a5780636ba4c1381461035d57806370a0823114610370578063715018a6146103835780637a8042bd1461038b57600080fd5b806323b872dd146102f157806342842e0e1461030457806351e5a6d71461031757806361f547fd1461033757600080fd5b8063081812fc116101e4578063081812fc14610294578063095ea7b3146102bf578063136d6ea5146102d257806318a7ea5f146102e857600080fd5b806301d052e21461021657806301ffc9a71461025757806302fe53051461026a57806306fdde031461027f575b600080fd5b610242610224366004612340565b6001600160a01b031660009081526011602052604090205460ff1690565b60405190151581526020015b60405180910390f35b610242610265366004612373565b610546565b61027d61027836600461242f565b610598565b005b610287610619565b60405161024e91906124d0565b6102a76102a23660046124e3565b6106ab565b6040516001600160a01b03909116815260200161024e565b61027d6102cd3660046124fc565b610740565b6102da610856565b60405190815260200161024e565b6102da600c5481565b61027d6102ff366004612528565b610910565b61027d610312366004612528565b610941565b61032a610325366004612569565b61095c565b60405161024e919061260f565b6102da6103453660046124e3565b610a27565b6102a76103583660046124e3565b610b9f565b61027d61036b366004612569565b610c16565b6102da61037e366004612340565b610f04565b61027d610f8b565b61027d6103993660046124e3565b610fc1565b6102da6126f581565b7f0000000000000000000000000000000000000000000000000000000000000000421015610242565b6103d8611241565b6040805192835263ffffffff90911660208301520161024e565b6007546001600160a01b03166102a7565b61027d610411366004612655565b611457565b6102876114dd565b61027d61042c366004612685565b6114ec565b6102da7f000000000000000000000000000000000000000000000000000000000000000081565b600f546102a7906001600160a01b031681565b61027d6104793660046126be565b6114f7565b61028761048c3660046124e3565b61152f565b7f00000000000000000000000000000000000000000000000000000000000000006102a7565b61028761160a565b6102da60095481565b6102da7f000000000000000000000000000000000000000000000000000000000000000081565b6102da611698565b61024261050536600461273e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61027d610541366004612340565b61171a565b60006001600160e01b031982166380ac58cd60e01b148061057757506001600160e01b03198216635b5e139f60e01b145b8061059257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146105cb5760405162461bcd60e51b81526004016105c29061276c565b60405180910390fd5b80516105de90600e906020840190612273565b507f3d7a9962f6da134f6896430d6867bd08e3546dbf9570df877e7cec39ba4305f08160405161060e91906124d0565b60405180910390a150565b606060018054610628906127a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610654906127a1565b80156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c2565b506000908152600560205260409020546001600160a01b031690565b600061074b82610b9f565b9050806001600160a01b0316836001600160a01b031614156107b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c2565b336001600160a01b03821614806107d557506107d58133610505565b6108475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c2565b61085183836117b5565b505050565b6007546000906001600160a01b031633146108835760405162461bcd60e51b81526004016105c29061276c565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156108e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090b91906127dc565b905090565b61091a3382611823565b6109365760405162461bcd60e51b81526004016105c2906127f5565b61085183838361191a565b610851838383604051806020016040528060008152506114f7565b60606000825167ffffffffffffffff81111561097a5761097a612390565b6040519080825280602002602001820160405280156109a3578160200160208202803683370190505b50905060005b8351811015610a2057601060008583815181106109c8576109c8612846565b6020026020010151815260200190815260200160002060009054906101000a900460ff168282815181106109fe576109fe612846565b9115156020928302919091019091015280610a1881612872565b9150506109a9565b5092915050565b60008082118015610a5857507f00000000000000000000000000000000000000000000000000000000000000008211155b610aa45760405162461bcd60e51b815260206004820152601c60248201527f676574417373657449643a20696e76616c696420746f6b656e2049640000000060448201526064016105c2565b600a5460ff16610b1c5760405162461bcd60e51b815260206004820152603860248201527f676574417373657449643a20706c65617365207761697420666f722072616e6460448201527f6f6d206e756d62657220746f2062652061737369676e6564000000000000000060648201526084016105c2565b60006126f5600d54610b2e91906128a3565b610b3a846126f56128b7565b610b4491906128d6565b9050610b707f0000000000000000000000000000000000000000000000000000000000000000826128a3565b90508061059257507f000000000000000000000000000000000000000000000000000000000000000092915050565b6000818152600360205260408120546001600160a01b0316806105925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c2565b7f0000000000000000000000000000000000000000000000000000000000000000421015610c865760405162461bcd60e51b815260206004820152601d60248201527f536f7272792c20636c61696d20686173206e6f7420737461727465642e00000060448201526064016105c2565b60026008541415610cd95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c2565b60026008553360009081526011602052604090205460ff1615610d545760405162461bcd60e51b815260206004820152602d60248201527f636c61696d3a20736f7272792c20796f75206861766520616c7265616479206360448201526c6c61696d656420746f6b656e7360981b60648201526084016105c2565b610d5d81611aba565b610dc05760405162461bcd60e51b815260206004820152602e60248201527f636c61696d3a206661696c6564206f776e65727368697020636865636b20666f60448201526d722070726f76696465642049447360901b60648201526084016105c2565b610dc86122f7565b60005b8251811015610edf5760106000848381518110610dea57610dea612846565b60209081029190910181015182528101919091526040016000205460ff16610ecd57610e2e838281518110610e2157610e21612846565b6020026020010151611b98565b915060005b6008811015610e6e57610e5c33848360088110610e5257610e52612846565b6020020151611c0c565b80610e6681612872565b915050610e33565b50600160106000858481518110610e8757610e87612846565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600860096000828254610ec791906128d6565b90915550505b80610ed781612872565b915050610dcb565b5050336000908152601160205260409020805460ff1916600190811790915560085550565b60006001600160a01b038216610f6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c2565b506001600160a01b031660009081526004602052604090205490565b6007546001600160a01b03163314610fb55760405162461bcd60e51b81526004016105c29061276c565b610fbf6000611d4e565b565b6007546001600160a01b03163314610feb5760405162461bcd60e51b81526004016105c29061276c565b6002600854141561103e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c2565b6002600855806110a95760405162461bcd60e51b815260206004820152603060248201527f77697468647261774c696e6b3a20616d6f756e742073686f756c64206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016105c2565b6040516370a0823160e01b815230600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561110f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113391906127dc565b10156111a75760405162461bcd60e51b815260206004820152603760248201527f77697468647261774c696e6b3a207769746864726177616c20616d6f756e742060448201527f69732067726561746572207468616e2062616c616e636500000000000000000060648201526084016105c2565b60405163a9059cbb60e01b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb906044016020604051808303816000875af1158015611214573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123891906128ee565b50506001600855565b600080336001600160a01b03166112606007546001600160a01b031690565b6001600160a01b0316146112865760405162461bcd60e51b81526004016105c29061276c565b600a5460ff16156112ff5760405162461bcd60e51b815260206004820152603760248201527f7265717565737452616e646f6d4e756d6265723a20616c7265616479206f627460448201527f61696e6564207468652072616e646f6d206e756d62657200000000000000000060648201526084016105c2565b6040516370a0823160e01b8152306004820152671bc16d674ec80000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561136d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139191906127dc565b10156114055760405162461bcd60e51b815260206004820152603a60248201527f7265717565737452616e646f6d4e756d6265723a204c494e4b20746f6b656e2060448201527f62616c616e6365206c657373207468616e20726571756972656400000000000060648201526084016105c2565b600b54439061141c90671bc16d674ec80000611da0565b600c81905560405133907ffb9e6931d074560e7cb254d248daf84079f54f66558a6ba8b9eccb9442a642ce90600090a3600c54925090509091565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114cf5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c0060448201526064016105c2565b6114d98282611f17565b5050565b606060028054610628906127a1565b6114d9338383611f69565b6115013383611823565b61151d5760405162461bcd60e51b81526004016105c2906127f5565b61152984848484612038565b50505050565b6000818152600360205260409020546060906001600160a01b03166115ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c2565b60006115b861206b565b905060008151116115d85760405180602001604052806000815250611603565b806115e28461207a565b6040516020016115f392919061290b565b6040516020818303038152906040525b9392505050565b600e8054611617906127a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611643906127a1565b80156116905780601f1061166557610100808354040283529160200191611690565b820191906000526020600020905b81548152906001019060200180831161167357829003601f168201915b505050505081565b600a5460009060ff166117135760405162461bcd60e51b815260206004820152603d60248201527f67657452616e646f6d4e756d6265723a20706c65617365207761697420666f7260448201527f2072616e646f6d206e756d62657220746f2062652061737369676e656400000060648201526084016105c2565b50600d5490565b6007546001600160a01b031633146117445760405162461bcd60e51b81526004016105c29061276c565b6001600160a01b0381166117a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c2565b6117b281611d4e565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ea82610b9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b031661189c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c2565b60006118a783610b9f565b9050806001600160a01b0316846001600160a01b031614806118e25750836001600160a01b03166118d7846106ab565b6001600160a01b0316145b8061191257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661192d82610b9f565b6001600160a01b0316146119955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c2565b6001600160a01b0382166119f75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c2565b611a026000826117b5565b6001600160a01b0383166000908152600460205260408120805460019290611a2b90849061293a565b90915550506001600160a01b0382166000908152600460205260408120805460019290611a599084906128d6565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600f546000906001600160a01b0316815b8351811015611b8e576000826001600160a01b0316636352211e868481518110611af757611af7612846565b60200260200101516040518263ffffffff1660e01b8152600401611b1d91815260200190565b602060405180830381865afa158015611b3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5e9190612951565b90506001600160a01b0381163314611b7b57506000949350505050565b5080611b8681612872565b915050611acb565b5060019392505050565b611ba06122f7565b611ba86122f7565b82815260015b60078111610a205780611bc260018661293a565b611bcd9060076128b7565b611bd9906104576128d6565b611be391906128d6565b828260088110611bf557611bf5612846565b602002015280611c0481612872565b915050611bae565b6001600160a01b038216611c625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c2565b6000818152600360205260409020546001600160a01b031615611cc75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c2565b6001600160a01b0382166000908152600460205260408120805460019290611cf09084906128d6565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001611e10929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401611e3d9392919061296e565b6020604051808303816000875af1158015611e5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8091906128ee565b5060008381526020818152604080832054815180840188905280830185905230606082015260808082018390528351808303909101815260a090910190925281519183019190912086845292909152611eda9060016128d6565b6000858152602081815260409182902092909255805180830187905280820184905281518082038301815260609091019091528051910120611912565b600d819055600a805460ff1916600117905560405182907ffb6cd07fbeb11b44106860d622b9f060079f790fa9ee013da16efb6e9b5b167f90611f5d9084815260200190565b60405180910390a25050565b816001600160a01b0316836001600160a01b03161415611fcb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c2565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61204384848461191a565b61204f84848484612178565b6115295760405162461bcd60e51b81526004016105c29061299e565b6060600e8054610628906127a1565b60608161209e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120c857806120b281612872565b91506120c19050600a836129f0565b91506120a2565b60008167ffffffffffffffff8111156120e3576120e3612390565b6040519080825280601f01601f19166020018201604052801561210d576020820181803683370190505b5090505b84156119125761212260018361293a565b915061212f600a866128a3565b61213a9060306128d6565b60f81b81838151811061214f5761214f612846565b60200101906001600160f81b031916908160001a905350612171600a866129f0565b9450612111565b60006001600160a01b0384163b1561226b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121bc903390899088908890600401612a04565b6020604051808303816000875af19250505080156121f7575060408051601f3d908101601f191682019092526121f491810190612a41565b60015b612251573d808015612225576040519150601f19603f3d011682016040523d82523d6000602084013e61222a565b606091505b5080516122495760405162461bcd60e51b81526004016105c29061299e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611912565b506001611912565b82805461227f906127a1565b90600052602060002090601f0160209004810192826122a157600085556122e7565b82601f106122ba57805160ff19168380011785556122e7565b828001600101855582156122e7579182015b828111156122e75782518255916020019190600101906122cc565b506122f3929150612316565b5090565b6040518061010001604052806008906020820280368337509192915050565b5b808211156122f35760008155600101612317565b6001600160a01b03811681146117b257600080fd5b60006020828403121561235257600080fd5b81356116038161232b565b6001600160e01b0319811681146117b257600080fd5b60006020828403121561238557600080fd5b81356116038161235d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156123cf576123cf612390565b604052919050565b600067ffffffffffffffff8311156123f1576123f1612390565b612404601f8401601f19166020016123a6565b905082815283838301111561241857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561244157600080fd5b813567ffffffffffffffff81111561245857600080fd5b8201601f8101841361246957600080fd5b611912848235602084016123d7565b60005b8381101561249357818101518382015260200161247b565b838111156115295750506000910152565b600081518084526124bc816020860160208601612478565b601f01601f19169290920160200192915050565b60208152600061160360208301846124a4565b6000602082840312156124f557600080fd5b5035919050565b6000806040838503121561250f57600080fd5b823561251a8161232b565b946020939093013593505050565b60008060006060848603121561253d57600080fd5b83356125488161232b565b925060208401356125588161232b565b929592945050506040919091013590565b6000602080838503121561257c57600080fd5b823567ffffffffffffffff8082111561259457600080fd5b818501915085601f8301126125a857600080fd5b8135818111156125ba576125ba612390565b8060051b91506125cb8483016123a6565b81815291830184019184810190888411156125e557600080fd5b938501935b83851015612603578435825293850193908501906125ea565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561264957835115158352928401929184019160010161262b565b50909695505050505050565b6000806040838503121561266857600080fd5b50508035926020909101359150565b80151581146117b257600080fd5b6000806040838503121561269857600080fd5b82356126a38161232b565b915060208301356126b381612677565b809150509250929050565b600080600080608085870312156126d457600080fd5b84356126df8161232b565b935060208501356126ef8161232b565b925060408501359150606085013567ffffffffffffffff81111561271257600080fd5b8501601f8101871361272357600080fd5b612732878235602084016123d7565b91505092959194509250565b6000806040838503121561275157600080fd5b823561275c8161232b565b915060208301356126b38161232b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806127b557607f821691505b602082108114156127d657634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156127ee57600080fd5b5051919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156128865761288661285c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826128b2576128b261288d565b500690565b60008160001904831182151516156128d1576128d161285c565b500290565b600082198211156128e9576128e961285c565b500190565b60006020828403121561290057600080fd5b815161160381612677565b6000835161291d818460208801612478565b835190830190612931818360208801612478565b01949350505050565b60008282101561294c5761294c61285c565b500390565b60006020828403121561296357600080fd5b81516116038161232b565b60018060a01b038416815282602082015260606040820152600061299560608301846124a4565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826129ff576129ff61288d565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a37908301846124a4565b9695505050505050565b600060208284031215612a5357600080fd5b81516116038161235d56fea26469706673582212209c758a8bc3f6872d0fdf370eb0b53f2648f4e8ef10fc669a182a2fc9ba254c8164736f6c634300080b0033000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44500000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000022b80000000000000000000000000000000000000000000000000000000061ec1bf00000000000000000000000006970a2d8df91afbd9a6560829689f57ae2773a68000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f626c757072696e742e78797a2f6170692f76312f746f6b656e2f000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c80637e5d297b11610125578063b88d4fde116100ad578063d54ad2a11161007c578063d54ad2a1146104bf578063d5abeb01146104c8578063dbdff2c1146104ef578063e985e9c5146104f7578063f2fde38b1461053357600080fd5b8063b88d4fde1461046b578063c87b56dd1461047e578063ca30e60314610491578063d547cfb7146104b757600080fd5b806394985ddd116100f457806394985ddd1461040357806395d89b4114610416578063a22cb4651461041e578063a6a11bb114610431578063ae596d4e1461045857600080fd5b80637e5d297b1461039e5780638567d17d146103a75780638678a7b2146103d05780638da5cb5b146103f257600080fd5b806323b872dd116101a85780636352211e116101775780636352211e1461034a5780636ba4c1381461035d57806370a0823114610370578063715018a6146103835780637a8042bd1461038b57600080fd5b806323b872dd146102f157806342842e0e1461030457806351e5a6d71461031757806361f547fd1461033757600080fd5b8063081812fc116101e4578063081812fc14610294578063095ea7b3146102bf578063136d6ea5146102d257806318a7ea5f146102e857600080fd5b806301d052e21461021657806301ffc9a71461025757806302fe53051461026a57806306fdde031461027f575b600080fd5b610242610224366004612340565b6001600160a01b031660009081526011602052604090205460ff1690565b60405190151581526020015b60405180910390f35b610242610265366004612373565b610546565b61027d61027836600461242f565b610598565b005b610287610619565b60405161024e91906124d0565b6102a76102a23660046124e3565b6106ab565b6040516001600160a01b03909116815260200161024e565b61027d6102cd3660046124fc565b610740565b6102da610856565b60405190815260200161024e565b6102da600c5481565b61027d6102ff366004612528565b610910565b61027d610312366004612528565b610941565b61032a610325366004612569565b61095c565b60405161024e919061260f565b6102da6103453660046124e3565b610a27565b6102a76103583660046124e3565b610b9f565b61027d61036b366004612569565b610c16565b6102da61037e366004612340565b610f04565b61027d610f8b565b61027d6103993660046124e3565b610fc1565b6102da6126f581565b7f0000000000000000000000000000000000000000000000000000000061ec1bf0421015610242565b6103d8611241565b6040805192835263ffffffff90911660208301520161024e565b6007546001600160a01b03166102a7565b61027d610411366004612655565b611457565b6102876114dd565b61027d61042c366004612685565b6114ec565b6102da7f0000000000000000000000000000000000000000000000000000000061ec1bf081565b600f546102a7906001600160a01b031681565b61027d6104793660046126be565b6114f7565b61028761048c3660046124e3565b61152f565b7f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6102a7565b61028761160a565b6102da60095481565b6102da7f00000000000000000000000000000000000000000000000000000000000022b881565b6102da611698565b61024261050536600461273e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61027d610541366004612340565b61171a565b60006001600160e01b031982166380ac58cd60e01b148061057757506001600160e01b03198216635b5e139f60e01b145b8061059257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146105cb5760405162461bcd60e51b81526004016105c29061276c565b60405180910390fd5b80516105de90600e906020840190612273565b507f3d7a9962f6da134f6896430d6867bd08e3546dbf9570df877e7cec39ba4305f08160405161060e91906124d0565b60405180910390a150565b606060018054610628906127a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610654906127a1565b80156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c2565b506000908152600560205260409020546001600160a01b031690565b600061074b82610b9f565b9050806001600160a01b0316836001600160a01b031614156107b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c2565b336001600160a01b03821614806107d557506107d58133610505565b6108475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c2565b61085183836117b5565b505050565b6007546000906001600160a01b031633146108835760405162461bcd60e51b81526004016105c29061276c565b6040516370a0823160e01b81523060048201527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a0823190602401602060405180830381865afa1580156108e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090b91906127dc565b905090565b61091a3382611823565b6109365760405162461bcd60e51b81526004016105c2906127f5565b61085183838361191a565b610851838383604051806020016040528060008152506114f7565b60606000825167ffffffffffffffff81111561097a5761097a612390565b6040519080825280602002602001820160405280156109a3578160200160208202803683370190505b50905060005b8351811015610a2057601060008583815181106109c8576109c8612846565b6020026020010151815260200190815260200160002060009054906101000a900460ff168282815181106109fe576109fe612846565b9115156020928302919091019091015280610a1881612872565b9150506109a9565b5092915050565b60008082118015610a5857507f00000000000000000000000000000000000000000000000000000000000022b88211155b610aa45760405162461bcd60e51b815260206004820152601c60248201527f676574417373657449643a20696e76616c696420746f6b656e2049640000000060448201526064016105c2565b600a5460ff16610b1c5760405162461bcd60e51b815260206004820152603860248201527f676574417373657449643a20706c65617365207761697420666f722072616e6460448201527f6f6d206e756d62657220746f2062652061737369676e6564000000000000000060648201526084016105c2565b60006126f5600d54610b2e91906128a3565b610b3a846126f56128b7565b610b4491906128d6565b9050610b707f00000000000000000000000000000000000000000000000000000000000022b8826128a3565b90508061059257507f00000000000000000000000000000000000000000000000000000000000022b892915050565b6000818152600360205260408120546001600160a01b0316806105925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c2565b7f0000000000000000000000000000000000000000000000000000000061ec1bf0421015610c865760405162461bcd60e51b815260206004820152601d60248201527f536f7272792c20636c61696d20686173206e6f7420737461727465642e00000060448201526064016105c2565b60026008541415610cd95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c2565b60026008553360009081526011602052604090205460ff1615610d545760405162461bcd60e51b815260206004820152602d60248201527f636c61696d3a20736f7272792c20796f75206861766520616c7265616479206360448201526c6c61696d656420746f6b656e7360981b60648201526084016105c2565b610d5d81611aba565b610dc05760405162461bcd60e51b815260206004820152602e60248201527f636c61696d3a206661696c6564206f776e65727368697020636865636b20666f60448201526d722070726f76696465642049447360901b60648201526084016105c2565b610dc86122f7565b60005b8251811015610edf5760106000848381518110610dea57610dea612846565b60209081029190910181015182528101919091526040016000205460ff16610ecd57610e2e838281518110610e2157610e21612846565b6020026020010151611b98565b915060005b6008811015610e6e57610e5c33848360088110610e5257610e52612846565b6020020151611c0c565b80610e6681612872565b915050610e33565b50600160106000858481518110610e8757610e87612846565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600860096000828254610ec791906128d6565b90915550505b80610ed781612872565b915050610dcb565b5050336000908152601160205260409020805460ff1916600190811790915560085550565b60006001600160a01b038216610f6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c2565b506001600160a01b031660009081526004602052604090205490565b6007546001600160a01b03163314610fb55760405162461bcd60e51b81526004016105c29061276c565b610fbf6000611d4e565b565b6007546001600160a01b03163314610feb5760405162461bcd60e51b81526004016105c29061276c565b6002600854141561103e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c2565b6002600855806110a95760405162461bcd60e51b815260206004820152603060248201527f77697468647261774c696e6b3a20616d6f756e742073686f756c64206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016105c2565b6040516370a0823160e01b815230600482015281907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a0823190602401602060405180830381865afa15801561110f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113391906127dc565b10156111a75760405162461bcd60e51b815260206004820152603760248201527f77697468647261774c696e6b3a207769746864726177616c20616d6f756e742060448201527f69732067726561746572207468616e2062616c616e636500000000000000000060648201526084016105c2565b60405163a9059cbb60e01b8152336004820152602481018290527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b03169063a9059cbb906044016020604051808303816000875af1158015611214573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123891906128ee565b50506001600855565b600080336001600160a01b03166112606007546001600160a01b031690565b6001600160a01b0316146112865760405162461bcd60e51b81526004016105c29061276c565b600a5460ff16156112ff5760405162461bcd60e51b815260206004820152603760248201527f7265717565737452616e646f6d4e756d6265723a20616c7265616479206f627460448201527f61696e6564207468652072616e646f6d206e756d62657200000000000000000060648201526084016105c2565b6040516370a0823160e01b8152306004820152671bc16d674ec80000907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a0823190602401602060405180830381865afa15801561136d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139191906127dc565b10156114055760405162461bcd60e51b815260206004820152603a60248201527f7265717565737452616e646f6d4e756d6265723a204c494e4b20746f6b656e2060448201527f62616c616e6365206c657373207468616e20726571756972656400000000000060648201526084016105c2565b600b54439061141c90671bc16d674ec80000611da0565b600c81905560405133907ffb9e6931d074560e7cb254d248daf84079f54f66558a6ba8b9eccb9442a642ce90600090a3600c54925090509091565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795216146114cf5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c0060448201526064016105c2565b6114d98282611f17565b5050565b606060028054610628906127a1565b6114d9338383611f69565b6115013383611823565b61151d5760405162461bcd60e51b81526004016105c2906127f5565b61152984848484612038565b50505050565b6000818152600360205260409020546060906001600160a01b03166115ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c2565b60006115b861206b565b905060008151116115d85760405180602001604052806000815250611603565b806115e28461207a565b6040516020016115f392919061290b565b6040516020818303038152906040525b9392505050565b600e8054611617906127a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611643906127a1565b80156116905780601f1061166557610100808354040283529160200191611690565b820191906000526020600020905b81548152906001019060200180831161167357829003601f168201915b505050505081565b600a5460009060ff166117135760405162461bcd60e51b815260206004820152603d60248201527f67657452616e646f6d4e756d6265723a20706c65617365207761697420666f7260448201527f2072616e646f6d206e756d62657220746f2062652061737369676e656400000060648201526084016105c2565b50600d5490565b6007546001600160a01b031633146117445760405162461bcd60e51b81526004016105c29061276c565b6001600160a01b0381166117a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c2565b6117b281611d4e565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ea82610b9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b031661189c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c2565b60006118a783610b9f565b9050806001600160a01b0316846001600160a01b031614806118e25750836001600160a01b03166118d7846106ab565b6001600160a01b0316145b8061191257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661192d82610b9f565b6001600160a01b0316146119955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c2565b6001600160a01b0382166119f75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c2565b611a026000826117b5565b6001600160a01b0383166000908152600460205260408120805460019290611a2b90849061293a565b90915550506001600160a01b0382166000908152600460205260408120805460019290611a599084906128d6565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600f546000906001600160a01b0316815b8351811015611b8e576000826001600160a01b0316636352211e868481518110611af757611af7612846565b60200260200101516040518263ffffffff1660e01b8152600401611b1d91815260200190565b602060405180830381865afa158015611b3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5e9190612951565b90506001600160a01b0381163314611b7b57506000949350505050565b5080611b8681612872565b915050611acb565b5060019392505050565b611ba06122f7565b611ba86122f7565b82815260015b60078111610a205780611bc260018661293a565b611bcd9060076128b7565b611bd9906104576128d6565b611be391906128d6565b828260088110611bf557611bf5612846565b602002015280611c0481612872565b915050611bae565b6001600160a01b038216611c625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c2565b6000818152600360205260409020546001600160a01b031615611cc75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c2565b6001600160a01b0382166000908152600460205260408120805460019290611cf09084906128d6565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001611e10929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401611e3d9392919061296e565b6020604051808303816000875af1158015611e5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8091906128ee565b5060008381526020818152604080832054815180840188905280830185905230606082015260808082018390528351808303909101815260a090910190925281519183019190912086845292909152611eda9060016128d6565b6000858152602081815260409182902092909255805180830187905280820184905281518082038301815260609091019091528051910120611912565b600d819055600a805460ff1916600117905560405182907ffb6cd07fbeb11b44106860d622b9f060079f790fa9ee013da16efb6e9b5b167f90611f5d9084815260200190565b60405180910390a25050565b816001600160a01b0316836001600160a01b03161415611fcb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c2565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61204384848461191a565b61204f84848484612178565b6115295760405162461bcd60e51b81526004016105c29061299e565b6060600e8054610628906127a1565b60608161209e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120c857806120b281612872565b91506120c19050600a836129f0565b91506120a2565b60008167ffffffffffffffff8111156120e3576120e3612390565b6040519080825280601f01601f19166020018201604052801561210d576020820181803683370190505b5090505b84156119125761212260018361293a565b915061212f600a866128a3565b61213a9060306128d6565b60f81b81838151811061214f5761214f612846565b60200101906001600160f81b031916908160001a905350612171600a866129f0565b9450612111565b60006001600160a01b0384163b1561226b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121bc903390899088908890600401612a04565b6020604051808303816000875af19250505080156121f7575060408051601f3d908101601f191682019092526121f491810190612a41565b60015b612251573d808015612225576040519150601f19603f3d011682016040523d82523d6000602084013e61222a565b606091505b5080516122495760405162461bcd60e51b81526004016105c29061299e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611912565b506001611912565b82805461227f906127a1565b90600052602060002090601f0160209004810192826122a157600085556122e7565b82601f106122ba57805160ff19168380011785556122e7565b828001600101855582156122e7579182015b828111156122e75782518255916020019190600101906122cc565b506122f3929150612316565b5090565b6040518061010001604052806008906020820280368337509192915050565b5b808211156122f35760008155600101612317565b6001600160a01b03811681146117b257600080fd5b60006020828403121561235257600080fd5b81356116038161232b565b6001600160e01b0319811681146117b257600080fd5b60006020828403121561238557600080fd5b81356116038161235d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156123cf576123cf612390565b604052919050565b600067ffffffffffffffff8311156123f1576123f1612390565b612404601f8401601f19166020016123a6565b905082815283838301111561241857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561244157600080fd5b813567ffffffffffffffff81111561245857600080fd5b8201601f8101841361246957600080fd5b611912848235602084016123d7565b60005b8381101561249357818101518382015260200161247b565b838111156115295750506000910152565b600081518084526124bc816020860160208601612478565b601f01601f19169290920160200192915050565b60208152600061160360208301846124a4565b6000602082840312156124f557600080fd5b5035919050565b6000806040838503121561250f57600080fd5b823561251a8161232b565b946020939093013593505050565b60008060006060848603121561253d57600080fd5b83356125488161232b565b925060208401356125588161232b565b929592945050506040919091013590565b6000602080838503121561257c57600080fd5b823567ffffffffffffffff8082111561259457600080fd5b818501915085601f8301126125a857600080fd5b8135818111156125ba576125ba612390565b8060051b91506125cb8483016123a6565b81815291830184019184810190888411156125e557600080fd5b938501935b83851015612603578435825293850193908501906125ea565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561264957835115158352928401929184019160010161262b565b50909695505050505050565b6000806040838503121561266857600080fd5b50508035926020909101359150565b80151581146117b257600080fd5b6000806040838503121561269857600080fd5b82356126a38161232b565b915060208301356126b381612677565b809150509250929050565b600080600080608085870312156126d457600080fd5b84356126df8161232b565b935060208501356126ef8161232b565b925060408501359150606085013567ffffffffffffffff81111561271257600080fd5b8501601f8101871361272357600080fd5b612732878235602084016123d7565b91505092959194509250565b6000806040838503121561275157600080fd5b823561275c8161232b565b915060208301356126b38161232b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806127b557607f821691505b602082108114156127d657634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156127ee57600080fd5b5051919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156128865761288661285c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826128b2576128b261288d565b500690565b60008160001904831182151516156128d1576128d161285c565b500290565b600082198211156128e9576128e961285c565b500190565b60006020828403121561290057600080fd5b815161160381612677565b6000835161291d818460208801612478565b835190830190612931818360208801612478565b01949350505050565b60008282101561294c5761294c61285c565b500390565b60006020828403121561296357600080fd5b81516116038161232b565b60018060a01b038416815282602082015260606040820152600061299560608301846124a4565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826129ff576129ff61288d565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a37908301846124a4565b9695505050505050565b600060208284031215612a5357600080fd5b81516116038161235d56fea26469706673582212209c758a8bc3f6872d0fdf370eb0b53f2648f4e8ef10fc669a182a2fc9ba254c8164736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44500000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000022b80000000000000000000000000000000000000000000000000000000061ec1bf00000000000000000000000006970a2d8df91afbd9a6560829689f57ae2773a68000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f626c757072696e742e78797a2f6170692f76312f746f6b656e2f000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [1] : _link (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [2] : _keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [3] : _metadataBaseUri (string): https://bluprint.xyz/api/v1/token/
Arg [4] : _maxSupply (uint256): 8888
Arg [5] : _claimStartTime (uint256): 1642863600
Arg [6] : _parentContractAddress (address): 0x6970a2D8Df91afBD9A6560829689F57aE2773A68
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [1] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [2] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [5] : 0000000000000000000000000000000000000000000000000000000061ec1bf0
Arg [6] : 0000000000000000000000006970a2d8df91afbd9a6560829689f57ae2773a68
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [8] : 68747470733a2f2f626c757072696e742e78797a2f6170692f76312f746f6b65
Arg [9] : 6e2f000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
51778:9955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61614:116;;;;;;:::i;:::-;-1:-1:-1;;;;;61704:18:0;61680:4;61704:18;;;:10;:18;;;;;;;;;61614:116;;;;567:14:1;;560:22;542:41;;530:2;515:18;61614:116:0;;;;;;;;39259:305;;;;;;:::i;:::-;;:::i;58434:118::-;;;;;;:::i;:::-;;:::i;:::-;;40204:100;;;:::i;:::-;;;;;;;:::i;41763:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3360:32:1;;;3342:51;;3330:2;3315:18;41763:221:0;3196:203:1;41286:411:0;;;;;;:::i;:::-;;:::i;58849:123::-;;;:::i;:::-;;;3870:25:1;;;3858:2;3843:18;58849:123:0;3724:177:1;52216:27:0;;;;;;42513:339;;;;;;:::i;:::-;;:::i;42923:185::-;;;;;;:::i;:::-;;:::i;61105:303::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57463:535::-;;;;;;:::i;:::-;;:::i;39898:239::-;;;;;;:::i;:::-;;:::i;55016:769::-;;;;;;:::i;:::-;;:::i;39628:208::-;;;;;;:::i;:::-;;:::i;20624:94::-;;;:::i;59316:365::-;;;;;;:::i;:::-;;:::i;52322:45::-;;52363:4;52322:45;;54525:113;54615:14;54596:15;:33;;54525:113;;56054:554;;;:::i;:::-;;;;6319:25:1;;;6392:10;6380:23;;;6375:2;6360:18;;6353:51;6292:18;56054:554:0;6147:263:1;19973:87:0;20046:6;;-1:-1:-1;;;;;20046:6:0;19973:87;;15826:233;;;;;;:::i;:::-;;:::i;40373:104::-;;;:::i;42056:155::-;;;;;;:::i;:::-;;:::i;52745:39::-;;;;;52919:36;;;;;-1:-1:-1;;;;;52919:36:0;;;43179:328;;;;;;:::i;:::-;;:::i;40548:334::-;;;;;;:::i;:::-;;:::i;59032:97::-;59116:4;59032:97;;52829:26;;;:::i;51911:27::-;;;;;;52645:34;;;;;58082:239;;;:::i;42282:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;42403:25:0;;;42379:4;42403:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42282:164;20873:192;;;;;;:::i;:::-;;:::i;39259:305::-;39361:4;-1:-1:-1;;;;;;39398:40:0;;-1:-1:-1;;;39398:40:0;;:105;;-1:-1:-1;;;;;;;39455:48:0;;-1:-1:-1;;;39455:48:0;39398:105;:158;;;-1:-1:-1;;;;;;;;;;32137:40:0;;;39520:36;39378:178;39259:305;-1:-1:-1;;39259:305:0:o;58434:118::-;20046:6;;-1:-1:-1;;;;;20046:6:0;18841:10;20193:23;20185:68;;;;-1:-1:-1;;;20185:68:0;;;;;;;:::i;:::-;;;;;;;;;58500:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58535:9;58539:4;58535:9;;;;;;:::i;:::-;;;;;;;;58434:118:::0;:::o;40204:100::-;40258:13;40291:5;40284:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40204:100;:::o;41763:221::-;41839:7;45106:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45106:16:0;41859:73;;;;-1:-1:-1;;;41859:73:0;;9319:2:1;41859:73:0;;;9301:21:1;9358:2;9338:18;;;9331:30;9397:34;9377:18;;;9370:62;-1:-1:-1;;;9448:18:1;;;9441:42;9500:19;;41859:73:0;9117:408:1;41859:73:0;-1:-1:-1;41952:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41952:24:0;;41763:221::o;41286:411::-;41367:13;41383:23;41398:7;41383:14;:23::i;:::-;41367:39;;41431:5;-1:-1:-1;;;;;41425:11:0;:2;-1:-1:-1;;;;;41425:11:0;;;41417:57;;;;-1:-1:-1;;;41417:57:0;;9732:2:1;41417:57:0;;;9714:21:1;9771:2;9751:18;;;9744:30;9810:34;9790:18;;;9783:62;-1:-1:-1;;;9861:18:1;;;9854:31;9902:19;;41417:57:0;9530:397:1;41417:57:0;18841:10;-1:-1:-1;;;;;41509:21:0;;;;:62;;-1:-1:-1;41534:37:0;41551:5;18841:10;42282:164;:::i;41534:37::-;41487:168;;;;-1:-1:-1;;;41487:168:0;;10134:2:1;41487:168:0;;;10116:21:1;10173:2;10153:18;;;10146:30;10212:34;10192:18;;;10185:62;10283:26;10263:18;;;10256:54;10327:19;;41487:168:0;9932:420:1;41487:168:0;41668:21;41677:2;41681:7;41668:8;:21::i;:::-;41356:341;41286:411;;:::o;58849:123::-;20046:6;;58908:7;;-1:-1:-1;;;;;20046:6:0;18841:10;20193:23;20185:68;;;;-1:-1:-1;;;20185:68:0;;;;;;;:::i;:::-;58935:29:::1;::::0;-1:-1:-1;;;58935:29:0;;58958:4:::1;58935:29;::::0;::::1;3342:51:1::0;58935:4:0::1;-1:-1:-1::0;;;;;58935:14:0::1;::::0;::::1;::::0;3315:18:1;;58935:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58928:36;;58849:123:::0;:::o;42513:339::-;42708:41;18841:10;42741:7;42708:18;:41::i;:::-;42700:103;;;;-1:-1:-1;;;42700:103:0;;;;;;;:::i;:::-;42816:28;42826:4;42832:2;42836:7;42816:9;:28::i;42923:185::-;43061:39;43078:4;43084:2;43088:7;43061:39;;;;;;;;;;;;:16;:39::i;61105:303::-;61179:13;61205:20;61239:8;:15;61228:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61228:27:0;;61205:50;;61273:9;61268:107;61292:8;:15;61288:1;:19;61268:107;;;61341:9;:22;61351:8;61360:1;61351:11;;;;;;;;:::i;:::-;;;;;;;61341:22;;;;;;;;;;;;;;;;;;;;;61329:6;61336:1;61329:9;;;;;;;;:::i;:::-;:34;;;:9;;;;;;;;;;;:34;61309:3;;;;:::i;:::-;;;;61268:107;;;-1:-1:-1;61394:6:0;61105:303;-1:-1:-1;;61105:303:0:o;57463:535::-;57524:7;57563:1;57552:8;:12;:37;;;;;57580:9;57568:8;:21;;57552:37;57544:78;;;;-1:-1:-1;;;57544:78:0;;11570:2:1;57544:78:0;;;11552:21:1;11609:2;11589:18;;;11582:30;11648;11628:18;;;11621:58;11696:18;;57544:78:0;11368:352:1;57544:78:0;57655:18;;;;57633:124;;;;-1:-1:-1;;;57633:124:0;;11927:2:1;57633:124:0;;;11909:21:1;11966:2;11946:18;;;11939:30;12005:34;11985:18;;;11978:62;12076:26;12056:18;;;12049:54;12120:19;;57633:124:0;11725:420:1;57633:124:0;57770:15;52363:4;57843:12;;:29;;;;:::i;:::-;57788:38;57818:8;52363:4;57788:38;:::i;:::-;:85;;;;:::i;:::-;57770:103;-1:-1:-1;57896:19:0;57906:9;57770:103;57896:19;:::i;:::-;57886:29;-1:-1:-1;57930:12:0;57926:37;;-1:-1:-1;57954:9:0;57983:7;57463:535;-1:-1:-1;;57463:535:0:o;39898:239::-;39970:7;40006:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40006:16:0;40041:19;40033:73;;;;-1:-1:-1;;;40033:73:0;;12907:2:1;40033:73:0;;;12889:21:1;12946:2;12926:18;;;12919:30;12985:34;12965:18;;;12958:62;-1:-1:-1;;;13036:18:1;;;13029:39;13085:19;;40033:73:0;12705:405:1;55016:769:0;53278:14;53259:15;:33;;53237:112;;;;-1:-1:-1;;;53237:112:0;;13317:2:1;53237:112:0;;;13299:21:1;13356:2;13336:18;;;13329:30;13395:31;13375:18;;;13368:59;13444:18;;53237:112:0;13115:353:1;53237:112:0;1747:1:::1;2343:7;;:19;;2335:63;;;::::0;-1:-1:-1;;;2335:63:0;;13675:2:1;2335:63:0::1;::::0;::::1;13657:21:1::0;13714:2;13694:18;;;13687:30;13753:33;13733:18;;;13726:61;13804:18;;2335:63:0::1;13473:355:1::0;2335:63:0::1;1747:1;2476:7;:18:::0;55129:10:::2;55118:22;::::0;;;:10:::2;:22;::::0;;;;;::::2;;55117:23;55109:81;;;::::0;-1:-1:-1;;;55109:81:0;;14035:2:1;55109:81:0::2;::::0;::::2;14017:21:1::0;14074:2;14054:18;;;14047:30;14113:34;14093:18;;;14086:62;-1:-1:-1;;;14164:18:1;;;14157:43;14217:19;;55109:81:0::2;13833:409:1::0;55109:81:0::2;55209:30;55225:13;55209:15;:30::i;:::-;55201:89;;;::::0;-1:-1:-1;;;55201:89:0;;14449:2:1;55201:89:0::2;::::0;::::2;14431:21:1::0;14488:2;14468:18;;;14461:30;14527:34;14507:18;;;14500:62;-1:-1:-1;;;14578:18:1;;;14571:44;14632:19;;55201:89:0::2;14247:410:1::0;55201:89:0::2;55301:26;;:::i;:::-;55345:9;55340:398;55364:13;:20;55360:1;:24;55340:398;;;55411:9;:27;55421:13;55435:1;55421:16;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;55411:27;;;::::2;::::0;;;;;;-1:-1:-1;55411:27:0;;::::2;;55406:321;;55470:29;55482:13;55496:1;55482:16;;;;;;;;:::i;:::-;;;;;;;55470:11;:29::i;:::-;55459:40;;55523:9;55518:105;55542:1;55538;:5;55518:105;;;55573:30;55579:10;55591:8;55600:1;55591:11;;;;;;;:::i;:::-;;;;;55573:5;:30::i;:::-;55545:3:::0;::::2;::::0;::::2;:::i;:::-;;;;55518:105;;;;55671:4;55641:9;:27;55651:13;55665:1;55651:16;;;;;;;;:::i;:::-;;;;;;;55641:27;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;55710:1;55694:12;;:17;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;55406:321:0::2;55386:3:::0;::::2;::::0;::::2;:::i;:::-;;;;55340:398;;;-1:-1:-1::0;;55759:10:0::2;55748:22;::::0;;;:10:::2;:22;::::0;;;;:29;;-1:-1:-1;;55748:29:0::2;55773:4;55748:29:::0;;::::2;::::0;;;2655:7:::1;:22:::0;-1:-1:-1;55016:769:0:o;39628:208::-;39700:7;-1:-1:-1;;;;;39728:19:0;;39720:74;;;;-1:-1:-1;;;39720:74:0;;14864:2:1;39720:74:0;;;14846:21:1;14903:2;14883:18;;;14876:30;14942:34;14922:18;;;14915:62;-1:-1:-1;;;14993:18:1;;;14986:40;15043:19;;39720:74:0;14662:406:1;39720:74:0;-1:-1:-1;;;;;;39812:16:0;;;;;:9;:16;;;;;;;39628:208::o;20624:94::-;20046:6;;-1:-1:-1;;;;;20046:6:0;18841:10;20193:23;20185:68;;;;-1:-1:-1;;;20185:68:0;;;;;;;:::i;:::-;20689:21:::1;20707:1;20689:9;:21::i;:::-;20624:94::o:0;59316:365::-;20046:6;;-1:-1:-1;;;;;20046:6:0;18841:10;20193:23;20185:68;;;;-1:-1:-1;;;20185:68:0;;;;;;;:::i;:::-;1747:1:::1;2343:7;;:19;;2335:63;;;::::0;-1:-1:-1;;;2335:63:0;;13675:2:1;2335:63:0::1;::::0;::::1;13657:21:1::0;13714:2;13694:18;;;13687:30;13753:33;13733:18;;;13726:61;13804:18;;2335:63:0::1;13473:355:1::0;2335:63:0::1;1747:1;2476:7;:18:::0;59406:11;59398:72:::2;;;::::0;-1:-1:-1;;;59398:72:0;;15275:2:1;59398:72:0::2;::::0;::::2;15257:21:1::0;15314:2;15294:18;;;15287:30;15353:34;15333:18;;;15326:62;-1:-1:-1;;;15404:18:1;;;15397:46;15460:19;;59398:72:0::2;15073:412:1::0;59398:72:0::2;59503:29;::::0;-1:-1:-1;;;59503:29:0;;59526:4:::2;59503:29;::::0;::::2;3342:51:1::0;59536:7:0;;59503:4:::2;-1:-1:-1::0;;;;;59503:14:0::2;::::0;::::2;::::0;3315:18:1;;59503:29:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;59481:145;;;::::0;-1:-1:-1;;;59481:145:0;;15692:2:1;59481:145:0::2;::::0;::::2;15674:21:1::0;15731:2;15711:18;;;15704:30;15770:34;15750:18;;;15743:62;15841:25;15821:18;;;15814:53;15884:19;;59481:145:0::2;15490:419:1::0;59481:145:0::2;59639:34;::::0;-1:-1:-1;;;59639:34:0;;59653:10:::2;59639:34;::::0;::::2;16088:51:1::0;16155:18;;;16148:34;;;59639:4:0::2;-1:-1:-1::0;;;;;59639:13:0::2;::::0;::::2;::::0;16061:18:1;;59639:34:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;1703:1:0::1;2655:7;:22:::0;59316:365::o;56054:554::-;56113:7;;18841:10;-1:-1:-1;;;;;20193:23:0;:7;20046:6;;-1:-1:-1;;;;;20046:6:0;;19973:87;20193:7;-1:-1:-1;;;;;20193:23:0;;20185:68;;;;-1:-1:-1;;;20185:68:0;;;;;;;:::i;:::-;56150:18:::1;::::0;::::1;;56149:19;56141:87;;;::::0;-1:-1:-1;;;56141:87:0;;16645:2:1;56141:87:0::1;::::0;::::1;16627:21:1::0;16684:2;16664:18;;;16657:30;16723:34;16703:18;;;16696:62;16794:25;16774:18;;;16767:53;16837:19;;56141:87:0::1;16443:419:1::0;56141:87:0::1;56261:29;::::0;-1:-1:-1;;;56261:29:0;;56284:4:::1;56261:29;::::0;::::1;3342:51:1::0;52458:10:0::1;::::0;56261:4:::1;-1:-1:-1::0;;;;;56261:14:0::1;::::0;::::1;::::0;3315:18:1;;56261:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;56239:144;;;::::0;-1:-1:-1;;;56239:144:0;;17069:2:1;56239:144:0::1;::::0;::::1;17051:21:1::0;17108:2;17088:18;;;17081:30;17147:34;17127:18;;;17120:62;17218:28;17198:18;;;17191:56;17264:19;;56239:144:0::1;16867:422:1::0;56239:144:0::1;56479:7;::::0;56422:12:::1;::::0;56461:31:::1;::::0;52458:10:::1;56461:17;:31::i;:::-;56446:12;:46:::0;;;56510:47:::1;::::0;56532:10:::1;::::0;56510:47:::1;::::0;;;::::1;56576:12;::::0;;-1:-1:-1;56590:9:0;-1:-1:-1;56054:554:0;;:::o;15826:233::-;15942:10;-1:-1:-1;;;;;15956:14:0;15942:28;;15934:72;;;;-1:-1:-1;;;15934:72:0;;17496:2:1;15934:72:0;;;17478:21:1;17535:2;17515:18;;;17508:30;17574:33;17554:18;;;17547:61;17625:18;;15934:72:0;17294:355:1;15934:72:0;16013:40;16031:9;16042:10;16013:17;:40::i;:::-;15826:233;;:::o;40373:104::-;40429:13;40462:7;40455:14;;;;;:::i;42056:155::-;42151:52;18841:10;42184:8;42194;42151:18;:52::i;43179:328::-;43354:41;18841:10;43387:7;43354:18;:41::i;:::-;43346:103;;;;-1:-1:-1;;;43346:103:0;;;;;;;:::i;:::-;43460:39;43474:4;43480:2;43484:7;43493:5;43460:13;:39::i;:::-;43179:328;;;;:::o;40548:334::-;45082:4;45106:16;;;:7;:16;;;;;;40621:13;;-1:-1:-1;;;;;45106:16:0;40647:76;;;;-1:-1:-1;;;40647:76:0;;17856:2:1;40647:76:0;;;17838:21:1;17895:2;17875:18;;;17868:30;17934:34;17914:18;;;17907:62;-1:-1:-1;;;17985:18:1;;;17978:45;18040:19;;40647:76:0;17654:411:1;40647:76:0;40736:21;40760:10;:8;:10::i;:::-;40736:34;;40812:1;40794:7;40788:21;:25;:86;;;;;;;;;;;;;;;;;40840:7;40849:18;:7;:16;:18::i;:::-;40823:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40788:86;40781:93;40548:334;-1:-1:-1;;;40548:334:0:o;52829:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58082:239::-;58174:18;;58132:7;;58174:18;;58152:129;;;;-1:-1:-1;;;58152:129:0;;18747:2:1;58152:129:0;;;18729:21:1;18786:2;18766:18;;;18759:30;18825:34;18805:18;;;18798:62;18896:31;18876:18;;;18869:59;18945:19;;58152:129:0;18545:425:1;58152:129:0;-1:-1:-1;58301:12:0;;;58082:239::o;20873:192::-;20046:6;;-1:-1:-1;;;;;20046:6:0;18841:10;20193:23;20185:68;;;;-1:-1:-1;;;20185:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20962:22:0;::::1;20954:73;;;::::0;-1:-1:-1;;;20954:73:0;;19177:2:1;20954:73:0::1;::::0;::::1;19159:21:1::0;19216:2;19196:18;;;19189:30;19255:34;19235:18;;;19228:62;-1:-1:-1;;;19306:18:1;;;19299:36;19352:19;;20954:73:0::1;18975:402:1::0;20954:73:0::1;21038:19;21048:8;21038:9;:19::i;:::-;20873:192:::0;:::o;48999:174::-;49074:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;49074:29:0;-1:-1:-1;;;;;49074:29:0;;;;;;;;:24;;49128:23;49074:24;49128:14;:23::i;:::-;-1:-1:-1;;;;;49119:46:0;;;;;;;;;;;48999:174;;:::o;45311:348::-;45404:4;45106:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45106:16:0;45421:73;;;;-1:-1:-1;;;45421:73:0;;19584:2:1;45421:73:0;;;19566:21:1;19623:2;19603:18;;;19596:30;19662:34;19642:18;;;19635:62;-1:-1:-1;;;19713:18:1;;;19706:42;19765:19;;45421:73:0;19382:408:1;45421:73:0;45505:13;45521:23;45536:7;45521:14;:23::i;:::-;45505:39;;45574:5;-1:-1:-1;;;;;45563:16:0;:7;-1:-1:-1;;;;;45563:16:0;;:51;;;;45607:7;-1:-1:-1;;;;;45583:31:0;:20;45595:7;45583:11;:20::i;:::-;-1:-1:-1;;;;;45583:31:0;;45563:51;:87;;;-1:-1:-1;;;;;;42403:25:0;;;42379:4;42403:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;45618:32;45555:96;45311:348;-1:-1:-1;;;;45311:348:0:o;48303:578::-;48462:4;-1:-1:-1;;;;;48435:31:0;:23;48450:7;48435:14;:23::i;:::-;-1:-1:-1;;;;;48435:31:0;;48427:85;;;;-1:-1:-1;;;48427:85:0;;19997:2:1;48427:85:0;;;19979:21:1;20036:2;20016:18;;;20009:30;20075:34;20055:18;;;20048:62;-1:-1:-1;;;20126:18:1;;;20119:39;20175:19;;48427:85:0;19795:405:1;48427:85:0;-1:-1:-1;;;;;48531:16:0;;48523:65;;;;-1:-1:-1;;;48523:65:0;;20407:2:1;48523:65:0;;;20389:21:1;20446:2;20426:18;;;20419:30;20485:34;20465:18;;;20458:62;-1:-1:-1;;;20536:18:1;;;20529:34;20580:19;;48523:65:0;20205:400:1;48523:65:0;48705:29;48722:1;48726:7;48705:8;:29::i;:::-;-1:-1:-1;;;;;48747:15:0;;;;;;:9;:15;;;;;:20;;48766:1;;48747:15;:20;;48766:1;;48747:20;:::i;:::-;;;;-1:-1:-1;;;;;;;48778:13:0;;;;;;:9;:13;;;;;:18;;48795:1;;48778:13;:18;;48795:1;;48778:18;:::i;:::-;;;;-1:-1:-1;;48807:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48807:21:0;-1:-1:-1;;;;;48807:21:0;;;;;;;;;48846:27;;48807:16;;48846:27;;;;;;;48303:578;;;:::o;60492:373::-;60615:21;;60567:4;;-1:-1:-1;;;;;60615:21:0;60567:4;60654:176;60678:8;:15;60674:1;:19;60654:176;;;60715:13;60731:14;-1:-1:-1;;;;;60731:22:0;;60754:8;60763:1;60754:11;;;;;;;;:::i;:::-;;;;;;;60731:35;;;;;;;;;;;;;3870:25:1;;3858:2;3843:18;;3724:177;60731:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60715:51;-1:-1:-1;;;;;;60785:19:0;;60794:10;60785:19;60781:37;;-1:-1:-1;60813:5:0;;60492:373;-1:-1:-1;;;;60492:373:0:o;60781:37::-;-1:-1:-1;60695:3:0;;;;:::i;:::-;;;;60654:176;;;-1:-1:-1;60853:4:0;;60492:373;-1:-1:-1;;;60492:373:0:o;59903:293::-;59964:17;;:::i;:::-;59994:24;;:::i;:::-;60029:19;;;60078:1;60061:102;60086:1;60081;:6;60061:102;;60149:1;60130:11;60140:1;60130:7;:11;:::i;:::-;60129:17;;60145:1;60129:17;:::i;:::-;60122:24;;:4;:24;:::i;:::-;:28;;;;:::i;:::-;60109:6;60116:1;60109:9;;;;;;;:::i;:::-;;;;:42;60089:3;;;;:::i;:::-;;;;60061:102;;46995:382;-1:-1:-1;;;;;47075:16:0;;47067:61;;;;-1:-1:-1;;;47067:61:0;;21198:2:1;47067:61:0;;;21180:21:1;;;21217:18;;;21210:30;21276:34;21256:18;;;21249:62;21328:18;;47067:61:0;20996:356:1;47067:61:0;45082:4;45106:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45106:16:0;:30;47139:58;;;;-1:-1:-1;;;47139:58:0;;21559:2:1;47139:58:0;;;21541:21:1;21598:2;21578:18;;;21571:30;21637;21617:18;;;21610:58;21685:18;;47139:58:0;21357:352:1;47139:58:0;-1:-1:-1;;;;;47268:13:0;;;;;;:9;:13;;;;;:18;;47285:1;;47268:13;:18;;47285:1;;47268:18;:::i;:::-;;;;-1:-1:-1;;47297:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47297:21:0;-1:-1:-1;;;;;47297:21:0;;;;;;;;47336:33;;47297:16;;;47336:33;;47297:16;;47336:33;46995:382;;:::o;21073:173::-;21148:6;;;-1:-1:-1;;;;;21165:17:0;;;-1:-1:-1;;;;;;21165:17:0;;;;;;;21198:40;;21148:6;;;21165:17;21148:6;;21198:40;;21129:16;;21198:40;21118:128;21073:173;:::o;13890:1077::-;14000:17;14035:4;-1:-1:-1;;;;;14035:20:0;;14056:14;14072:4;14089:8;12720:1;14078:43;;;;;;;;21888:25:1;;;21944:2;21929:18;;21922:34;21876:2;21861:18;;21714:248;14078:43:0;;;;;;;;;;;;;14035:87;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;14357:15:0;14441:16;;;;;;;;;;;;3760:51;;;;;23487:25:1;;;23528:18;;;23521:34;;;14434:4:0;23571:18:1;;;23564:60;23640:18;;;;23633:34;;;3760:51:0;;;;;;;;;;23459:19:1;;;;3760:51:0;;;3750:62;;;;;;;;;14895:16;;;;;;;:20;;14914:1;14895:20;:::i;:::-;14876:6;:16;;;;;;;;;;;;:39;;;;4377:41;;;;;23835:19:1;;;23870:12;;;23863:28;;;4377:41:0;;;;;;;;;23907:12:1;;;;4377:41:0;;;4367:52;;;;;14929:32;4210:215;56997:229;57094:12;:26;;;57131:18;:25;;-1:-1:-1;;57131:25:0;57152:4;57131:25;;;57172:46;;57194:10;;57172:46;;;;57109:11;3870:25:1;;3858:2;3843:18;;3724:177;57172:46:0;;;;;;;;56997:229;;:::o;49315:315::-;49470:8;-1:-1:-1;;;;;49461:17:0;:5;-1:-1:-1;;;;;49461:17:0;;;49453:55;;;;-1:-1:-1;;;49453:55:0;;22560:2:1;49453:55:0;;;22542:21:1;22599:2;22579:18;;;22572:30;22638:27;22618:18;;;22611:55;22683:18;;49453:55:0;22358:349:1;49453:55:0;-1:-1:-1;;;;;49519:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;49519:46:0;;;;;;;;;;49581:41;;542::1;;;49581::0;;515:18:1;49581:41:0;;;;;;;49315:315;;;:::o;44389:::-;44546:28;44556:4;44562:2;44566:7;44546:9;:28::i;:::-;44593:48;44616:4;44622:2;44626:7;44635:5;44593:22;:48::i;:::-;44585:111;;;;-1:-1:-1;;;44585:111:0;;;;;;;:::i;58617:105::-;58669:13;58702:12;58695:19;;;;;:::i;16377:723::-;16433:13;16654:10;16650:53;;-1:-1:-1;;16681:10:0;;;;;;;;;;;;-1:-1:-1;;;16681:10:0;;;;;16377:723::o;16650:53::-;16728:5;16713:12;16769:78;16776:9;;16769:78;;16802:8;;;;:::i;:::-;;-1:-1:-1;16825:10:0;;-1:-1:-1;16833:2:0;16825:10;;:::i;:::-;;;16769:78;;;16857:19;16889:6;16879:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16879:17:0;;16857:39;;16907:154;16914:10;;16907:154;;16941:11;16951:1;16941:11;;:::i;:::-;;-1:-1:-1;17010:10:0;17018:2;17010:5;:10;:::i;:::-;16997:24;;:2;:24;:::i;:::-;16984:39;;16967:6;16974;16967:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16967:56:0;;;;;;;;-1:-1:-1;17038:11:0;17047:2;17038:11;;:::i;:::-;;;16907:154;;50195:799;50350:4;-1:-1:-1;;;;;50371:13:0;;22342:20;22390:8;50367:620;;50407:72;;-1:-1:-1;;;50407:72:0;;-1:-1:-1;;;;;50407:36:0;;;;;:72;;18841:10;;50458:4;;50464:7;;50473:5;;50407:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50407:72:0;;;;;;;;-1:-1:-1;;50407:72:0;;;;;;;;;;;;:::i;:::-;;;50403:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50649:13:0;;50645:272;;50692:60;;-1:-1:-1;;;50692:60:0;;;;;;;:::i;50645:272::-;50867:6;50861:13;50852:6;50848:2;50844:15;50837:38;50403:529;-1:-1:-1;;;;;;50530:51:0;-1:-1:-1;;;50530:51:0;;-1:-1:-1;50523:58:0;;50367:620;-1:-1:-1;50971:4:0;50964:11;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;594:131::-;-1:-1:-1;;;;;;668:32:1;;658:43;;648:71;;715:1;712;705:12;730:245;788:6;841:2;829:9;820:7;816:23;812:32;809:52;;;857:1;854;847:12;809:52;896:9;883:23;915:30;939:5;915:30;:::i;980:127::-;1041:10;1036:3;1032:20;1029:1;1022:31;1072:4;1069:1;1062:15;1096:4;1093:1;1086:15;1112:275;1183:2;1177:9;1248:2;1229:13;;-1:-1:-1;;1225:27:1;1213:40;;1283:18;1268:34;;1304:22;;;1265:62;1262:88;;;1330:18;;:::i;:::-;1366:2;1359:22;1112:275;;-1:-1:-1;1112:275:1:o;1392:407::-;1457:5;1491:18;1483:6;1480:30;1477:56;;;1513:18;;:::i;:::-;1551:57;1596:2;1575:15;;-1:-1:-1;;1571:29:1;1602:4;1567:40;1551:57;:::i;:::-;1542:66;;1631:6;1624:5;1617:21;1671:3;1662:6;1657:3;1653:16;1650:25;1647:45;;;1688:1;1685;1678:12;1647:45;1737:6;1732:3;1725:4;1718:5;1714:16;1701:43;1791:1;1784:4;1775:6;1768:5;1764:18;1760:29;1753:40;1392:407;;;;;:::o;1804:451::-;1873:6;1926:2;1914:9;1905:7;1901:23;1897:32;1894:52;;;1942:1;1939;1932:12;1894:52;1982:9;1969:23;2015:18;2007:6;2004:30;2001:50;;;2047:1;2044;2037:12;2001:50;2070:22;;2123:4;2115:13;;2111:27;-1:-1:-1;2101:55:1;;2152:1;2149;2142:12;2101:55;2175:74;2241:7;2236:2;2223:16;2218:2;2214;2210:11;2175:74;:::i;2260:258::-;2332:1;2342:113;2356:6;2353:1;2350:13;2342:113;;;2432:11;;;2426:18;2413:11;;;2406:39;2378:2;2371:10;2342:113;;;2473:6;2470:1;2467:13;2464:48;;;-1:-1:-1;;2508:1:1;2490:16;;2483:27;2260:258::o;2523:::-;2565:3;2603:5;2597:12;2630:6;2625:3;2618:19;2646:63;2702:6;2695:4;2690:3;2686:14;2679:4;2672:5;2668:16;2646:63;:::i;:::-;2763:2;2742:15;-1:-1:-1;;2738:29:1;2729:39;;;;2770:4;2725:50;;2523:258;-1:-1:-1;;2523:258:1:o;2786:220::-;2935:2;2924:9;2917:21;2898:4;2955:45;2996:2;2985:9;2981:18;2973:6;2955:45;:::i;3011:180::-;3070:6;3123:2;3111:9;3102:7;3098:23;3094:32;3091:52;;;3139:1;3136;3129:12;3091:52;-1:-1:-1;3162:23:1;;3011:180;-1:-1:-1;3011:180:1:o;3404:315::-;3472:6;3480;3533:2;3521:9;3512:7;3508:23;3504:32;3501:52;;;3549:1;3546;3539:12;3501:52;3588:9;3575:23;3607:31;3632:5;3607:31;:::i;:::-;3657:5;3709:2;3694:18;;;;3681:32;;-1:-1:-1;;;3404:315:1:o;4088:456::-;4165:6;4173;4181;4234:2;4222:9;4213:7;4209:23;4205:32;4202:52;;;4250:1;4247;4240:12;4202:52;4289:9;4276:23;4308:31;4333:5;4308:31;:::i;:::-;4358:5;-1:-1:-1;4415:2:1;4400:18;;4387:32;4428:33;4387:32;4428:33;:::i;:::-;4088:456;;4480:7;;-1:-1:-1;;;4534:2:1;4519:18;;;;4506:32;;4088:456::o;4549:946::-;4633:6;4664:2;4707;4695:9;4686:7;4682:23;4678:32;4675:52;;;4723:1;4720;4713:12;4675:52;4763:9;4750:23;4792:18;4833:2;4825:6;4822:14;4819:34;;;4849:1;4846;4839:12;4819:34;4887:6;4876:9;4872:22;4862:32;;4932:7;4925:4;4921:2;4917:13;4913:27;4903:55;;4954:1;4951;4944:12;4903:55;4990:2;4977:16;5012:2;5008;5005:10;5002:36;;;5018:18;;:::i;:::-;5064:2;5061:1;5057:10;5047:20;;5087:28;5111:2;5107;5103:11;5087:28;:::i;:::-;5149:15;;;5219:11;;;5215:20;;;5180:12;;;;5247:19;;;5244:39;;;5279:1;5276;5269:12;5244:39;5303:11;;;;5323:142;5339:6;5334:3;5331:15;5323:142;;;5405:17;;5393:30;;5356:12;;;;5443;;;;5323:142;;;5484:5;4549:946;-1:-1:-1;;;;;;;;4549:946:1:o;5500:642::-;5665:2;5717:21;;;5787:13;;5690:18;;;5809:22;;;5636:4;;5665:2;5888:15;;;;5862:2;5847:18;;;5636:4;5931:185;5945:6;5942:1;5939:13;5931:185;;;6020:13;;6013:21;6006:29;5994:42;;6091:15;;;;6056:12;;;;5967:1;5960:9;5931:185;;;-1:-1:-1;6133:3:1;;5500:642;-1:-1:-1;;;;;;5500:642:1:o;6415:248::-;6483:6;6491;6544:2;6532:9;6523:7;6519:23;6515:32;6512:52;;;6560:1;6557;6550:12;6512:52;-1:-1:-1;;6583:23:1;;;6653:2;6638:18;;;6625:32;;-1:-1:-1;6415:248:1:o;6668:118::-;6754:5;6747:13;6740:21;6733:5;6730:32;6720:60;;6776:1;6773;6766:12;6791:382;6856:6;6864;6917:2;6905:9;6896:7;6892:23;6888:32;6885:52;;;6933:1;6930;6923:12;6885:52;6972:9;6959:23;6991:31;7016:5;6991:31;:::i;:::-;7041:5;-1:-1:-1;7098:2:1;7083:18;;7070:32;7111:30;7070:32;7111:30;:::i;:::-;7160:7;7150:17;;;6791:382;;;;;:::o;7178:795::-;7273:6;7281;7289;7297;7350:3;7338:9;7329:7;7325:23;7321:33;7318:53;;;7367:1;7364;7357:12;7318:53;7406:9;7393:23;7425:31;7450:5;7425:31;:::i;:::-;7475:5;-1:-1:-1;7532:2:1;7517:18;;7504:32;7545:33;7504:32;7545:33;:::i;:::-;7597:7;-1:-1:-1;7651:2:1;7636:18;;7623:32;;-1:-1:-1;7706:2:1;7691:18;;7678:32;7733:18;7722:30;;7719:50;;;7765:1;7762;7755:12;7719:50;7788:22;;7841:4;7833:13;;7829:27;-1:-1:-1;7819:55:1;;7870:1;7867;7860:12;7819:55;7893:74;7959:7;7954:2;7941:16;7936:2;7932;7928:11;7893:74;:::i;:::-;7883:84;;;7178:795;;;;;;;:::o;7978:388::-;8046:6;8054;8107:2;8095:9;8086:7;8082:23;8078:32;8075:52;;;8123:1;8120;8113:12;8075:52;8162:9;8149:23;8181:31;8206:5;8181:31;:::i;:::-;8231:5;-1:-1:-1;8288:2:1;8273:18;;8260:32;8301:33;8260:32;8301:33;:::i;8371:356::-;8573:2;8555:21;;;8592:18;;;8585:30;8651:34;8646:2;8631:18;;8624:62;8718:2;8703:18;;8371:356::o;8732:380::-;8811:1;8807:12;;;;8854;;;8875:61;;8929:4;8921:6;8917:17;8907:27;;8875:61;8982:2;8974:6;8971:14;8951:18;8948:38;8945:161;;;9028:10;9023:3;9019:20;9016:1;9009:31;9063:4;9060:1;9053:15;9091:4;9088:1;9081:15;8945:161;;8732:380;;;:::o;10357:184::-;10427:6;10480:2;10468:9;10459:7;10455:23;10451:32;10448:52;;;10496:1;10493;10486:12;10448:52;-1:-1:-1;10519:16:1;;10357:184;-1:-1:-1;10357:184:1:o;10546:413::-;10748:2;10730:21;;;10787:2;10767:18;;;10760:30;10826:34;10821:2;10806:18;;10799:62;-1:-1:-1;;;10892:2:1;10877:18;;10870:47;10949:3;10934:19;;10546:413::o;10964:127::-;11025:10;11020:3;11016:20;11013:1;11006:31;11056:4;11053:1;11046:15;11080:4;11077:1;11070:15;11096:127;11157:10;11152:3;11148:20;11145:1;11138:31;11188:4;11185:1;11178:15;11212:4;11209:1;11202:15;11228:135;11267:3;-1:-1:-1;;11288:17:1;;11285:43;;;11308:18;;:::i;:::-;-1:-1:-1;11355:1:1;11344:13;;11228:135::o;12150:127::-;12211:10;12206:3;12202:20;12199:1;12192:31;12242:4;12239:1;12232:15;12266:4;12263:1;12256:15;12282:112;12314:1;12340;12330:35;;12345:18;;:::i;:::-;-1:-1:-1;12379:9:1;;12282:112::o;12399:168::-;12439:7;12505:1;12501;12497:6;12493:14;12490:1;12487:21;12482:1;12475:9;12468:17;12464:45;12461:71;;;12512:18;;:::i;:::-;-1:-1:-1;12552:9:1;;12399:168::o;12572:128::-;12612:3;12643:1;12639:6;12636:1;12633:13;12630:39;;;12649:18;;:::i;:::-;-1:-1:-1;12685:9:1;;12572:128::o;16193:245::-;16260:6;16313:2;16301:9;16292:7;16288:23;16284:32;16281:52;;;16329:1;16326;16319:12;16281:52;16361:9;16355:16;16380:28;16402:5;16380:28;:::i;18070:470::-;18249:3;18287:6;18281:13;18303:53;18349:6;18344:3;18337:4;18329:6;18325:17;18303:53;:::i;:::-;18419:13;;18378:16;;;;18441:57;18419:13;18378:16;18475:4;18463:17;;18441:57;:::i;:::-;18514:20;;18070:470;-1:-1:-1;;;;18070:470:1:o;20610:125::-;20650:4;20678:1;20675;20672:8;20669:34;;;20683:18;;:::i;:::-;-1:-1:-1;20720:9:1;;20610:125::o;20740:251::-;20810:6;20863:2;20851:9;20842:7;20838:23;20834:32;20831:52;;;20879:1;20876;20869:12;20831:52;20911:9;20905:16;20930:31;20955:5;20930:31;:::i;21967:386::-;22199:1;22195;22190:3;22186:11;22182:19;22174:6;22170:32;22159:9;22152:51;22239:6;22234:2;22223:9;22219:18;22212:34;22282:2;22277;22266:9;22262:18;22255:30;22133:4;22302:45;22343:2;22332:9;22328:18;22320:6;22302:45;:::i;:::-;22294:53;21967:386;-1:-1:-1;;;;;21967:386:1:o;22712:414::-;22914:2;22896:21;;;22953:2;22933:18;;;22926:30;22992:34;22987:2;22972:18;;22965:62;-1:-1:-1;;;23058:2:1;23043:18;;23036:48;23116:3;23101:19;;22712:414::o;23131:120::-;23171:1;23197;23187:35;;23202:18;;:::i;:::-;-1:-1:-1;23236:9:1;;23131:120::o;23930:489::-;-1:-1:-1;;;;;24199:15:1;;;24181:34;;24251:15;;24246:2;24231:18;;24224:43;24298:2;24283:18;;24276:34;;;24346:3;24341:2;24326:18;;24319:31;;;24124:4;;24367:46;;24393:19;;24385:6;24367:46;:::i;:::-;24359:54;23930:489;-1:-1:-1;;;;;;23930:489:1:o;24424:249::-;24493:6;24546:2;24534:9;24525:7;24521:23;24517:32;24514:52;;;24562:1;24559;24552:12;24514:52;24594:9;24588:16;24613:30;24637:5;24613:30;:::i
Swarm Source
ipfs://9c758a8bc3f6872d0fdf370eb0b53f2648f4e8ef10fc669a182a2fc9ba254c81
Loading...
Loading
Loading...
Loading
[ 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.