Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
69 NFT.AIA
Holders
29
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
13 NFT.AIALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AiamasksNFT
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-25 */ pragma solidity >=0.6.12; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 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); } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* * @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; } } /** * @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); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @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); } /** * @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; } } /** * @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; } /** * @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); } /** * @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); } /** * @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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "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 {} } /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Ownable, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (_msgSender() != owner()) { require(!paused(), "ERC721Pausable: token transfer while paused"); } } } /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved" ); _burn(tokenId); } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } contract AiamasksNFT is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; uint256 public constant MAX_ELEMENTS = 10000; uint256 public PRICE = 0.06 ether; uint256 public constant MAX_BY_MINT = 20; address public creatorAddress; //uri string public baseTokenURI; event NewCreate(uint256 indexed id); constructor(string memory baseURI,address payable creator) ERC721("NFT AIA", "NFT.AIA") { setBaseURI(baseURI); pause(true); creatorAddress=creator; } modifier saleIsOpen() { require(_totalSupply() <= MAX_ELEMENTS, "Sale end"); if (_msgSender() != owner()) { require(!paused(), "Pausable: paused"); } _; } function _totalSupply() internal view returns (uint256) { return _tokenIdTracker.current(); } function totalMint() public view returns (uint256) { return _totalSupply(); } function mint(address _to, uint256 _count) public payable saleIsOpen { uint256 total = _totalSupply(); require(total + _count <= MAX_ELEMENTS, "Max limit"); require(total <= MAX_ELEMENTS, "Sale end"); require(_count <= MAX_BY_MINT, "Exceeds number"); require(msg.value >= price(_count), "Value below price"); for (uint256 i = 0; i < _count; i++) { _mintAnElement(_to); } _widthdraw(creatorAddress, address(this).balance); } function _mintAnElement(address _to) private { uint256 id = _totalSupply(); _tokenIdTracker.increment(); _safeMint(_to, id); emit NewCreate(id); } function price(uint256 _count) public view returns (uint256) { return PRICE.mul(_count); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function pause(bool val) public onlyOwner { if (val == true) { _pause(); return; } _unpause(); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setPrice(uint256 price) public onlyOwner { PRICE = price; } function setCreator(address creator) public onlyOwner { creatorAddress = creator; } function withdrawAll() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(creatorAddress, address(this).balance); } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address payable","name":"creator","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":"uint256","name":"id","type":"uint256"}],"name":"NewCreate","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"creator","type":"address"}],"name":"setCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405266d529ae9e860000600c553480156200001c57600080fd5b5060405162002f0d38038062002f0d8339810160408190526200003f9162000406565b604051806040016040528060078152602001664e46542041494160c81b815250604051806040016040528060078152602001664e46542e41494160c81b81525081600090805190602001906200009792919062000343565b508051620000ad90600190602084019062000343565b505050620000ca620000c46200011560201b60201c565b62000119565b600a805460ff60a01b19169055620000e2826200016b565b620000ee6001620001d3565b600d80546001600160a01b0319166001600160a01b039290921691909117905550620005e7565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017562000115565b6001600160a01b03166200018862000242565b6001600160a01b031614620001ba5760405162461bcd60e51b8152600401620001b1906200055f565b60405180910390fd5b8051620001cf90600e90602084019062000343565b5050565b620001dd62000115565b6001600160a01b0316620001f062000242565b6001600160a01b031614620002195760405162461bcd60e51b8152600401620001b1906200055f565b6001811515141562000235576200022f62000251565b6200023f565b6200023f620002d2565b50565b600a546001600160a01b031690565b6200025b62000333565b156200027b5760405162461bcd60e51b8152600401620001b19062000535565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002b962000115565b604051620002c89190620004ea565b60405180910390a1565b620002dc62000333565b620002fb5760405162461bcd60e51b8152600401620001b190620004fe565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620002b962000115565b600a54600160a01b900460ff1690565b828054620003519062000594565b90600052602060002090601f016020900481019282620003755760008555620003c0565b82601f106200039057805160ff1916838001178555620003c0565b82800160010185558215620003c0579182015b82811115620003c0578251825591602001919060010190620003a3565b50620003ce929150620003d2565b5090565b5b80821115620003ce5760008155600101620003d3565b80516001600160a01b03811681146200040157600080fd5b919050565b6000806040838503121562000419578182fd5b82516001600160401b038082111562000430578384fd5b818501915085601f83011262000444578384fd5b815181811115620004595762000459620005d1565b6040516020601f8301601f1916820181018481118382101715620004815762000481620005d1565b604052828252848301810189101562000498578687fd5b8693505b82841015620004bb57848401810151828501820152928301926200049c565b82841115620004cc57868184840101525b819650620004dc818901620003e9565b955050505050509250929050565b6001600160a01b0391909116815260200190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620005a957607f821691505b60208210811415620005cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61291680620005f76000396000f3fe6080604052600436106102045760003560e01c806359a7715a1161011857806391b7f5ed116100a0578063c87b56dd1161006f578063c87b56dd14610582578063d547cfb7146105a2578063e927fc5c146105b7578063e985e9c5146105cc578063f2fde38b146105ec57610204565b806391b7f5ed1461050d57806395d89b411461052d578063a22cb46514610542578063b88d4fde1461056257610204565b8063715018a6116100e7578063715018a6146104b1578063853828b6146104c65780638ad5de28146104ce5780638d859f3e146104e35780638da5cb5b146104f857610204565b806359a7715a146104475780635c975abb1461045c5780636352211e1461047157806370a082311461049157610204565b80632f745c591161019b57806342842e0e1161016a57806342842e0e1461039a57806342966c68146103ba578063438b6300146103da5780634f6ccce71461040757806355f804b31461042757610204565b80632f745c59146103325780633502a716146103525780633f5160181461036757806340c10f191461038757610204565b8063095ea7b3116101d7578063095ea7b3146102b057806318160ddd146102d057806323b872dd146102f257806326a49e371461031257610204565b806301ffc9a71461020957806302329a291461023f57806306fdde0314610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611f2e565b61060c565b60405161023691906120b7565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611f14565b61061f565b005b34801561026d57600080fd5b5061027661068a565b60405161023691906120c2565b34801561028f57600080fd5b506102a361029e366004611fac565b61071c565b6040516102369190612022565b3480156102bc57600080fd5b5061025f6102cb366004611eeb565b61075f565b3480156102dc57600080fd5b506102e56107f7565b6040516102369190612787565b3480156102fe57600080fd5b5061025f61030d366004611e0e565b6107fd565b34801561031e57600080fd5b506102e561032d366004611fac565b610835565b34801561033e57600080fd5b506102e561034d366004611eeb565b610845565b34801561035e57600080fd5b506102e5610897565b34801561037357600080fd5b5061025f610382366004611dc2565b61089d565b61025f610395366004611eeb565b6108fe565b3480156103a657600080fd5b5061025f6103b5366004611e0e565b610a52565b3480156103c657600080fd5b5061025f6103d5366004611fac565b610a6d565b3480156103e657600080fd5b506103fa6103f5366004611dc2565b610a9d565b6040516102369190612073565b34801561041357600080fd5b506102e5610422366004611fac565b610b5b565b34801561043357600080fd5b5061025f610442366004611f66565b610bb6565b34801561045357600080fd5b506102e5610c0c565b34801561046857600080fd5b50610229610c1b565b34801561047d57600080fd5b506102a361048c366004611fac565b610c2b565b34801561049d57600080fd5b506102e56104ac366004611dc2565b610c60565b3480156104bd57600080fd5b5061025f610ca4565b61025f610cef565b3480156104da57600080fd5b506102e5610d4f565b3480156104ef57600080fd5b506102e5610d54565b34801561050457600080fd5b506102a3610d5a565b34801561051957600080fd5b5061025f610528366004611fac565b610d69565b34801561053957600080fd5b50610276610dad565b34801561054e57600080fd5b5061025f61055d366004611ec2565b610dbc565b34801561056e57600080fd5b5061025f61057d366004611e49565b610e8a565b34801561058e57600080fd5b5061027661059d366004611fac565b610ec9565b3480156105ae57600080fd5b50610276610f4c565b3480156105c357600080fd5b506102a3610fda565b3480156105d857600080fd5b506102296105e7366004611ddc565b610fe9565b3480156105f857600080fd5b5061025f610607366004611dc2565b611017565b600061061782611085565b90505b919050565b6106276110aa565b6001600160a01b0316610638610d5a565b6001600160a01b0316146106675760405162461bcd60e51b815260040161065e90612537565b60405180910390fd5b6001811515141561067f5761067a6110ae565b610687565b610687611126565b50565b6060600080546106999061281e565b80601f01602080910402602001604051908101604052809291908181526020018280546106c59061281e565b80156107125780601f106106e757610100808354040283529160200191610712565b820191906000526020600020905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b600061072782611180565b6107435760405162461bcd60e51b815260040161065e906124eb565b506000908152600460205260409020546001600160a01b031690565b600061076a82610c2b565b9050806001600160a01b0316836001600160a01b0316141561079e5760405162461bcd60e51b815260040161065e9061262f565b806001600160a01b03166107b06110aa565b6001600160a01b031614806107cc57506107cc816105e76110aa565b6107e85760405162461bcd60e51b815260040161065e906123a4565b6107f2838361119d565b505050565b60085490565b61080e6108086110aa565b8261120b565b61082a5760405162461bcd60e51b815260040161065e9061269a565b6107f2838383611290565b600c5460009061061790836113bd565b600061085083610c60565b821061086e5760405162461bcd60e51b815260040161065e90612176565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61271081565b6108a56110aa565b6001600160a01b03166108b6610d5a565b6001600160a01b0316146108dc5760405162461bcd60e51b815260040161065e90612537565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6127106109096113c9565b11156109275760405162461bcd60e51b815260040161065e906124c9565b61092f610d5a565b6001600160a01b03166109406110aa565b6001600160a01b03161461097357610956610c1b565b156109735760405162461bcd60e51b815260040161065e9061237a565b600061097d6113c9565b905061271061098c8383612790565b11156109aa5760405162461bcd60e51b815260040161065e9061230b565b6127108111156109cc5760405162461bcd60e51b815260040161065e906124c9565b60148211156109ed5760405162461bcd60e51b815260040161065e9061214e565b6109f682610835565b341015610a155760405162461bcd60e51b815260040161065e90612604565b60005b82811015610a3b57610a29846113d5565b80610a3381612859565b915050610a18565b50600d546107f2906001600160a01b031647611424565b6107f283838360405180602001604052806000815250610e8a565b610a786108086110aa565b610a945760405162461bcd60e51b815260040161065e90612737565b610687816114a0565b60606000610aaa83610c60565b905060008167ffffffffffffffff811115610ad557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610afe578160200160208202803683370190505b50905060005b82811015610b5357610b168582610845565b828281518110610b3657634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b4b81612859565b915050610b04565b509392505050565b6000610b656107f7565b8210610b835760405162461bcd60e51b815260040161065e906126eb565b60088281548110610ba457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610bbe6110aa565b6001600160a01b0316610bcf610d5a565b6001600160a01b031614610bf55760405162461bcd60e51b815260040161065e90612537565b8051610c0890600e906020840190611c92565b5050565b6000610c166113c9565b905090565b600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806106175760405162461bcd60e51b815260040161065e9061244b565b60006001600160a01b038216610c885760405162461bcd60e51b815260040161065e90612401565b506001600160a01b031660009081526003602052604090205490565b610cac6110aa565b6001600160a01b0316610cbd610d5a565b6001600160a01b031614610ce35760405162461bcd60e51b815260040161065e90612537565b610ced6000611547565b565b610cf76110aa565b6001600160a01b0316610d08610d5a565b6001600160a01b031614610d2e5760405162461bcd60e51b815260040161065e90612537565b4780610d3957600080fd5b600d54610687906001600160a01b031647611424565b601481565b600c5481565b600a546001600160a01b031690565b610d716110aa565b6001600160a01b0316610d82610d5a565b6001600160a01b031614610da85760405162461bcd60e51b815260040161065e90612537565b600c55565b6060600180546106999061281e565b610dc46110aa565b6001600160a01b0316826001600160a01b03161415610df55760405162461bcd60e51b815260040161065e906122d4565b8060056000610e026110aa565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e466110aa565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e7e91906120b7565b60405180910390a35050565b610e9b610e956110aa565b8361120b565b610eb75760405162461bcd60e51b815260040161065e9061269a565b610ec384848484611599565b50505050565b6060610ed482611180565b610ef05760405162461bcd60e51b815260040161065e906125b5565b6000610efa6115cc565b90506000815111610f1a5760405180602001604052806000815250610f45565b80610f24846115db565b604051602001610f35929190611ff0565b6040516020818303038152906040525b9392505050565b600e8054610f599061281e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f859061281e565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b505050505081565b600d546001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61101f6110aa565b6001600160a01b0316611030610d5a565b6001600160a01b0316146110565760405162461bcd60e51b815260040161065e90612537565b6001600160a01b03811661107c5760405162461bcd60e51b815260040161065e90612213565b61068781611547565b60006001600160e01b0319821663780e9d6360e01b14806106175750610617826116f6565b3390565b6110b6610c1b565b156110d35760405162461bcd60e51b815260040161065e9061237a565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861110f6110aa565b60405161111c9190612022565b60405180910390a1565b61112e610c1b565b61114a5760405162461bcd60e51b815260040161065e90612120565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61110f6110aa565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111d282610c2b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061121682611180565b6112325760405162461bcd60e51b815260040161065e9061232e565b600061123d83610c2b565b9050806001600160a01b0316846001600160a01b031614806112785750836001600160a01b031661126d8461071c565b6001600160a01b0316145b8061128857506112888185610fe9565b949350505050565b826001600160a01b03166112a382610c2b565b6001600160a01b0316146112c95760405162461bcd60e51b815260040161065e9061256c565b6001600160a01b0382166112ef5760405162461bcd60e51b815260040161065e90612290565b6112fa838383611736565b61130560008261119d565b6001600160a01b038316600090815260036020526040812080546001929061132e9084906127db565b90915550506001600160a01b038216600090815260036020526040812080546001929061135c908490612790565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610f4582846127bc565b6000610c16600b611741565b60006113df6113c9565b90506113eb600b611745565b6113f5828261174e565b60405181907f0648bed3e94fd170a61d0d582d4eb886ec95d122945d832d2b876b067a8c858c90600090a25050565b6000826001600160a01b03168260405161143d9061201f565b60006040518083038185875af1925050503d806000811461147a576040519150601f19603f3d011682016040523d82523d6000602084013e61147f565b606091505b50509050806107f25760405162461bcd60e51b815260040161065e90612670565b60006114ab82610c2b565b90506114b981600084611736565b6114c460008361119d565b6001600160a01b03811660009081526003602052604081208054600192906114ed9084906127db565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115a4848484611290565b6115b084848484611768565b610ec35760405162461bcd60e51b815260040161065e906121c1565b6060600e80546106999061281e565b60608161160057506040805180820190915260018152600360fc1b602082015261061a565b8160005b811561162a578061161481612859565b91506116239050600a836127a8565b9150611604565b60008167ffffffffffffffff81111561165357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561167d576020820181803683370190505b5090505b8415611288576116926001836127db565b915061169f600a86612874565b6116aa906030612790565b60f81b8183815181106116cd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116ef600a866127a8565b9450611681565b60006001600160e01b031982166380ac58cd60e01b148061172757506001600160e01b03198216635b5e139f60e01b145b80610617575061061782611883565b6107f283838361189c565b5490565b80546001019055565b610c088282604051806020016040528060008152506118f3565b600061177c846001600160a01b0316611926565b1561187857836001600160a01b031663150b7a026117986110aa565b8786866040518563ffffffff1660e01b81526004016117ba9493929190612036565b602060405180830381600087803b1580156117d457600080fd5b505af1925050508015611804575060408051601f3d908101601f1916820190925261180191810190611f4a565b60015b61185e573d808015611832576040519150601f19603f3d011682016040523d82523d6000602084013e611837565b606091505b5080516118565760405162461bcd60e51b815260040161065e906121c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611288565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6118a783838361192c565b6118af610d5a565b6001600160a01b03166118c06110aa565b6001600160a01b0316146107f2576118d6610c1b565b156107f25760405162461bcd60e51b815260040161065e906120d5565b6118fd83836119b5565b61190a6000848484611768565b6107f25760405162461bcd60e51b815260040161065e906121c1565b3b151590565b6119378383836107f2565b6001600160a01b0383166119535761194e81611a94565b611976565b816001600160a01b0316836001600160a01b031614611976576119768382611ad8565b6001600160a01b0382166119925761198d81611b75565b6107f2565b826001600160a01b0316826001600160a01b0316146107f2576107f28282611c4e565b6001600160a01b0382166119db5760405162461bcd60e51b815260040161065e90612494565b6119e481611180565b15611a015760405162461bcd60e51b815260040161065e90612259565b611a0d60008383611736565b6001600160a01b0382166000908152600360205260408120805460019290611a36908490612790565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611ae584610c60565b611aef91906127db565b600083815260076020526040902054909150808214611b42576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b87906001906127db565b60008381526009602052604081205460088054939450909284908110611bbd57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611bec57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c3257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611c5983610c60565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c9e9061281e565b90600052602060002090601f016020900481019282611cc05760008555611d06565b82601f10611cd957805160ff1916838001178555611d06565b82800160010185558215611d06579182015b82811115611d06578251825591602001919060010190611ceb565b50611d12929150611d16565b5090565b5b80821115611d125760008155600101611d17565b600067ffffffffffffffff80841115611d4657611d466128b4565b604051601f8501601f191681016020018281118282101715611d6a57611d6a6128b4565b604052848152915081838501861015611d8257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461061a57600080fd5b8035801515811461061a57600080fd5b600060208284031215611dd3578081fd5b610f4582611d9b565b60008060408385031215611dee578081fd5b611df783611d9b565b9150611e0560208401611d9b565b90509250929050565b600080600060608486031215611e22578081fd5b611e2b84611d9b565b9250611e3960208501611d9b565b9150604084013590509250925092565b60008060008060808587031215611e5e578081fd5b611e6785611d9b565b9350611e7560208601611d9b565b925060408501359150606085013567ffffffffffffffff811115611e97578182fd5b8501601f81018713611ea7578182fd5b611eb687823560208401611d2b565b91505092959194509250565b60008060408385031215611ed4578182fd5b611edd83611d9b565b9150611e0560208401611db2565b60008060408385031215611efd578182fd5b611f0683611d9b565b946020939093013593505050565b600060208284031215611f25578081fd5b610f4582611db2565b600060208284031215611f3f578081fd5b8135610f45816128ca565b600060208284031215611f5b578081fd5b8151610f45816128ca565b600060208284031215611f77578081fd5b813567ffffffffffffffff811115611f8d578182fd5b8201601f81018413611f9d578182fd5b61128884823560208401611d2b565b600060208284031215611fbd578081fd5b5035919050565b60008151808452611fdc8160208601602086016127f2565b601f01601f19169290920160200192915050565b600083516120028184602088016127f2565b8351908301906120168183602088016127f2565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206990830184611fc4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120ab5783518352928401929184019160010161208f565b50909695505050505050565b901515815260200190565b600060208252610f456020830184611fc4565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b600082198211156127a3576127a3612888565b500190565b6000826127b7576127b761289e565b500490565b60008160001904831182151516156127d6576127d6612888565b500290565b6000828210156127ed576127ed612888565b500390565b60005b8381101561280d5781810151838201526020016127f5565b83811115610ec35750506000910152565b60028104600182168061283257607f821691505b6020821081141561285357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561286d5761286d612888565b5060010190565b6000826128835761288361289e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461068757600080fdfea2646970667358221220605c47d7ced8e9458e951312d3496a40737c3b1ac458c49169186b592612953364736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000009906db749c6fb8ca0bd75e2216df2f29e34208d0000000000000000000000000000000000000000000000000000000000000021687474703a2f2f7265736f757263652e6169616d61736b2e636f2f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c806359a7715a1161011857806391b7f5ed116100a0578063c87b56dd1161006f578063c87b56dd14610582578063d547cfb7146105a2578063e927fc5c146105b7578063e985e9c5146105cc578063f2fde38b146105ec57610204565b806391b7f5ed1461050d57806395d89b411461052d578063a22cb46514610542578063b88d4fde1461056257610204565b8063715018a6116100e7578063715018a6146104b1578063853828b6146104c65780638ad5de28146104ce5780638d859f3e146104e35780638da5cb5b146104f857610204565b806359a7715a146104475780635c975abb1461045c5780636352211e1461047157806370a082311461049157610204565b80632f745c591161019b57806342842e0e1161016a57806342842e0e1461039a57806342966c68146103ba578063438b6300146103da5780634f6ccce71461040757806355f804b31461042757610204565b80632f745c59146103325780633502a716146103525780633f5160181461036757806340c10f191461038757610204565b8063095ea7b3116101d7578063095ea7b3146102b057806318160ddd146102d057806323b872dd146102f257806326a49e371461031257610204565b806301ffc9a71461020957806302329a291461023f57806306fdde0314610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611f2e565b61060c565b60405161023691906120b7565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611f14565b61061f565b005b34801561026d57600080fd5b5061027661068a565b60405161023691906120c2565b34801561028f57600080fd5b506102a361029e366004611fac565b61071c565b6040516102369190612022565b3480156102bc57600080fd5b5061025f6102cb366004611eeb565b61075f565b3480156102dc57600080fd5b506102e56107f7565b6040516102369190612787565b3480156102fe57600080fd5b5061025f61030d366004611e0e565b6107fd565b34801561031e57600080fd5b506102e561032d366004611fac565b610835565b34801561033e57600080fd5b506102e561034d366004611eeb565b610845565b34801561035e57600080fd5b506102e5610897565b34801561037357600080fd5b5061025f610382366004611dc2565b61089d565b61025f610395366004611eeb565b6108fe565b3480156103a657600080fd5b5061025f6103b5366004611e0e565b610a52565b3480156103c657600080fd5b5061025f6103d5366004611fac565b610a6d565b3480156103e657600080fd5b506103fa6103f5366004611dc2565b610a9d565b6040516102369190612073565b34801561041357600080fd5b506102e5610422366004611fac565b610b5b565b34801561043357600080fd5b5061025f610442366004611f66565b610bb6565b34801561045357600080fd5b506102e5610c0c565b34801561046857600080fd5b50610229610c1b565b34801561047d57600080fd5b506102a361048c366004611fac565b610c2b565b34801561049d57600080fd5b506102e56104ac366004611dc2565b610c60565b3480156104bd57600080fd5b5061025f610ca4565b61025f610cef565b3480156104da57600080fd5b506102e5610d4f565b3480156104ef57600080fd5b506102e5610d54565b34801561050457600080fd5b506102a3610d5a565b34801561051957600080fd5b5061025f610528366004611fac565b610d69565b34801561053957600080fd5b50610276610dad565b34801561054e57600080fd5b5061025f61055d366004611ec2565b610dbc565b34801561056e57600080fd5b5061025f61057d366004611e49565b610e8a565b34801561058e57600080fd5b5061027661059d366004611fac565b610ec9565b3480156105ae57600080fd5b50610276610f4c565b3480156105c357600080fd5b506102a3610fda565b3480156105d857600080fd5b506102296105e7366004611ddc565b610fe9565b3480156105f857600080fd5b5061025f610607366004611dc2565b611017565b600061061782611085565b90505b919050565b6106276110aa565b6001600160a01b0316610638610d5a565b6001600160a01b0316146106675760405162461bcd60e51b815260040161065e90612537565b60405180910390fd5b6001811515141561067f5761067a6110ae565b610687565b610687611126565b50565b6060600080546106999061281e565b80601f01602080910402602001604051908101604052809291908181526020018280546106c59061281e565b80156107125780601f106106e757610100808354040283529160200191610712565b820191906000526020600020905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b600061072782611180565b6107435760405162461bcd60e51b815260040161065e906124eb565b506000908152600460205260409020546001600160a01b031690565b600061076a82610c2b565b9050806001600160a01b0316836001600160a01b0316141561079e5760405162461bcd60e51b815260040161065e9061262f565b806001600160a01b03166107b06110aa565b6001600160a01b031614806107cc57506107cc816105e76110aa565b6107e85760405162461bcd60e51b815260040161065e906123a4565b6107f2838361119d565b505050565b60085490565b61080e6108086110aa565b8261120b565b61082a5760405162461bcd60e51b815260040161065e9061269a565b6107f2838383611290565b600c5460009061061790836113bd565b600061085083610c60565b821061086e5760405162461bcd60e51b815260040161065e90612176565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61271081565b6108a56110aa565b6001600160a01b03166108b6610d5a565b6001600160a01b0316146108dc5760405162461bcd60e51b815260040161065e90612537565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6127106109096113c9565b11156109275760405162461bcd60e51b815260040161065e906124c9565b61092f610d5a565b6001600160a01b03166109406110aa565b6001600160a01b03161461097357610956610c1b565b156109735760405162461bcd60e51b815260040161065e9061237a565b600061097d6113c9565b905061271061098c8383612790565b11156109aa5760405162461bcd60e51b815260040161065e9061230b565b6127108111156109cc5760405162461bcd60e51b815260040161065e906124c9565b60148211156109ed5760405162461bcd60e51b815260040161065e9061214e565b6109f682610835565b341015610a155760405162461bcd60e51b815260040161065e90612604565b60005b82811015610a3b57610a29846113d5565b80610a3381612859565b915050610a18565b50600d546107f2906001600160a01b031647611424565b6107f283838360405180602001604052806000815250610e8a565b610a786108086110aa565b610a945760405162461bcd60e51b815260040161065e90612737565b610687816114a0565b60606000610aaa83610c60565b905060008167ffffffffffffffff811115610ad557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610afe578160200160208202803683370190505b50905060005b82811015610b5357610b168582610845565b828281518110610b3657634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b4b81612859565b915050610b04565b509392505050565b6000610b656107f7565b8210610b835760405162461bcd60e51b815260040161065e906126eb565b60088281548110610ba457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610bbe6110aa565b6001600160a01b0316610bcf610d5a565b6001600160a01b031614610bf55760405162461bcd60e51b815260040161065e90612537565b8051610c0890600e906020840190611c92565b5050565b6000610c166113c9565b905090565b600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806106175760405162461bcd60e51b815260040161065e9061244b565b60006001600160a01b038216610c885760405162461bcd60e51b815260040161065e90612401565b506001600160a01b031660009081526003602052604090205490565b610cac6110aa565b6001600160a01b0316610cbd610d5a565b6001600160a01b031614610ce35760405162461bcd60e51b815260040161065e90612537565b610ced6000611547565b565b610cf76110aa565b6001600160a01b0316610d08610d5a565b6001600160a01b031614610d2e5760405162461bcd60e51b815260040161065e90612537565b4780610d3957600080fd5b600d54610687906001600160a01b031647611424565b601481565b600c5481565b600a546001600160a01b031690565b610d716110aa565b6001600160a01b0316610d82610d5a565b6001600160a01b031614610da85760405162461bcd60e51b815260040161065e90612537565b600c55565b6060600180546106999061281e565b610dc46110aa565b6001600160a01b0316826001600160a01b03161415610df55760405162461bcd60e51b815260040161065e906122d4565b8060056000610e026110aa565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e466110aa565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e7e91906120b7565b60405180910390a35050565b610e9b610e956110aa565b8361120b565b610eb75760405162461bcd60e51b815260040161065e9061269a565b610ec384848484611599565b50505050565b6060610ed482611180565b610ef05760405162461bcd60e51b815260040161065e906125b5565b6000610efa6115cc565b90506000815111610f1a5760405180602001604052806000815250610f45565b80610f24846115db565b604051602001610f35929190611ff0565b6040516020818303038152906040525b9392505050565b600e8054610f599061281e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f859061281e565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b505050505081565b600d546001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61101f6110aa565b6001600160a01b0316611030610d5a565b6001600160a01b0316146110565760405162461bcd60e51b815260040161065e90612537565b6001600160a01b03811661107c5760405162461bcd60e51b815260040161065e90612213565b61068781611547565b60006001600160e01b0319821663780e9d6360e01b14806106175750610617826116f6565b3390565b6110b6610c1b565b156110d35760405162461bcd60e51b815260040161065e9061237a565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861110f6110aa565b60405161111c9190612022565b60405180910390a1565b61112e610c1b565b61114a5760405162461bcd60e51b815260040161065e90612120565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61110f6110aa565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111d282610c2b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061121682611180565b6112325760405162461bcd60e51b815260040161065e9061232e565b600061123d83610c2b565b9050806001600160a01b0316846001600160a01b031614806112785750836001600160a01b031661126d8461071c565b6001600160a01b0316145b8061128857506112888185610fe9565b949350505050565b826001600160a01b03166112a382610c2b565b6001600160a01b0316146112c95760405162461bcd60e51b815260040161065e9061256c565b6001600160a01b0382166112ef5760405162461bcd60e51b815260040161065e90612290565b6112fa838383611736565b61130560008261119d565b6001600160a01b038316600090815260036020526040812080546001929061132e9084906127db565b90915550506001600160a01b038216600090815260036020526040812080546001929061135c908490612790565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610f4582846127bc565b6000610c16600b611741565b60006113df6113c9565b90506113eb600b611745565b6113f5828261174e565b60405181907f0648bed3e94fd170a61d0d582d4eb886ec95d122945d832d2b876b067a8c858c90600090a25050565b6000826001600160a01b03168260405161143d9061201f565b60006040518083038185875af1925050503d806000811461147a576040519150601f19603f3d011682016040523d82523d6000602084013e61147f565b606091505b50509050806107f25760405162461bcd60e51b815260040161065e90612670565b60006114ab82610c2b565b90506114b981600084611736565b6114c460008361119d565b6001600160a01b03811660009081526003602052604081208054600192906114ed9084906127db565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115a4848484611290565b6115b084848484611768565b610ec35760405162461bcd60e51b815260040161065e906121c1565b6060600e80546106999061281e565b60608161160057506040805180820190915260018152600360fc1b602082015261061a565b8160005b811561162a578061161481612859565b91506116239050600a836127a8565b9150611604565b60008167ffffffffffffffff81111561165357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561167d576020820181803683370190505b5090505b8415611288576116926001836127db565b915061169f600a86612874565b6116aa906030612790565b60f81b8183815181106116cd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116ef600a866127a8565b9450611681565b60006001600160e01b031982166380ac58cd60e01b148061172757506001600160e01b03198216635b5e139f60e01b145b80610617575061061782611883565b6107f283838361189c565b5490565b80546001019055565b610c088282604051806020016040528060008152506118f3565b600061177c846001600160a01b0316611926565b1561187857836001600160a01b031663150b7a026117986110aa565b8786866040518563ffffffff1660e01b81526004016117ba9493929190612036565b602060405180830381600087803b1580156117d457600080fd5b505af1925050508015611804575060408051601f3d908101601f1916820190925261180191810190611f4a565b60015b61185e573d808015611832576040519150601f19603f3d011682016040523d82523d6000602084013e611837565b606091505b5080516118565760405162461bcd60e51b815260040161065e906121c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611288565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6118a783838361192c565b6118af610d5a565b6001600160a01b03166118c06110aa565b6001600160a01b0316146107f2576118d6610c1b565b156107f25760405162461bcd60e51b815260040161065e906120d5565b6118fd83836119b5565b61190a6000848484611768565b6107f25760405162461bcd60e51b815260040161065e906121c1565b3b151590565b6119378383836107f2565b6001600160a01b0383166119535761194e81611a94565b611976565b816001600160a01b0316836001600160a01b031614611976576119768382611ad8565b6001600160a01b0382166119925761198d81611b75565b6107f2565b826001600160a01b0316826001600160a01b0316146107f2576107f28282611c4e565b6001600160a01b0382166119db5760405162461bcd60e51b815260040161065e90612494565b6119e481611180565b15611a015760405162461bcd60e51b815260040161065e90612259565b611a0d60008383611736565b6001600160a01b0382166000908152600360205260408120805460019290611a36908490612790565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611ae584610c60565b611aef91906127db565b600083815260076020526040902054909150808214611b42576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b87906001906127db565b60008381526009602052604081205460088054939450909284908110611bbd57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611bec57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c3257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611c5983610c60565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c9e9061281e565b90600052602060002090601f016020900481019282611cc05760008555611d06565b82601f10611cd957805160ff1916838001178555611d06565b82800160010185558215611d06579182015b82811115611d06578251825591602001919060010190611ceb565b50611d12929150611d16565b5090565b5b80821115611d125760008155600101611d17565b600067ffffffffffffffff80841115611d4657611d466128b4565b604051601f8501601f191681016020018281118282101715611d6a57611d6a6128b4565b604052848152915081838501861015611d8257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461061a57600080fd5b8035801515811461061a57600080fd5b600060208284031215611dd3578081fd5b610f4582611d9b565b60008060408385031215611dee578081fd5b611df783611d9b565b9150611e0560208401611d9b565b90509250929050565b600080600060608486031215611e22578081fd5b611e2b84611d9b565b9250611e3960208501611d9b565b9150604084013590509250925092565b60008060008060808587031215611e5e578081fd5b611e6785611d9b565b9350611e7560208601611d9b565b925060408501359150606085013567ffffffffffffffff811115611e97578182fd5b8501601f81018713611ea7578182fd5b611eb687823560208401611d2b565b91505092959194509250565b60008060408385031215611ed4578182fd5b611edd83611d9b565b9150611e0560208401611db2565b60008060408385031215611efd578182fd5b611f0683611d9b565b946020939093013593505050565b600060208284031215611f25578081fd5b610f4582611db2565b600060208284031215611f3f578081fd5b8135610f45816128ca565b600060208284031215611f5b578081fd5b8151610f45816128ca565b600060208284031215611f77578081fd5b813567ffffffffffffffff811115611f8d578182fd5b8201601f81018413611f9d578182fd5b61128884823560208401611d2b565b600060208284031215611fbd578081fd5b5035919050565b60008151808452611fdc8160208601602086016127f2565b601f01601f19169290920160200192915050565b600083516120028184602088016127f2565b8351908301906120168183602088016127f2565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206990830184611fc4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120ab5783518352928401929184019160010161208f565b50909695505050505050565b901515815260200190565b600060208252610f456020830184611fc4565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b600082198211156127a3576127a3612888565b500190565b6000826127b7576127b761289e565b500490565b60008160001904831182151516156127d6576127d6612888565b500290565b6000828210156127ed576127ed612888565b500390565b60005b8381101561280d5781810151838201526020016127f5565b83811115610ec35750506000910152565b60028104600182168061283257607f821691505b6020821081141561285357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561286d5761286d612888565b5060010190565b6000826128835761288361289e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461068757600080fdfea2646970667358221220605c47d7ced8e9458e951312d3496a40737c3b1ac458c49169186b592612953364736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000009906db749c6fb8ca0bd75e2216df2f29e34208d0000000000000000000000000000000000000000000000000000000000000021687474703a2f2f7265736f757263652e6169616d61736b2e636f2f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): http://resource.aiamask.co/token/
Arg [1] : creator (address): 0x09906db749c6fB8Ca0bd75E2216df2F29e34208d
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000009906db749c6fb8ca0bd75e2216df2f29e34208d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [3] : 687474703a2f2f7265736f757263652e6169616d61736b2e636f2f746f6b656e
Arg [4] : 2f00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
55745:3808:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59321:229;;;;;;;;;;-1:-1:-1;59321:229:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58211:154;;;;;;;;;;-1:-1:-1;58211:154:0;;;;;:::i;:::-;;:::i;:::-;;34231:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35924:308::-;;;;;;;;;;-1:-1:-1;35924:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35447:411::-;;;;;;;;;;-1:-1:-1;35447:411:0;;;;;:::i;:::-;;:::i;50130:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36983:376::-;;;;;;;;;;-1:-1:-1;36983:376:0;;;;;:::i;:::-;;:::i;57585:104::-;;;;;;;;;;-1:-1:-1;57585:104:0;;;;;:::i;:::-;;:::i;49711:343::-;;;;;;;;;;-1:-1:-1;49711:343:0;;;;;:::i;:::-;;:::i;55981:44::-;;;;;;;;;;;;;:::i;58575:97::-;;;;;;;;;;-1:-1:-1;58575:97:0;;;;;:::i;:::-;;:::i;56865:517::-;;;;;;:::i;:::-;;:::i;37430:185::-;;;;;;;;;;-1:-1:-1;37430:185:0;;;;;:::i;:::-;;:::i;47321:282::-;;;;;;;;;;-1:-1:-1;47321:282:0;;;;;:::i;:::-;;:::i;57818:385::-;;;;;;;;;;-1:-1:-1;57818:385:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50320:320::-;;;;;;;;;;-1:-1:-1;50320:320:0;;;;;:::i;:::-;;:::i;58373:101::-;;;;;;;;;;-1:-1:-1;58373:101:0;;;;;:::i;:::-;;:::i;56761:91::-;;;;;;;;;;;;;:::i;22646:86::-;;;;;;;;;;;;;:::i;33838:326::-;;;;;;;;;;-1:-1:-1;33838:326:0;;;;;:::i;:::-;;:::i;33481:295::-;;;;;;;;;;-1:-1:-1;33481:295:0;;;;;:::i;:::-;;:::i;20997:94::-;;;;;;;;;;;;;:::i;58680:197::-;;;:::i;56072:40::-;;;;;;;;;;;;;:::i;56032:33::-;;;;;;;;;;;;;:::i;20346:87::-;;;;;;;;;;;;;:::i;58482:82::-;;;;;;;;;;-1:-1:-1;58482:82:0;;;;;:::i;:::-;;:::i;34400:104::-;;;;;;;;;;;;;:::i;36304:327::-;;;;;;;;;;-1:-1:-1;36304:327:0;;;;;:::i;:::-;;:::i;37686:365::-;;;;;;;;;;-1:-1:-1;37686:365:0;;;;;:::i;:::-;;:::i;34575:468::-;;;;;;;;;;-1:-1:-1;34575:468:0;;;;;:::i;:::-;;:::i;56166:26::-;;;;;;;;;;;;;:::i;56119:29::-;;;;;;;;;;;;;:::i;36702:214::-;;;;;;;;;;-1:-1:-1;36702:214:0;;;;;:::i;:::-;;:::i;21246:229::-;;;;;;;;;;-1:-1:-1;21246:229:0;;;;;:::i;:::-;;:::i;59321:::-;59477:4;59506:36;59530:11;59506:23;:36::i;:::-;59499:43;;59321:229;;;;:::o;58211:154::-;20577:12;:10;:12::i;:::-;-1:-1:-1;;;;;20566:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20566:23:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;;;;;;:::i;:::-;;;;;;;;;58275:4:::1;58268:11:::0;::::1;;;58264:73;;;58296:8;:6;:8::i;:::-;58319:7;;58264:73;58347:10;:8;:10::i;:::-;58211:154:::0;:::o;34231:100::-;34285:13;34318:5;34311:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34231:100;:::o;35924:308::-;36045:7;36092:16;36100:7;36092;:16::i;:::-;36070:110;;;;-1:-1:-1;;;36070:110:0;;;;;;;:::i;:::-;-1:-1:-1;36200:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36200:24:0;;35924:308::o;35447:411::-;35528:13;35544:23;35559:7;35544:14;:23::i;:::-;35528:39;;35592:5;-1:-1:-1;;;;;35586:11:0;:2;-1:-1:-1;;;;;35586:11:0;;;35578:57;;;;-1:-1:-1;;;35578:57:0;;;;;;;:::i;:::-;35686:5;-1:-1:-1;;;;;35670:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;35670:21:0;;:62;;;;35695:37;35712:5;35719:12;:10;:12::i;35695:37::-;35648:168;;;;-1:-1:-1;;;35648:168:0;;;;;;;:::i;:::-;35829:21;35838:2;35842:7;35829:8;:21::i;:::-;35447:411;;;:::o;50130:113::-;50218:10;:17;50130:113;:::o;36983:376::-;37192:41;37211:12;:10;:12::i;:::-;37225:7;37192:18;:41::i;:::-;37170:140;;;;-1:-1:-1;;;37170:140:0;;;;;;;:::i;:::-;37323:28;37333:4;37339:2;37343:7;37323:9;:28::i;57585:104::-;57664:5;;57637:7;;57664:17;;57674:6;57664:9;:17::i;49711:343::-;49853:7;49908:23;49925:5;49908:16;:23::i;:::-;49900:5;:31;49878:124;;;;-1:-1:-1;;;49878:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;50020:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;49711:343::o;55981:44::-;56020:5;55981:44;:::o;58575:97::-;20577:12;:10;:12::i;:::-;-1:-1:-1;;;;;20566:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20566:23:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;;;;;;:::i;:::-;58640:14:::1;:24:::0;;-1:-1:-1;;;;;;58640:24:0::1;-1:-1:-1::0;;;;;58640:24:0;;;::::1;::::0;;;::::1;::::0;;58575:97::o;56865:517::-;56020:5;56471:14;:12;:14::i;:::-;:30;;56463:51;;;;-1:-1:-1;;;56463:51:0;;;;;;;:::i;:::-;56545:7;:5;:7::i;:::-;-1:-1:-1;;;;;56529:23:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;56529:23:0;;56525:94;;56578:8;:6;:8::i;:::-;56577:9;56569:38;;;;-1:-1:-1;;;56569:38:0;;;;;;;:::i;:::-;56945:13:::1;56961:14;:12;:14::i;:::-;56945:30:::0;-1:-1:-1;56020:5:0::1;56994:14;57002:6:::0;56945:30;56994:14:::1;:::i;:::-;:30;;56986:52;;;;-1:-1:-1::0;;;56986:52:0::1;;;;;;;:::i;:::-;56020:5;57057;:21;;57049:42;;;;-1:-1:-1::0;;;57049:42:0::1;;;;;;;:::i;:::-;56110:2;57110:6;:21;;57102:48;;;;-1:-1:-1::0;;;57102:48:0::1;;;;;;;:::i;:::-;57182:13;57188:6;57182:5;:13::i;:::-;57169:9;:26;;57161:56;;;;-1:-1:-1::0;;;57161:56:0::1;;;;;;;:::i;:::-;57235:9;57230:83;57254:6;57250:1;:10;57230:83;;;57282:19;57297:3;57282:14;:19::i;:::-;57262:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57230:83;;;-1:-1:-1::0;57336:14:0::1;::::0;57325:49:::1;::::0;-1:-1:-1;;;;;57336:14:0::1;57352:21;57325:10;:49::i;37430:185::-:0;37568:39;37585:4;37591:2;37595:7;37568:39;;;;;;;;;;;;:16;:39::i;47321:282::-;47453:41;47472:12;:10;:12::i;47453:41::-;47431:139;;;;-1:-1:-1;;;47431:139:0;;;;;;;:::i;:::-;47581:14;47587:7;47581:5;:14::i;57818:385::-;57907:16;57941:18;57962:17;57972:6;57962:9;:17::i;:::-;57941:38;;57992:25;58034:10;58020:25;;;;;;-1:-1:-1;;;58020:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58020:25:0;;57992:53;;58061:9;58056:112;58080:10;58076:1;:14;58056:112;;;58126:30;58146:6;58154:1;58126:19;:30::i;:::-;58112:8;58121:1;58112:11;;;;;;-1:-1:-1;;;58112:11:0;;;;;;;;;;;;;;;;;;:44;58092:3;;;;:::i;:::-;;;;58056:112;;;-1:-1:-1;58187:8:0;57818:385;-1:-1:-1;;;57818:385:0:o;50320:320::-;50440:7;50495:30;:28;:30::i;:::-;50487:5;:38;50465:132;;;;-1:-1:-1;;;50465:132:0;;;;;;;:::i;:::-;50615:10;50626:5;50615:17;;;;;;-1:-1:-1;;;50615:17:0;;;;;;;;;;;;;;;;;50608:24;;50320:320;;;:::o;58373:101::-;20577:12;:10;:12::i;:::-;-1:-1:-1;;;;;20566:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20566:23:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;;;;;;:::i;:::-;58444:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58373:101:::0;:::o;56761:91::-;56803:7;56830:14;:12;:14::i;:::-;56823:21;;56761:91;:::o;22646:86::-;22717:7;;-1:-1:-1;;;22717:7:0;;;;;22646:86::o;33838:326::-;33955:7;33996:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33996:16:0;34045:19;34023:110;;;;-1:-1:-1;;;34023:110:0;;;;;;;:::i;33481:295::-;33598:7;-1:-1:-1;;;;;33645:19:0;;33623:111;;;;-1:-1:-1;;;33623:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;33752:16:0;;;;;:9;:16;;;;;;;33481:295::o;20997:94::-;20577:12;:10;:12::i;:::-;-1:-1:-1;;;;;20566:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20566:23:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;;;;;;:::i;:::-;21062:21:::1;21080:1;21062:9;:21::i;:::-;20997:94::o:0;58680:197::-;20577:12;:10;:12::i;:::-;-1:-1:-1;;;;;20566:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20566:23:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;;;;;;:::i;:::-;58757:21:::1;58797:11:::0;58789:20:::1;;;::::0;::::1;;58831:14;::::0;58820:49:::1;::::0;-1:-1:-1;;;;;58831:14:0::1;58847:21;58820:10;:49::i;56072:40::-:0;56110:2;56072:40;:::o;56032:33::-;;;;:::o;20346:87::-;20419:6;;-1:-1:-1;;;;;20419:6:0;20346:87;:::o;58482:82::-;20577:12;:10;:12::i;:::-;-1:-1:-1;;;;;20566:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20566:23:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;;;;;;:::i;:::-;58543:5:::1;:13:::0;58482:82::o;34400:104::-;34456:13;34489:7;34482:14;;;;;:::i;36304:327::-;36451:12;:10;:12::i;:::-;-1:-1:-1;;;;;36439:24:0;:8;-1:-1:-1;;;;;36439:24:0;;;36431:62;;;;-1:-1:-1;;;36431:62:0;;;;;;;:::i;:::-;36551:8;36506:18;:32;36525:12;:10;:12::i;:::-;-1:-1:-1;;;;;36506:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;36506:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;36506:53:0;;;;;;;;;;;36590:12;:10;:12::i;:::-;-1:-1:-1;;;;;36575:48:0;;36614:8;36575:48;;;;;;:::i;:::-;;;;;;;;36304:327;;:::o;37686:365::-;37875:41;37894:12;:10;:12::i;:::-;37908:7;37875:18;:41::i;:::-;37853:140;;;;-1:-1:-1;;;37853:140:0;;;;;;;:::i;:::-;38004:39;38018:4;38024:2;38028:7;38037:5;38004:13;:39::i;:::-;37686:365;;;;:::o;34575:468::-;34693:13;34746:16;34754:7;34746;:16::i;:::-;34724:113;;;;-1:-1:-1;;;34724:113:0;;;;;;;:::i;:::-;34850:21;34874:10;:8;:10::i;:::-;34850:34;;34939:1;34921:7;34915:21;:25;:120;;;;;;;;;;;;;;;;;34984:7;34993:18;:7;:16;:18::i;:::-;34967:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34915:120;34895:140;34575:468;-1:-1:-1;;;34575:468:0:o;56166:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56119:29::-;;;-1:-1:-1;;;;;56119:29:0;;:::o;36702:214::-;-1:-1:-1;;;;;36873:25:0;;;36844:4;36873:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36702:214::o;21246:229::-;20577:12;:10;:12::i;:::-;-1:-1:-1;;;;;20566:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20566:23:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21349:22:0;::::1;21327:110;;;;-1:-1:-1::0;;;21327:110:0::1;;;;;;;:::i;:::-;21448:19;21458:8;21448:9;:19::i;49327:300::-:0;49474:4;-1:-1:-1;;;;;;49516:50:0;;-1:-1:-1;;;49516:50:0;;:103;;;49583:36;49607:11;49583:23;:36::i;19197:98::-;19277:10;19197:98;:::o;23446:118::-;22972:8;:6;:8::i;:::-;22971:9;22963:38;;;;-1:-1:-1;;;22963:38:0;;;;;;;:::i;:::-;23506:7:::1;:14:::0;;-1:-1:-1;;;;23506:14:0::1;-1:-1:-1::0;;;23506:14:0::1;::::0;;23536:20:::1;23543:12;:10;:12::i;:::-;23536:20;;;;;;:::i;:::-;;;;;;;;23446:118::o:0;23705:120::-;23249:8;:6;:8::i;:::-;23241:41;;;;-1:-1:-1;;;23241:41:0;;;;;;;:::i;:::-;23764:7:::1;:15:::0;;-1:-1:-1;;;;23764:15:0::1;::::0;;23795:22:::1;23804:12;:10;:12::i;39598:127::-:0;39663:4;39687:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39687:16:0;:30;;;39598:127::o;43721:174::-;43796:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43796:29:0;-1:-1:-1;;;;;43796:29:0;;;;;;;;:24;;43850:23;43796:24;43850:14;:23::i;:::-;-1:-1:-1;;;;;43841:46:0;;;;;;;;;;;43721:174;;:::o;39892:452::-;40021:4;40065:16;40073:7;40065;:16::i;:::-;40043:110;;;;-1:-1:-1;;;40043:110:0;;;;;;;:::i;:::-;40164:13;40180:23;40195:7;40180:14;:23::i;:::-;40164:39;;40233:5;-1:-1:-1;;;;;40222:16:0;:7;-1:-1:-1;;;;;40222:16:0;;:64;;;;40279:7;-1:-1:-1;;;;;40255:31:0;:20;40267:7;40255:11;:20::i;:::-;-1:-1:-1;;;;;40255:31:0;;40222:64;:113;;;;40303:32;40320:5;40327:7;40303:16;:32::i;:::-;40214:122;39892:452;-1:-1:-1;;;;39892:452:0:o;42988:615::-;43161:4;-1:-1:-1;;;;;43134:31:0;:23;43149:7;43134:14;:23::i;:::-;-1:-1:-1;;;;;43134:31:0;;43112:122;;;;-1:-1:-1;;;43112:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43253:16:0;;43245:65;;;;-1:-1:-1;;;43245:65:0;;;;;;;:::i;:::-;43323:39;43344:4;43350:2;43354:7;43323:20;:39::i;:::-;43427:29;43444:1;43448:7;43427:8;:29::i;:::-;-1:-1:-1;;;;;43469:15:0;;;;;;:9;:15;;;;;:20;;43488:1;;43469:15;:20;;43488:1;;43469:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43500:13:0;;;;;;:9;:13;;;;;:18;;43517:1;;43500:13;:18;;43517:1;;43500:18;:::i;:::-;;;;-1:-1:-1;;43529:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43529:21:0;-1:-1:-1;;;;;43529:21:0;;;;;;;;;43568:27;;43529:16;;43568:27;;;;;;;42988:615;;;:::o;15231:98::-;15289:7;15316:5;15320:1;15316;:5;:::i;56646:107::-;56693:7;56720:25;:15;:23;:25::i;57390:187::-;57446:10;57459:14;:12;:14::i;:::-;57446:27;;57484;:15;:25;:27::i;:::-;57522:18;57532:3;57537:2;57522:9;:18::i;:::-;57556:13;;57566:2;;57556:13;;;;;57390:187;;:::o;58885:181::-;58960:12;58978:8;-1:-1:-1;;;;;58978:13:0;58999:7;58978:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58959:52;;;59030:7;59022:36;;;;-1:-1:-1;;;59022:36:0;;;;;;;:::i;42291:360::-;42351:13;42367:23;42382:7;42367:14;:23::i;:::-;42351:39;;42403:48;42424:5;42439:1;42443:7;42403:20;:48::i;:::-;42492:29;42509:1;42513:7;42492:8;:29::i;:::-;-1:-1:-1;;;;;42534:16:0;;;;;;:9;:16;;;;;:21;;42554:1;;42534:16;:21;;42554:1;;42534:21;:::i;:::-;;;;-1:-1:-1;;42573:16:0;;;;:7;:16;;;;;;42566:23;;-1:-1:-1;;;;;;42566:23:0;;;42607:36;42581:7;;42573:16;-1:-1:-1;;;;;42607:36:0;;;;;42573:16;;42607:36;42291:360;;:::o;21483:173::-;21558:6;;;-1:-1:-1;;;;;21575:17:0;;;-1:-1:-1;;;;;;21575:17:0;;;;;;;21608:40;;21558:6;;;21575:17;21558:6;;21608:40;;21539:16;;21608:40;21483:173;;:::o;38933:352::-;39090:28;39100:4;39106:2;39110:7;39090:9;:28::i;:::-;39151:48;39174:4;39180:2;39184:7;39193:5;39151:22;:48::i;:::-;39129:148;;;;-1:-1:-1;;;39129:148:0;;;;;;;:::i;57697:113::-;57757:13;57790:12;57783:19;;;;;:::i;9841:723::-;9897:13;10118:10;10114:53;;-1:-1:-1;10145:10:0;;;;;;;;;;;;-1:-1:-1;;;10145:10:0;;;;;;10114:53;10192:5;10177:12;10233:78;10240:9;;10233:78;;10266:8;;;;:::i;:::-;;-1:-1:-1;10289:10:0;;-1:-1:-1;10297:2:0;10289:10;;:::i;:::-;;;10233:78;;;10321:19;10353:6;10343:17;;;;;;-1:-1:-1;;;10343:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10343:17:0;;10321:39;;10371:154;10378:10;;10371:154;;10405:11;10415:1;10405:11;;:::i;:::-;;-1:-1:-1;10474:10:0;10482:2;10474:5;:10;:::i;:::-;10461:24;;:2;:24;:::i;:::-;10448:39;;10431:6;10438;10431:14;;;;;;-1:-1:-1;;;10431:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10431:56:0;;;;;;;;-1:-1:-1;10502:11:0;10511:2;10502:11;;:::i;:::-;;;10371:154;;33062:355;33209:4;-1:-1:-1;;;;;;33251:40:0;;-1:-1:-1;;;33251:40:0;;:105;;-1:-1:-1;;;;;;;33308:48:0;;-1:-1:-1;;;33308:48:0;33251:105;:158;;;;33373:36;33397:11;33373:23;:36::i;59074:239::-;59260:45;59287:4;59293:2;59297:7;59260:26;:45::i;9022:114::-;9114:14;;9022:114::o;9144:127::-;9233:19;;9251:1;9233:19;;;9144:127::o;40686:110::-;40762:26;40772:2;40776:7;40762:26;;;;;;;;;;;;:9;:26::i;44460:984::-;44615:4;44636:15;:2;-1:-1:-1;;;;;44636:13:0;;:15::i;:::-;44632:805;;;44705:2;-1:-1:-1;;;;;44689:36:0;;44748:12;:10;:12::i;:::-;44783:4;44810:7;44840:5;44689:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44689:175:0;;;;;;;;-1:-1:-1;;44689:175:0;;;;;;;;;;;;:::i;:::-;;;44668:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45051:13:0;;45047:320;;45094:108;;-1:-1:-1;;;45094:108:0;;;;;;;:::i;45047:320::-;45317:6;45311:13;45302:6;45298:2;45294:15;45287:38;44668:714;-1:-1:-1;;;;;;44928:55:0;-1:-1:-1;;;44928:55:0;;-1:-1:-1;44921:62:0;;44632:805;-1:-1:-1;45421:4:0;44460:984;;;;;;:::o;25280:207::-;-1:-1:-1;;;;;;25439:40:0;;-1:-1:-1;;;25439:40:0;25280:207;;;:::o;46643:328::-;46787:45;46814:4;46820:2;46824:7;46787:26;:45::i;:::-;46863:7;:5;:7::i;:::-;-1:-1:-1;;;;;46847:23:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;46847:23:0;;46843:121;;46896:8;:6;:8::i;:::-;46895:9;46887:65;;;;-1:-1:-1;;;46887:65:0;;;;;;;:::i;41023:321::-;41153:18;41159:2;41163:7;41153:5;:18::i;:::-;41204:54;41235:1;41239:2;41243:7;41252:5;41204:22;:54::i;:::-;41182:154;;;;-1:-1:-1;;;41182:154:0;;;;;;;:::i;710:387::-;1033:20;1081:8;;;710:387::o;51253:589::-;51397:45;51424:4;51430:2;51434:7;51397:26;:45::i;:::-;-1:-1:-1;;;;;51459:18:0;;51455:187;;51494:40;51526:7;51494:31;:40::i;:::-;51455:187;;;51564:2;-1:-1:-1;;;;;51556:10:0;:4;-1:-1:-1;;;;;51556:10:0;;51552:90;;51583:47;51616:4;51622:7;51583:32;:47::i;:::-;-1:-1:-1;;;;;51656:16:0;;51652:183;;51689:45;51726:7;51689:36;:45::i;:::-;51652:183;;;51762:4;-1:-1:-1;;;;;51756:10:0;:2;-1:-1:-1;;;;;51756:10:0;;51752:83;;51783:40;51811:2;51815:7;51783:27;:40::i;41680:382::-;-1:-1:-1;;;;;41760:16:0;;41752:61;;;;-1:-1:-1;;;41752:61:0;;;;;;;:::i;:::-;41833:16;41841:7;41833;:16::i;:::-;41832:17;41824:58;;;;-1:-1:-1;;;41824:58:0;;;;;;;:::i;:::-;41895:45;41924:1;41928:2;41932:7;41895:20;:45::i;:::-;-1:-1:-1;;;;;41953:13:0;;;;;;:9;:13;;;;;:18;;41970:1;;41953:13;:18;;41970:1;;41953:18;:::i;:::-;;;;-1:-1:-1;;41982:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41982:21:0;-1:-1:-1;;;;;41982:21:0;;;;;;;;42021:33;;41982:16;;;42021:33;;41982:16;;42021:33;41680:382;;:::o;52565:164::-;52669:10;:17;;52642:24;;;;:15;:24;;;;;:44;;;52697:24;;;;;;;;;;;;52565:164::o;53356:1002::-;53636:22;53686:1;53661:22;53678:4;53661:16;:22::i;:::-;:26;;;;:::i;:::-;53698:18;53719:26;;;:17;:26;;;;;;53636:51;;-1:-1:-1;53852:28:0;;;53848:328;;-1:-1:-1;;;;;53919:18:0;;53897:19;53919:18;;;:12;:18;;;;;;;;:34;;;;;;;;;53970:30;;;;;;:44;;;54087:30;;:17;:30;;;;;:43;;;53848:328;-1:-1:-1;54272:26:0;;;;:17;:26;;;;;;;;54265:33;;;-1:-1:-1;;;;;54316:18:0;;;;;:12;:18;;;;;:34;;;;;;;54309:41;53356:1002::o;54653:1079::-;54931:10;:17;54906:22;;54931:21;;54951:1;;54931:21;:::i;:::-;54963:18;54984:24;;;:15;:24;;;;;;55357:10;:26;;54906:46;;-1:-1:-1;54984:24:0;;54906:46;;55357:26;;;;-1:-1:-1;;;55357:26:0;;;;;;;;;;;;;;;;;55335:48;;55421:11;55396:10;55407;55396:22;;;;;;-1:-1:-1;;;55396:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;55501:28;;;:15;:28;;;;;;;:41;;;55673:24;;;;;55666:31;55708:10;:16;;;;;-1:-1:-1;;;55708:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;54653:1079;;;;:::o;52143:221::-;52228:14;52245:20;52262:2;52245:16;:20::i;:::-;-1:-1:-1;;;;;52276:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;52321:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;52143:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:1:o;5199:205::-;5399:3;5390:14::o;5409:203::-;-1:-1:-1;;;;;5573:32:1;;;;5555:51;;5543:2;5528:18;;5510:102::o;5617:490::-;-1:-1:-1;;;;;5886:15:1;;;5868:34;;5938:15;;5933:2;5918:18;;5911:43;5985:2;5970:18;;5963:34;;;6033:3;6028:2;6013:18;;6006:31;;;5617:490;;6054:47;;6081:19;;6073:6;6054:47;:::i;:::-;6046:55;5820:287;-1:-1:-1;;;;;;5820:287:1:o;6112:635::-;6283:2;6335:21;;;6405:13;;6308:18;;;6427:22;;;6112:635;;6283:2;6506:15;;;;6480:2;6465:18;;;6112:635;6552:169;6566:6;6563:1;6560:13;6552:169;;;6627:13;;6615:26;;6696:15;;;;6661:12;;;;6588:1;6581:9;6552:169;;;-1:-1:-1;6738:3:1;;6263:484;-1:-1:-1;;;;;;6263:484:1:o;6752:187::-;6917:14;;6910:22;6892:41;;6880:2;6865:18;;6847:92::o;6944:221::-;;7093:2;7082:9;7075:21;7113:46;7155:2;7144:9;7140:18;7132:6;7113:46;:::i;7170:407::-;7372:2;7354:21;;;7411:2;7391:18;;;7384:30;7450:34;7445:2;7430:18;;7423:62;-1:-1:-1;;;7516:2:1;7501:18;;7494:41;7567:3;7552:19;;7344:233::o;7582:344::-;7784:2;7766:21;;;7823:2;7803:18;;;7796:30;-1:-1:-1;;;7857:2:1;7842:18;;7835:50;7917:2;7902:18;;7756:170::o;7931:338::-;8133:2;8115:21;;;8172:2;8152:18;;;8145:30;-1:-1:-1;;;8206:2:1;8191:18;;8184:44;8260:2;8245:18;;8105:164::o;8274:407::-;8476:2;8458:21;;;8515:2;8495:18;;;8488:30;8554:34;8549:2;8534:18;;8527:62;-1:-1:-1;;;8620:2:1;8605:18;;8598:41;8671:3;8656:19;;8448:233::o;8686:414::-;8888:2;8870:21;;;8927:2;8907:18;;;8900:30;8966:34;8961:2;8946:18;;8939:62;-1:-1:-1;;;9032:2:1;9017:18;;9010:48;9090:3;9075:19;;8860:240::o;9105:402::-;9307:2;9289:21;;;9346:2;9326:18;;;9319:30;9385:34;9380:2;9365:18;;9358:62;-1:-1:-1;;;9451:2:1;9436:18;;9429:36;9497:3;9482:19;;9279:228::o;9512:352::-;9714:2;9696:21;;;9753:2;9733:18;;;9726:30;9792;9787:2;9772:18;;9765:58;9855:2;9840:18;;9686:178::o;9869:400::-;10071:2;10053:21;;;10110:2;10090:18;;;10083:30;10149:34;10144:2;10129:18;;10122:62;-1:-1:-1;;;10215:2:1;10200:18;;10193:34;10259:3;10244:19;;10043:226::o;10274:349::-;10476:2;10458:21;;;10515:2;10495:18;;;10488:30;10554:27;10549:2;10534:18;;10527:55;10614:2;10599:18;;10448:175::o;10628:332::-;10830:2;10812:21;;;10869:1;10849:18;;;10842:29;-1:-1:-1;;;10902:2:1;10887:18;;10880:39;10951:2;10936:18;;10802:158::o;10965:408::-;11167:2;11149:21;;;11206:2;11186:18;;;11179:30;11245:34;11240:2;11225:18;;11218:62;-1:-1:-1;;;11311:2:1;11296:18;;11289:42;11363:3;11348:19;;11139:234::o;11378:340::-;11580:2;11562:21;;;11619:2;11599:18;;;11592:30;-1:-1:-1;;;11653:2:1;11638:18;;11631:46;11709:2;11694:18;;11552:166::o;11723:420::-;11925:2;11907:21;;;11964:2;11944:18;;;11937:30;12003:34;11998:2;11983:18;;11976:62;12074:26;12069:2;12054:18;;12047:54;12133:3;12118:19;;11897:246::o;12148:406::-;12350:2;12332:21;;;12389:2;12369:18;;;12362:30;12428:34;12423:2;12408:18;;12401:62;-1:-1:-1;;;12494:2:1;12479:18;;12472:40;12544:3;12529:19;;12322:232::o;12559:405::-;12761:2;12743:21;;;12800:2;12780:18;;;12773:30;12839:34;12834:2;12819:18;;12812:62;-1:-1:-1;;;12905:2:1;12890:18;;12883:39;12954:3;12939:19;;12733:231::o;12969:356::-;13171:2;13153:21;;;13190:18;;;13183:30;13249:34;13244:2;13229:18;;13222:62;13316:2;13301:18;;13143:182::o;13330:331::-;13532:2;13514:21;;;13571:1;13551:18;;;13544:29;-1:-1:-1;;;13604:2:1;13589:18;;13582:38;13652:2;13637:18;;13504:157::o;13666:408::-;13868:2;13850:21;;;13907:2;13887:18;;;13880:30;13946:34;13941:2;13926:18;;13919:62;-1:-1:-1;;;14012:2:1;13997:18;;13990:42;14064:3;14049:19;;13840:234::o;14079:356::-;14281:2;14263:21;;;14300:18;;;14293:30;14359:34;14354:2;14339:18;;14332:62;14426:2;14411:18;;14253:182::o;14440:405::-;14642:2;14624:21;;;14681:2;14661:18;;;14654:30;14720:34;14715:2;14700:18;;14693:62;-1:-1:-1;;;14786:2:1;14771:18;;14764:39;14835:3;14820:19;;14614:231::o;14850:411::-;15052:2;15034:21;;;15091:2;15071:18;;;15064:30;15130:34;15125:2;15110:18;;15103:62;-1:-1:-1;;;15196:2:1;15181:18;;15174:45;15251:3;15236:19;;15024:237::o;15266:341::-;15468:2;15450:21;;;15507:2;15487:18;;;15480:30;-1:-1:-1;;;15541:2:1;15526:18;;15519:47;15598:2;15583:18;;15440:167::o;15612:397::-;15814:2;15796:21;;;15853:2;15833:18;;;15826:30;15892:34;15887:2;15872:18;;15865:62;-1:-1:-1;;;15958:2:1;15943:18;;15936:31;15999:3;15984:19;;15786:223::o;16014:340::-;16216:2;16198:21;;;16255:2;16235:18;;;16228:30;-1:-1:-1;;;16289:2:1;16274:18;;16267:46;16345:2;16330:18;;16188:166::o;16359:413::-;16561:2;16543:21;;;16600:2;16580:18;;;16573:30;16639:34;16634:2;16619:18;;16612:62;-1:-1:-1;;;16705:2:1;16690:18;;16683:47;16762:3;16747:19;;16533:239::o;16777:408::-;16979:2;16961:21;;;17018:2;16998:18;;;16991:30;17057:34;17052:2;17037:18;;17030:62;-1:-1:-1;;;17123:2:1;17108:18;;17101:42;17175:3;17160:19;;16951:234::o;17190:412::-;17392:2;17374:21;;;17431:2;17411:18;;;17404:30;17470:34;17465:2;17450:18;;17443:62;-1:-1:-1;;;17536:2:1;17521:18;;17514:46;17592:3;17577:19;;17364:238::o;17607:177::-;17753:25;;;17741:2;17726:18;;17708:76::o;17789:128::-;;17860:1;17856:6;17853:1;17850:13;17847:2;;;17866:18;;:::i;:::-;-1:-1:-1;17902:9:1;;17837:80::o;17922:120::-;;17988:1;17978:2;;17993:18;;:::i;:::-;-1:-1:-1;18027:9:1;;17968:74::o;18047:168::-;;18153:1;18149;18145:6;18141:14;18138:1;18135:21;18130:1;18123:9;18116:17;18112:45;18109:2;;;18160:18;;:::i;:::-;-1:-1:-1;18200:9:1;;18099:116::o;18220:125::-;;18288:1;18285;18282:8;18279:2;;;18293:18;;:::i;:::-;-1:-1:-1;18330:9:1;;18269:76::o;18350:258::-;18422:1;18432:113;18446:6;18443:1;18440:13;18432:113;;;18522:11;;;18516:18;18503:11;;;18496:39;18468:2;18461:10;18432:113;;;18563:6;18560:1;18557:13;18554:2;;;-1:-1:-1;;18598:1:1;18580:16;;18573:27;18403:205::o;18613:380::-;18698:1;18688:12;;18745:1;18735:12;;;18756:2;;18810:4;18802:6;18798:17;18788:27;;18756:2;18863;18855:6;18852:14;18832:18;18829:38;18826:2;;;18909:10;18904:3;18900:20;18897:1;18890:31;18944:4;18941:1;18934:15;18972:4;18969:1;18962:15;18826:2;;18668:325;;;:::o;18998:135::-;;-1:-1:-1;;19058:17:1;;19055:2;;;19078:18;;:::i;:::-;-1:-1:-1;19125:1:1;19114:13;;19045:88::o;19138:112::-;;19196:1;19186:2;;19201:18;;:::i;:::-;-1:-1:-1;19235:9:1;;19176:74::o;19255:127::-;19316:10;19311:3;19307:20;19304:1;19297:31;19347:4;19344:1;19337:15;19371:4;19368:1;19361:15;19387:127;19448:10;19443:3;19439:20;19436:1;19429:31;19479:4;19476:1;19469:15;19503:4;19500:1;19493:15;19519:127;19580:10;19575:3;19571:20;19568:1;19561:31;19611:4;19608:1;19601:15;19635:4;19632:1;19625:15;19651:133;-1:-1:-1;;;;;;19727:32:1;;19717:43;;19707:2;;19774:1;19771;19764:12
Swarm Source
ipfs://605c47d7ced8e9458e951312d3496a40737c3b1ac458c49169186b5926129533
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.