Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 596 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21513876 | 6 days ago | IN | 0 ETH | 0.00007885 | ||||
Set Approval For... | 18840595 | 380 days ago | IN | 0 ETH | 0.00176344 | ||||
Set Approval For... | 16486882 | 710 days ago | IN | 0 ETH | 0.00065809 | ||||
Safe Transfer Fr... | 16208965 | 749 days ago | IN | 0 ETH | 0.00219579 | ||||
Safe Transfer Fr... | 16208932 | 749 days ago | IN | 0 ETH | 0.00237661 | ||||
Safe Transfer Fr... | 15763326 | 811 days ago | IN | 0 ETH | 0.00252426 | ||||
Safe Transfer Fr... | 15763324 | 811 days ago | IN | 0 ETH | 0.00274394 | ||||
Transfer From | 15628334 | 830 days ago | IN | 0 ETH | 0.00049282 | ||||
Transfer From | 15628332 | 830 days ago | IN | 0 ETH | 0.00031143 | ||||
Set Approval For... | 15628283 | 830 days ago | IN | 0 ETH | 0.00078696 | ||||
Transfer From | 15554104 | 841 days ago | IN | 0 ETH | 0.00056441 | ||||
Safe Transfer Fr... | 15507282 | 848 days ago | IN | 0 ETH | 0.00142789 | ||||
Safe Transfer Fr... | 15507281 | 848 days ago | IN | 0 ETH | 0.00142737 | ||||
Safe Transfer Fr... | 15507280 | 848 days ago | IN | 0 ETH | 0.00144584 | ||||
Safe Transfer Fr... | 15391236 | 867 days ago | IN | 0 ETH | 0.00467003 | ||||
Safe Transfer Fr... | 15229341 | 892 days ago | IN | 0 ETH | 0.00103449 | ||||
Safe Transfer Fr... | 15229319 | 892 days ago | IN | 0 ETH | 0.00155901 | ||||
Safe Transfer Fr... | 15229317 | 892 days ago | IN | 0 ETH | 0.00160845 | ||||
Safe Transfer Fr... | 15229314 | 892 days ago | IN | 0 ETH | 0.00125063 | ||||
Safe Transfer Fr... | 15229314 | 892 days ago | IN | 0 ETH | 0.00125063 | ||||
Safe Transfer Fr... | 15229292 | 892 days ago | IN | 0 ETH | 0.00101938 | ||||
Safe Transfer Fr... | 15229290 | 892 days ago | IN | 0 ETH | 0.00107625 | ||||
Safe Transfer Fr... | 15229288 | 892 days ago | IN | 0 ETH | 0.00089603 | ||||
Safe Transfer Fr... | 15217487 | 894 days ago | IN | 0 ETH | 0.00033891 | ||||
Safe Transfer Fr... | 15217487 | 894 days ago | IN | 0 ETH | 0.00157621 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14760296 | 969 days ago | 9.1 ETH |
Loading...
Loading
Contract Name:
QUIK
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-14 */ // SPDX-License-Identifier: GPL-3.0 pragma solidity =0.8.11; // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @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; } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // OpenZeppelin Contracts v4.4.0 (token/common/ERC2981.sol) /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Royalty.sol) /** * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment * information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC721Royalty is ERC2981, ERC721 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); _resetTokenRoyalty(tokenId); } } // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract QUIK is ERC721Royalty, Ownable { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIds; string public baseUri; //Base uri for metadata uint256 public mintingFee = 0.001 ether; //Minting Fee string public TLD; // TLD for domain // Mapping if certain name string has already been reserved mapping (string => bool) public registeredDomain; // Mapping for token id to Domain name mapping (uint256 => string) public tokenDomain; //whitelist Address for Pre-minting mapping (address=>bool) public whitelistedAddress; bool public isOnlyWhitelist = true; // quik marketplace address marketplaceContract; //event event DomainMinted(uint256 tokenId,string domain, address minter); constructor(string memory _name, string memory _symbol, string memory _baseUri, string memory _tld, address _marketplaceContract) ERC721(_name, _symbol) { baseUri = _baseUri; TLD = _tld; marketplaceContract = _marketplaceContract; } function validateName(string memory str) internal pure returns (bool){ bytes memory b = bytes(str); if(b.length < 1) return false; if(b.length > 49) return false; // Cannot be longer than 49 characters if(b[0] == 0x20) return false; // Leading space if (b[b.length - 1] == 0x20) return false; // Trailing space for(uint i; i<b.length; i++){ bytes1 char = b[i]; if (char == 0x20) return false; // Cannot contain spaces if( !(char >= 0x30 && char <= 0x39) && //9-0 !(char >= 0x61 && char <= 0x7A) && //a-z !(char == 0x2D) //- carriage return ) return false; } return true; } ///@notice Mints new token with given details ///@param _name domain name to mint function mintDomain(string memory _name) public payable{ require(!isOnlyWhitelist || whitelistedAddress[msg.sender], "Not open for public minting!"); if(!whitelistedAddress[msg.sender]) require(msg.value >= mintingFee, "Not enough minting fee!"); require(validateName(_name), "Not Valid Name!"); require(!isdomainNameReserved(_name), "Already Registered!"); if(!isApprovedForAll(msg.sender, marketplaceContract)) _setApprovalForAll(msg.sender, marketplaceContract, true); registeredDomain[_name] = true; _tokenIds.increment(); uint256 newTokenId = _tokenIds.current(); tokenDomain[newTokenId] = _name; _mint(msg.sender, newTokenId); //500 royalty info _setTokenRoyalty(newTokenId, msg.sender, 500); emit DomainMinted(newTokenId, _name, msg.sender); } ///@notice Token URI for metadata for token ///@param _tokenId token id function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseUri).length > 0 ? string(abi.encodePacked(baseUri, _tokenId.toString(), ".json")) : ""; } ///@notice Checks if domain name is registered or not ///@param _nameString keccak256 hash for the domain function isdomainNameReserved(string memory _nameString) public view returns (bool) { return registeredDomain[_nameString]; } ///@notice Get full domain name for the tokenId ///@param _tokenId token id function getDomainName(uint256 _tokenId) public view returns (string memory domain){ domain = string(abi.encodePacked(tokenDomain[_tokenId],".",TLD)); } ///@notice Change the public minting ///@param _status status for public minting function onlyWhitelistAddressMintable(bool _status) external onlyOwner{ isOnlyWhitelist = _status; } ///@notice Add the wallet for whitelisted address for free minting ///@param _wallet wallet of user function addWhitelistedAddress(address _wallet) external onlyOwner{ whitelistedAddress[_wallet] = true; } ///@notice Remove the wallet from whitelisted address for free minting ///@param _wallet wallet of user function removeWhitelistedAddress(address _wallet) external onlyOwner{ whitelistedAddress[_wallet] = false; } ///@notice Update Minting fee for token ///@param _mintFee Minitng fee to set function updateMintFee(uint256 _mintFee) external onlyOwner{ mintingFee = _mintFee; } ///@notice Update address for marketplace contract ///@param _marketplaceContract marketplace contract address function updateMarketplace(address _marketplaceContract) external onlyOwner{ marketplaceContract = _marketplaceContract; } ///@notice Withdraw Ether in the contract by owner function withdraw() external payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"string","name":"_tld","type":"string"},{"internalType":"address","name":"_marketplaceContract","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"domain","type":"string"},{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"DomainMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TLD","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"addWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getDomainName","outputs":[{"internalType":"string","name":"domain","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOnlyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_nameString","type":"string"}],"name":"isdomainNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"mintDomain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"onlyWhitelistAddressMintable","outputs":[],"stateMutability":"nonpayable","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":"string","name":"","type":"string"}],"name":"registeredDomain","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"removeWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"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":"","type":"uint256"}],"name":"tokenDomain","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_marketplaceContract","type":"address"}],"name":"updateMarketplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"updateMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405266038d7ea4c68000600b556010805460ff191660011790553480156200002957600080fd5b5060405162002838380380620028388339810160408190526200004c91620002be565b845185908590620000659060029060208501906200014b565b5080516200007b9060039060208401906200014b565b5050506200009862000092620000f560201b60201c565b620000f9565b8251620000ad90600a9060208601906200014b565b508151620000c390600c9060208501906200014b565b50601080546001600160a01b0390921661010002610100600160a81b031990921691909117905550620003d892505050565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000159906200039b565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021957600080fd5b81516001600160401b0380821115620002365762000236620001f1565b604051601f8301601f19908116603f01168101908282118183101715620002615762000261620001f1565b816040528381526020925086838588010111156200027e57600080fd5b600091505b83821015620002a2578582018301518183018401529082019062000283565b83821115620002b45760008385830101525b9695505050505050565b600080600080600060a08688031215620002d757600080fd5b85516001600160401b0380821115620002ef57600080fd5b620002fd89838a0162000207565b965060208801519150808211156200031457600080fd5b6200032289838a0162000207565b955060408801519150808211156200033957600080fd5b6200034789838a0162000207565b945060608801519150808211156200035e57600080fd5b506200036d8882890162000207565b608088015190935090506001600160a01b03811681146200038d57600080fd5b809150509295509295909350565b600181811c90821680620003b057607f821691505b60208210811415620003d257634e487b7160e01b600052602260045260246000fd5b50919050565b61245080620003e86000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d5780639e8e12b4116100a0578063c319a11f1161006f578063c319a11f146105a6578063c87b56dd146105b9578063e985e9c5146105d9578063eb636317146105f9578063f2fde38b1461061957600080fd5b80639e8e12b414610516578063a22cb46514610536578063b88d4fde14610556578063c30796ab1461057657600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049357806395d89b41146104b157806397c6fd17146104c65780639abc83201461050157600080fd5b806370a082311461041e578063715018a61461043e57806374b969311461045357806384017e521461047357600080fd5b80632a55205a11610185578063530cd5ab11610154578063530cd5ab146103a05780635a64ad95146103c05780636352211e146103e45780636f50c93c1461040457600080fd5b80632a55205a146103195780633ccfd60b1461035857806340fcfc071461036057806342842e0e1461038057600080fd5b8063095ea7b3116101c1578063095ea7b3146102a257806313a0bd7e146102c457806323b872dd146102d957806329975b43146102f957600080fd5b806301ffc9a7146101f357806306fdde03146102285780630810176e1461024a578063081812fc1461026a575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611d55565b610639565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064a565b60405161021f9190611dd1565b34801561025657600080fd5b50610213610265366004611e70565b6106dc565b34801561027657600080fd5b5061028a610285366004611eb9565b610707565b6040516001600160a01b03909116815260200161021f565b3480156102ae57600080fd5b506102c26102bd366004611eee565b6107a1565b005b3480156102d057600080fd5b5061023d6108b7565b3480156102e557600080fd5b506102c26102f4366004611f18565b610945565b34801561030557600080fd5b506102c2610314366004611f54565b610976565b34801561032557600080fd5b50610339610334366004611f6f565b6109c4565b604080516001600160a01b03909316835260208301919091520161021f565b6102c2610a70565b34801561036c57600080fd5b5061023d61037b366004611eb9565b610b0e565b34801561038c57600080fd5b506102c261039b366004611f18565b610b27565b3480156103ac57600080fd5b506102c26103bb366004611f54565b610b42565b3480156103cc57600080fd5b506103d6600b5481565b60405190815260200161021f565b3480156103f057600080fd5b5061028a6103ff366004611eb9565b610b8d565b34801561041057600080fd5b506010546102139060ff1681565b34801561042a57600080fd5b506103d6610439366004611f54565b610c04565b34801561044a57600080fd5b506102c2610c8b565b34801561045f57600080fd5b5061023d61046e366004611eb9565b610cc1565b34801561047f57600080fd5b506102c261048e366004611eb9565b610cff565b34801561049f57600080fd5b506008546001600160a01b031661028a565b3480156104bd57600080fd5b5061023d610d2e565b3480156104d257600080fd5b506102136104e1366004611e70565b8051602081830181018051600d8252928201919093012091525460ff1681565b34801561050d57600080fd5b5061023d610d3d565b34801561052257600080fd5b506102c2610531366004611fa1565b610d4a565b34801561054257600080fd5b506102c2610551366004611fbc565b610d87565b34801561056257600080fd5b506102c2610571366004611fef565b610d96565b34801561058257600080fd5b50610213610591366004611f54565b600f6020526000908152604090205460ff1681565b6102c26105b4366004611e70565b610dce565b3480156105c557600080fd5b5061023d6105d4366004611eb9565b61103b565b3480156105e557600080fd5b506102136105f436600461206b565b611101565b34801561060557600080fd5b506102c2610614366004611f54565b61112f565b34801561062557600080fd5b506102c2610634366004611f54565b611181565b600061064482611219565b92915050565b60606002805461065990612095565b80601f016020809104026020016040519081016040528092919081815260200182805461068590612095565b80156106d25780601f106106a7576101008083540402835291602001916106d2565b820191906000526020600020905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b6000600d826040516106ee91906120d0565b9081526040519081900360200190205460ff1692915050565b6000818152600460205260408120546001600160a01b03166107855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ac82610b8d565b9050806001600160a01b0316836001600160a01b0316141561081a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161077c565b336001600160a01b038216148061083657506108368133611101565b6108a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161077c565b6108b28383611259565b505050565b600c80546108c490612095565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090612095565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505081565b61094f33826112c7565b61096b5760405162461bcd60e51b815260040161077c906120ec565b6108b283838361139e565b6008546001600160a01b031633146109a05760405162461bcd60e51b815260040161077c9061213d565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a395750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a58906001600160601b031687612188565b610a6291906121bd565b915196919550909350505050565b6008546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161077c9061213d565b6000610aae6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610af8576040519150601f19603f3d011682016040523d82523d6000602084013e610afd565b606091505b5050905080610b0b57600080fd5b50565b600e60205260009081526040902080546108c490612095565b6108b283838360405180602001604052806000815250610d96565b6008546001600160a01b03163314610b6c5760405162461bcd60e51b815260040161077c9061213d565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000818152600460205260408120546001600160a01b0316806106445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161077c565b60006001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161077c565b506001600160a01b031660009081526005602052604090205490565b6008546001600160a01b03163314610cb55760405162461bcd60e51b815260040161077c9061213d565b610cbf600061153a565b565b6060600e6000838152602001908152602001600020600c604051602001610ce992919061226b565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610d295760405162461bcd60e51b815260040161077c9061213d565b600b55565b60606003805461065990612095565b600a80546108c490612095565b6008546001600160a01b03163314610d745760405162461bcd60e51b815260040161077c9061213d565b6010805460ff1916911515919091179055565b610d9233838361158c565b5050565b610da033836112c7565b610dbc5760405162461bcd60e51b815260040161077c906120ec565b610dc88484848461165b565b50505050565b60105460ff161580610def5750336000908152600f602052604090205460ff165b610e3b5760405162461bcd60e51b815260206004820152601c60248201527f4e6f74206f70656e20666f72207075626c6963206d696e74696e672100000000604482015260640161077c565b336000908152600f602052604090205460ff16610ea457600b54341015610ea45760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768206d696e74696e672066656521000000000000000000604482015260640161077c565b610ead8161168e565b610eeb5760405162461bcd60e51b815260206004820152600f60248201526e4e6f742056616c6964204e616d652160881b604482015260640161077c565b610ef4816106dc565b15610f375760405162461bcd60e51b8152602060048201526013602482015272416c726561647920526567697374657265642160681b604482015260640161077c565b601054610f5390339061010090046001600160a01b0316611101565b610f7557601054610f7590339061010090046001600160a01b0316600161158c565b6001600d82604051610f8791906120d0565b908152604051908190036020019020805491151560ff19909216919091179055610fb5600980546001019055565b6000610fc060095490565b6000818152600e602090815260409091208451929350610fe4929091850190611ca6565b50610fef3382611825565b610ffc81336101f4611967565b7f0e431fa36c8fa113ab180c80dddb81b59911b7c16b785a5838ff15cd5fd0420481833360405161102f93929190612294565b60405180910390a15050565b6000818152600460205260409020546060906001600160a01b03166110ba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077c565b6000600a80546110c990612095565b9050116110e55760405180602001604052806000815250610644565b600a6110f083611a75565b604051602001610ce99291906122c5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146111595760405162461bcd60e51b815260040161077c9061213d565b601080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b031633146111ab5760405162461bcd60e51b815260040161077c9061213d565b6001600160a01b0381166112105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b610b0b8161153a565b60006001600160e01b031982166380ac58cd60e01b148061124a57506001600160e01b03198216635b5e139f60e01b145b80610644575061064482611b73565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128e82610b8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166113405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077c565b600061134b83610b8d565b9050806001600160a01b0316846001600160a01b031614806113865750836001600160a01b031661137b84610707565b6001600160a01b0316145b8061139657506113968185611101565b949350505050565b826001600160a01b03166113b182610b8d565b6001600160a01b0316146114155760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161077c565b6001600160a01b0382166114775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161077c565b611482600082611259565b6001600160a01b03831660009081526005602052604081208054600192906114ab9084906122fa565b90915550506001600160a01b03821660009081526005602052604081208054600192906114d9908490612311565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115ee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161077c565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61166684848461139e565b61167284848484611ba8565b610dc85760405162461bcd60e51b815260040161077c90612329565b6000808290506001815110156116a75750600092915050565b6031815111156116ba5750600092915050565b806000815181106116cd576116cd61237b565b6020910101516001600160f81b031916600160fd1b14156116f15750600092915050565b806001825161170091906122fa565b815181106117105761171061237b565b6020910101516001600160f81b031916600160fd1b14156117345750600092915050565b60005b815181101561181b5760008282815181106117545761175461237b565b01602001516001600160f81b0319169050600160fd1b81141561177c57506000949350505050565b600360fc1b6001600160f81b03198216108015906117a85750603960f81b6001600160f81b0319821611155b1580156117de5750606160f81b6001600160f81b03198216108015906117dc5750603d60f91b6001600160f81b0319821611155b155b80156117f85750602d60f81b6001600160f81b0319821614155b1561180857506000949350505050565b508061181381612391565b915050611737565b5060019392505050565b6001600160a01b03821661187b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161077c565b6000818152600460205260409020546001600160a01b0316156118e05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161077c565b6001600160a01b0382166000908152600560205260408120805460019290611909908490612311565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6127106001600160601b03821611156119d55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161077c565b6001600160a01b038216611a2b5760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d65746572730000000000604482015260640161077c565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600190529190942093519051909116600160a01b029116179055565b606081611a995750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac35780611aad81612391565b9150611abc9050600a836121bd565b9150611a9d565b60008167ffffffffffffffff811115611ade57611ade611de4565b6040519080825280601f01601f191660200182016040528015611b08576020820181803683370190505b5090505b841561139657611b1d6001836122fa565b9150611b2a600a866123ac565b611b35906030612311565b60f81b818381518110611b4a57611b4a61237b565b60200101906001600160f81b031916908160001a905350611b6c600a866121bd565b9450611b0c565b60006001600160e01b0319821663152a902d60e11b148061064457506301ffc9a760e01b6001600160e01b0319831614610644565b60006001600160a01b0384163b15611c9b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bec9033908990889088906004016123c0565b6020604051808303816000875af1925050508015611c27575060408051601f3d908101601f19168201909252611c24918101906123fd565b60015b611c81573d808015611c55576040519150601f19603f3d011682016040523d82523d6000602084013e611c5a565b606091505b508051611c795760405162461bcd60e51b815260040161077c90612329565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611396565b506001949350505050565b828054611cb290612095565b90600052602060002090601f016020900481019282611cd45760008555611d1a565b82601f10611ced57805160ff1916838001178555611d1a565b82800160010185558215611d1a579182015b82811115611d1a578251825591602001919060010190611cff565b50611d26929150611d2a565b5090565b5b80821115611d265760008155600101611d2b565b6001600160e01b031981168114610b0b57600080fd5b600060208284031215611d6757600080fd5b8135611d7281611d3f565b9392505050565b60005b83811015611d94578181015183820152602001611d7c565b83811115610dc85750506000910152565b60008151808452611dbd816020860160208601611d79565b601f01601f19169290920160200192915050565b602081526000611d726020830184611da5565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e1557611e15611de4565b604051601f8501601f19908116603f01168101908282118183101715611e3d57611e3d611de4565b81604052809350858152868686011115611e5657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e8257600080fd5b813567ffffffffffffffff811115611e9957600080fd5b8201601f81018413611eaa57600080fd5b61139684823560208401611dfa565b600060208284031215611ecb57600080fd5b5035919050565b80356001600160a01b0381168114611ee957600080fd5b919050565b60008060408385031215611f0157600080fd5b611f0a83611ed2565b946020939093013593505050565b600080600060608486031215611f2d57600080fd5b611f3684611ed2565b9250611f4460208501611ed2565b9150604084013590509250925092565b600060208284031215611f6657600080fd5b611d7282611ed2565b60008060408385031215611f8257600080fd5b50508035926020909101359150565b80358015158114611ee957600080fd5b600060208284031215611fb357600080fd5b611d7282611f91565b60008060408385031215611fcf57600080fd5b611fd883611ed2565b9150611fe660208401611f91565b90509250929050565b6000806000806080858703121561200557600080fd5b61200e85611ed2565b935061201c60208601611ed2565b925060408501359150606085013567ffffffffffffffff81111561203f57600080fd5b8501601f8101871361205057600080fd5b61205f87823560208401611dfa565b91505092959194509250565b6000806040838503121561207e57600080fd5b61208783611ed2565b9150611fe660208401611ed2565b600181811c908216806120a957607f821691505b602082108114156120ca57634e487b7160e01b600052602260045260246000fd5b50919050565b600082516120e2818460208701611d79565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121a2576121a2612172565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826121cc576121cc6121a7565b500490565b8054600090600181811c90808316806121eb57607f831692505b602080841082141561220d57634e487b7160e01b600052602260045260246000fd5b81801561222157600181146122325761225f565b60ff1986168952848901965061225f565b60008881526020902060005b868110156122575781548b82015290850190830161223e565b505084890196505b50505050505092915050565b600061227782856121d1565b601760f91b815261228b60018201856121d1565b95945050505050565b8381526060602082015260006122ad6060830185611da5565b905060018060a01b0383166040830152949350505050565b60006122d182856121d1565b83516122e1818360208801611d79565b64173539b7b760d91b9101908152600501949350505050565b60008282101561230c5761230c612172565b500390565b6000821982111561232457612324612172565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156123a5576123a5612172565b5060010190565b6000826123bb576123bb6121a7565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f390830184611da5565b9695505050505050565b60006020828403121561240f57600080fd5b8151611d7281611d3f56fea2646970667358221220f433239ed63e70fb807c805ebac54e5248293e2aec536efa7d7bbdf0e2a156fd64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000b72d2758d167b0a23c5b2fb27cf3a2360a33de51000000000000000000000000000000000000000000000000000000000000001a646f74204d455441564552534520446f6d61696e204e616d657300000000000000000000000000000000000000000000000000000000000000000000000000094d455441564552534500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000049697066733a2f2f516d6354665235574665364a553768476a5554467979597736745a743455384e336d6b734e536a775a63393477362f6d65746176657273652d6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d45544156455253450000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d5780639e8e12b4116100a0578063c319a11f1161006f578063c319a11f146105a6578063c87b56dd146105b9578063e985e9c5146105d9578063eb636317146105f9578063f2fde38b1461061957600080fd5b80639e8e12b414610516578063a22cb46514610536578063b88d4fde14610556578063c30796ab1461057657600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049357806395d89b41146104b157806397c6fd17146104c65780639abc83201461050157600080fd5b806370a082311461041e578063715018a61461043e57806374b969311461045357806384017e521461047357600080fd5b80632a55205a11610185578063530cd5ab11610154578063530cd5ab146103a05780635a64ad95146103c05780636352211e146103e45780636f50c93c1461040457600080fd5b80632a55205a146103195780633ccfd60b1461035857806340fcfc071461036057806342842e0e1461038057600080fd5b8063095ea7b3116101c1578063095ea7b3146102a257806313a0bd7e146102c457806323b872dd146102d957806329975b43146102f957600080fd5b806301ffc9a7146101f357806306fdde03146102285780630810176e1461024a578063081812fc1461026a575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611d55565b610639565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064a565b60405161021f9190611dd1565b34801561025657600080fd5b50610213610265366004611e70565b6106dc565b34801561027657600080fd5b5061028a610285366004611eb9565b610707565b6040516001600160a01b03909116815260200161021f565b3480156102ae57600080fd5b506102c26102bd366004611eee565b6107a1565b005b3480156102d057600080fd5b5061023d6108b7565b3480156102e557600080fd5b506102c26102f4366004611f18565b610945565b34801561030557600080fd5b506102c2610314366004611f54565b610976565b34801561032557600080fd5b50610339610334366004611f6f565b6109c4565b604080516001600160a01b03909316835260208301919091520161021f565b6102c2610a70565b34801561036c57600080fd5b5061023d61037b366004611eb9565b610b0e565b34801561038c57600080fd5b506102c261039b366004611f18565b610b27565b3480156103ac57600080fd5b506102c26103bb366004611f54565b610b42565b3480156103cc57600080fd5b506103d6600b5481565b60405190815260200161021f565b3480156103f057600080fd5b5061028a6103ff366004611eb9565b610b8d565b34801561041057600080fd5b506010546102139060ff1681565b34801561042a57600080fd5b506103d6610439366004611f54565b610c04565b34801561044a57600080fd5b506102c2610c8b565b34801561045f57600080fd5b5061023d61046e366004611eb9565b610cc1565b34801561047f57600080fd5b506102c261048e366004611eb9565b610cff565b34801561049f57600080fd5b506008546001600160a01b031661028a565b3480156104bd57600080fd5b5061023d610d2e565b3480156104d257600080fd5b506102136104e1366004611e70565b8051602081830181018051600d8252928201919093012091525460ff1681565b34801561050d57600080fd5b5061023d610d3d565b34801561052257600080fd5b506102c2610531366004611fa1565b610d4a565b34801561054257600080fd5b506102c2610551366004611fbc565b610d87565b34801561056257600080fd5b506102c2610571366004611fef565b610d96565b34801561058257600080fd5b50610213610591366004611f54565b600f6020526000908152604090205460ff1681565b6102c26105b4366004611e70565b610dce565b3480156105c557600080fd5b5061023d6105d4366004611eb9565b61103b565b3480156105e557600080fd5b506102136105f436600461206b565b611101565b34801561060557600080fd5b506102c2610614366004611f54565b61112f565b34801561062557600080fd5b506102c2610634366004611f54565b611181565b600061064482611219565b92915050565b60606002805461065990612095565b80601f016020809104026020016040519081016040528092919081815260200182805461068590612095565b80156106d25780601f106106a7576101008083540402835291602001916106d2565b820191906000526020600020905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b6000600d826040516106ee91906120d0565b9081526040519081900360200190205460ff1692915050565b6000818152600460205260408120546001600160a01b03166107855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ac82610b8d565b9050806001600160a01b0316836001600160a01b0316141561081a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161077c565b336001600160a01b038216148061083657506108368133611101565b6108a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161077c565b6108b28383611259565b505050565b600c80546108c490612095565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090612095565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505081565b61094f33826112c7565b61096b5760405162461bcd60e51b815260040161077c906120ec565b6108b283838361139e565b6008546001600160a01b031633146109a05760405162461bcd60e51b815260040161077c9061213d565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a395750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a58906001600160601b031687612188565b610a6291906121bd565b915196919550909350505050565b6008546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161077c9061213d565b6000610aae6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610af8576040519150601f19603f3d011682016040523d82523d6000602084013e610afd565b606091505b5050905080610b0b57600080fd5b50565b600e60205260009081526040902080546108c490612095565b6108b283838360405180602001604052806000815250610d96565b6008546001600160a01b03163314610b6c5760405162461bcd60e51b815260040161077c9061213d565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000818152600460205260408120546001600160a01b0316806106445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161077c565b60006001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161077c565b506001600160a01b031660009081526005602052604090205490565b6008546001600160a01b03163314610cb55760405162461bcd60e51b815260040161077c9061213d565b610cbf600061153a565b565b6060600e6000838152602001908152602001600020600c604051602001610ce992919061226b565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610d295760405162461bcd60e51b815260040161077c9061213d565b600b55565b60606003805461065990612095565b600a80546108c490612095565b6008546001600160a01b03163314610d745760405162461bcd60e51b815260040161077c9061213d565b6010805460ff1916911515919091179055565b610d9233838361158c565b5050565b610da033836112c7565b610dbc5760405162461bcd60e51b815260040161077c906120ec565b610dc88484848461165b565b50505050565b60105460ff161580610def5750336000908152600f602052604090205460ff165b610e3b5760405162461bcd60e51b815260206004820152601c60248201527f4e6f74206f70656e20666f72207075626c6963206d696e74696e672100000000604482015260640161077c565b336000908152600f602052604090205460ff16610ea457600b54341015610ea45760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768206d696e74696e672066656521000000000000000000604482015260640161077c565b610ead8161168e565b610eeb5760405162461bcd60e51b815260206004820152600f60248201526e4e6f742056616c6964204e616d652160881b604482015260640161077c565b610ef4816106dc565b15610f375760405162461bcd60e51b8152602060048201526013602482015272416c726561647920526567697374657265642160681b604482015260640161077c565b601054610f5390339061010090046001600160a01b0316611101565b610f7557601054610f7590339061010090046001600160a01b0316600161158c565b6001600d82604051610f8791906120d0565b908152604051908190036020019020805491151560ff19909216919091179055610fb5600980546001019055565b6000610fc060095490565b6000818152600e602090815260409091208451929350610fe4929091850190611ca6565b50610fef3382611825565b610ffc81336101f4611967565b7f0e431fa36c8fa113ab180c80dddb81b59911b7c16b785a5838ff15cd5fd0420481833360405161102f93929190612294565b60405180910390a15050565b6000818152600460205260409020546060906001600160a01b03166110ba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077c565b6000600a80546110c990612095565b9050116110e55760405180602001604052806000815250610644565b600a6110f083611a75565b604051602001610ce99291906122c5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146111595760405162461bcd60e51b815260040161077c9061213d565b601080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b031633146111ab5760405162461bcd60e51b815260040161077c9061213d565b6001600160a01b0381166112105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b610b0b8161153a565b60006001600160e01b031982166380ac58cd60e01b148061124a57506001600160e01b03198216635b5e139f60e01b145b80610644575061064482611b73565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128e82610b8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166113405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077c565b600061134b83610b8d565b9050806001600160a01b0316846001600160a01b031614806113865750836001600160a01b031661137b84610707565b6001600160a01b0316145b8061139657506113968185611101565b949350505050565b826001600160a01b03166113b182610b8d565b6001600160a01b0316146114155760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161077c565b6001600160a01b0382166114775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161077c565b611482600082611259565b6001600160a01b03831660009081526005602052604081208054600192906114ab9084906122fa565b90915550506001600160a01b03821660009081526005602052604081208054600192906114d9908490612311565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115ee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161077c565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61166684848461139e565b61167284848484611ba8565b610dc85760405162461bcd60e51b815260040161077c90612329565b6000808290506001815110156116a75750600092915050565b6031815111156116ba5750600092915050565b806000815181106116cd576116cd61237b565b6020910101516001600160f81b031916600160fd1b14156116f15750600092915050565b806001825161170091906122fa565b815181106117105761171061237b565b6020910101516001600160f81b031916600160fd1b14156117345750600092915050565b60005b815181101561181b5760008282815181106117545761175461237b565b01602001516001600160f81b0319169050600160fd1b81141561177c57506000949350505050565b600360fc1b6001600160f81b03198216108015906117a85750603960f81b6001600160f81b0319821611155b1580156117de5750606160f81b6001600160f81b03198216108015906117dc5750603d60f91b6001600160f81b0319821611155b155b80156117f85750602d60f81b6001600160f81b0319821614155b1561180857506000949350505050565b508061181381612391565b915050611737565b5060019392505050565b6001600160a01b03821661187b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161077c565b6000818152600460205260409020546001600160a01b0316156118e05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161077c565b6001600160a01b0382166000908152600560205260408120805460019290611909908490612311565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6127106001600160601b03821611156119d55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161077c565b6001600160a01b038216611a2b5760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d65746572730000000000604482015260640161077c565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600190529190942093519051909116600160a01b029116179055565b606081611a995750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac35780611aad81612391565b9150611abc9050600a836121bd565b9150611a9d565b60008167ffffffffffffffff811115611ade57611ade611de4565b6040519080825280601f01601f191660200182016040528015611b08576020820181803683370190505b5090505b841561139657611b1d6001836122fa565b9150611b2a600a866123ac565b611b35906030612311565b60f81b818381518110611b4a57611b4a61237b565b60200101906001600160f81b031916908160001a905350611b6c600a866121bd565b9450611b0c565b60006001600160e01b0319821663152a902d60e11b148061064457506301ffc9a760e01b6001600160e01b0319831614610644565b60006001600160a01b0384163b15611c9b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bec9033908990889088906004016123c0565b6020604051808303816000875af1925050508015611c27575060408051601f3d908101601f19168201909252611c24918101906123fd565b60015b611c81573d808015611c55576040519150601f19603f3d011682016040523d82523d6000602084013e611c5a565b606091505b508051611c795760405162461bcd60e51b815260040161077c90612329565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611396565b506001949350505050565b828054611cb290612095565b90600052602060002090601f016020900481019282611cd45760008555611d1a565b82601f10611ced57805160ff1916838001178555611d1a565b82800160010185558215611d1a579182015b82811115611d1a578251825591602001919060010190611cff565b50611d26929150611d2a565b5090565b5b80821115611d265760008155600101611d2b565b6001600160e01b031981168114610b0b57600080fd5b600060208284031215611d6757600080fd5b8135611d7281611d3f565b9392505050565b60005b83811015611d94578181015183820152602001611d7c565b83811115610dc85750506000910152565b60008151808452611dbd816020860160208601611d79565b601f01601f19169290920160200192915050565b602081526000611d726020830184611da5565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e1557611e15611de4565b604051601f8501601f19908116603f01168101908282118183101715611e3d57611e3d611de4565b81604052809350858152868686011115611e5657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e8257600080fd5b813567ffffffffffffffff811115611e9957600080fd5b8201601f81018413611eaa57600080fd5b61139684823560208401611dfa565b600060208284031215611ecb57600080fd5b5035919050565b80356001600160a01b0381168114611ee957600080fd5b919050565b60008060408385031215611f0157600080fd5b611f0a83611ed2565b946020939093013593505050565b600080600060608486031215611f2d57600080fd5b611f3684611ed2565b9250611f4460208501611ed2565b9150604084013590509250925092565b600060208284031215611f6657600080fd5b611d7282611ed2565b60008060408385031215611f8257600080fd5b50508035926020909101359150565b80358015158114611ee957600080fd5b600060208284031215611fb357600080fd5b611d7282611f91565b60008060408385031215611fcf57600080fd5b611fd883611ed2565b9150611fe660208401611f91565b90509250929050565b6000806000806080858703121561200557600080fd5b61200e85611ed2565b935061201c60208601611ed2565b925060408501359150606085013567ffffffffffffffff81111561203f57600080fd5b8501601f8101871361205057600080fd5b61205f87823560208401611dfa565b91505092959194509250565b6000806040838503121561207e57600080fd5b61208783611ed2565b9150611fe660208401611ed2565b600181811c908216806120a957607f821691505b602082108114156120ca57634e487b7160e01b600052602260045260246000fd5b50919050565b600082516120e2818460208701611d79565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121a2576121a2612172565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826121cc576121cc6121a7565b500490565b8054600090600181811c90808316806121eb57607f831692505b602080841082141561220d57634e487b7160e01b600052602260045260246000fd5b81801561222157600181146122325761225f565b60ff1986168952848901965061225f565b60008881526020902060005b868110156122575781548b82015290850190830161223e565b505084890196505b50505050505092915050565b600061227782856121d1565b601760f91b815261228b60018201856121d1565b95945050505050565b8381526060602082015260006122ad6060830185611da5565b905060018060a01b0383166040830152949350505050565b60006122d182856121d1565b83516122e1818360208801611d79565b64173539b7b760d91b9101908152600501949350505050565b60008282101561230c5761230c612172565b500390565b6000821982111561232457612324612172565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156123a5576123a5612172565b5060010190565b6000826123bb576123bb6121a7565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f390830184611da5565b9695505050505050565b60006020828403121561240f57600080fd5b8151611d7281611d3f56fea2646970667358221220f433239ed63e70fb807c805ebac54e5248293e2aec536efa7d7bbdf0e2a156fd64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000b72d2758d167b0a23c5b2fb27cf3a2360a33de51000000000000000000000000000000000000000000000000000000000000001a646f74204d455441564552534520446f6d61696e204e616d657300000000000000000000000000000000000000000000000000000000000000000000000000094d455441564552534500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000049697066733a2f2f516d6354665235574665364a553768476a5554467979597736745a743455384e336d6b734e536a775a63393477362f6d65746176657273652d6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d45544156455253450000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): dot METAVERSE Domain Names
Arg [1] : _symbol (string): METAVERSE
Arg [2] : _baseUri (string): ipfs://QmcTfR5WFe6JU7hGjUTFyyYw6tZt4U8N3mksNSjwZc94w6/metaverse-metadata/
Arg [3] : _tld (string): METAVERSE
Arg [4] : _marketplaceContract (address): 0xB72D2758D167B0A23C5B2FB27CF3A2360A33de51
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 000000000000000000000000b72d2758d167b0a23c5b2fb27cf3a2360a33de51
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [6] : 646f74204d455441564552534520446f6d61696e204e616d6573000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 4d45544156455253450000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000049
Arg [10] : 697066733a2f2f516d6354665235574665364a553768476a5554467979597736
Arg [11] : 745a743455384e336d6b734e536a775a63393477362f6d65746176657273652d
Arg [12] : 6d657461646174612f0000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [14] : 4d45544156455253450000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43974:5022:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39703:170;;;;;;;;;;-1:-1:-1;39703:170:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39703:170:0;;;;;;;;21720:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47218:131::-;;;;;;;;;;-1:-1:-1;47218:131:0;;;;;:::i;:::-;;:::i;23279:221::-;;;;;;;;;;-1:-1:-1;23279:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2917:32:1;;;2899:51;;2887:2;2872:18;23279:221:0;2753:203:1;22802:411:0;;;;;;;;;;-1:-1:-1;22802:411:0;;;;;:::i;:::-;;:::i;:::-;;44240:17;;;;;;;;;;;;;:::i;24029:339::-;;;;;;;;;;-1:-1:-1;24029:339:0;;;;;:::i;:::-;;:::i;47942:119::-;;;;;;;;;;-1:-1:-1;47942:119:0;;;;;:::i;:::-;;:::i;36231:436::-;;;;;;;;;;-1:-1:-1;36231:436:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4367:32:1;;;4349:51;;4431:2;4416:18;;4409:34;;;;4322:18;36231:436:0;4175:274:1;48832:157:0;;;:::i;44440:46::-;;;;;;;;;;-1:-1:-1;44440:46:0;;;;;:::i;:::-;;:::i;24439:185::-;;;;;;;;;;-1:-1:-1;24439:185:0;;;;;:::i;:::-;;:::i;48184:123::-;;;;;;;;;;-1:-1:-1;48184:123:0;;;;;:::i;:::-;;:::i;44182:39::-;;;;;;;;;;;;;;;;;;;4600:25:1;;;4588:2;4573:18;44182:39:0;4454:177:1;21414:239:0;;;;;;;;;;-1:-1:-1;21414:239:0;;;;;:::i;:::-;;:::i;44588:34::-;;;;;;;;;;-1:-1:-1;44588:34:0;;;;;;;;21144:208;;;;;;;;;;-1:-1:-1;21144:208:0;;;;;:::i;:::-;;:::i;43157:103::-;;;;;;;;;;;;;:::i;47443:166::-;;;;;;;;;;-1:-1:-1;47443:166:0;;;;;:::i;:::-;;:::i;48403:99::-;;;;;;;;;;-1:-1:-1;48403:99:0;;;;;:::i;:::-;;:::i;42506:87::-;;;;;;;;;;-1:-1:-1;42579:6:0;;-1:-1:-1;;;;;42579:6:0;42506:87;;21889:104;;;;;;;;;;;;;:::i;44345:48::-;;;;;;;;;;-1:-1:-1;44345:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44128:21;;;;;;;;;;;;;:::i;47709:114::-;;;;;;;;;;-1:-1:-1;47709:114:0;;;;;:::i;:::-;;:::i;23572:155::-;;;;;;;;;;-1:-1:-1;23572:155:0;;;;;:::i;:::-;;:::i;24695:328::-;;;;;;;;;;-1:-1:-1;24695:328:0;;;;;:::i;:::-;;:::i;44534:49::-;;;;;;;;;;-1:-1:-1;44534:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45769:935;;;;;;:::i;:::-;;:::i;46797:299::-;;;;;;;;;;-1:-1:-1;46797:299:0;;;;;:::i;:::-;;:::i;23798:164::-;;;;;;;;;;-1:-1:-1;23798:164:0;;;;;:::i;:::-;;:::i;48632:136::-;;;;;;;;;;-1:-1:-1;48632:136:0;;;;;:::i;:::-;;:::i;43415:201::-;;;;;;;;;;-1:-1:-1;43415:201:0;;;;;:::i;:::-;;:::i;39703:170::-;39805:4;39829:36;39853:11;39829:23;:36::i;:::-;39822:43;39703:170;-1:-1:-1;;39703:170:0:o;21720:100::-;21774:13;21807:5;21800:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21720:100;:::o;47218:131::-;47296:4;47315:16;47332:11;47315:29;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47218:131;-1:-1:-1;;47218:131:0:o;23279:221::-;23355:7;26622:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26622:16:0;23375:73;;;;-1:-1:-1;;;23375:73:0;;7050:2:1;23375:73:0;;;7032:21:1;7089:2;7069:18;;;7062:30;7128:34;7108:18;;;7101:62;-1:-1:-1;;;7179:18:1;;;7172:42;7231:19;;23375:73:0;;;;;;;;;-1:-1:-1;23468:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23468:24:0;;23279:221::o;22802:411::-;22883:13;22899:23;22914:7;22899:14;:23::i;:::-;22883:39;;22947:5;-1:-1:-1;;;;;22941:11:0;:2;-1:-1:-1;;;;;22941:11:0;;;22933:57;;;;-1:-1:-1;;;22933:57:0;;7463:2:1;22933:57:0;;;7445:21:1;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;-1:-1:-1;;;7592:18:1;;;7585:31;7633:19;;22933:57:0;7261:397:1;22933:57:0;16377:10;-1:-1:-1;;;;;23025:21:0;;;;:62;;-1:-1:-1;23050:37:0;23067:5;16377:10;23798:164;:::i;23050:37::-;23003:168;;;;-1:-1:-1;;;23003:168:0;;7865:2:1;23003:168:0;;;7847:21:1;7904:2;7884:18;;;7877:30;7943:34;7923:18;;;7916:62;8014:26;7994:18;;;7987:54;8058:19;;23003:168:0;7663:420:1;23003:168:0;23184:21;23193:2;23197:7;23184:8;:21::i;:::-;22872:341;22802:411;;:::o;44240:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24029:339::-;24224:41;16377:10;24257:7;24224:18;:41::i;:::-;24216:103;;;;-1:-1:-1;;;24216:103:0;;;;;;;:::i;:::-;24332:28;24342:4;24348:2;24352:7;24332:9;:28::i;47942:119::-;42579:6;;-1:-1:-1;;;;;42579:6:0;16377:10;42726:23;42718:68;;;;-1:-1:-1;;;42718:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48019:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;48019:34:0::1;48049:4;48019:34;::::0;;47942:119::o;36231:436::-;36322:7;36380:27;;;:17;:27;;;;;;;;36351:56;;;;;;;;;-1:-1:-1;;;;;36351:56:0;;;;;-1:-1:-1;;;36351:56:0;;;-1:-1:-1;;;;;36351:56:0;;;;;;;;36322:7;;36420:92;;-1:-1:-1;36471:29:0;;;;;;;;;-1:-1:-1;36471:29:0;-1:-1:-1;;;;;36471:29:0;;;;-1:-1:-1;;;36471:29:0;;-1:-1:-1;;;;;36471:29:0;;;;;36420:92;36562:23;;;;36524:21;;37033:5;;36549:36;;-1:-1:-1;;;;;36549:36:0;:10;:36;:::i;:::-;36548:58;;;;:::i;:::-;36627:16;;;;;-1:-1:-1;36231:436:0;;-1:-1:-1;;;;36231:436:0:o;48832:157::-;42579:6;;-1:-1:-1;;;;;42579:6:0;16377:10;42726:23;42718:68;;;;-1:-1:-1;;;42718:68:0;;;;;;;:::i;:::-;48891:7:::1;48912;42579:6:::0;;-1:-1:-1;;;;;42579:6:0;;42506:87;48912:7:::1;-1:-1:-1::0;;;;;48904:21:0::1;48933;48904:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48890:69;;;48978:2;48970:11;;;::::0;::::1;;48879:110;48832:157::o:0;44440:46::-;;;;;;;;;;;;;;;;:::i;24439:185::-;24577:39;24594:4;24600:2;24604:7;24577:39;;;;;;;;;;;;:16;:39::i;48184:123::-;42579:6;;-1:-1:-1;;;;;42579:6:0;16377:10;42726:23;42718:68;;;;-1:-1:-1;;;42718:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48264:27:0::1;48294:5;48264:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;48264:35:0::1;::::0;;48184:123::o;21414:239::-;21486:7;21522:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21522:16:0;21557:19;21549:73;;;;-1:-1:-1;;;21549:73:0;;9841:2:1;21549:73:0;;;9823:21:1;9880:2;9860:18;;;9853:30;9919:34;9899:18;;;9892:62;-1:-1:-1;;;9970:18:1;;;9963:39;10019:19;;21549:73:0;9639:405:1;21144:208:0;21216:7;-1:-1:-1;;;;;21244:19:0;;21236:74;;;;-1:-1:-1;;;21236:74:0;;10251:2:1;21236:74:0;;;10233:21:1;10290:2;10270:18;;;10263:30;10329:34;10309:18;;;10302:62;-1:-1:-1;;;10380:18:1;;;10373:40;10430:19;;21236:74:0;10049:406:1;21236:74:0;-1:-1:-1;;;;;;21328:16:0;;;;;:9;:16;;;;;;;21144:208::o;43157:103::-;42579:6;;-1:-1:-1;;;;;42579:6:0;16377:10;42726:23;42718:68;;;;-1:-1:-1;;;42718:68:0;;;;;;;:::i;:::-;43222:30:::1;43249:1;43222:18;:30::i;:::-;43157:103::o:0;47443:166::-;47505:20;47570:11;:21;47582:8;47570:21;;;;;;;;;;;47596:3;47553:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47537:64;;47443:166;;;:::o;48403:99::-;42579:6;;-1:-1:-1;;;;;42579:6:0;16377:10;42726:23;42718:68;;;;-1:-1:-1;;;42718:68:0;;;;;;;:::i;:::-;48473:10:::1;:21:::0;48403:99::o;21889:104::-;21945:13;21978:7;21971:14;;;;;:::i;44128:21::-;;;;;;;:::i;47709:114::-;42579:6;;-1:-1:-1;;;;;42579:6:0;16377:10;42726:23;42718:68;;;;-1:-1:-1;;;42718:68:0;;;;;;;:::i;:::-;47790:15:::1;:25:::0;;-1:-1:-1;;47790:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47709:114::o;23572:155::-;23667:52;16377:10;23700:8;23710;23667:18;:52::i;:::-;23572:155;;:::o;24695:328::-;24870:41;16377:10;24903:7;24870:18;:41::i;:::-;24862:103;;;;-1:-1:-1;;;24862:103:0;;;;;;;:::i;:::-;24976:39;24990:4;24996:2;25000:7;25009:5;24976:13;:39::i;:::-;24695:328;;;;:::o;45769:935::-;45844:15;;;;45843:16;;:50;;-1:-1:-1;45882:10:0;45863:30;;;;:18;:30;;;;;;;;45843:50;45835:91;;;;-1:-1:-1;;;45835:91:0;;12202:2:1;45835:91:0;;;12184:21:1;12241:2;12221:18;;;12214:30;12280;12260:18;;;12253:58;12328:18;;45835:91:0;12000:352:1;45835:91:0;45970:10;45951:30;;;;:18;:30;;;;;;;;45947:108;;46017:10;;46004:9;:23;;45996:59;;;;-1:-1:-1;;;45996:59:0;;12559:2:1;45996:59:0;;;12541:21:1;12598:2;12578:18;;;12571:30;12637:25;12617:18;;;12610:53;12680:18;;45996:59:0;12357:347:1;45996:59:0;46084:19;46097:5;46084:12;:19::i;:::-;46076:47;;;;-1:-1:-1;;;46076:47:0;;12911:2:1;46076:47:0;;;12893:21:1;12950:2;12930:18;;;12923:30;-1:-1:-1;;;12969:18:1;;;12962:45;13024:18;;46076:47:0;12709:339:1;46076:47:0;46143:27;46164:5;46143:20;:27::i;:::-;46142:28;46134:60;;;;-1:-1:-1;;;46134:60:0;;13255:2:1;46134:60:0;;;13237:21:1;13294:2;13274:18;;;13267:30;-1:-1:-1;;;13313:18:1;;;13306:49;13372:18;;46134:60:0;13053:343:1;46134:60:0;46248:19;;46219:49;;46236:10;;46248:19;;;-1:-1:-1;;;;;46248:19:0;46219:16;:49::i;:::-;46215:125;;46314:19;;46283:57;;46302:10;;46314:19;;;-1:-1:-1;;;;;46314:19:0;;46283:18;:57::i;:::-;46379:4;46353:16;46370:5;46353:23;;;;;;:::i;:::-;;;;;;;;;;;;;;:30;;;;;-1:-1:-1;;46353:30:0;;;;;;;;;46396:21;:9;41147:19;;41165:1;41147:19;;;41058:127;46396:21;46428:18;46449:19;:9;41028:14;;40936:114;46449:19;46481:23;;;;:11;:23;;;;;;;;:31;;46428:40;;-1:-1:-1;46481:31:0;;:23;;:31;;;;:::i;:::-;;46523:29;46529:10;46541;46523:5;:29::i;:::-;46592:45;46609:10;46621;46633:3;46592:16;:45::i;:::-;46653:43;46666:10;46678:5;46685:10;46653:43;;;;;;;;:::i;:::-;;;;;;;;45824:880;45769:935;:::o;46797:299::-;26598:4;26622:16;;;:7;:16;;;;;;46871:13;;-1:-1:-1;;;;;26622:16:0;46897:77;;;;-1:-1:-1;;;46897:77:0;;13996:2:1;46897:77:0;;;13978:21:1;14035:2;14015:18;;;14008:30;14074:34;14054:18;;;14047:62;-1:-1:-1;;;14125:18:1;;;14118:45;14180:19;;46897:77:0;13794:411:1;46897:77:0;47016:1;46998:7;46992:21;;;;;:::i;:::-;;;:25;:96;;;;;;;;;;;;;;;;;47044:7;47053:19;:8;:17;:19::i;:::-;47027:55;;;;;;;;;:::i;23798:164::-;-1:-1:-1;;;;;23919:25:0;;;23895:4;23919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23798:164::o;48632:136::-;42579:6;;-1:-1:-1;;;;;42579:6:0;16377:10;42726:23;42718:68;;;;-1:-1:-1;;;42718:68:0;;;;;;;:::i;:::-;48718:19:::1;:42:::0;;-1:-1:-1;;;;;48718:42:0;;::::1;;;-1:-1:-1::0;;;;;;48718:42:0;;::::1;::::0;;;::::1;::::0;;48632:136::o;43415:201::-;42579:6;;-1:-1:-1;;;;;42579:6:0;16377:10;42726:23;42718:68;;;;-1:-1:-1;;;42718:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43504:22:0;::::1;43496:73;;;::::0;-1:-1:-1;;;43496:73:0;;14960:2:1;43496:73:0::1;::::0;::::1;14942:21:1::0;14999:2;14979:18;;;14972:30;15038:34;15018:18;;;15011:62;-1:-1:-1;;;15089:18:1;;;15082:36;15135:19;;43496:73:0::1;14758:402:1::0;43496:73:0::1;43580:28;43599:8;43580:18;:28::i;20775:305::-:0;20877:4;-1:-1:-1;;;;;;20914:40:0;;-1:-1:-1;;;20914:40:0;;:105;;-1:-1:-1;;;;;;;20971:48:0;;-1:-1:-1;;;20971:48:0;20914:105;:158;;;;21036:36;21060:11;21036:23;:36::i;30679:174::-;30754:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30754:29:0;-1:-1:-1;;;;;30754:29:0;;;;;;;;:24;;30808:23;30754:24;30808:14;:23::i;:::-;-1:-1:-1;;;;;30799:46:0;;;;;;;;;;;30679:174;;:::o;26827:348::-;26920:4;26622:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26622:16:0;26937:73;;;;-1:-1:-1;;;26937:73:0;;15367:2:1;26937:73:0;;;15349:21:1;15406:2;15386:18;;;15379:30;15445:34;15425:18;;;15418:62;-1:-1:-1;;;15496:18:1;;;15489:42;15548:19;;26937:73:0;15165:408:1;26937:73:0;27021:13;27037:23;27052:7;27037:14;:23::i;:::-;27021:39;;27090:5;-1:-1:-1;;;;;27079:16:0;:7;-1:-1:-1;;;;;27079:16:0;;:51;;;;27123:7;-1:-1:-1;;;;;27099:31:0;:20;27111:7;27099:11;:20::i;:::-;-1:-1:-1;;;;;27099:31:0;;27079:51;:87;;;;27134:32;27151:5;27158:7;27134:16;:32::i;:::-;27071:96;26827:348;-1:-1:-1;;;;26827:348:0:o;29936:625::-;30095:4;-1:-1:-1;;;;;30068:31:0;:23;30083:7;30068:14;:23::i;:::-;-1:-1:-1;;;;;30068:31:0;;30060:81;;;;-1:-1:-1;;;30060:81:0;;15780:2:1;30060:81:0;;;15762:21:1;15819:2;15799:18;;;15792:30;15858:34;15838:18;;;15831:62;-1:-1:-1;;;15909:18:1;;;15902:35;15954:19;;30060:81:0;15578:401:1;30060:81:0;-1:-1:-1;;;;;30160:16:0;;30152:65;;;;-1:-1:-1;;;30152:65:0;;16186:2:1;30152:65:0;;;16168:21:1;16225:2;16205:18;;;16198:30;16264:34;16244:18;;;16237:62;-1:-1:-1;;;16315:18:1;;;16308:34;16359:19;;30152:65:0;15984:400:1;30152:65:0;30334:29;30351:1;30355:7;30334:8;:29::i;:::-;-1:-1:-1;;;;;30376:15:0;;;;;;:9;:15;;;;;:20;;30395:1;;30376:15;:20;;30395:1;;30376:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30407:13:0;;;;;;:9;:13;;;;;:18;;30424:1;;30407:13;:18;;30424:1;;30407:18;:::i;:::-;;;;-1:-1:-1;;30436:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30436:21:0;-1:-1:-1;;;;;30436:21:0;;;;;;;;;30475:27;;30436:16;;30475:27;;;;;;;22872:341;22802:411;;:::o;43776:191::-;43869:6;;;-1:-1:-1;;;;;43886:17:0;;;-1:-1:-1;;;;;;43886:17:0;;;;;;;43919:40;;43869:6;;;43886:17;43869:6;;43919:40;;43850:16;;43919:40;43839:128;43776:191;:::o;30995:315::-;31150:8;-1:-1:-1;;;;;31141:17:0;:5;-1:-1:-1;;;;;31141:17:0;;;31133:55;;;;-1:-1:-1;;;31133:55:0;;16854:2:1;31133:55:0;;;16836:21:1;16893:2;16873:18;;;16866:30;16932:27;16912:18;;;16905:55;16977:18;;31133:55:0;16652:349:1;31133:55:0;-1:-1:-1;;;;;31199:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31199:46:0;;;;;;;;;;31261:41;;540::1;;;31261::0;;513:18:1;31261:41:0;;;;;;;30995:315;;;:::o;25905:::-;26062:28;26072:4;26078:2;26082:7;26062:9;:28::i;:::-;26109:48;26132:4;26138:2;26142:7;26151:5;26109:22;:48::i;:::-;26101:111;;;;-1:-1:-1;;;26101:111:0;;;;;;;:::i;45028:641::-;45092:4;45102:14;45125:3;45102:27;;45148:1;45137;:8;:12;45134:29;;;-1:-1:-1;45158:5:0;;45028:641;-1:-1:-1;;45028:641:0:o;45134:29::-;45182:2;45171:1;:8;:13;45168:30;;;-1:-1:-1;45193:5:0;;45028:641;-1:-1:-1;;45028:641:0:o;45168:30::-;45245:1;45247;45245:4;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;;;;;45245:4:0;-1:-1:-1;;;45245:12:0;45242:29;;;-1:-1:-1;45266:5:0;;45028:641;-1:-1:-1;;45028:641:0:o;45242:29::-;45297:1;45310;45299;:8;:12;;;;:::i;:::-;45297:15;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;;;;;45297:15:0;-1:-1:-1;;;45297:23:0;45293:41;;;-1:-1:-1;45329:5:0;;45028:641;-1:-1:-1;;45028:641:0:o;45293:41::-;45363:6;45359:290;45373:1;:8;45371:1;:10;45359:290;;;45393:11;45407:1;45409;45407:4;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;45407:4:0;;-1:-1:-1;;;;45423:12:0;;45419:30;;;-1:-1:-1;45444:5:0;;45028:641;-1:-1:-1;;;;45028:641:0:o;45419:30::-;-1:-1:-1;;;;;;;;;45494:12:0;;;;;;:28;;-1:-1:-1;;;;;;;;;;45510:12:0;;;;45494:28;45492:31;:77;;;;-1:-1:-1;;;;;;;;;;45540:12:0;;;;;;:28;;-1:-1:-1;;;;;;;;;;45556:12:0;;;;45540:28;45538:31;45492:77;:107;;;;-1:-1:-1;;;;;;;;;;45586:12:0;;;45584:15;45492:107;45483:160;;;-1:-1:-1;45638:5:0;;45028:641;-1:-1:-1;;;;45028:641:0:o;45483:160::-;-1:-1:-1;45383:3:0;;;;:::i;:::-;;;;45359:290;;;-1:-1:-1;45660:4:0;;45028:641;-1:-1:-1;;;45028:641:0:o;28511:439::-;-1:-1:-1;;;;;28591:16:0;;28583:61;;;;-1:-1:-1;;;28583:61:0;;17899:2:1;28583:61:0;;;17881:21:1;;;17918:18;;;17911:30;17977:34;17957:18;;;17950:62;18029:18;;28583:61:0;17697:356:1;28583:61:0;26598:4;26622:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26622:16:0;:30;28655:58;;;;-1:-1:-1;;;28655:58:0;;18260:2:1;28655:58:0;;;18242:21:1;18299:2;18279:18;;;18272:30;18338;18318:18;;;18311:58;18386:18;;28655:58:0;18058:352:1;28655:58:0;-1:-1:-1;;;;;28784:13:0;;;;;;:9;:13;;;;;:18;;28801:1;;28784:13;:18;;28801:1;;28784:18;:::i;:::-;;;;-1:-1:-1;;28813:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28813:21:0;-1:-1:-1;;;;;28813:21:0;;;;;;;;28852:33;;28813:16;;;28852:33;;28813:16;;28852:33;23572:155;;:::o;38144:390::-;37033:5;-1:-1:-1;;;;;38296:33:0;;;;38288:88;;;;-1:-1:-1;;;38288:88:0;;18617:2:1;38288:88:0;;;18599:21:1;18656:2;18636:18;;;18629:30;18695:34;18675:18;;;18668:62;-1:-1:-1;;;18746:18:1;;;18739:40;18796:19;;38288:88:0;18415:406:1;38288:88:0;-1:-1:-1;;;;;38395:22:0;;38387:62;;;;-1:-1:-1;;;38387:62:0;;19028:2:1;38387:62:0;;;19010:21:1;19067:2;19047:18;;;19040:30;19106:29;19086:18;;;19079:57;19153:18;;38387:62:0;18826:351:1;38387:62:0;38491:35;;;;;;;;-1:-1:-1;;;;;38491:35:0;;;;;-1:-1:-1;;;;;38491:35:0;;;;;;;;;;-1:-1:-1;38462:26:0;;;:17;:26;;;;;;:64;;;;;;;-1:-1:-1;;;38462:64:0;;;;;;38144:390::o;16794:723::-;16850:13;17071:10;17067:53;;-1:-1:-1;;17098:10:0;;;;;;;;;;;;-1:-1:-1;;;17098:10:0;;;;;16794:723::o;17067:53::-;17145:5;17130:12;17186:78;17193:9;;17186:78;;17219:8;;;;:::i;:::-;;-1:-1:-1;17242:10:0;;-1:-1:-1;17250:2:0;17242:10;;:::i;:::-;;;17186:78;;;17274:19;17306:6;17296:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17296:17:0;;17274:39;;17324:154;17331:10;;17324:154;;17358:11;17368:1;17358:11;;:::i;:::-;;-1:-1:-1;17427:10:0;17435:2;17427:5;:10;:::i;:::-;17414:24;;:2;:24;:::i;:::-;17401:39;;17384:6;17391;17384:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17384:56:0;;;;;;;;-1:-1:-1;17455:11:0;17464:2;17455:11;;:::i;:::-;;;17324:154;;35961:215;36063:4;-1:-1:-1;;;;;;36087:41:0;;-1:-1:-1;;;36087:41:0;;:81;;-1:-1:-1;;;;;;;;;;19430:40:0;;;36132:36;19321:157;31875:799;32030:4;-1:-1:-1;;;;;32051:13:0;;8725:19;:23;32047:620;;32087:72;;-1:-1:-1;;;32087:72:0;;-1:-1:-1;;;;;32087:36:0;;;;;:72;;16377:10;;32138:4;;32144:7;;32153:5;;32087:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32087:72:0;;;;;;;;-1:-1:-1;;32087:72:0;;;;;;;;;;;;:::i;:::-;;;32083:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32329:13:0;;32325:272;;32372:60;;-1:-1:-1;;;32372:60:0;;;;;;;:::i;32325:272::-;32547:6;32541:13;32532:6;32528:2;32524:15;32517:38;32083:529;-1:-1:-1;;;;;;32210:51:0;-1:-1:-1;;;32210:51:0;;-1:-1:-1;32203:58:0;;32047:620;-1:-1:-1;32651:4:0;31875:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:127::-;1404:10;1399:3;1395:20;1392:1;1385:31;1435:4;1432:1;1425:15;1459:4;1456:1;1449:15;1475:632;1540:5;1570:18;1611:2;1603:6;1600:14;1597:40;;;1617:18;;:::i;:::-;1692:2;1686:9;1660:2;1746:15;;-1:-1:-1;;1742:24:1;;;1768:2;1738:33;1734:42;1722:55;;;1792:18;;;1812:22;;;1789:46;1786:72;;;1838:18;;:::i;:::-;1878:10;1874:2;1867:22;1907:6;1898:15;;1937:6;1929;1922:22;1977:3;1968:6;1963:3;1959:16;1956:25;1953:45;;;1994:1;1991;1984:12;1953:45;2044:6;2039:3;2032:4;2024:6;2020:17;2007:44;2099:1;2092:4;2083:6;2075;2071:19;2067:30;2060:41;;;;1475:632;;;;;:::o;2112:451::-;2181:6;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2290:9;2277:23;2323:18;2315:6;2312:30;2309:50;;;2355:1;2352;2345:12;2309:50;2378:22;;2431:4;2423:13;;2419:27;-1:-1:-1;2409:55:1;;2460:1;2457;2450:12;2409:55;2483:74;2549:7;2544:2;2531:16;2526:2;2522;2518:11;2483:74;:::i;2568:180::-;2627:6;2680:2;2668:9;2659:7;2655:23;2651:32;2648:52;;;2696:1;2693;2686:12;2648:52;-1:-1:-1;2719:23:1;;2568:180;-1:-1:-1;2568:180:1:o;2961:173::-;3029:20;;-1:-1:-1;;;;;3078:31:1;;3068:42;;3058:70;;3124:1;3121;3114:12;3058:70;2961:173;;;:::o;3139:254::-;3207:6;3215;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;3307:29;3326:9;3307:29;:::i;:::-;3297:39;3383:2;3368:18;;;;3355:32;;-1:-1:-1;;;3139:254:1:o;3398:328::-;3475:6;3483;3491;3544:2;3532:9;3523:7;3519:23;3515:32;3512:52;;;3560:1;3557;3550:12;3512:52;3583:29;3602:9;3583:29;:::i;:::-;3573:39;;3631:38;3665:2;3654:9;3650:18;3631:38;:::i;:::-;3621:48;;3716:2;3705:9;3701:18;3688:32;3678:42;;3398:328;;;;;:::o;3731:186::-;3790:6;3843:2;3831:9;3822:7;3818:23;3814:32;3811:52;;;3859:1;3856;3849:12;3811:52;3882:29;3901:9;3882:29;:::i;3922:248::-;3990:6;3998;4051:2;4039:9;4030:7;4026:23;4022:32;4019:52;;;4067:1;4064;4057:12;4019:52;-1:-1:-1;;4090:23:1;;;4160:2;4145:18;;;4132:32;;-1:-1:-1;3922:248:1:o;4636:160::-;4701:20;;4757:13;;4750:21;4740:32;;4730:60;;4786:1;4783;4776:12;4801:180;4857:6;4910:2;4898:9;4889:7;4885:23;4881:32;4878:52;;;4926:1;4923;4916:12;4878:52;4949:26;4965:9;4949:26;:::i;4986:254::-;5051:6;5059;5112:2;5100:9;5091:7;5087:23;5083:32;5080:52;;;5128:1;5125;5118:12;5080:52;5151:29;5170:9;5151:29;:::i;:::-;5141:39;;5199:35;5230:2;5219:9;5215:18;5199:35;:::i;:::-;5189:45;;4986:254;;;;;:::o;5245:667::-;5340:6;5348;5356;5364;5417:3;5405:9;5396:7;5392:23;5388:33;5385:53;;;5434:1;5431;5424:12;5385:53;5457:29;5476:9;5457:29;:::i;:::-;5447:39;;5505:38;5539:2;5528:9;5524:18;5505:38;:::i;:::-;5495:48;;5590:2;5579:9;5575:18;5562:32;5552:42;;5645:2;5634:9;5630:18;5617:32;5672:18;5664:6;5661:30;5658:50;;;5704:1;5701;5694:12;5658:50;5727:22;;5780:4;5772:13;;5768:27;-1:-1:-1;5758:55:1;;5809:1;5806;5799:12;5758:55;5832:74;5898:7;5893:2;5880:16;5875:2;5871;5867:11;5832:74;:::i;:::-;5822:84;;;5245:667;;;;;;;:::o;5917:260::-;5985:6;5993;6046:2;6034:9;6025:7;6021:23;6017:32;6014:52;;;6062:1;6059;6052:12;6014:52;6085:29;6104:9;6085:29;:::i;:::-;6075:39;;6133:38;6167:2;6156:9;6152:18;6133:38;:::i;6182:380::-;6261:1;6257:12;;;;6304;;;6325:61;;6379:4;6371:6;6367:17;6357:27;;6325:61;6432:2;6424:6;6421:14;6401:18;6398:38;6395:161;;;6478:10;6473:3;6469:20;6466:1;6459:31;6513:4;6510:1;6503:15;6541:4;6538:1;6531:15;6395:161;;6182:380;;;:::o;6567:276::-;6698:3;6736:6;6730:13;6752:53;6798:6;6793:3;6786:4;6778:6;6774:17;6752:53;:::i;:::-;6821:16;;;;;6567:276;-1:-1:-1;;6567:276:1:o;8088:413::-;8290:2;8272:21;;;8329:2;8309:18;;;8302:30;8368:34;8363:2;8348:18;;8341:62;-1:-1:-1;;;8434:2:1;8419:18;;8412:47;8491:3;8476:19;;8088:413::o;8506:356::-;8708:2;8690:21;;;8727:18;;;8720:30;8786:34;8781:2;8766:18;;8759:62;8853:2;8838:18;;8506:356::o;8867:127::-;8928:10;8923:3;8919:20;8916:1;8909:31;8959:4;8956:1;8949:15;8983:4;8980:1;8973:15;8999:168;9039:7;9105:1;9101;9097:6;9093:14;9090:1;9087:21;9082:1;9075:9;9068:17;9064:45;9061:71;;;9112:18;;:::i;:::-;-1:-1:-1;9152:9:1;;8999:168::o;9172:127::-;9233:10;9228:3;9224:20;9221:1;9214:31;9264:4;9261:1;9254:15;9288:4;9285:1;9278:15;9304:120;9344:1;9370;9360:35;;9375:18;;:::i;:::-;-1:-1:-1;9409:9:1;;9304:120::o;10586:973::-;10671:12;;10636:3;;10726:1;10746:18;;;;10799;;;;10826:61;;10880:4;10872:6;10868:17;10858:27;;10826:61;10906:2;10954;10946:6;10943:14;10923:18;10920:38;10917:161;;;11000:10;10995:3;10991:20;10988:1;10981:31;11035:4;11032:1;11025:15;11063:4;11060:1;11053:15;10917:161;11094:18;11121:104;;;;11239:1;11234:319;;;;11087:466;;11121:104;-1:-1:-1;;11154:24:1;;11142:37;;11199:16;;;;-1:-1:-1;11121:104:1;;11234:319;10533:1;10526:14;;;10570:4;10557:18;;11328:1;11342:165;11356:6;11353:1;11350:13;11342:165;;;11434:14;;11421:11;;;11414:35;11477:16;;;;11371:10;;11342:165;;;11346:3;;11536:6;11531:3;11527:16;11520:23;;11087:466;;;;;;;10586:973;;;;:::o;11564:431::-;11838:3;11866:38;11900:3;11892:6;11866:38;:::i;:::-;-1:-1:-1;;;11920:2:1;11913:15;11944:45;11986:1;11982:2;11978:10;11970:6;11944:45;:::i;:::-;11937:52;11564:431;-1:-1:-1;;;;;11564:431:1:o;13401:388::-;13606:6;13595:9;13588:25;13649:2;13644;13633:9;13629:18;13622:30;13569:4;13669:45;13710:2;13699:9;13695:18;13687:6;13669:45;:::i;:::-;13661:53;;13779:1;13775;13770:3;13766:11;13762:19;13754:6;13750:32;13745:2;13734:9;13730:18;13723:60;13401:388;;;;;;:::o;14210:543::-;14487:3;14515:38;14549:3;14541:6;14515:38;:::i;:::-;14582:6;14576:13;14598:52;14643:6;14639:2;14632:4;14624:6;14620:17;14598:52;:::i;:::-;-1:-1:-1;;;14672:15:1;;14696:22;;;14745:1;14734:13;;14210:543;-1:-1:-1;;;;14210:543:1:o;16389:125::-;16429:4;16457:1;16454;16451:8;16448:34;;;16462:18;;:::i;:::-;-1:-1:-1;16499:9:1;;16389:125::o;16519:128::-;16559:3;16590:1;16586:6;16583:1;16580:13;16577:39;;;16596:18;;:::i;:::-;-1:-1:-1;16632:9:1;;16519:128::o;17006:414::-;17208:2;17190:21;;;17247:2;17227:18;;;17220:30;17286:34;17281:2;17266:18;;17259:62;-1:-1:-1;;;17352:2:1;17337:18;;17330:48;17410:3;17395:19;;17006:414::o;17425:127::-;17486:10;17481:3;17477:20;17474:1;17467:31;17517:4;17514:1;17507:15;17541:4;17538:1;17531:15;17557:135;17596:3;-1:-1:-1;;17617:17:1;;17614:43;;;17637:18;;:::i;:::-;-1:-1:-1;17684:1:1;17673:13;;17557:135::o;19182:112::-;19214:1;19240;19230:35;;19245:18;;:::i;:::-;-1:-1:-1;19279:9:1;;19182:112::o;19299:489::-;-1:-1:-1;;;;;19568:15:1;;;19550:34;;19620:15;;19615:2;19600:18;;19593:43;19667:2;19652:18;;19645:34;;;19715:3;19710:2;19695:18;;19688:31;;;19493:4;;19736:46;;19762:19;;19754:6;19736:46;:::i;:::-;19728:54;19299:489;-1:-1:-1;;;;;;19299:489:1:o;19793:249::-;19862:6;19915:2;19903:9;19894:7;19890:23;19886:32;19883:52;;;19931:1;19928;19921:12;19883:52;19963:9;19957:16;19982:30;20006:5;19982:30;:::i
Swarm Source
ipfs://f433239ed63e70fb807c805ebac54e5248293e2aec536efa7d7bbdf0e2a156fd
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $705.01 | 0.08 | $56.4 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.