ERC-721
Overview
Max Total Supply
999 Cl9
Holders
929
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Cl9Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CloudFrenz
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.8.9 <0.9.0;import 'erc721a/contracts/ERC721A.sol';import '@openzeppelin/contracts/access/Ownable.sol';import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';import '@openzeppelin/contracts/security/ReentrancyGuard.sol';contract CloudFrenz is ERC721A, Ownable, ReentrancyGuard {using Strings for uint256;bytes32 public merkleRoot;mapping(address => bool) public whitelistClaimed;string public uriPrefix = '';string public uriSuffix = '.json';string public hiddenMetadataUri;uint256 public cost;uint256 public maxSupply;uint256 public maxMintAmountPerTx;uint256 public maxPerWallet = 1;bool public paused = true;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// Creator: Chiru Labspragma solidity ^0.8.4;import '@openzeppelin/contracts/token/ERC721/IERC721.sol';import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';import '@openzeppelin/contracts/utils/Address.sol';import '@openzeppelin/contracts/utils/Context.sol';import '@openzeppelin/contracts/utils/Strings.sol';import '@openzeppelin/contracts/utils/introspection/ERC165.sol';error ApprovalCallerNotOwnerNorApproved();error ApprovalQueryForNonexistentToken();error ApproveToCaller();error ApprovalToCurrentOwner();error BalanceQueryForZeroAddress();error MintedQueryForZeroAddress();error BurnedQueryForZeroAddress();error AuxQueryForZeroAddress();error MintToZeroAddress();error MintZeroQuantity();error OwnerIndexOutOfBounds();error OwnerQueryForNonexistentToken();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Trees proofs.** The proofs can be generated using the JavaScript library* https://github.com/miguelmota/merkletreejs[merkletreejs].* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.** See `test/utils/cryptography/MerkleProof.test.js` for some examples.*/library MerkleProof {/*** @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree* defined by `root`. For this, a `proof` must be provided, containing* sibling hashes on the branch from the leaf to the root of the tree. Each* pair of leaves and each pair of pre-images are assumed to be sorted.*/function verify(bytes32[] memory proof,bytes32 root,bytes32 leaf) internal pure returns (bool) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)pragma solidity ^0.8.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// 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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional enumeration extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Enumerable is IERC721 {/*** @dev Returns the total amount of tokens stored by the contract.*/function totalSupply() external view returns (uint256);/*** @dev Returns a token ID owned by `owner` at a given `index` of its token list.* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);/*** @dev Returns a token ID at a given `index` of all the tokens stored by the contract.* Use along with {totalSupply} to enumerate all tokens.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @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* ====*
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @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) {
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600c91620001c8565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600d91620001c8565b5060016012556013805462ffffff1916620100011790553480156200006e57600080fd5b5060405162002b7738038062002b7783398101604081905262000091916200033b565b855186908690620000aa906002906020850190620001c8565b508051620000c0906003906020840190620001c8565b5050600160005550620000d333620000fe565b6001600955600f84905560108390556011829055620000f28162000150565b50505050505062000425565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c490600e906020840190620001c8565b5050565b828054620001d690620003e8565b90600052602060002090601f016020900481019282620001fa576000855562000245565b82601f106200021557805160ff191683800117855562000245565b8280016001018555821562000245579182015b828111156200024557825182559160200191906001019062000228565b506200025392915062000257565b5090565b5b8082111562000253576000815560010162000258565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029657600080fd5b81516001600160401b0380821115620002b357620002b36200026e565b604051601f8301601f19908116603f01168101908282118183101715620002de57620002de6200026e565b81604052838152602092508683858801011115620002fb57600080fd5b600091505b838210156200031f578582018301518183018401529082019062000300565b83821115620003315760008385830101525b9695505050505050565b60008060008060008060c087890312156200035557600080fd5b86516001600160401b03808211156200036d57600080fd5b6200037b8a838b0162000284565b975060208901519150808211156200039257600080fd5b620003a08a838b0162000284565b965060408901519550606089015194506080890151935060a0890151915080821115620003cc57600080fd5b50620003db89828a0162000284565b9150509295509295509295565b600181811c90821680620003fd57607f821691505b602082108114156200041f57634e487b7160e01b600052602260045260246000fd5b50919050565b61274280620004356000396000f3fe6080604052600436106102675760003560e01c80636caede3d11610144578063b071401b116100b6578063d5abeb011161007a578063d5abeb01146106f6578063db4bec441461070c578063e0a808531461073c578063e985e9c51461075c578063efbd73f4146107a5578063f2fde38b146107c557600080fd5b8063b071401b14610663578063b767a09814610683578063b88d4fde146106a3578063c87b56dd146106c3578063d2cab056146106e357600080fd5b80638da5cb5b116101085780638da5cb5b146105d257806394354fd0146105f057806395d89b4114610606578063a0712d681461061b578063a22cb4651461062e578063a45ba8e71461064e57600080fd5b80636caede3d1461053e57806370a082311461055d578063715018a61461057d5780637cb64759146105925780637ec4a659146105b257600080fd5b80633ec4de35116101dd5780634fdd43cb116101a15780634fdd43cb1461049a57806351830227146104ba5780635503a0e8146104da5780635c975abb146104ef57806362b99ad4146105095780636352211e1461051e57600080fd5b80633ec4de35146103ea57806342842e0e14610417578063438b63001461043757806344a0d68a14610464578063453c23101461048457600080fd5b806316ba10e01161022f57806316ba10e01461034157806316c38b3c1461036157806318160ddd1461038157806323b872dd1461039f5780632eb4a7ab146103bf5780633ccfd60b146103d557600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612056565b6107e5565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610837565b60405161029891906120cb565b3480156102cf57600080fd5b506102e36102de3660046120de565b6108c9565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612113565b61090d565b005b34801561032957600080fd5b50610333600f5481565b604051908152602001610298565b34801561034d57600080fd5b5061031b61035c3660046121c8565b61099b565b34801561036d57600080fd5b5061031b61037c366004612220565b6109e5565b34801561038d57600080fd5b50610333600154600054036000190190565b3480156103ab57600080fd5b5061031b6103ba36600461223b565b610a22565b3480156103cb57600080fd5b50610333600a5481565b3480156103e157600080fd5b5061031b610a2d565b3480156103f657600080fd5b50610333610405366004612277565b60146020526000908152604090205481565b34801561042357600080fd5b5061031b61043236600461223b565b610b28565b34801561044357600080fd5b50610457610452366004612277565b610b43565b6040516102989190612292565b34801561047057600080fd5b5061031b61047f3660046120de565b610c8a565b34801561049057600080fd5b5061033360125481565b3480156104a657600080fd5b5061031b6104b53660046121c8565b610cb9565b3480156104c657600080fd5b5060135461028c9062010000900460ff1681565b3480156104e657600080fd5b506102b6610cf6565b3480156104fb57600080fd5b5060135461028c9060ff1681565b34801561051557600080fd5b506102b6610d84565b34801561052a57600080fd5b506102e36105393660046120de565b610d91565b34801561054a57600080fd5b5060135461028c90610100900460ff1681565b34801561056957600080fd5b50610333610578366004612277565b610da3565b34801561058957600080fd5b5061031b610df1565b34801561059e57600080fd5b5061031b6105ad3660046120de565b610e27565b3480156105be57600080fd5b5061031b6105cd3660046121c8565b610e56565b3480156105de57600080fd5b506008546001600160a01b03166102e3565b3480156105fc57600080fd5b5061033360115481565b34801561061257600080fd5b506102b6610e93565b61031b6106293660046120de565b610ea2565b34801561063a57600080fd5b5061031b6106493660046122d6565b611049565b34801561065a57600080fd5b506102b66110df565b34801561066f57600080fd5b5061031b61067e3660046120de565b6110ec565b34801561068f57600080fd5b5061031b61069e366004612220565b61111b565b3480156106af57600080fd5b5061031b6106be366004612309565b61115f565b3480156106cf57600080fd5b506102b66106de3660046120de565b6111aa565b61031b6106f1366004612384565b61131a565b34801561070257600080fd5b5061033360105481565b34801561071857600080fd5b5061028c610727366004612277565b600b6020526000908152604090205460ff1681565b34801561074857600080fd5b5061031b610757366004612220565b61157f565b34801561076857600080fd5b5061028c610777366004612402565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107b157600080fd5b5061031b6107c036600461242c565b6115c5565b3480156107d157600080fd5b5061031b6107e0366004612277565b611665565b60006001600160e01b031982166380ac58cd60e01b148061081657506001600160e01b03198216635b5e139f60e01b145b8061083157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108469061244f565b80601f01602080910402602001604051908101604052809291908181526020018280546108729061244f565b80156108bf5780601f10610894576101008083540402835291602001916108bf565b820191906000526020600020905b8154815290600101906020018083116108a257829003601f168201915b5050505050905090565b60006108d482611700565b6108f1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091882610d91565b9050806001600160a01b0316836001600160a01b0316141561094d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096d575061096b8133610777565b155b1561098b576040516367d9dca160e11b815260040160405180910390fd5b610996838383611739565b505050565b6008546001600160a01b031633146109ce5760405162461bcd60e51b81526004016109c59061248a565b60405180910390fd5b80516109e190600d906020840190611fa7565b5050565b6008546001600160a01b03163314610a0f5760405162461bcd60e51b81526004016109c59061248a565b6013805460ff1916911515919091179055565b610996838383611795565b6008546001600160a01b03163314610a575760405162461bcd60e51b81526004016109c59061248a565b60026009541415610aaa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c5565b60026009556000610ac36008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b0d576040519150601f19603f3d011682016040523d82523d6000602084013e610b12565b606091505b5050905080610b2057600080fd5b506001600955565b6109968383836040518060200160405280600081525061115f565b60606000610b5083610da3565b90506000816001600160401b03811115610b6c57610b6c61213d565b604051908082528060200260200182016040528015610b95578160200160208202803683370190505b50905060016000805b8482108015610baf57506010548311155b15610c7f57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610c1c575080516001600160a01b031615155b15610c2657805191505b876001600160a01b0316826001600160a01b03161415610c6c5783858481518110610c5357610c536124bf565b602090810291909101015282610c68816124eb565b9350505b83610c76816124eb565b94505050610b9e565b509195945050505050565b6008546001600160a01b03163314610cb45760405162461bcd60e51b81526004016109c59061248a565b600f55565b6008546001600160a01b03163314610ce35760405162461bcd60e51b81526004016109c59061248a565b80516109e190600e906020840190611fa7565b600d8054610d039061244f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2f9061244f565b8015610d7c5780601f10610d5157610100808354040283529160200191610d7c565b820191906000526020600020905b815481529060010190602001808311610d5f57829003601f168201915b505050505081565b600c8054610d039061244f565b6000610d9c826119a9565b5192915050565b60006001600160a01b038216610dcc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e1b5760405162461bcd60e51b81526004016109c59061248a565b610e256000611ad0565b565b6008546001600160a01b03163314610e515760405162461bcd60e51b81526004016109c59061248a565b600a55565b6008546001600160a01b03163314610e805760405162461bcd60e51b81526004016109c59061248a565b80516109e190600c906020840190611fa7565b6060600380546108469061244f565b80600081118015610eb557506011548111155b610ed15760405162461bcd60e51b81526004016109c590612506565b60105481610ee6600154600054036000190190565b610ef09190612534565b1115610f0e5760405162461bcd60e51b81526004016109c59061254c565b8180600f54610f1d919061257a565b341015610f625760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109c5565b60135460ff1615610fb55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016109c5565b33600090815260146020526040902054601254610fd28583612534565b11156110145760405162461bcd60e51b81526020600482015260116024820152701b585e081b1a5b5a5d081c995858da1959607a1b60448201526064016109c5565b3360009081526014602052604081208054869290611033908490612534565b9091555061104390503385611b22565b50505050565b6001600160a01b0382163314156110735760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610d039061244f565b6008546001600160a01b031633146111165760405162461bcd60e51b81526004016109c59061248a565b601155565b6008546001600160a01b031633146111455760405162461bcd60e51b81526004016109c59061248a565b601380549115156101000261ff0019909216919091179055565b61116a848484611795565b6001600160a01b0383163b1515801561118c575061118a84848484611b3c565b155b15611043576040516368d2bf6b60e11b815260040160405180910390fd5b60606111b582611700565b6112195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c5565b60135462010000900460ff166112bb57600e80546112369061244f565b80601f01602080910402602001604051908101604052809291908181526020018280546112629061244f565b80156112af5780601f10611284576101008083540402835291602001916112af565b820191906000526020600020905b81548152906001019060200180831161129257829003601f168201915b50505050509050919050565b60006112c5611c34565b905060008151116112e55760405180602001604052806000815250611313565b806112ef84611c43565b600d60405160200161130393929190612599565b6040516020818303038152906040525b9392505050565b8260008111801561132d57506011548111155b6113495760405162461bcd60e51b81526004016109c590612506565b6010548161135e600154600054036000190190565b6113689190612534565b11156113865760405162461bcd60e51b81526004016109c59061254c565b8380600f54611395919061257a565b3410156113da5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109c5565b601354610100900460ff1661143c5760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b60648201526084016109c5565b336000908152600b602052604090205460ff161561149c5760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d656421000000000000000060448201526064016109c5565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061151685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611d40565b6115535760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016109c5565b336000818152600b60205260409020805460ff191660011790556115779087611b22565b505050505050565b6008546001600160a01b031633146115a95760405162461bcd60e51b81526004016109c59061248a565b60138054911515620100000262ff000019909216919091179055565b816000811180156115d857506011548111155b6115f45760405162461bcd60e51b81526004016109c590612506565b60105481611609600154600054036000190190565b6116139190612534565b11156116315760405162461bcd60e51b81526004016109c59061254c565b6008546001600160a01b0316331461165b5760405162461bcd60e51b81526004016109c59061248a565b6109968284611b22565b6008546001600160a01b0316331461168f5760405162461bcd60e51b81526004016109c59061248a565b6001600160a01b0381166116f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c5565b6116fd81611ad0565b50565b600081600111158015611714575060005482105b8015610831575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a0826119a9565b80519091506000906001600160a01b0316336001600160a01b031614806117ce575081516117ce9033610777565b806117e95750336117de846108c9565b6001600160a01b0316145b90508061180957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461183e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661186557604051633a954ecd60e21b815260040160405180910390fd5b6118756000848460000151611739565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661195f5760005481101561195f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156119d9575060005481105b15611ab757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ab55780516001600160a01b031615611a4c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ab0579392505050565b611a4c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109e1828260405180602001604052806000815250611d56565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b7190339089908890889060040161265d565b602060405180830381600087803b158015611b8b57600080fd5b505af1925050508015611bbb575060408051601f3d908101601f19168201909252611bb89181019061269a565b60015b611c16573d808015611be9576040519150601f19603f3d011682016040523d82523d6000602084013e611bee565b606091505b508051611c0e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546108469061244f565b606081611c675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c915780611c7b816124eb565b9150611c8a9050600a836126cd565b9150611c6b565b6000816001600160401b03811115611cab57611cab61213d565b6040519080825280601f01601f191660200182016040528015611cd5576020820181803683370190505b5090505b8415611c2c57611cea6001836126e1565b9150611cf7600a866126f8565b611d02906030612534565b60f81b818381518110611d1757611d176124bf565b60200101906001600160f81b031916908160001a905350611d39600a866126cd565b9450611cd9565b600082611d4d8584611d63565b14949350505050565b6109968383836001611dd7565b600081815b8451811015611dcf576000858281518110611d8557611d856124bf565b60200260200101519050808311611dab5760008381526020829052604090209250611dbc565b600081815260208490526040902092505b5080611dc7816124eb565b915050611d68565b509392505050565b6000546001600160a01b038516611e0057604051622e076360e81b815260040160405180910390fd5b83611e1e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ecf57506001600160a01b0387163b15155b15611f58575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f206000888480600101955088611b3c565b611f3d576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ed5578260005414611f5357600080fd5b611f9e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611f59575b506000556119a2565b828054611fb39061244f565b90600052602060002090601f016020900481019282611fd5576000855561201b565b82601f10611fee57805160ff191683800117855561201b565b8280016001018555821561201b579182015b8281111561201b578251825591602001919060010190612000565b5061202792915061202b565b5090565b5b80821115612027576000815560010161202c565b6001600160e01b0319811681146116fd57600080fd5b60006020828403121561206857600080fd5b813561131381612040565b60005b8381101561208e578181015183820152602001612076565b838111156110435750506000910152565b600081518084526120b7816020860160208601612073565b601f01601f19169290920160200192915050565b602081526000611313602083018461209f565b6000602082840312156120f057600080fd5b5035919050565b80356001600160a01b038116811461210e57600080fd5b919050565b6000806040838503121561212657600080fd5b61212f836120f7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561216d5761216d61213d565b604051601f8501601f19908116603f011681019082821181831017156121955761219561213d565b816040528093508581528686860111156121ae57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121da57600080fd5b81356001600160401b038111156121f057600080fd5b8201601f8101841361220157600080fd5b611c2c84823560208401612153565b8035801515811461210e57600080fd5b60006020828403121561223257600080fd5b61131382612210565b60008060006060848603121561225057600080fd5b612259846120f7565b9250612267602085016120f7565b9150604084013590509250925092565b60006020828403121561228957600080fd5b611313826120f7565b6020808252825182820181905260009190848201906040850190845b818110156122ca578351835292840192918401916001016122ae565b50909695505050505050565b600080604083850312156122e957600080fd5b6122f2836120f7565b915061230060208401612210565b90509250929050565b6000806000806080858703121561231f57600080fd5b612328856120f7565b9350612336602086016120f7565b92506040850135915060608501356001600160401b0381111561235857600080fd5b8501601f8101871361236957600080fd5b61237887823560208401612153565b91505092959194509250565b60008060006040848603121561239957600080fd5b8335925060208401356001600160401b03808211156123b757600080fd5b818601915086601f8301126123cb57600080fd5b8135818111156123da57600080fd5b8760208260051b85010111156123ef57600080fd5b6020830194508093505050509250925092565b6000806040838503121561241557600080fd5b61241e836120f7565b9150612300602084016120f7565b6000806040838503121561243f57600080fd5b82359150612300602084016120f7565b600181811c9082168061246357607f821691505b6020821081141561248457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124ff576124ff6124d5565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60008219821115612547576125476124d5565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615612594576125946124d5565b500290565b6000845160206125ac8285838a01612073565b8551918401916125bf8184848a01612073565b8554920191600090600181811c90808316806125dc57607f831692505b8583108114156125fa57634e487b7160e01b85526022600452602485fd5b80801561260e576001811461261f5761264c565b60ff1985168852838801955061264c565b60008b81526020902060005b858110156126445781548a82015290840190880161262b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126909083018461209f565b9695505050505050565b6000602082840312156126ac57600080fd5b815161131381612040565b634e487b7160e01b600052601260045260246000fd5b6000826126dc576126dc6126b7565b500490565b6000828210156126f3576126f36124d5565b500390565b600082612707576127076126b7565b50069056fea2646970667358221220ee464129b41626ad8aab21e70f9235c9ab466016414a400acf5827567ed1cdc964736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e7000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000006436c6f75647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003436c3900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014697066733a2f2f512f68696464656e2e6a736f6e000000000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c80636caede3d11610144578063b071401b116100b6578063d5abeb011161007a578063d5abeb01146106f6578063db4bec441461070c578063e0a808531461073c578063e985e9c51461075c578063efbd73f4146107a5578063f2fde38b146107c557600080fd5b8063b071401b14610663578063b767a09814610683578063b88d4fde146106a3578063c87b56dd146106c3578063d2cab056146106e357600080fd5b80638da5cb5b116101085780638da5cb5b146105d257806394354fd0146105f057806395d89b4114610606578063a0712d681461061b578063a22cb4651461062e578063a45ba8e71461064e57600080fd5b80636caede3d1461053e57806370a082311461055d578063715018a61461057d5780637cb64759146105925780637ec4a659146105b257600080fd5b80633ec4de35116101dd5780634fdd43cb116101a15780634fdd43cb1461049a57806351830227146104ba5780635503a0e8146104da5780635c975abb146104ef57806362b99ad4146105095780636352211e1461051e57600080fd5b80633ec4de35146103ea57806342842e0e14610417578063438b63001461043757806344a0d68a14610464578063453c23101461048457600080fd5b806316ba10e01161022f57806316ba10e01461034157806316c38b3c1461036157806318160ddd1461038157806323b872dd1461039f5780632eb4a7ab146103bf5780633ccfd60b146103d557600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612056565b6107e5565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610837565b60405161029891906120cb565b3480156102cf57600080fd5b506102e36102de3660046120de565b6108c9565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612113565b61090d565b005b34801561032957600080fd5b50610333600f5481565b604051908152602001610298565b34801561034d57600080fd5b5061031b61035c3660046121c8565b61099b565b34801561036d57600080fd5b5061031b61037c366004612220565b6109e5565b34801561038d57600080fd5b50610333600154600054036000190190565b3480156103ab57600080fd5b5061031b6103ba36600461223b565b610a22565b3480156103cb57600080fd5b50610333600a5481565b3480156103e157600080fd5b5061031b610a2d565b3480156103f657600080fd5b50610333610405366004612277565b60146020526000908152604090205481565b34801561042357600080fd5b5061031b61043236600461223b565b610b28565b34801561044357600080fd5b50610457610452366004612277565b610b43565b6040516102989190612292565b34801561047057600080fd5b5061031b61047f3660046120de565b610c8a565b34801561049057600080fd5b5061033360125481565b3480156104a657600080fd5b5061031b6104b53660046121c8565b610cb9565b3480156104c657600080fd5b5060135461028c9062010000900460ff1681565b3480156104e657600080fd5b506102b6610cf6565b3480156104fb57600080fd5b5060135461028c9060ff1681565b34801561051557600080fd5b506102b6610d84565b34801561052a57600080fd5b506102e36105393660046120de565b610d91565b34801561054a57600080fd5b5060135461028c90610100900460ff1681565b34801561056957600080fd5b50610333610578366004612277565b610da3565b34801561058957600080fd5b5061031b610df1565b34801561059e57600080fd5b5061031b6105ad3660046120de565b610e27565b3480156105be57600080fd5b5061031b6105cd3660046121c8565b610e56565b3480156105de57600080fd5b506008546001600160a01b03166102e3565b3480156105fc57600080fd5b5061033360115481565b34801561061257600080fd5b506102b6610e93565b61031b6106293660046120de565b610ea2565b34801561063a57600080fd5b5061031b6106493660046122d6565b611049565b34801561065a57600080fd5b506102b66110df565b34801561066f57600080fd5b5061031b61067e3660046120de565b6110ec565b34801561068f57600080fd5b5061031b61069e366004612220565b61111b565b3480156106af57600080fd5b5061031b6106be366004612309565b61115f565b3480156106cf57600080fd5b506102b66106de3660046120de565b6111aa565b61031b6106f1366004612384565b61131a565b34801561070257600080fd5b5061033360105481565b34801561071857600080fd5b5061028c610727366004612277565b600b6020526000908152604090205460ff1681565b34801561074857600080fd5b5061031b610757366004612220565b61157f565b34801561076857600080fd5b5061028c610777366004612402565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107b157600080fd5b5061031b6107c036600461242c565b6115c5565b3480156107d157600080fd5b5061031b6107e0366004612277565b611665565b60006001600160e01b031982166380ac58cd60e01b148061081657506001600160e01b03198216635b5e139f60e01b145b8061083157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108469061244f565b80601f01602080910402602001604051908101604052809291908181526020018280546108729061244f565b80156108bf5780601f10610894576101008083540402835291602001916108bf565b820191906000526020600020905b8154815290600101906020018083116108a257829003601f168201915b5050505050905090565b60006108d482611700565b6108f1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091882610d91565b9050806001600160a01b0316836001600160a01b0316141561094d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096d575061096b8133610777565b155b1561098b576040516367d9dca160e11b815260040160405180910390fd5b610996838383611739565b505050565b6008546001600160a01b031633146109ce5760405162461bcd60e51b81526004016109c59061248a565b60405180910390fd5b80516109e190600d906020840190611fa7565b5050565b6008546001600160a01b03163314610a0f5760405162461bcd60e51b81526004016109c59061248a565b6013805460ff1916911515919091179055565b610996838383611795565b6008546001600160a01b03163314610a575760405162461bcd60e51b81526004016109c59061248a565b60026009541415610aaa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c5565b60026009556000610ac36008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b0d576040519150601f19603f3d011682016040523d82523d6000602084013e610b12565b606091505b5050905080610b2057600080fd5b506001600955565b6109968383836040518060200160405280600081525061115f565b60606000610b5083610da3565b90506000816001600160401b03811115610b6c57610b6c61213d565b604051908082528060200260200182016040528015610b95578160200160208202803683370190505b50905060016000805b8482108015610baf57506010548311155b15610c7f57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610c1c575080516001600160a01b031615155b15610c2657805191505b876001600160a01b0316826001600160a01b03161415610c6c5783858481518110610c5357610c536124bf565b602090810291909101015282610c68816124eb565b9350505b83610c76816124eb565b94505050610b9e565b509195945050505050565b6008546001600160a01b03163314610cb45760405162461bcd60e51b81526004016109c59061248a565b600f55565b6008546001600160a01b03163314610ce35760405162461bcd60e51b81526004016109c59061248a565b80516109e190600e906020840190611fa7565b600d8054610d039061244f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2f9061244f565b8015610d7c5780601f10610d5157610100808354040283529160200191610d7c565b820191906000526020600020905b815481529060010190602001808311610d5f57829003601f168201915b505050505081565b600c8054610d039061244f565b6000610d9c826119a9565b5192915050565b60006001600160a01b038216610dcc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e1b5760405162461bcd60e51b81526004016109c59061248a565b610e256000611ad0565b565b6008546001600160a01b03163314610e515760405162461bcd60e51b81526004016109c59061248a565b600a55565b6008546001600160a01b03163314610e805760405162461bcd60e51b81526004016109c59061248a565b80516109e190600c906020840190611fa7565b6060600380546108469061244f565b80600081118015610eb557506011548111155b610ed15760405162461bcd60e51b81526004016109c590612506565b60105481610ee6600154600054036000190190565b610ef09190612534565b1115610f0e5760405162461bcd60e51b81526004016109c59061254c565b8180600f54610f1d919061257a565b341015610f625760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109c5565b60135460ff1615610fb55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016109c5565b33600090815260146020526040902054601254610fd28583612534565b11156110145760405162461bcd60e51b81526020600482015260116024820152701b585e081b1a5b5a5d081c995858da1959607a1b60448201526064016109c5565b3360009081526014602052604081208054869290611033908490612534565b9091555061104390503385611b22565b50505050565b6001600160a01b0382163314156110735760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610d039061244f565b6008546001600160a01b031633146111165760405162461bcd60e51b81526004016109c59061248a565b601155565b6008546001600160a01b031633146111455760405162461bcd60e51b81526004016109c59061248a565b601380549115156101000261ff0019909216919091179055565b61116a848484611795565b6001600160a01b0383163b1515801561118c575061118a84848484611b3c565b155b15611043576040516368d2bf6b60e11b815260040160405180910390fd5b60606111b582611700565b6112195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c5565b60135462010000900460ff166112bb57600e80546112369061244f565b80601f01602080910402602001604051908101604052809291908181526020018280546112629061244f565b80156112af5780601f10611284576101008083540402835291602001916112af565b820191906000526020600020905b81548152906001019060200180831161129257829003601f168201915b50505050509050919050565b60006112c5611c34565b905060008151116112e55760405180602001604052806000815250611313565b806112ef84611c43565b600d60405160200161130393929190612599565b6040516020818303038152906040525b9392505050565b8260008111801561132d57506011548111155b6113495760405162461bcd60e51b81526004016109c590612506565b6010548161135e600154600054036000190190565b6113689190612534565b11156113865760405162461bcd60e51b81526004016109c59061254c565b8380600f54611395919061257a565b3410156113da5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109c5565b601354610100900460ff1661143c5760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b60648201526084016109c5565b336000908152600b602052604090205460ff161561149c5760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d656421000000000000000060448201526064016109c5565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061151685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611d40565b6115535760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016109c5565b336000818152600b60205260409020805460ff191660011790556115779087611b22565b505050505050565b6008546001600160a01b031633146115a95760405162461bcd60e51b81526004016109c59061248a565b60138054911515620100000262ff000019909216919091179055565b816000811180156115d857506011548111155b6115f45760405162461bcd60e51b81526004016109c590612506565b60105481611609600154600054036000190190565b6116139190612534565b11156116315760405162461bcd60e51b81526004016109c59061254c565b6008546001600160a01b0316331461165b5760405162461bcd60e51b81526004016109c59061248a565b6109968284611b22565b6008546001600160a01b0316331461168f5760405162461bcd60e51b81526004016109c59061248a565b6001600160a01b0381166116f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c5565b6116fd81611ad0565b50565b600081600111158015611714575060005482105b8015610831575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a0826119a9565b80519091506000906001600160a01b0316336001600160a01b031614806117ce575081516117ce9033610777565b806117e95750336117de846108c9565b6001600160a01b0316145b90508061180957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461183e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661186557604051633a954ecd60e21b815260040160405180910390fd5b6118756000848460000151611739565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661195f5760005481101561195f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156119d9575060005481105b15611ab757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ab55780516001600160a01b031615611a4c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ab0579392505050565b611a4c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109e1828260405180602001604052806000815250611d56565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b7190339089908890889060040161265d565b602060405180830381600087803b158015611b8b57600080fd5b505af1925050508015611bbb575060408051601f3d908101601f19168201909252611bb89181019061269a565b60015b611c16573d808015611be9576040519150601f19603f3d011682016040523d82523d6000602084013e611bee565b606091505b508051611c0e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546108469061244f565b606081611c675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c915780611c7b816124eb565b9150611c8a9050600a836126cd565b9150611c6b565b6000816001600160401b03811115611cab57611cab61213d565b6040519080825280601f01601f191660200182016040528015611cd5576020820181803683370190505b5090505b8415611c2c57611cea6001836126e1565b9150611cf7600a866126f8565b611d02906030612534565b60f81b818381518110611d1757611d176124bf565b60200101906001600160f81b031916908160001a905350611d39600a866126cd565b9450611cd9565b600082611d4d8584611d63565b14949350505050565b6109968383836001611dd7565b600081815b8451811015611dcf576000858281518110611d8557611d856124bf565b60200260200101519050808311611dab5760008381526020829052604090209250611dbc565b600081815260208490526040902092505b5080611dc7816124eb565b915050611d68565b509392505050565b6000546001600160a01b038516611e0057604051622e076360e81b815260040160405180910390fd5b83611e1e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ecf57506001600160a01b0387163b15155b15611f58575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f206000888480600101955088611b3c565b611f3d576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ed5578260005414611f5357600080fd5b611f9e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611f59575b506000556119a2565b828054611fb39061244f565b90600052602060002090601f016020900481019282611fd5576000855561201b565b82601f10611fee57805160ff191683800117855561201b565b8280016001018555821561201b579182015b8281111561201b578251825591602001919060010190612000565b5061202792915061202b565b5090565b5b80821115612027576000815560010161202c565b6001600160e01b0319811681146116fd57600080fd5b60006020828403121561206857600080fd5b813561131381612040565b60005b8381101561208e578181015183820152602001612076565b838111156110435750506000910152565b600081518084526120b7816020860160208601612073565b601f01601f19169290920160200192915050565b602081526000611313602083018461209f565b6000602082840312156120f057600080fd5b5035919050565b80356001600160a01b038116811461210e57600080fd5b919050565b6000806040838503121561212657600080fd5b61212f836120f7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561216d5761216d61213d565b604051601f8501601f19908116603f011681019082821181831017156121955761219561213d565b816040528093508581528686860111156121ae57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121da57600080fd5b81356001600160401b038111156121f057600080fd5b8201601f8101841361220157600080fd5b611c2c84823560208401612153565b8035801515811461210e57600080fd5b60006020828403121561223257600080fd5b61131382612210565b60008060006060848603121561225057600080fd5b612259846120f7565b9250612267602085016120f7565b9150604084013590509250925092565b60006020828403121561228957600080fd5b611313826120f7565b6020808252825182820181905260009190848201906040850190845b818110156122ca578351835292840192918401916001016122ae565b50909695505050505050565b600080604083850312156122e957600080fd5b6122f2836120f7565b915061230060208401612210565b90509250929050565b6000806000806080858703121561231f57600080fd5b612328856120f7565b9350612336602086016120f7565b92506040850135915060608501356001600160401b0381111561235857600080fd5b8501601f8101871361236957600080fd5b61237887823560208401612153565b91505092959194509250565b60008060006040848603121561239957600080fd5b8335925060208401356001600160401b03808211156123b757600080fd5b818601915086601f8301126123cb57600080fd5b8135818111156123da57600080fd5b8760208260051b85010111156123ef57600080fd5b6020830194508093505050509250925092565b6000806040838503121561241557600080fd5b61241e836120f7565b9150612300602084016120f7565b6000806040838503121561243f57600080fd5b82359150612300602084016120f7565b600181811c9082168061246357607f821691505b6020821081141561248457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124ff576124ff6124d5565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60008219821115612547576125476124d5565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615612594576125946124d5565b500290565b6000845160206125ac8285838a01612073565b8551918401916125bf8184848a01612073565b8554920191600090600181811c90808316806125dc57607f831692505b8583108114156125fa57634e487b7160e01b85526022600452602485fd5b80801561260e576001811461261f5761264c565b60ff1985168852838801955061264c565b60008b81526020902060005b858110156126445781548a82015290840190880161262b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126909083018461209f565b9695505050505050565b6000602082840312156126ac57600080fd5b815161131381612040565b634e487b7160e01b600052601260045260246000fd5b6000826126dc576126dc6126b7565b500490565b6000828210156126f3576126f36124d5565b500390565b600082612707576127076126b7565b50069056fea2646970667358221220ee464129b41626ad8aab21e70f9235c9ab466016414a400acf5827567ed1cdc964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e7000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000006436c6f75647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003436c3900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014697066733a2f2f512f68696464656e2e6a736f6e000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Clouds
Arg [1] : _tokenSymbol (string): Cl9
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 999
Arg [4] : _maxMintAmountPerTx (uint256): 1
Arg [5] : _hiddenMetadataUri (string): ipfs://Q/hidden.json
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 436c6f7564730000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 436c390000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [11] : 697066733a2f2f512f68696464656e2e6a736f6e000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.