Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
77 PLANTS
Holders
51
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PLANTSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PowerPlantsNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-28 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Contract: PowerPlantsNFT // Created By: Metaverse Solutions, LLC // Visit us at: metaversesolutions.ai // ---- CONTRACT BEGINS HERE ---- pragma solidity ^0.8.0; contract PowerPlantsNFT is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = .03 ether; uint256 public maxSupply = 5000; uint256 public maxMintAmount = 500; bool public paused = false; uint256 public walletLimit = 5000; bool public whitelistOnly = false; mapping(address => bool) public whitelisted; address payable public payments; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, address _splitterAddress ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); // To change the amount of Reserved Owner Tokens, // change the number in the mint(msg.sender, 5) method below // to any other number you want. The default is // 5 reserve tokens for the owner. // mint(msg.sender, 5); payments = payable(_splitterAddress); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); require((balanceOf(msg.sender) + _mintAmount) <= walletLimit, 'Wallet limit is reached.'); if (whitelistOnly == false) { if (msg.sender != owner()) { if(whitelisted[msg.sender] != true) { require(msg.value >= cost * _mintAmount); } } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } } else if (whitelistOnly == true) { require(whitelisted[msg.sender] == true, 'Address is not whitelisted.'); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent NFT" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // // ONLY THE OWNER CAN CALL THE FUNCTIONS BELOW. // // This sets the minting price of each NFT. // Example: If you pass in 0.1, then you will need to pay 0.1 ETH + gas to mint 1 NFT. function setCost(uint256 _newCost) public onlyOwner() { cost = _newCost; } // This sets the amount users can mint at once. // Example: If you want your users to be able to mint 20 NFTs at once, // then you can set the setMaxMintAmount to 20. // // *THIS IS NOT A WALLET LIMIT. THERE IS ANOTHER FUNCTION FOR THAT BELOW* function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } // This sets the wallet limit. // Example: If you set the setWalletLimit function to 5, then users can have AT MOST 5 NFTs in their wallet. // You can change this to adjust the pre-mint wallet limit vs. the main minting phase's wallet limit. function setWalletLimit(uint256 _newWalletLimit) public onlyOwner() { walletLimit = _newWalletLimit; } // If you want to save gas by setting the maxMintAmount and walletLimit // at the same time, you can use this function. // Simply pass in the new maxMintAmount first, and the newWalletLimit second. // Example: // If you want to set a pre-mint phase where users can only mint 3 NFTs at a time, // and have a wallet limit of 9 NFTs, you can pass in the arguments // 3 and 9 respectively. // Then, to activate full minting for your official launch phase, // simply pass in new arguments to change the maxMintAmount and walletLimit. // Example: // Now that you're fully launching, you can pass in 10 to the newMaxMintAmount argument // which would allow users to mint up to 10 at a time, and pass in 20 to the // newWalletLimit argument which would create a wallet limit of 20 NFTs. function setMaxMintAmountAndWalletLimit(uint256 _newmaxMintAmount, uint256 _newWalletLimit) public onlyOwner() { maxMintAmount = _newmaxMintAmount; walletLimit = _newWalletLimit; } // This sets the max supply. This will be set to 10,000 by default, although it is changable. function setMaxSupply(uint256 _newSupply) public onlyOwner() { maxSupply = _newSupply; } // This changes the baseURI. // Example: If you pass in "https://google.com/", then every new NFT that is minted // will have a URI corresponding to the baseURI you passed in. // The first NFT you mint would have a URI of "https://google.com/1", // The second NFT you mint would have a URI of "https://google.com/2", etc. function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } // This sets the baseURI extension. // Example: If your database requires that the URI of each NFT // must have a .json at the end of the URI // (like https://google.com/1.json instead of just https://google.com/1) // then you can use this function to set the base extension. // For the above example, you would pass in ".json" to add the .json extension. function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } // This pauses or unpauses sales. // If paused, no NFTs can be minted, including by whitelisted users. // Must be set to false for NFTs to be minted. function pause(bool _state) public onlyOwner { paused = _state; } // This activates or deactivates the whitelist. // set to false = anyone can mint // set to true = only whitelisted users can mint function activateWhitelist(bool _state) public onlyOwner { whitelistOnly = _state; } // This whitelists users. // You MUST use an array for this function, and put quotes around the addresses you would like to whitelist. // Example: // If you want to whitelist 0x000000000000000000000000000000000000, // then pass in the argument: // ["0x000000000000000000000000000000000000"] // // If you want to whitelist multiple users, then pass in the argument with commas // seperating the user's addresses. // Example: // ["0x000000000000000000000000000000000000","0x111111111111111111111111111111111", "0x222222222222222222222222222222222"] function whitelistUser(address[] memory _user) public onlyOwner { uint256 x = 0; for (x = 0; x < _user.length; x++) { whitelisted[_user[x]] = true; } } // This removes whitelisted users. // It's arguments are the same as for whitelisting users. // You MUST use an array, and put quotes around the addresses you would like to remove from the whitelist. function removeWhitelistUser(address[] memory _user) public onlyOwner { uint256 x = 0; for (x = 0; x < _user.length; x++) { whitelisted[_user[x]] = false; } } // This withdraws the contract's balance of ETH to the Owner's (whoever launched the contract) address. function withdraw() public payable onlyOwner { require(payable(payments).send(address(this).balance)); } }
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":"_initBaseURI","type":"string"},{"internalType":"address","name":"_splitterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"activateWhitelist","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"},{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setMaxMintAmountAndWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001dd565b50666a94d74f430000600d55611388600e8190556101f4600f556010805460ff199081169091556011919091556012805490911690553480156200006b57600080fd5b5060405162002c4138038062002c418339810160408190526200008e916200033a565b835184908490620000a7906000906020850190620001dd565b508051620000bd906001906020840190620001dd565b505050620000da620000d46200010f60201b60201c565b62000113565b620000e58262000165565b601480546001600160a01b0319166001600160a01b03929092169190911790555062000440915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d990600b906020840190620001dd565b5050565b828054620001eb90620003ed565b90600052602060002090601f0160209004810192826200020f57600085556200025a565b82601f106200022a57805160ff19168380011785556200025a565b828001600101855582156200025a579182015b828111156200025a5782518255916020019190600101906200023d565b50620002689291506200026c565b5090565b5b808211156200026857600081556001016200026d565b600082601f8301126200029557600080fd5b81516001600160401b0380821115620002b257620002b26200042a565b604051601f8301601f19908116603f01168101908282118183101715620002dd57620002dd6200042a565b81604052838152602092508683858801011115620002fa57600080fd5b600091505b838210156200031e5785820183015181830184015290820190620002ff565b83821115620003305760008385830101525b9695505050505050565b600080600080608085870312156200035157600080fd5b84516001600160401b03808211156200036957600080fd5b620003778883890162000283565b955060208701519150808211156200038e57600080fd5b6200039c8883890162000283565b94506040870151915080821115620003b357600080fd5b50620003c28782880162000283565b606087015190935090506001600160a01b0381168114620003e257600080fd5b939692955090935050565b600181811c908216806200040257607f821691505b602082108114156200042457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6127f180620004506000396000f3fe60806040526004361061025c5760003560e01c806355f804b311610144578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146106c5578063d936547e146106db578063da3ef23f1461070b578063e985e9c51461072b578063f1d5f51714610774578063f2fde38b1461079457600080fd5b8063a22cb46514610630578063a6d23e1014610650578063b88d4fde14610670578063c668286214610690578063c87b56dd146106a557600080fd5b806370a082311161010857806370a0823114610588578063715018a6146105a85780638da5cb5b146105bd57806395d89b41146105db578063999abb7b146105f05780639b6fbf8a1461061057600080fd5b806355f804b3146104f95780635c975abb146105195780636352211e146105335780636c0360eb146105535780636f8b44b01461056857600080fd5b806323b872dd116101dd57806342842e0e116101a157806342842e0e14610432578063438b63001461045257806344a0d68a1461047f5780634b4687b51461049f5780634cedfc0c146104b95780634f6ccce7146104d957600080fd5b806323b872dd146103c15780632f745c59146103e15780633c8463a1146104015780633ccfd60b1461041757806340c10f191461041f57600080fd5b8063095ea7b311610224578063095ea7b3146103325780630f5fa1991461035257806313faede61461037257806318160ddd14610396578063239c70ae146103ab57600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063088a4ed014610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046122f4565b6107b4565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b13660046122d9565b6107df565b005b3480156102c457600080fd5b506102cd610825565b60405161028d9190612523565b3480156102e657600080fd5b506102fa6102f5366004612377565b6108b7565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004612377565b61094c565b34801561033e57600080fd5b506102b661034d3660046121fb565b61097b565b34801561035e57600080fd5b506102b661036d366004612390565b610a91565b34801561037e57600080fd5b50610388600d5481565b60405190815260200161028d565b3480156103a257600080fd5b50600854610388565b3480156103b757600080fd5b50610388600f5481565b3480156103cd57600080fd5b506102b66103dc366004612119565b610ac6565b3480156103ed57600080fd5b506103886103fc3660046121fb565b610af7565b34801561040d57600080fd5b5061038860115481565b6102b6610b8d565b6102b661042d3660046121fb565b610bea565b34801561043e57600080fd5b506102b661044d366004612119565b610dc6565b34801561045e57600080fd5b5061047261046d3660046120cb565b610de1565b60405161028d91906124df565b34801561048b57600080fd5b506102b661049a366004612377565b610e83565b3480156104ab57600080fd5b506012546102819060ff1681565b3480156104c557600080fd5b506102b66104d43660046122d9565b610eb2565b3480156104e557600080fd5b506103886104f4366004612377565b610eef565b34801561050557600080fd5b506102b661051436600461232e565b610f82565b34801561052557600080fd5b506010546102819060ff1681565b34801561053f57600080fd5b506102fa61054e366004612377565b610fc3565b34801561055f57600080fd5b506102cd61103a565b34801561057457600080fd5b506102b6610583366004612377565b6110c8565b34801561059457600080fd5b506103886105a33660046120cb565b6110f7565b3480156105b457600080fd5b506102b661117e565b3480156105c957600080fd5b50600a546001600160a01b03166102fa565b3480156105e757600080fd5b506102cd6111b2565b3480156105fc57600080fd5b506102b661060b366004612225565b6111c1565b34801561061c57600080fd5b506102b661062b366004612225565b611253565b34801561063c57600080fd5b506102b661064b3660046121d1565b6112e5565b34801561065c57600080fd5b506014546102fa906001600160a01b031681565b34801561067c57600080fd5b506102b661068b366004612155565b6113aa565b34801561069c57600080fd5b506102cd6113dc565b3480156106b157600080fd5b506102cd6106c0366004612377565b6113e9565b3480156106d157600080fd5b50610388600e5481565b3480156106e757600080fd5b506102816106f63660046120cb565b60136020526000908152604090205460ff1681565b34801561071757600080fd5b506102b661072636600461232e565b6114c5565b34801561073757600080fd5b506102816107463660046120e6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b506102b661078f366004612377565b611502565b3480156107a057600080fd5b506102b66107af3660046120cb565b611531565b60006001600160e01b0319821663780e9d6360e01b14806107d957506107d9826115cc565b92915050565b600a546001600160a01b031633146108125760405162461bcd60e51b815260040161080990612588565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610834906126cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610860906126cd565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610809565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109765760405162461bcd60e51b815260040161080990612588565b600f55565b600061098682610fc3565b9050806001600160a01b0316836001600160a01b031614156109f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610809565b336001600160a01b0382161480610a105750610a108133610746565b610a825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610809565b610a8c838361161c565b505050565b600a546001600160a01b03163314610abb5760405162461bcd60e51b815260040161080990612588565b600f91909155601155565b610ad0338261168a565b610aec5760405162461bcd60e51b8152600401610809906125bd565b610a8c838383611781565b6000610b02836110f7565b8210610b645760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610809565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bb75760405162461bcd60e51b815260040161080990612588565b6014546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610be857600080fd5b565b6000610bf560085490565b60105490915060ff1615610c0857600080fd5b60008211610c1557600080fd5b600f54821115610c2457600080fd5b600e54610c31838361263f565b1115610c3c57600080fd5b60115482610c49336110f7565b610c53919061263f565b1115610ca15760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206c696d697420697320726561636865642e00000000000000006044820152606401610809565b60125460ff16610d2857600a546001600160a01b03163314610cf3573360009081526013602052604090205460ff161515600114610cf35781600d54610ce7919061266b565b341015610cf357600080fd5b60015b828111610d2257610d1084610d0b838561263f565b61192c565b80610d1a81612708565b915050610cf6565b50505050565b60125460ff16151560011415610a8c573360009081526013602052604090205460ff161515600114610d9c5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401610809565b60015b828111610d2257610db484610d0b838561263f565b80610dbe81612708565b915050610d9f565b610a8c838383604051806020016040528060008152506113aa565b60606000610dee836110f7565b905060008167ffffffffffffffff811115610e0b57610e0b61278f565b604051908082528060200260200182016040528015610e34578160200160208202803683370190505b50905060005b82811015610e7b57610e4c8582610af7565b828281518110610e5e57610e5e612779565b602090810291909101015280610e7381612708565b915050610e3a565b509392505050565b600a546001600160a01b03163314610ead5760405162461bcd60e51b815260040161080990612588565b600d55565b600a546001600160a01b03163314610edc5760405162461bcd60e51b815260040161080990612588565b6012805460ff1916911515919091179055565b6000610efa60085490565b8210610f5d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610809565b60088281548110610f7057610f70612779565b90600052602060002001549050919050565b600a546001600160a01b03163314610fac5760405162461bcd60e51b815260040161080990612588565b8051610fbf90600b906020840190611fae565b5050565b6000818152600260205260408120546001600160a01b0316806107d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610809565b600b8054611047906126cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611073906126cd565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b505050505081565b600a546001600160a01b031633146110f25760405162461bcd60e51b815260040161080990612588565b600e55565b60006001600160a01b0382166111625760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610809565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111a85760405162461bcd60e51b815260040161080990612588565b610be86000611946565b606060018054610834906126cd565b600a546001600160a01b031633146111eb5760405162461bcd60e51b815260040161080990612588565b60005b8151811015610fbf5760006013600084848151811061120f5761120f612779565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061124b81612708565b9150506111ee565b600a546001600160a01b0316331461127d5760405162461bcd60e51b815260040161080990612588565b60005b8151811015610fbf576001601360008484815181106112a1576112a1612779565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112dd81612708565b915050611280565b6001600160a01b03821633141561133e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610809565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113b4338361168a565b6113d05760405162461bcd60e51b8152600401610809906125bd565b610d2284848484611998565b600c8054611047906126cd565b6000818152600260205260409020546060906001600160a01b03166114665760405162461bcd60e51b815260206004820152602d60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526c1b995e1a5cdd195b9d08139195609a1b6064820152608401610809565b60006114706119cb565b9050600081511161149057604051806020016040528060008152506114be565b8061149a846119da565b600c6040516020016114ae939291906123de565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114ef5760405162461bcd60e51b815260040161080990612588565b8051610fbf90600c906020840190611fae565b600a546001600160a01b0316331461152c5760405162461bcd60e51b815260040161080990612588565b601155565b600a546001600160a01b0316331461155b5760405162461bcd60e51b815260040161080990612588565b6001600160a01b0381166115c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610809565b6115c981611946565b50565b60006001600160e01b031982166380ac58cd60e01b14806115fd57506001600160e01b03198216635b5e139f60e01b145b806107d957506301ffc9a760e01b6001600160e01b03198316146107d9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165182610fc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610809565b600061170e83610fc3565b9050806001600160a01b0316846001600160a01b031614806117495750836001600160a01b031661173e846108b7565b6001600160a01b0316145b8061177957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179482610fc3565b6001600160a01b0316146117fc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610809565b6001600160a01b03821661185e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610809565b611869838383611ad8565b61187460008261161c565b6001600160a01b038316600090815260036020526040812080546001929061189d90849061268a565b90915550506001600160a01b03821660009081526003602052604081208054600192906118cb90849061263f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fbf828260405180602001604052806000815250611b90565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119a3848484611781565b6119af84848484611bc3565b610d225760405162461bcd60e51b815260040161080990612536565b6060600b8054610834906126cd565b6060816119fe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a285780611a1281612708565b9150611a219050600a83612657565b9150611a02565b60008167ffffffffffffffff811115611a4357611a4361278f565b6040519080825280601f01601f191660200182016040528015611a6d576020820181803683370190505b5090505b841561177957611a8260018361268a565b9150611a8f600a86612723565b611a9a90603061263f565b60f81b818381518110611aaf57611aaf612779565b60200101906001600160f81b031916908160001a905350611ad1600a86612657565b9450611a71565b6001600160a01b038316611b3357611b2e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b56565b816001600160a01b0316836001600160a01b031614611b5657611b568382611cd0565b6001600160a01b038216611b6d57610a8c81611d6d565b826001600160a01b0316826001600160a01b031614610a8c57610a8c8282611e1c565b611b9a8383611e60565b611ba76000848484611bc3565b610a8c5760405162461bcd60e51b815260040161080990612536565b60006001600160a01b0384163b15611cc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c079033908990889088906004016124a2565b602060405180830381600087803b158015611c2157600080fd5b505af1925050508015611c51575060408051601f3d908101601f19168201909252611c4e91810190612311565b60015b611cab573d808015611c7f576040519150601f19603f3d011682016040523d82523d6000602084013e611c84565b606091505b508051611ca35760405162461bcd60e51b815260040161080990612536565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611779565b506001949350505050565b60006001611cdd846110f7565b611ce7919061268a565b600083815260076020526040902054909150808214611d3a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d7f9060019061268a565b60008381526009602052604081205460088054939450909284908110611da757611da7612779565b906000526020600020015490508060088381548110611dc857611dc8612779565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0057611e00612763565b6001900381819060005260206000200160009055905550505050565b6000611e27836110f7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eb65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610809565b6000818152600260205260409020546001600160a01b031615611f1b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610809565b611f2760008383611ad8565b6001600160a01b0382166000908152600360205260408120805460019290611f5090849061263f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fba906126cd565b90600052602060002090601f016020900481019282611fdc5760008555612022565b82601f10611ff557805160ff1916838001178555612022565b82800160010185558215612022579182015b82811115612022578251825591602001919060010190612007565b5061202e929150612032565b5090565b5b8082111561202e5760008155600101612033565b600067ffffffffffffffff8311156120615761206161278f565b612074601f8401601f191660200161260e565b905082815283838301111561208857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120b657600080fd5b919050565b803580151581146120b657600080fd5b6000602082840312156120dd57600080fd5b6114be8261209f565b600080604083850312156120f957600080fd5b6121028361209f565b91506121106020840161209f565b90509250929050565b60008060006060848603121561212e57600080fd5b6121378461209f565b92506121456020850161209f565b9150604084013590509250925092565b6000806000806080858703121561216b57600080fd5b6121748561209f565b93506121826020860161209f565b925060408501359150606085013567ffffffffffffffff8111156121a557600080fd5b8501601f810187136121b657600080fd5b6121c587823560208401612047565b91505092959194509250565b600080604083850312156121e457600080fd5b6121ed8361209f565b9150612110602084016120bb565b6000806040838503121561220e57600080fd5b6122178361209f565b946020939093013593505050565b6000602080838503121561223857600080fd5b823567ffffffffffffffff8082111561225057600080fd5b818501915085601f83011261226457600080fd5b8135818111156122765761227661278f565b8060051b915061228784830161260e565b8181528481019084860184860187018a10156122a257600080fd5b600095505b838610156122cc576122b88161209f565b8352600195909501949186019186016122a7565b5098975050505050505050565b6000602082840312156122eb57600080fd5b6114be826120bb565b60006020828403121561230657600080fd5b81356114be816127a5565b60006020828403121561232357600080fd5b81516114be816127a5565b60006020828403121561234057600080fd5b813567ffffffffffffffff81111561235757600080fd5b8201601f8101841361236857600080fd5b61177984823560208401612047565b60006020828403121561238957600080fd5b5035919050565b600080604083850312156123a357600080fd5b50508035926020909101359150565b600081518084526123ca8160208601602086016126a1565b601f01601f19169290920160200192915050565b6000845160206123f18285838a016126a1565b8551918401916124048184848a016126a1565b8554920191600090600181811c908083168061242157607f831692505b85831081141561243f57634e487b7160e01b85526022600452602485fd5b808015612453576001811461246457612491565b60ff19851688528388019550612491565b60008b81526020902060005b858110156124895781548a820152908401908801612470565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124d5908301846123b2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612517578351835292840192918401916001016124fb565b50909695505050505050565b6020815260006114be60208301846123b2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126375761263761278f565b604052919050565b6000821982111561265257612652612737565b500190565b6000826126665761266661274d565b500490565b600081600019048311821515161561268557612685612737565b500290565b60008282101561269c5761269c612737565b500390565b60005b838110156126bc5781810151838201526020016126a4565b83811115610d225750506000910152565b600181811c908216806126e157607f821691505b6020821081141561270257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561271c5761271c612737565b5060010190565b6000826127325761273261274d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115c957600080fdfea2646970667358221220e73366b2a25c306a798d42e7cee6cc8160aea4610e4ae0edfa106bb6c0b5508964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000b592d7a39e87f42a20ef8b8c720f25290a811969000000000000000000000000000000000000000000000000000000000000000e506f776572506c616e74734e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006504c414e54530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f706f776572706c616e74736e66742e73332e616d617a6f6e6177732e636f6d2f000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c806355f804b311610144578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146106c5578063d936547e146106db578063da3ef23f1461070b578063e985e9c51461072b578063f1d5f51714610774578063f2fde38b1461079457600080fd5b8063a22cb46514610630578063a6d23e1014610650578063b88d4fde14610670578063c668286214610690578063c87b56dd146106a557600080fd5b806370a082311161010857806370a0823114610588578063715018a6146105a85780638da5cb5b146105bd57806395d89b41146105db578063999abb7b146105f05780639b6fbf8a1461061057600080fd5b806355f804b3146104f95780635c975abb146105195780636352211e146105335780636c0360eb146105535780636f8b44b01461056857600080fd5b806323b872dd116101dd57806342842e0e116101a157806342842e0e14610432578063438b63001461045257806344a0d68a1461047f5780634b4687b51461049f5780634cedfc0c146104b95780634f6ccce7146104d957600080fd5b806323b872dd146103c15780632f745c59146103e15780633c8463a1146104015780633ccfd60b1461041757806340c10f191461041f57600080fd5b8063095ea7b311610224578063095ea7b3146103325780630f5fa1991461035257806313faede61461037257806318160ddd14610396578063239c70ae146103ab57600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063088a4ed014610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046122f4565b6107b4565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b13660046122d9565b6107df565b005b3480156102c457600080fd5b506102cd610825565b60405161028d9190612523565b3480156102e657600080fd5b506102fa6102f5366004612377565b6108b7565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004612377565b61094c565b34801561033e57600080fd5b506102b661034d3660046121fb565b61097b565b34801561035e57600080fd5b506102b661036d366004612390565b610a91565b34801561037e57600080fd5b50610388600d5481565b60405190815260200161028d565b3480156103a257600080fd5b50600854610388565b3480156103b757600080fd5b50610388600f5481565b3480156103cd57600080fd5b506102b66103dc366004612119565b610ac6565b3480156103ed57600080fd5b506103886103fc3660046121fb565b610af7565b34801561040d57600080fd5b5061038860115481565b6102b6610b8d565b6102b661042d3660046121fb565b610bea565b34801561043e57600080fd5b506102b661044d366004612119565b610dc6565b34801561045e57600080fd5b5061047261046d3660046120cb565b610de1565b60405161028d91906124df565b34801561048b57600080fd5b506102b661049a366004612377565b610e83565b3480156104ab57600080fd5b506012546102819060ff1681565b3480156104c557600080fd5b506102b66104d43660046122d9565b610eb2565b3480156104e557600080fd5b506103886104f4366004612377565b610eef565b34801561050557600080fd5b506102b661051436600461232e565b610f82565b34801561052557600080fd5b506010546102819060ff1681565b34801561053f57600080fd5b506102fa61054e366004612377565b610fc3565b34801561055f57600080fd5b506102cd61103a565b34801561057457600080fd5b506102b6610583366004612377565b6110c8565b34801561059457600080fd5b506103886105a33660046120cb565b6110f7565b3480156105b457600080fd5b506102b661117e565b3480156105c957600080fd5b50600a546001600160a01b03166102fa565b3480156105e757600080fd5b506102cd6111b2565b3480156105fc57600080fd5b506102b661060b366004612225565b6111c1565b34801561061c57600080fd5b506102b661062b366004612225565b611253565b34801561063c57600080fd5b506102b661064b3660046121d1565b6112e5565b34801561065c57600080fd5b506014546102fa906001600160a01b031681565b34801561067c57600080fd5b506102b661068b366004612155565b6113aa565b34801561069c57600080fd5b506102cd6113dc565b3480156106b157600080fd5b506102cd6106c0366004612377565b6113e9565b3480156106d157600080fd5b50610388600e5481565b3480156106e757600080fd5b506102816106f63660046120cb565b60136020526000908152604090205460ff1681565b34801561071757600080fd5b506102b661072636600461232e565b6114c5565b34801561073757600080fd5b506102816107463660046120e6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b506102b661078f366004612377565b611502565b3480156107a057600080fd5b506102b66107af3660046120cb565b611531565b60006001600160e01b0319821663780e9d6360e01b14806107d957506107d9826115cc565b92915050565b600a546001600160a01b031633146108125760405162461bcd60e51b815260040161080990612588565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610834906126cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610860906126cd565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610809565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109765760405162461bcd60e51b815260040161080990612588565b600f55565b600061098682610fc3565b9050806001600160a01b0316836001600160a01b031614156109f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610809565b336001600160a01b0382161480610a105750610a108133610746565b610a825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610809565b610a8c838361161c565b505050565b600a546001600160a01b03163314610abb5760405162461bcd60e51b815260040161080990612588565b600f91909155601155565b610ad0338261168a565b610aec5760405162461bcd60e51b8152600401610809906125bd565b610a8c838383611781565b6000610b02836110f7565b8210610b645760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610809565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bb75760405162461bcd60e51b815260040161080990612588565b6014546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610be857600080fd5b565b6000610bf560085490565b60105490915060ff1615610c0857600080fd5b60008211610c1557600080fd5b600f54821115610c2457600080fd5b600e54610c31838361263f565b1115610c3c57600080fd5b60115482610c49336110f7565b610c53919061263f565b1115610ca15760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206c696d697420697320726561636865642e00000000000000006044820152606401610809565b60125460ff16610d2857600a546001600160a01b03163314610cf3573360009081526013602052604090205460ff161515600114610cf35781600d54610ce7919061266b565b341015610cf357600080fd5b60015b828111610d2257610d1084610d0b838561263f565b61192c565b80610d1a81612708565b915050610cf6565b50505050565b60125460ff16151560011415610a8c573360009081526013602052604090205460ff161515600114610d9c5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401610809565b60015b828111610d2257610db484610d0b838561263f565b80610dbe81612708565b915050610d9f565b610a8c838383604051806020016040528060008152506113aa565b60606000610dee836110f7565b905060008167ffffffffffffffff811115610e0b57610e0b61278f565b604051908082528060200260200182016040528015610e34578160200160208202803683370190505b50905060005b82811015610e7b57610e4c8582610af7565b828281518110610e5e57610e5e612779565b602090810291909101015280610e7381612708565b915050610e3a565b509392505050565b600a546001600160a01b03163314610ead5760405162461bcd60e51b815260040161080990612588565b600d55565b600a546001600160a01b03163314610edc5760405162461bcd60e51b815260040161080990612588565b6012805460ff1916911515919091179055565b6000610efa60085490565b8210610f5d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610809565b60088281548110610f7057610f70612779565b90600052602060002001549050919050565b600a546001600160a01b03163314610fac5760405162461bcd60e51b815260040161080990612588565b8051610fbf90600b906020840190611fae565b5050565b6000818152600260205260408120546001600160a01b0316806107d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610809565b600b8054611047906126cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611073906126cd565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b505050505081565b600a546001600160a01b031633146110f25760405162461bcd60e51b815260040161080990612588565b600e55565b60006001600160a01b0382166111625760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610809565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111a85760405162461bcd60e51b815260040161080990612588565b610be86000611946565b606060018054610834906126cd565b600a546001600160a01b031633146111eb5760405162461bcd60e51b815260040161080990612588565b60005b8151811015610fbf5760006013600084848151811061120f5761120f612779565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061124b81612708565b9150506111ee565b600a546001600160a01b0316331461127d5760405162461bcd60e51b815260040161080990612588565b60005b8151811015610fbf576001601360008484815181106112a1576112a1612779565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112dd81612708565b915050611280565b6001600160a01b03821633141561133e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610809565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113b4338361168a565b6113d05760405162461bcd60e51b8152600401610809906125bd565b610d2284848484611998565b600c8054611047906126cd565b6000818152600260205260409020546060906001600160a01b03166114665760405162461bcd60e51b815260206004820152602d60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526c1b995e1a5cdd195b9d08139195609a1b6064820152608401610809565b60006114706119cb565b9050600081511161149057604051806020016040528060008152506114be565b8061149a846119da565b600c6040516020016114ae939291906123de565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114ef5760405162461bcd60e51b815260040161080990612588565b8051610fbf90600c906020840190611fae565b600a546001600160a01b0316331461152c5760405162461bcd60e51b815260040161080990612588565b601155565b600a546001600160a01b0316331461155b5760405162461bcd60e51b815260040161080990612588565b6001600160a01b0381166115c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610809565b6115c981611946565b50565b60006001600160e01b031982166380ac58cd60e01b14806115fd57506001600160e01b03198216635b5e139f60e01b145b806107d957506301ffc9a760e01b6001600160e01b03198316146107d9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165182610fc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610809565b600061170e83610fc3565b9050806001600160a01b0316846001600160a01b031614806117495750836001600160a01b031661173e846108b7565b6001600160a01b0316145b8061177957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179482610fc3565b6001600160a01b0316146117fc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610809565b6001600160a01b03821661185e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610809565b611869838383611ad8565b61187460008261161c565b6001600160a01b038316600090815260036020526040812080546001929061189d90849061268a565b90915550506001600160a01b03821660009081526003602052604081208054600192906118cb90849061263f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fbf828260405180602001604052806000815250611b90565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119a3848484611781565b6119af84848484611bc3565b610d225760405162461bcd60e51b815260040161080990612536565b6060600b8054610834906126cd565b6060816119fe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a285780611a1281612708565b9150611a219050600a83612657565b9150611a02565b60008167ffffffffffffffff811115611a4357611a4361278f565b6040519080825280601f01601f191660200182016040528015611a6d576020820181803683370190505b5090505b841561177957611a8260018361268a565b9150611a8f600a86612723565b611a9a90603061263f565b60f81b818381518110611aaf57611aaf612779565b60200101906001600160f81b031916908160001a905350611ad1600a86612657565b9450611a71565b6001600160a01b038316611b3357611b2e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b56565b816001600160a01b0316836001600160a01b031614611b5657611b568382611cd0565b6001600160a01b038216611b6d57610a8c81611d6d565b826001600160a01b0316826001600160a01b031614610a8c57610a8c8282611e1c565b611b9a8383611e60565b611ba76000848484611bc3565b610a8c5760405162461bcd60e51b815260040161080990612536565b60006001600160a01b0384163b15611cc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c079033908990889088906004016124a2565b602060405180830381600087803b158015611c2157600080fd5b505af1925050508015611c51575060408051601f3d908101601f19168201909252611c4e91810190612311565b60015b611cab573d808015611c7f576040519150601f19603f3d011682016040523d82523d6000602084013e611c84565b606091505b508051611ca35760405162461bcd60e51b815260040161080990612536565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611779565b506001949350505050565b60006001611cdd846110f7565b611ce7919061268a565b600083815260076020526040902054909150808214611d3a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d7f9060019061268a565b60008381526009602052604081205460088054939450909284908110611da757611da7612779565b906000526020600020015490508060088381548110611dc857611dc8612779565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0057611e00612763565b6001900381819060005260206000200160009055905550505050565b6000611e27836110f7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eb65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610809565b6000818152600260205260409020546001600160a01b031615611f1b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610809565b611f2760008383611ad8565b6001600160a01b0382166000908152600360205260408120805460019290611f5090849061263f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fba906126cd565b90600052602060002090601f016020900481019282611fdc5760008555612022565b82601f10611ff557805160ff1916838001178555612022565b82800160010185558215612022579182015b82811115612022578251825591602001919060010190612007565b5061202e929150612032565b5090565b5b8082111561202e5760008155600101612033565b600067ffffffffffffffff8311156120615761206161278f565b612074601f8401601f191660200161260e565b905082815283838301111561208857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120b657600080fd5b919050565b803580151581146120b657600080fd5b6000602082840312156120dd57600080fd5b6114be8261209f565b600080604083850312156120f957600080fd5b6121028361209f565b91506121106020840161209f565b90509250929050565b60008060006060848603121561212e57600080fd5b6121378461209f565b92506121456020850161209f565b9150604084013590509250925092565b6000806000806080858703121561216b57600080fd5b6121748561209f565b93506121826020860161209f565b925060408501359150606085013567ffffffffffffffff8111156121a557600080fd5b8501601f810187136121b657600080fd5b6121c587823560208401612047565b91505092959194509250565b600080604083850312156121e457600080fd5b6121ed8361209f565b9150612110602084016120bb565b6000806040838503121561220e57600080fd5b6122178361209f565b946020939093013593505050565b6000602080838503121561223857600080fd5b823567ffffffffffffffff8082111561225057600080fd5b818501915085601f83011261226457600080fd5b8135818111156122765761227661278f565b8060051b915061228784830161260e565b8181528481019084860184860187018a10156122a257600080fd5b600095505b838610156122cc576122b88161209f565b8352600195909501949186019186016122a7565b5098975050505050505050565b6000602082840312156122eb57600080fd5b6114be826120bb565b60006020828403121561230657600080fd5b81356114be816127a5565b60006020828403121561232357600080fd5b81516114be816127a5565b60006020828403121561234057600080fd5b813567ffffffffffffffff81111561235757600080fd5b8201601f8101841361236857600080fd5b61177984823560208401612047565b60006020828403121561238957600080fd5b5035919050565b600080604083850312156123a357600080fd5b50508035926020909101359150565b600081518084526123ca8160208601602086016126a1565b601f01601f19169290920160200192915050565b6000845160206123f18285838a016126a1565b8551918401916124048184848a016126a1565b8554920191600090600181811c908083168061242157607f831692505b85831081141561243f57634e487b7160e01b85526022600452602485fd5b808015612453576001811461246457612491565b60ff19851688528388019550612491565b60008b81526020902060005b858110156124895781548a820152908401908801612470565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124d5908301846123b2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612517578351835292840192918401916001016124fb565b50909695505050505050565b6020815260006114be60208301846123b2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126375761263761278f565b604052919050565b6000821982111561265257612652612737565b500190565b6000826126665761266661274d565b500490565b600081600019048311821515161561268557612685612737565b500290565b60008282101561269c5761269c612737565b500390565b60005b838110156126bc5781810151838201526020016126a4565b83811115610d225750506000910152565b600181811c908216806126e157607f821691505b6020821081141561270257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561271c5761271c612737565b5060010190565b6000826127325761273261274d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115c957600080fdfea2646970667358221220e73366b2a25c306a798d42e7cee6cc8160aea4610e4ae0edfa106bb6c0b5508964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000b592d7a39e87f42a20ef8b8c720f25290a811969000000000000000000000000000000000000000000000000000000000000000e506f776572506c616e74734e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006504c414e54530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f706f776572706c616e74736e66742e73332e616d617a6f6e6177732e636f6d2f000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): PowerPlantsNFT
Arg [1] : _symbol (string): PLANTS
Arg [2] : _initBaseURI (string): https://powerplantsnft.s3.amazonaws.com/
Arg [3] : _splitterAddress (address): 0xB592D7a39E87f42a20ef8B8C720f25290A811969
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000b592d7a39e87f42a20ef8b8c720f25290a811969
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 506f776572506c616e74734e4654000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 504c414e54530000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [9] : 68747470733a2f2f706f776572706c616e74736e66742e73332e616d617a6f6e
Arg [10] : 6177732e636f6d2f000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43260:7811:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:224;;;;;;;;;;-1:-1:-1;34666:224:0;;;;;:::i;:::-;;:::i;:::-;;;8817:14:1;;8810:22;8792:41;;8780:2;8765:18;34666:224:0;;;;;;;;49368:73;;;;;;;;;;-1:-1:-1;49368:73:0;;;;;:::i;:::-;;:::i;:::-;;22558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24117:221::-;;;;;;;;;;-1:-1:-1;24117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7254:32:1;;;7236:51;;7224:2;7209:18;24117:221:0;7090:203:1;46582:118:0;;;;;;;;;;-1:-1:-1;46582:118:0;;;;;:::i;:::-;;:::i;23640:411::-;;;;;;;;;;-1:-1:-1;23640:411:0;;;;;:::i;:::-;;:::i;47880:193::-;;;;;;;;;;-1:-1:-1;47880:193:0;;;;;:::i;:::-;;:::i;43418:31::-;;;;;;;;;;;;;;;;;;;17128:25:1;;;17116:2;17101:18;43418:31:0;16982:177:1;35306:113:0;;;;;;;;;;-1:-1:-1;35394:10:0;:17;35306:113;;43490:34;;;;;;;;;;;;;;;;25007:339;;;;;;;;;;-1:-1:-1;25007:339:0;;;;;:::i;:::-;;:::i;34974:256::-;;;;;;;;;;-1:-1:-1;34974:256:0;;;;;:::i;:::-;;:::i;43560:33::-;;;;;;;;;;;;;;;;50950:112;;;:::i;44345:909::-;;;;;;:::i;:::-;;:::i;25417:185::-;;;;;;;;;;-1:-1:-1;25417:185:0;;;;;:::i;:::-;;:::i;45260:348::-;;;;;;;;;;-1:-1:-1;45260:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46240:82::-;;;;;;;;;;-1:-1:-1;46240:82:0;;;;;:::i;:::-;;:::i;43598:33::-;;;;;;;;;;-1:-1:-1;43598:33:0;;;;;;;;49585:92;;;;;;;;;;-1:-1:-1;49585:92:0;;;;;:::i;:::-;;:::i;35496:233::-;;;;;;;;;;-1:-1:-1;35496:233:0;;;;;:::i;:::-;;:::i;48611:98::-;;;;;;;;;;-1:-1:-1;48611:98:0;;;;;:::i;:::-;;:::i;43529:26::-;;;;;;;;;;-1:-1:-1;43529:26:0;;;;;;;;22252:239;;;;;;;;;;-1:-1:-1;22252:239:0;;;;;:::i;:::-;;:::i;43350:21::-;;;;;;;;;;;;;:::i;48175:96::-;;;;;;;;;;-1:-1:-1;48175:96:0;;;;;:::i;:::-;;:::i;21982:208::-;;;;;;;;;;-1:-1:-1;21982:208:0;;;;;:::i;:::-;;:::i;42455:94::-;;;;;;;;;;;;;:::i;41804:87::-;;;;;;;;;;-1:-1:-1;41877:6:0;;-1:-1:-1;;;;;41877:6:0;41804:87;;22727:104;;;;;;;;;;;;;:::i;50647:189::-;;;;;;;;;;-1:-1:-1;50647:189:0;;;;;:::i;:::-;;:::i;50252:182::-;;;;;;;;;;-1:-1:-1;50252:182:0;;;;;:::i;:::-;;:::i;24410:295::-;;;;;;;;;;-1:-1:-1;24410:295:0;;;;;:::i;:::-;;:::i;43684:31::-;;;;;;;;;;-1:-1:-1;43684:31:0;;;;-1:-1:-1;;;;;43684:31:0;;;25673:328;;;;;;;;;;-1:-1:-1;25673:328:0;;;;;:::i;:::-;;:::i;43376:37::-;;;;;;;;;;;;;:::i;45614:421::-;;;;;;;;;;-1:-1:-1;45614:421:0;;;;;:::i;:::-;;:::i;43454:31::-;;;;;;;;;;;;;;;;43636:43;;;;;;;;;;-1:-1:-1;43636:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49084:122;;;;;;;;;;-1:-1:-1;49084:122:0;;;;;:::i;:::-;;:::i;24776:164::-;;;;;;;;;;-1:-1:-1;24776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24776:164;46956:110;;;;;;;;;;-1:-1:-1;46956:110:0;;;;;:::i;:::-;;:::i;42704:192::-;;;;;;;;;;-1:-1:-1;42704:192:0;;;;;:::i;:::-;;:::i;34666:224::-;34768:4;-1:-1:-1;;;;;;34792:50:0;;-1:-1:-1;;;34792:50:0;;:90;;;34846:36;34870:11;34846:23;:36::i;:::-;34785:97;34666:224;-1:-1:-1;;34666:224:0:o;49368:73::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;;;;;;;;;49420:6:::1;:15:::0;;-1:-1:-1;;49420:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49368:73::o;22558:100::-;22612:13;22645:5;22638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22558:100;:::o;24117:221::-;24193:7;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;24213:73;;;;-1:-1:-1;;;24213:73:0;;14411:2:1;24213:73:0;;;14393:21:1;14450:2;14430:18;;;14423:30;14489:34;14469:18;;;14462:62;-1:-1:-1;;;14540:18:1;;;14533:42;14592:19;;24213:73:0;14209:408:1;24213:73:0;-1:-1:-1;24306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24306:24:0;;24117:221::o;46582:118::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46661:13:::1;:33:::0;46582:118::o;23640:411::-;23721:13;23737:23;23752:7;23737:14;:23::i;:::-;23721:39;;23785:5;-1:-1:-1;;;;;23779:11:0;:2;-1:-1:-1;;;;;23779:11:0;;;23771:57;;;;-1:-1:-1;;;23771:57:0;;15595:2:1;23771:57:0;;;15577:21:1;15634:2;15614:18;;;15607:30;15673:34;15653:18;;;15646:62;-1:-1:-1;;;15724:18:1;;;15717:31;15765:19;;23771:57:0;15393:397:1;23771:57:0;20167:10;-1:-1:-1;;;;;23863:21:0;;;;:62;;-1:-1:-1;23888:37:0;23905:5;20167:10;24776:164;:::i;23888:37::-;23841:168;;;;-1:-1:-1;;;23841:168:0;;12804:2:1;23841:168:0;;;12786:21:1;12843:2;12823:18;;;12816:30;12882:34;12862:18;;;12855:62;12953:26;12933:18;;;12926:54;12997:19;;23841:168:0;12602:420:1;23841:168:0;24022:21;24031:2;24035:7;24022:8;:21::i;:::-;23710:341;23640:411;;:::o;47880:193::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;47998:13:::1;:33:::0;;;;48038:11:::1;:29:::0;47880:193::o;25007:339::-;25202:41;20167:10;25235:7;25202:18;:41::i;:::-;25194:103;;;;-1:-1:-1;;;25194:103:0;;;;;;;:::i;:::-;25310:28;25320:4;25326:2;25330:7;25310:9;:28::i;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;-1:-1:-1;;;35091:87:0;;9684:2:1;35091:87:0;;;9666:21:1;9723:2;9703:18;;;9696:30;9762:34;9742:18;;;9735:62;-1:-1:-1;;;9813:18:1;;;9806:41;9864:19;;35091:87:0;9482:407:1;35091:87:0;-1:-1:-1;;;;;;35196:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34974:256::o;50950:112::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;51018:8:::1;::::0;51010:45:::1;::::0;-1:-1:-1;;;;;51018:8:0;;::::1;::::0;51033:21:::1;51010:45:::0;::::1;;;::::0;51018:8:::1;51010:45:::0;51018:8;51010:45;51033:21;51018:8;51010:45;::::1;;;;;;51002:54;;;::::0;::::1;;50950:112::o:0;44345:909::-;44415:14;44432:13;35394:10;:17;;35306:113;44432:13;44461:6;;44415:30;;-1:-1:-1;44461:6:0;;44460:7;44452:16;;;;;;44497:1;44483:11;:15;44475:24;;;;;;44529:13;;44514:11;:28;;44506:37;;;;;;44582:9;;44558:20;44567:11;44558:6;:20;:::i;:::-;:33;;44550:42;;;;;;44648:11;;44632;44608:21;44618:10;44608:9;:21::i;:::-;:35;;;;:::i;:::-;44607:52;;44599:89;;;;-1:-1:-1;;;44599:89:0;;12451:2:1;44599:89:0;;;12433:21:1;12490:2;12470:18;;;12463:30;12529:26;12509:18;;;12502:54;12573:18;;44599:89:0;12249:348:1;44599:89:0;44701:13;;;;44697:552;;41877:6;;-1:-1:-1;;;;;41877:6:0;44740:10;:21;44736:162;;44793:10;44781:23;;;;:11;:23;;;;;;;;:31;;:23;:31;44778:109;;44859:11;44852:4;;:18;;;;:::i;:::-;44839:9;:31;;44831:40;;;;;;44931:1;44914:94;44939:11;44934:1;:16;44914:94;;44970:26;44980:3;44985:10;44994:1;44985:6;:10;:::i;:::-;44970:9;:26::i;:::-;44952:3;;;;:::i;:::-;;;;44914:94;;;;23710:341;23640:411;;:::o;44697:552::-;45030:13;;;;:21;;:13;:21;45026:223;;;45084:10;45072:23;;;;:11;:23;;;;;;;;:31;;:23;:31;45064:71;;;;-1:-1:-1;;;45064:71:0;;15997:2:1;45064:71:0;;;15979:21:1;16036:2;16016:18;;;16009:30;16075:29;16055:18;;;16048:57;16122:18;;45064:71:0;15795:351:1;45064:71:0;45163:1;45146:96;45171:11;45166:1;:16;45146:96;;45204:26;45214:3;45219:10;45228:1;45219:6;:10;:::i;45204:26::-;45184:3;;;;:::i;:::-;;;;45146:96;;25417:185;25555:39;25572:4;25578:2;25582:7;25555:39;;;;;;;;;;;;:16;:39::i;45260:348::-;45335:16;45363:23;45389:17;45399:6;45389:9;:17::i;:::-;45363:43;;45413:25;45455:15;45441:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45441:30:0;;45413:58;;45483:9;45478:103;45498:15;45494:1;:19;45478:103;;;45543:30;45563:6;45571:1;45543:19;:30::i;:::-;45529:8;45538:1;45529:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45515:3;;;;:::i;:::-;;;;45478:103;;;-1:-1:-1;45594:8:0;45260:348;-1:-1:-1;;;45260:348:0:o;46240:82::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46301:4:::1;:15:::0;46240:82::o;49585:92::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;49649:13:::1;:22:::0;;-1:-1:-1;;49649:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49585:92::o;35496:233::-;35571:7;35607:30;35394:10;:17;;35306:113;35607:30;35599:5;:38;35591:95;;;;-1:-1:-1;;;35591:95:0;;16771:2:1;35591:95:0;;;16753:21:1;16810:2;16790:18;;;16783:30;16849:34;16829:18;;;16822:62;-1:-1:-1;;;16900:18:1;;;16893:42;16952:19;;35591:95:0;16569:408:1;35591:95:0;35704:10;35715:5;35704:17;;;;;;;;:::i;:::-;;;;;;;;;35697:24;;35496:233;;;:::o;48611:98::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;48682:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48611:98:::0;:::o;22252:239::-;22324:7;22360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22360:16:0;22395:19;22387:73;;;;-1:-1:-1;;;22387:73:0;;13640:2:1;22387:73:0;;;13622:21:1;13679:2;13659:18;;;13652:30;13718:34;13698:18;;;13691:62;-1:-1:-1;;;13769:18:1;;;13762:39;13818:19;;22387:73:0;13438:405:1;43350:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48175:96::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;48243:9:::1;:22:::0;48175:96::o;21982:208::-;22054:7;-1:-1:-1;;;;;22082:19:0;;22074:74;;;;-1:-1:-1;;;22074:74:0;;13229:2:1;22074:74:0;;;13211:21:1;13268:2;13248:18;;;13241:30;13307:34;13287:18;;;13280:62;-1:-1:-1;;;13358:18:1;;;13351:40;13408:19;;22074:74:0;13027:406:1;22074:74:0;-1:-1:-1;;;;;;22166:16:0;;;;;:9;:16;;;;;;;21982:208::o;42455:94::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;42520:21:::1;42538:1;42520:9;:21::i;22727:104::-:0;22783:13;22816:7;22809:14;;;;;:::i;50647:189::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;50725:9:::1;50746:85;50762:5;:12;50758:1;:16;50746:85;;;50817:5;50793:11;:21;50805:5;50811:1;50805:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50793:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50793:21:0;:29;;-1:-1:-1;;50793:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50776:3;::::1;::::0;::::1;:::i;:::-;;;;50746:85;;50252:182:::0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;50324:9:::1;50345:84;50361:5;:12;50357:1;:16;50345:84;;;50416:4;50392:11;:21;50404:5;50410:1;50404:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50392:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50392:21:0;:28;;-1:-1:-1;;50392:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50375:3;::::1;::::0;::::1;:::i;:::-;;;;50345:84;;24410:295:::0;-1:-1:-1;;;;;24513:24:0;;20167:10;24513:24;;24505:62;;;;-1:-1:-1;;;24505:62:0;;11684:2:1;24505:62:0;;;11666:21:1;11723:2;11703:18;;;11696:30;11762:27;11742:18;;;11735:55;11807:18;;24505:62:0;11482:349:1;24505:62:0;20167:10;24580:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24580:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24580:53:0;;;;;;;;;;24649:48;;8792:41:1;;;24580:42:0;;20167:10;24649:48;;8765:18:1;24649:48:0;;;;;;;24410:295;;:::o;25673:328::-;25848:41;20167:10;25881:7;25848:18;:41::i;:::-;25840:103;;;;-1:-1:-1;;;25840:103:0;;;;;;;:::i;:::-;25954:39;25968:4;25974:2;25978:7;25987:5;25954:13;:39::i;43376:37::-;;;;;;;:::i;45614:421::-;27576:4;27600:16;;;:7;:16;;;;;;45712:13;;-1:-1:-1;;;;;27600:16:0;45737:95;;;;-1:-1:-1;;;45737:95:0;;9270:2:1;45737:95:0;;;9252:21:1;9309:2;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;-1:-1:-1;;;9399:18:1;;;9392:43;9452:19;;45737:95:0;9068:409:1;45737:95:0;45841:28;45872:10;:8;:10::i;:::-;45841:41;;45927:1;45902:14;45896:28;:32;:133;;;;;;;;;;;;;;;;;45964:14;45980:18;:7;:16;:18::i;:::-;46000:13;45947:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45896:133;45889:140;45614:421;-1:-1:-1;;;45614:421:0:o;49084:122::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;49167:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46956:110::-:0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;47031:11:::1;:29:::0;46956:110::o;42704:192::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42793:22:0;::::1;42785:73;;;::::0;-1:-1:-1;;;42785:73:0;;10515:2:1;42785:73:0::1;::::0;::::1;10497:21:1::0;10554:2;10534:18;;;10527:30;10593:34;10573:18;;;10566:62;-1:-1:-1;;;10644:18:1;;;10637:36;10690:19;;42785:73:0::1;10313:402:1::0;42785:73:0::1;42869:19;42879:8;42869:9;:19::i;:::-;42704:192:::0;:::o;21613:305::-;21715:4;-1:-1:-1;;;;;;21752:40:0;;-1:-1:-1;;;21752:40:0;;:105;;-1:-1:-1;;;;;;;21809:48:0;;-1:-1:-1;;;21809:48:0;21752:105;:158;;;-1:-1:-1;;;;;;;;;;7553:40:0;;;21874:36;7444:157;31493:174;31568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31568:29:0;-1:-1:-1;;;;;31568:29:0;;;;;;;;:24;;31622:23;31568:24;31622:14;:23::i;:::-;-1:-1:-1;;;;;31613:46:0;;;;;;;;;;;31493:174;;:::o;27805:348::-;27898:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;27915:73;;;;-1:-1:-1;;;27915:73:0;;12038:2:1;27915:73:0;;;12020:21:1;12077:2;12057:18;;;12050:30;12116:34;12096:18;;;12089:62;-1:-1:-1;;;12167:18:1;;;12160:42;12219:19;;27915:73:0;11836:408:1;27915:73:0;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;-1:-1:-1;;;;;28057:16:0;:7;-1:-1:-1;;;;;28057:16:0;;:51;;;;28101:7;-1:-1:-1;;;;;28077:31:0;:20;28089:7;28077:11;:20::i;:::-;-1:-1:-1;;;;;28077:31:0;;28057:51;:87;;;-1:-1:-1;;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28112:32;28049:96;27805:348;-1:-1:-1;;;;27805:348:0:o;30797:578::-;30956:4;-1:-1:-1;;;;;30929:31:0;:23;30944:7;30929:14;:23::i;:::-;-1:-1:-1;;;;;30929:31:0;;30921:85;;;;-1:-1:-1;;;30921:85:0;;15185:2:1;30921:85:0;;;15167:21:1;15224:2;15204:18;;;15197:30;15263:34;15243:18;;;15236:62;-1:-1:-1;;;15314:18:1;;;15307:39;15363:19;;30921:85:0;14983:405:1;30921:85:0;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;11279:2:1;31017:65:0;;;11261:21:1;11318:2;11298:18;;;11291:30;11357:34;11337:18;;;11330:62;-1:-1:-1;;;11408:18:1;;;11401:34;11452:19;;31017:65:0;11077:400:1;31017:65:0;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;-1:-1:-1;;;;;31241:15:0;;;;;;:9;:15;;;;;:20;;31260:1;;31241:15;:20;;31260:1;;31241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31272:13:0;;;;;;:9;:13;;;;;:18;;31289:1;;31272:13;:18;;31289:1;;31272:18;:::i;:::-;;;;-1:-1:-1;;31301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31301:21:0;-1:-1:-1;;;;;31301:21:0;;;;;;;;;31340:27;;31301:16;;31340:27;;;;;;;30797:578;;;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;42904:173::-;42979:6;;;-1:-1:-1;;;;;42996:17:0;;;-1:-1:-1;;;;;;42996:17:0;;;;;;;43029:40;;42979:6;;;42996:17;42979:6;;43029:40;;42960:16;;43029:40;42949:128;42904:173;:::o;26883:315::-;27040:28;27050:4;27056:2;27060:7;27040:9;:28::i;:::-;27087:48;27110:4;27116:2;27120:7;27129:5;27087:22;:48::i;:::-;27079:111;;;;-1:-1:-1;;;27079:111:0;;;;;;;:::i;44224:102::-;44284:13;44313:7;44306:14;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;7919:723::o;8192:53::-;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;36342:589;-1:-1:-1;;;;;36548:18:0;;36544:187;;36583:40;36615:7;37758:10;:17;;37731:24;;;;:15;:24;;;;;:44;;;37786:24;;;;;;;;;;;;37654:164;36583:40;36544:187;;;36653:2;-1:-1:-1;;;;;36645:10:0;:4;-1:-1:-1;;;;;36645:10:0;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;-1:-1:-1;;;;;36745:16:0;;36741:183;;36778:45;36815:7;36778:36;:45::i;36741:183::-;36851:4;-1:-1:-1;;;;;36845:10:0;:2;-1:-1:-1;;;;;36845:10:0;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;-1:-1:-1;;;28991:154:0;;;;;;;:::i;32232:799::-;32387:4;-1:-1:-1;;;;;32408:13:0;;10767:20;10815:8;32404:620;;32444:72;;-1:-1:-1;;;32444:72:0;;-1:-1:-1;;;;;32444:36:0;;;;;:72;;20167:10;;32495:4;;32501:7;;32510:5;;32444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:72:0;;;;;;;;-1:-1:-1;;32444:72:0;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:13:0;;32682:272;;32729:60;;-1:-1:-1;;;32729:60:0;;;;;;;:::i;32682:272::-;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;-1:-1:-1;;;;;;32567:51:0;-1:-1:-1;;;32567:51:0;;-1:-1:-1;32560:58:0;;32404:620;-1:-1:-1;33008:4:0;32232:799;;;;;;:::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38773:18;38794:26;;;:17;:26;;;;;;38711:51;;-1:-1:-1;38927:28:0;;;38923:328;;-1:-1:-1;;;;;38994:18:0;;38972:19;38994:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39045:30;;;;;;:44;;;39162:30;;:17;:30;;;;;:43;;;38923:328;-1:-1:-1;39347:26:0;;;;:17;:26;;;;;;;;39340:33;;;-1:-1:-1;;;;;39391:18:0;;;;;:12;:18;;;;;:34;;;;;;;39384:41;38445:988::o;39728:1079::-;40006:10;:17;39981:22;;40006:21;;40026:1;;40006:21;:::i;:::-;40038:18;40059:24;;;:15;:24;;;;;;40432:10;:26;;39981:46;;-1:-1:-1;40059:24:0;;39981:46;;40432:26;;;;;;:::i;:::-;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40576:28;;;:15;:28;;;;;;;:41;;;40748:24;;;;;40741:31;40783:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39799:1008;;;39728:1079;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;-1:-1:-1;;;;;37365:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37410:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37232:221:0:o;29489:382::-;-1:-1:-1;;;;;29569:16:0;;29561:61;;;;-1:-1:-1;;;29561:61:0;;14050:2:1;29561:61:0;;;14032:21:1;;;14069:18;;;14062:30;14128:34;14108:18;;;14101:62;14180:18;;29561:61:0;13848:356:1;29561:61:0;27576:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;:30;29633:58;;;;-1:-1:-1;;;29633:58:0;;10922:2:1;29633:58:0;;;10904:21:1;10961:2;10941:18;;;10934:30;11000;10980:18;;;10973:58;11048:18;;29633:58:0;10720:352:1;29633:58:0;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;-1:-1:-1;;;;;29762:13:0;;;;;;:9;:13;;;;;:18;;29779:1;;29762:13;:18;;29779:1;;29762:18;:::i;:::-;;;;-1:-1:-1;;29791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29791:21:0;-1:-1:-1;;;;;29791:21:0;;;;;;;;29830:33;;29791:16;;;29830:33;;29791:16;;29830:33;29489:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:248::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;-1:-1:-1;;5211:23:1;;;5281:2;5266:18;;;5253:32;;-1:-1:-1;5043:248:1:o;5296:257::-;5337:3;5375:5;5369:12;5402:6;5397:3;5390:19;5418:63;5474:6;5467:4;5462:3;5458:14;5451:4;5444:5;5440:16;5418:63;:::i;:::-;5535:2;5514:15;-1:-1:-1;;5510:29:1;5501:39;;;;5542:4;5497:50;;5296:257;-1:-1:-1;;5296:257:1:o;5558:1527::-;5782:3;5820:6;5814:13;5846:4;5859:51;5903:6;5898:3;5893:2;5885:6;5881:15;5859:51;:::i;:::-;5973:13;;5932:16;;;;5995:55;5973:13;5932:16;6017:15;;;5995:55;:::i;:::-;6139:13;;6072:20;;;6112:1;;6199;6221:18;;;;6274;;;;6301:93;;6379:4;6369:8;6365:19;6353:31;;6301:93;6442:2;6432:8;6429:16;6409:18;6406:40;6403:167;;;-1:-1:-1;;;6469:33:1;;6525:4;6522:1;6515:15;6555:4;6476:3;6543:17;6403:167;6586:18;6613:110;;;;6737:1;6732:328;;;;6579:481;;6613:110;-1:-1:-1;;6648:24:1;;6634:39;;6693:20;;;;-1:-1:-1;6613:110:1;;6732:328;17517:1;17510:14;;;17554:4;17541:18;;6827:1;6841:169;6855:8;6852:1;6849:15;6841:169;;;6937:14;;6922:13;;;6915:37;6980:16;;;;6872:10;;6841:169;;;6845:3;;7041:8;7034:5;7030:20;7023:27;;6579:481;-1:-1:-1;7076:3:1;;5558:1527;-1:-1:-1;;;;;;;;;;;5558:1527:1:o;7522:488::-;-1:-1:-1;;;;;7791:15:1;;;7773:34;;7843:15;;7838:2;7823:18;;7816:43;7890:2;7875:18;;7868:34;;;7938:3;7933:2;7918:18;;7911:31;;;7716:4;;7959:45;;7984:19;;7976:6;7959:45;:::i;:::-;7951:53;7522:488;-1:-1:-1;;;;;;7522:488:1:o;8015:632::-;8186:2;8238:21;;;8308:13;;8211:18;;;8330:22;;;8157:4;;8186:2;8409:15;;;;8383:2;8368:18;;;8157:4;8452:169;8466:6;8463:1;8460:13;8452:169;;;8527:13;;8515:26;;8596:15;;;;8561:12;;;;8488:1;8481:9;8452:169;;;-1:-1:-1;8638:3:1;;8015:632;-1:-1:-1;;;;;;8015:632:1:o;8844:219::-;8993:2;8982:9;8975:21;8956:4;9013:44;9053:2;9042:9;9038:18;9030:6;9013:44;:::i;9894:414::-;10096:2;10078:21;;;10135:2;10115:18;;;10108:30;10174:34;10169:2;10154:18;;10147:62;-1:-1:-1;;;10240:2:1;10225:18;;10218:48;10298:3;10283:19;;9894:414::o;14622:356::-;14824:2;14806:21;;;14843:18;;;14836:30;14902:34;14897:2;14882:18;;14875:62;14969:2;14954:18;;14622:356::o;16151:413::-;16353:2;16335:21;;;16392:2;16372:18;;;16365:30;16431:34;16426:2;16411:18;;16404:62;-1:-1:-1;;;16497:2:1;16482:18;;16475:47;16554:3;16539:19;;16151:413::o;17164:275::-;17235:2;17229:9;17300:2;17281:13;;-1:-1:-1;;17277:27:1;17265:40;;17335:18;17320:34;;17356:22;;;17317:62;17314:88;;;17382:18;;:::i;:::-;17418:2;17411:22;17164:275;;-1:-1:-1;17164:275:1:o;17570:128::-;17610:3;17641:1;17637:6;17634:1;17631:13;17628:39;;;17647:18;;:::i;:::-;-1:-1:-1;17683:9:1;;17570:128::o;17703:120::-;17743:1;17769;17759:35;;17774:18;;:::i;:::-;-1:-1:-1;17808:9:1;;17703:120::o;17828:168::-;17868:7;17934:1;17930;17926:6;17922:14;17919:1;17916:21;17911:1;17904:9;17897:17;17893:45;17890:71;;;17941:18;;:::i;:::-;-1:-1:-1;17981:9:1;;17828:168::o;18001:125::-;18041:4;18069:1;18066;18063:8;18060:34;;;18074:18;;:::i;:::-;-1:-1:-1;18111:9:1;;18001:125::o;18131:258::-;18203:1;18213:113;18227:6;18224:1;18221:13;18213:113;;;18303:11;;;18297:18;18284:11;;;18277:39;18249:2;18242:10;18213:113;;;18344:6;18341:1;18338:13;18335:48;;;-1:-1:-1;;18379:1:1;18361:16;;18354:27;18131:258::o;18394:380::-;18473:1;18469:12;;;;18516;;;18537:61;;18591:4;18583:6;18579:17;18569:27;;18537:61;18644:2;18636:6;18633:14;18613:18;18610:38;18607:161;;;18690:10;18685:3;18681:20;18678:1;18671:31;18725:4;18722:1;18715:15;18753:4;18750:1;18743:15;18607:161;;18394:380;;;:::o;18779:135::-;18818:3;-1:-1:-1;;18839:17:1;;18836:43;;;18859:18;;:::i;:::-;-1:-1:-1;18906:1:1;18895:13;;18779:135::o;18919:112::-;18951:1;18977;18967:35;;18982:18;;:::i;:::-;-1:-1:-1;19016:9:1;;18919:112::o;19036:127::-;19097:10;19092:3;19088:20;19085:1;19078:31;19128:4;19125:1;19118:15;19152:4;19149:1;19142:15;19168:127;19229:10;19224:3;19220:20;19217:1;19210:31;19260:4;19257:1;19250:15;19284:4;19281:1;19274:15;19300:127;19361:10;19356:3;19352:20;19349:1;19342:31;19392:4;19389:1;19382:15;19416:4;19413:1;19406:15;19432:127;19493:10;19488:3;19484:20;19481:1;19474:31;19524:4;19521:1;19514:15;19548:4;19545:1;19538:15;19564:127;19625:10;19620:3;19616:20;19613:1;19606:31;19656:4;19653:1;19646:15;19680:4;19677:1;19670:15;19696:131;-1:-1:-1;;;;;;19770:32:1;;19760:43;;19750:71;;19817:1;19814;19807:12
Swarm Source
ipfs://e73366b2a25c306a798d42e7cee6cc8160aea4610e4ae0edfa106bb6c0b55089
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.