ETH Price: $3,991.39 (+2.11%)

Token

EtherPlant (ETHPLNT)
 

Overview

Max Total Supply

3 ETHPLNT

Holders

3

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ETHPLNT
0xb65296acc3685e87a9c3262f04bb60ea31a34d67
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EtherPlant

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-11
*/

//SPDX-License-Identifier: UNLICENSED

// File: @openzeppelin/contracts/utils/Strings.sol

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

interface IRender {
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

contract EtherPlant is ERC721, Ownable {

    uint256 public maxToken = 721;
    uint256 public totalSupply = 0;
    uint256 public salePrice = 0.0721 ether;
    bool public paused;
    mapping(address => uint256) private minted;

    IRender public render;

    mapping(uint256 => uint256) public tokenSeed;
    mapping(uint256 => uint256) public watertime;
    mapping(uint256 => uint256) public lastwatertime;
    
    constructor () ERC721 ("EtherPlant","ETHPLNT")  {}

    function mintGift(address _address) public onlyOwner {
        require((totalSupply + 1) <= maxToken, "No more NFTs");

        totalSupply++;
        tokenSeed[totalSupply] = uint256(keccak256(abi.encodePacked(block.timestamp, _address, totalSupply)));
        _mint(_address, totalSupply);
    }

    function mintSeed() public payable onlySender {
        require(paused, "Sale paused");
        require((totalSupply + 1) <= maxToken, "No more NFTs");
        require(msg.value >= salePrice, "Value sent is not correct");
        require(minted[msg.sender] == 0, "You have no mint left");

        minted[msg.sender]++;
        totalSupply++;
        tokenSeed[totalSupply] = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, totalSupply)));
        _mint(msg.sender, totalSupply);
    }

    function waterPlant (uint256 tokenId) external {
        require(watertime[tokenId] == 0 || block.timestamp - lastwatertime[tokenId] > 7 days, "only once a week");
        require(watertime[tokenId] == 0 || block.timestamp - lastwatertime[tokenId] < 14 days, "dead! Not growing anmore");
        require(msg.sender == ownerOf(tokenId), "only owner can grow the plant");
        require(watertime[tokenId] < 10, "this plant fully grown");     

        lastwatertime[tokenId] = block.timestamp;
        watertime[tokenId]++;
    } 

    function setRender(address _address) external onlyOwner {
        render = IRender(_address);
    }

    function setSale() public onlyOwner {
        paused = !paused;
    }

    function getTokenSeed(uint256 tokenId) external view returns (uint256) {
        return tokenSeed[tokenId];
    }

    function getTime(uint256 tokenId) external view returns (uint256) {
        return lastwatertime[tokenId];
    }

    function getPhase(uint256 tokenId) external view returns (uint256) {
        return watertime[tokenId];
    } 
    
    function sendEthAll() external onlyOwner {
        sendEth(0xb65296acc3685e87A9c3262f04Bb60EA31a34d67, address(this).balance);
    }

    function sendEth(address to, uint amount) internal {
        (bool success,) = to.call{value: amount}("");
        require(success, "Failed to send ether");
    }

    modifier onlySender() {
        require(msg.sender == tx.origin, "only sender");
        _;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Plant not found");
        return render.tokenURI(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastwatertime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintSeed","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"render","outputs":[{"internalType":"contract IRender","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendEthAll","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":"address","name":"_address","type":"address"}],"name":"setRender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSeed","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"waterPlant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"watertime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526102d160075560006008556701002691684e40006009553480156200002857600080fd5b50604080518082018252600a815269115d1a195c941b185b9d60b21b6020808301918252835180850190945260078452661155121413139560ca1b9084015281519192916200007a9160009162000109565b5080516200009090600190602084019062000109565b505050620000ad620000a7620000b360201b60201c565b620000b7565b620001ec565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011790620001af565b90600052602060002090601f0160209004810192826200013b576000855562000186565b82601f106200015657805160ff191683800117855562000186565b8280016001018555821562000186579182015b828111156200018657825182559160200191906001019062000169565b506200019492915062000198565b5090565b5b8082111562000194576000815560010162000199565b600181811c90821680620001c457607f821691505b60208210811415620001e657634e487b7160e01b600052602260045260246000fd5b50919050565b611e8080620001fc6000396000f3fe6080604052600436106101ee5760003560e01c8063736278261161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610593578063f0c136cb146105dc578063f2fde38b146105fc578063f51f96dd1461061c578063f58e33a91461063257600080fd5b8063b88d4fde1461051d578063c87b56dd1461053d578063ca69e3231461055d578063d607497a1461057357600080fd5b80639886bcfa116100dc5780639886bcfa14610490578063a22cb465146104b0578063aec6c267146104d0578063b712f5fa146104fd57600080fd5b8063736278261461041b5780638da5cb5b14610448578063922ce7351461046657806395d89b411461047b57600080fd5b806326ab90fa116101855780635f516836116101545780635f516836146103995780636352211e146103c657806370a08231146103e6578063715018a61461040657600080fd5b806326ab90fa1461032a57806342842e0e146103325780635a4c1624146103525780635c975abb1461037f57600080fd5b806316ef376b116101c157806316ef376b146102a457806318160ddd146102df5780631d9cfd6d146102f557806323b872dd1461030a57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611938565b61065f565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106b1565b60405161021f91906119b4565b34801561025657600080fd5b5061026a6102653660046119c7565b610743565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d3660046119fc565b6107dd565b005b3480156102b057600080fd5b506102d16102bf3660046119c7565b6000908152600e602052604090205490565b60405190815260200161021f565b3480156102eb57600080fd5b506102d160085481565b34801561030157600080fd5b506102a26108f3565b34801561031657600080fd5b506102a2610325366004611a26565b610931565b6102a2610962565b34801561033e57600080fd5b506102a261034d366004611a26565b610b7b565b34801561035e57600080fd5b506102d161036d3660046119c7565b6000908152600d602052604090205490565b34801561038b57600080fd5b50600a546102139060ff1681565b3480156103a557600080fd5b506102d16103b43660046119c7565b600d6020526000908152604090205481565b3480156103d257600080fd5b5061026a6103e13660046119c7565b610b96565b3480156103f257600080fd5b506102d1610401366004611a62565b610c0d565b34801561041257600080fd5b506102a2610c94565b34801561042757600080fd5b506102d16104363660046119c7565b6000908152600f602052604090205490565b34801561045457600080fd5b506006546001600160a01b031661026a565b34801561047257600080fd5b506102a2610cc8565b34801561048757600080fd5b5061023d610d10565b34801561049c57600080fd5b506102a26104ab3660046119c7565b610d1f565b3480156104bc57600080fd5b506102a26104cb366004611a7d565b610f05565b3480156104dc57600080fd5b506102d16104eb3660046119c7565b600f6020526000908152604090205481565b34801561050957600080fd5b506102a2610518366004611a62565b610f14565b34801561052957600080fd5b506102a2610538366004611b28565b611009565b34801561054957600080fd5b5061023d6105583660046119c7565b611041565b34801561056957600080fd5b506102d160075481565b34801561057f57600080fd5b50600c5461026a906001600160a01b031681565b34801561059f57600080fd5b506102136105ae366004611bd3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105e857600080fd5b506102a26105f7366004611a62565b61110b565b34801561060857600080fd5b506102a2610617366004611a62565b611157565b34801561062857600080fd5b506102d160095481565b34801561063e57600080fd5b506102d161064d3660046119c7565b600e6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061069057506001600160e01b03198216635b5e139f60e01b145b806106ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106c090611c06565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90611c06565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107e882610b96565b9050806001600160a01b0316836001600160a01b031614156108565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b8565b336001600160a01b0382161480610872575061087281336105ae565b6108e45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b8565b6108ee83836111ef565b505050565b6006546001600160a01b0316331461091d5760405162461bcd60e51b81526004016107b890611c41565b600a805460ff19811660ff90911615179055565b61093b338261125d565b6109575760405162461bcd60e51b81526004016107b890611c76565b6108ee838383611354565b33321461099f5760405162461bcd60e51b815260206004820152600b60248201526a37b7363c9039b2b73232b960a91b60448201526064016107b8565b600a5460ff166109df5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b60448201526064016107b8565b6007546008546109f0906001611cdd565b1115610a2d5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b60448201526064016107b8565b600954341015610a7f5760405162461bcd60e51b815260206004820152601960248201527f56616c75652073656e74206973206e6f7420636f72726563740000000000000060448201526064016107b8565b336000908152600b602052604090205415610ad45760405162461bcd60e51b8152602060048201526015602482015274165bdd481a185d99481b9bc81b5a5b9d081b19599d605a1b60448201526064016107b8565b336000908152600b60205260408120805491610aef83611cf5565b909155505060088054906000610b0483611cf5565b9091555050600854604080514260208201526bffffffffffffffffffffffff193360601b169181019190915260548101919091526074016040516020818303038152906040528051906020012060001c600d6000600854815260200190815260200160002081905550610b79336008546114f4565b565b6108ee83838360405180602001604052806000815250611009565b6000818152600260205260408120546001600160a01b0316806106ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b8565b60006001600160a01b038216610c785760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016107b890611c41565b610b796000611636565b6006546001600160a01b03163314610cf25760405162461bcd60e51b81526004016107b890611c41565b610b7973b65296acc3685e87a9c3262f04bb60ea31a34d6747611688565b6060600180546106c090611c06565b6000818152600e60205260409020541580610d5557506000818152600f602052604090205462093a8090610d539042611d10565b115b610d945760405162461bcd60e51b815260206004820152601060248201526f6f6e6c79206f6e63652061207765656b60801b60448201526064016107b8565b6000818152600e60205260409020541580610dca57506000818152600f60205260409020546212750090610dc89042611d10565b105b610e165760405162461bcd60e51b815260206004820152601860248201527f6465616421204e6f742067726f77696e6720616e6d6f7265000000000000000060448201526064016107b8565b610e1f81610b96565b6001600160a01b0316336001600160a01b031614610e7f5760405162461bcd60e51b815260206004820152601d60248201527f6f6e6c79206f776e65722063616e2067726f772074686520706c616e7400000060448201526064016107b8565b6000818152600e6020526040902054600a11610ed65760405162461bcd60e51b81526020600482015260166024820152753a3434b990383630b73a10333ab6363c9033b937bbb760511b60448201526064016107b8565b6000818152600f60209081526040808320429055600e9091528120805491610efd83611cf5565b919050555050565b610f10338383611722565b5050565b6006546001600160a01b03163314610f3e5760405162461bcd60e51b81526004016107b890611c41565b600754600854610f4f906001611cdd565b1115610f8c5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b60448201526064016107b8565b60088054906000610f9c83611cf5565b9091555050600880546040805142602080830191909152606086901b6bffffffffffffffffffffffff191682840152605480830185905283518084039091018152607490920183528151918101919091206000938452600d909152912055546110069082906114f4565b50565b611013338361125d565b61102f5760405162461bcd60e51b81526004016107b890611c76565b61103b848484846117f1565b50505050565b6000818152600260205260409020546060906001600160a01b031661109a5760405162461bcd60e51b815260206004820152600f60248201526e141b185b9d081b9bdd08199bdd5b99608a1b60448201526064016107b8565b600c5460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd90602401600060405180830381865afa1580156110e3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106ab9190810190611d27565b6006546001600160a01b031633146111355760405162461bcd60e51b81526004016107b890611c41565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146111815760405162461bcd60e51b81526004016107b890611c41565b6001600160a01b0381166111e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b8565b61100681611636565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122482610b96565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b8565b60006112e183610b96565b9050806001600160a01b0316846001600160a01b0316148061131c5750836001600160a01b031661131184610743565b6001600160a01b0316145b8061134c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661136782610b96565b6001600160a01b0316146113cf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b8565b6001600160a01b0382166114315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b8565b61143c6000826111ef565b6001600160a01b0383166000908152600360205260408120805460019290611465908490611d10565b90915550506001600160a01b0382166000908152600360205260408120805460019290611493908490611cdd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661154a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b8565b6000818152600260205260409020546001600160a01b0316156115af5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b8565b6001600160a01b03821660009081526003602052604081208054600192906115d8908490611cdd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116d5576040519150601f19603f3d011682016040523d82523d6000602084013e6116da565b606091505b50509050806108ee5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b60448201526064016107b8565b816001600160a01b0316836001600160a01b031614156117845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117fc848484611354565b61180884848484611824565b61103b5760405162461bcd60e51b81526004016107b890611d9e565b60006001600160a01b0384163b1561191757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611868903390899088908890600401611df0565b6020604051808303816000875af19250505080156118a3575060408051601f3d908101601f191682019092526118a091810190611e2d565b60015b6118fd573d8080156118d1576040519150601f19603f3d011682016040523d82523d6000602084013e6118d6565b606091505b5080516118f55760405162461bcd60e51b81526004016107b890611d9e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061134c565b506001949350505050565b6001600160e01b03198116811461100657600080fd5b60006020828403121561194a57600080fd5b813561195581611922565b9392505050565b60005b8381101561197757818101518382015260200161195f565b8381111561103b5750506000910152565b600081518084526119a081602086016020860161195c565b601f01601f19169290920160200192915050565b6020815260006119556020830184611988565b6000602082840312156119d957600080fd5b5035919050565b80356001600160a01b03811681146119f757600080fd5b919050565b60008060408385031215611a0f57600080fd5b611a18836119e0565b946020939093013593505050565b600080600060608486031215611a3b57600080fd5b611a44846119e0565b9250611a52602085016119e0565b9150604084013590509250925092565b600060208284031215611a7457600080fd5b611955826119e0565b60008060408385031215611a9057600080fd5b611a99836119e0565b915060208301358015158114611aae57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611af857611af8611ab9565b604052919050565b600067ffffffffffffffff821115611b1a57611b1a611ab9565b50601f01601f191660200190565b60008060008060808587031215611b3e57600080fd5b611b47856119e0565b9350611b55602086016119e0565b925060408501359150606085013567ffffffffffffffff811115611b7857600080fd5b8501601f81018713611b8957600080fd5b8035611b9c611b9782611b00565b611acf565b818152886020838501011115611bb157600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215611be657600080fd5b611bef836119e0565b9150611bfd602084016119e0565b90509250929050565b600181811c90821680611c1a57607f821691505b60208210811415611c3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cf057611cf0611cc7565b500190565b6000600019821415611d0957611d09611cc7565b5060010190565b600082821015611d2257611d22611cc7565b500390565b600060208284031215611d3957600080fd5b815167ffffffffffffffff811115611d5057600080fd5b8201601f81018413611d6157600080fd5b8051611d6f611b9782611b00565b818152856020838501011115611d8457600080fd5b611d9582602083016020860161195c565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2390830184611988565b9695505050505050565b600060208284031215611e3f57600080fd5b81516119558161192256fea264697066735822122014f9252778ebb313ec431c02e0da97464f1a33dfcad629d9860ce81b6cee817c64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063736278261161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610593578063f0c136cb146105dc578063f2fde38b146105fc578063f51f96dd1461061c578063f58e33a91461063257600080fd5b8063b88d4fde1461051d578063c87b56dd1461053d578063ca69e3231461055d578063d607497a1461057357600080fd5b80639886bcfa116100dc5780639886bcfa14610490578063a22cb465146104b0578063aec6c267146104d0578063b712f5fa146104fd57600080fd5b8063736278261461041b5780638da5cb5b14610448578063922ce7351461046657806395d89b411461047b57600080fd5b806326ab90fa116101855780635f516836116101545780635f516836146103995780636352211e146103c657806370a08231146103e6578063715018a61461040657600080fd5b806326ab90fa1461032a57806342842e0e146103325780635a4c1624146103525780635c975abb1461037f57600080fd5b806316ef376b116101c157806316ef376b146102a457806318160ddd146102df5780631d9cfd6d146102f557806323b872dd1461030a57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611938565b61065f565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106b1565b60405161021f91906119b4565b34801561025657600080fd5b5061026a6102653660046119c7565b610743565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d3660046119fc565b6107dd565b005b3480156102b057600080fd5b506102d16102bf3660046119c7565b6000908152600e602052604090205490565b60405190815260200161021f565b3480156102eb57600080fd5b506102d160085481565b34801561030157600080fd5b506102a26108f3565b34801561031657600080fd5b506102a2610325366004611a26565b610931565b6102a2610962565b34801561033e57600080fd5b506102a261034d366004611a26565b610b7b565b34801561035e57600080fd5b506102d161036d3660046119c7565b6000908152600d602052604090205490565b34801561038b57600080fd5b50600a546102139060ff1681565b3480156103a557600080fd5b506102d16103b43660046119c7565b600d6020526000908152604090205481565b3480156103d257600080fd5b5061026a6103e13660046119c7565b610b96565b3480156103f257600080fd5b506102d1610401366004611a62565b610c0d565b34801561041257600080fd5b506102a2610c94565b34801561042757600080fd5b506102d16104363660046119c7565b6000908152600f602052604090205490565b34801561045457600080fd5b506006546001600160a01b031661026a565b34801561047257600080fd5b506102a2610cc8565b34801561048757600080fd5b5061023d610d10565b34801561049c57600080fd5b506102a26104ab3660046119c7565b610d1f565b3480156104bc57600080fd5b506102a26104cb366004611a7d565b610f05565b3480156104dc57600080fd5b506102d16104eb3660046119c7565b600f6020526000908152604090205481565b34801561050957600080fd5b506102a2610518366004611a62565b610f14565b34801561052957600080fd5b506102a2610538366004611b28565b611009565b34801561054957600080fd5b5061023d6105583660046119c7565b611041565b34801561056957600080fd5b506102d160075481565b34801561057f57600080fd5b50600c5461026a906001600160a01b031681565b34801561059f57600080fd5b506102136105ae366004611bd3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105e857600080fd5b506102a26105f7366004611a62565b61110b565b34801561060857600080fd5b506102a2610617366004611a62565b611157565b34801561062857600080fd5b506102d160095481565b34801561063e57600080fd5b506102d161064d3660046119c7565b600e6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061069057506001600160e01b03198216635b5e139f60e01b145b806106ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106c090611c06565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90611c06565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107e882610b96565b9050806001600160a01b0316836001600160a01b031614156108565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b8565b336001600160a01b0382161480610872575061087281336105ae565b6108e45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b8565b6108ee83836111ef565b505050565b6006546001600160a01b0316331461091d5760405162461bcd60e51b81526004016107b890611c41565b600a805460ff19811660ff90911615179055565b61093b338261125d565b6109575760405162461bcd60e51b81526004016107b890611c76565b6108ee838383611354565b33321461099f5760405162461bcd60e51b815260206004820152600b60248201526a37b7363c9039b2b73232b960a91b60448201526064016107b8565b600a5460ff166109df5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b60448201526064016107b8565b6007546008546109f0906001611cdd565b1115610a2d5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b60448201526064016107b8565b600954341015610a7f5760405162461bcd60e51b815260206004820152601960248201527f56616c75652073656e74206973206e6f7420636f72726563740000000000000060448201526064016107b8565b336000908152600b602052604090205415610ad45760405162461bcd60e51b8152602060048201526015602482015274165bdd481a185d99481b9bc81b5a5b9d081b19599d605a1b60448201526064016107b8565b336000908152600b60205260408120805491610aef83611cf5565b909155505060088054906000610b0483611cf5565b9091555050600854604080514260208201526bffffffffffffffffffffffff193360601b169181019190915260548101919091526074016040516020818303038152906040528051906020012060001c600d6000600854815260200190815260200160002081905550610b79336008546114f4565b565b6108ee83838360405180602001604052806000815250611009565b6000818152600260205260408120546001600160a01b0316806106ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b8565b60006001600160a01b038216610c785760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016107b890611c41565b610b796000611636565b6006546001600160a01b03163314610cf25760405162461bcd60e51b81526004016107b890611c41565b610b7973b65296acc3685e87a9c3262f04bb60ea31a34d6747611688565b6060600180546106c090611c06565b6000818152600e60205260409020541580610d5557506000818152600f602052604090205462093a8090610d539042611d10565b115b610d945760405162461bcd60e51b815260206004820152601060248201526f6f6e6c79206f6e63652061207765656b60801b60448201526064016107b8565b6000818152600e60205260409020541580610dca57506000818152600f60205260409020546212750090610dc89042611d10565b105b610e165760405162461bcd60e51b815260206004820152601860248201527f6465616421204e6f742067726f77696e6720616e6d6f7265000000000000000060448201526064016107b8565b610e1f81610b96565b6001600160a01b0316336001600160a01b031614610e7f5760405162461bcd60e51b815260206004820152601d60248201527f6f6e6c79206f776e65722063616e2067726f772074686520706c616e7400000060448201526064016107b8565b6000818152600e6020526040902054600a11610ed65760405162461bcd60e51b81526020600482015260166024820152753a3434b990383630b73a10333ab6363c9033b937bbb760511b60448201526064016107b8565b6000818152600f60209081526040808320429055600e9091528120805491610efd83611cf5565b919050555050565b610f10338383611722565b5050565b6006546001600160a01b03163314610f3e5760405162461bcd60e51b81526004016107b890611c41565b600754600854610f4f906001611cdd565b1115610f8c5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b60448201526064016107b8565b60088054906000610f9c83611cf5565b9091555050600880546040805142602080830191909152606086901b6bffffffffffffffffffffffff191682840152605480830185905283518084039091018152607490920183528151918101919091206000938452600d909152912055546110069082906114f4565b50565b611013338361125d565b61102f5760405162461bcd60e51b81526004016107b890611c76565b61103b848484846117f1565b50505050565b6000818152600260205260409020546060906001600160a01b031661109a5760405162461bcd60e51b815260206004820152600f60248201526e141b185b9d081b9bdd08199bdd5b99608a1b60448201526064016107b8565b600c5460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd90602401600060405180830381865afa1580156110e3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106ab9190810190611d27565b6006546001600160a01b031633146111355760405162461bcd60e51b81526004016107b890611c41565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146111815760405162461bcd60e51b81526004016107b890611c41565b6001600160a01b0381166111e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b8565b61100681611636565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122482610b96565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b8565b60006112e183610b96565b9050806001600160a01b0316846001600160a01b0316148061131c5750836001600160a01b031661131184610743565b6001600160a01b0316145b8061134c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661136782610b96565b6001600160a01b0316146113cf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b8565b6001600160a01b0382166114315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b8565b61143c6000826111ef565b6001600160a01b0383166000908152600360205260408120805460019290611465908490611d10565b90915550506001600160a01b0382166000908152600360205260408120805460019290611493908490611cdd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661154a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b8565b6000818152600260205260409020546001600160a01b0316156115af5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b8565b6001600160a01b03821660009081526003602052604081208054600192906115d8908490611cdd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116d5576040519150601f19603f3d011682016040523d82523d6000602084013e6116da565b606091505b50509050806108ee5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b60448201526064016107b8565b816001600160a01b0316836001600160a01b031614156117845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117fc848484611354565b61180884848484611824565b61103b5760405162461bcd60e51b81526004016107b890611d9e565b60006001600160a01b0384163b1561191757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611868903390899088908890600401611df0565b6020604051808303816000875af19250505080156118a3575060408051601f3d908101601f191682019092526118a091810190611e2d565b60015b6118fd573d8080156118d1576040519150601f19603f3d011682016040523d82523d6000602084013e6118d6565b606091505b5080516118f55760405162461bcd60e51b81526004016107b890611d9e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061134c565b506001949350505050565b6001600160e01b03198116811461100657600080fd5b60006020828403121561194a57600080fd5b813561195581611922565b9392505050565b60005b8381101561197757818101518382015260200161195f565b8381111561103b5750506000910152565b600081518084526119a081602086016020860161195c565b601f01601f19169290920160200192915050565b6020815260006119556020830184611988565b6000602082840312156119d957600080fd5b5035919050565b80356001600160a01b03811681146119f757600080fd5b919050565b60008060408385031215611a0f57600080fd5b611a18836119e0565b946020939093013593505050565b600080600060608486031215611a3b57600080fd5b611a44846119e0565b9250611a52602085016119e0565b9150604084013590509250925092565b600060208284031215611a7457600080fd5b611955826119e0565b60008060408385031215611a9057600080fd5b611a99836119e0565b915060208301358015158114611aae57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611af857611af8611ab9565b604052919050565b600067ffffffffffffffff821115611b1a57611b1a611ab9565b50601f01601f191660200190565b60008060008060808587031215611b3e57600080fd5b611b47856119e0565b9350611b55602086016119e0565b925060408501359150606085013567ffffffffffffffff811115611b7857600080fd5b8501601f81018713611b8957600080fd5b8035611b9c611b9782611b00565b611acf565b818152886020838501011115611bb157600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215611be657600080fd5b611bef836119e0565b9150611bfd602084016119e0565b90509250929050565b600181811c90821680611c1a57607f821691505b60208210811415611c3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cf057611cf0611cc7565b500190565b6000600019821415611d0957611d09611cc7565b5060010190565b600082821015611d2257611d22611cc7565b500390565b600060208284031215611d3957600080fd5b815167ffffffffffffffff811115611d5057600080fd5b8201601f81018413611d6157600080fd5b8051611d6f611b9782611b00565b818152856020838501011115611d8457600080fd5b611d9582602083016020860161195c565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2390830184611988565b9695505050505050565b600060208284031215611e3f57600080fd5b81516119558161192256fea264697066735822122014f9252778ebb313ec431c02e0da97464f1a33dfcad629d9860ce81b6cee817c64736f6c634300080c0033

Deployed Bytecode Sourcemap

36290:3046:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23745:305;;;;;;;;;;-1:-1:-1;23745:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23745:305:0;;;;;;;;24690:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26249:221::-;;;;;;;;;;-1:-1:-1;26249:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26249:221:0;1528:203:1;25772:411:0;;;;;;;;;;-1:-1:-1;25772:411:0;;;;;:::i;:::-;;:::i;:::-;;38593:111;;;;;;;;;;-1:-1:-1;38593:111:0;;;;;:::i;:::-;38651:7;38678:18;;;:9;:18;;;;;;;38593:111;;;;2319:25:1;;;2307:2;2292:18;38593:111:0;2173:177:1;36374:30:0;;;;;;;;;;;;;;;;38269:71;;;;;;;;;;;;;:::i;26999:339::-;;;;;;;;;;-1:-1:-1;26999:339:0;;;;;:::i;:::-;;:::i;37095:511::-;;;:::i;27409:185::-;;;;;;;;;;-1:-1:-1;27409:185:0;;;;;:::i;:::-;;:::i;38348:115::-;;;;;;;;;;-1:-1:-1;38348:115:0;;;;;:::i;:::-;38410:7;38437:18;;;:9;:18;;;;;;;38348:115;36457:18;;;;;;;;;;-1:-1:-1;36457:18:0;;;;;;;;36563:44;;;;;;;;;;-1:-1:-1;36563:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;24384:239;;;;;;;;;;-1:-1:-1;24384:239:0;;;;;:::i;:::-;;:::i;24114:208::-;;;;;;;;;;-1:-1:-1;24114:208:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;38471:114::-;;;;;;;;;;-1:-1:-1;38471:114:0;;;;;:::i;:::-;38528:7;38555:22;;;:13;:22;;;;;;;38471:114;4112:87;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;38717:134;;;;;;;;;;;;;:::i;24859:104::-;;;;;;;;;;;;;:::i;37614:537::-;;;;;;;;;;-1:-1:-1;37614:537:0;;;;;:::i;:::-;;:::i;26542:155::-;;;;;;;;;;-1:-1:-1;26542:155:0;;;;;:::i;:::-;;:::i;36665:48::-;;;;;;;;;;-1:-1:-1;36665:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;36784:303;;;;;;;;;;-1:-1:-1;36784:303:0;;;;;:::i;:::-;;:::i;27665:328::-;;;;;;;;;;-1:-1:-1;27665:328:0;;;;;:::i;:::-;;:::i;39140:193::-;;;;;;;;;;-1:-1:-1;39140:193:0;;;;;:::i;:::-;;:::i;36338:29::-;;;;;;;;;;;;;;;;36533:21;;;;;;;;;;-1:-1:-1;36533:21:0;;;;-1:-1:-1;;;;;36533:21:0;;;26768:164;;;;;;;;;;-1:-1:-1;26768:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26889:25:0;;;26865:4;26889:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26768:164;38160:101;;;;;;;;;;-1:-1:-1;38160:101:0;;;;;:::i;:::-;;:::i;5021:201::-;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;36411:39::-;;;;;;;;;;;;;;;;36614:44;;;;;;;;;;-1:-1:-1;36614:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;23745:305;23847:4;-1:-1:-1;;;;;;23884:40:0;;-1:-1:-1;;;23884:40:0;;:105;;-1:-1:-1;;;;;;;23941:48:0;;-1:-1:-1;;;23941:48:0;23884:105;:158;;;-1:-1:-1;;;;;;;;;;16645:40:0;;;24006:36;23864:178;23745:305;-1:-1:-1;;23745:305:0:o;24690:100::-;24744:13;24777:5;24770:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24690:100;:::o;26249:221::-;26325:7;29592:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29592:16:0;26345:73;;;;-1:-1:-1;;;26345:73:0;;5803:2:1;26345:73:0;;;5785:21:1;5842:2;5822:18;;;5815:30;5881:34;5861:18;;;5854:62;-1:-1:-1;;;5932:18:1;;;5925:42;5984:19;;26345:73:0;;;;;;;;;-1:-1:-1;26438:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26438:24:0;;26249:221::o;25772:411::-;25853:13;25869:23;25884:7;25869:14;:23::i;:::-;25853:39;;25917:5;-1:-1:-1;;;;;25911:11:0;:2;-1:-1:-1;;;;;25911:11:0;;;25903:57;;;;-1:-1:-1;;;25903:57:0;;6216:2:1;25903:57:0;;;6198:21:1;6255:2;6235:18;;;6228:30;6294:34;6274:18;;;6267:62;-1:-1:-1;;;6345:18:1;;;6338:31;6386:19;;25903:57:0;6014:397:1;25903:57:0;2920:10;-1:-1:-1;;;;;25995:21:0;;;;:62;;-1:-1:-1;26020:37:0;26037:5;2920:10;26768:164;:::i;26020:37::-;25973:168;;;;-1:-1:-1;;;25973:168:0;;6618:2:1;25973:168:0;;;6600:21:1;6657:2;6637:18;;;6630:30;6696:34;6676:18;;;6669:62;6767:26;6747:18;;;6740:54;6811:19;;25973:168:0;6416:420:1;25973:168:0;26154:21;26163:2;26167:7;26154:8;:21::i;:::-;25842:341;25772:411;;:::o;38269:71::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2920:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;38326:6:::1;::::0;;-1:-1:-1;;38316:16:0;::::1;38326:6;::::0;;::::1;38325:7;38316:16;::::0;;38269:71::o;26999:339::-;27194:41;2920:10;27227:7;27194:18;:41::i;:::-;27186:103;;;;-1:-1:-1;;;27186:103:0;;;;;;;:::i;:::-;27302:28;27312:4;27318:2;27322:7;27302:9;:28::i;37095:511::-;39073:10;39087:9;39073:23;39065:47;;;;-1:-1:-1;;;39065:47:0;;7822:2:1;39065:47:0;;;7804:21:1;7861:2;7841:18;;;7834:30;-1:-1:-1;;;7880:18:1;;;7873:41;7931:18;;39065:47:0;7620:335:1;39065:47:0;37160:6:::1;::::0;::::1;;37152:30;;;::::0;-1:-1:-1;;;37152:30:0;;8162:2:1;37152:30:0::1;::::0;::::1;8144:21:1::0;8201:2;8181:18;;;8174:30;-1:-1:-1;;;8220:18:1;;;8213:41;8271:18;;37152:30:0::1;7960:335:1::0;37152:30:0::1;37222:8;::::0;37202:11:::1;::::0;:15:::1;::::0;37216:1:::1;37202:15;:::i;:::-;37201:29;;37193:54;;;::::0;-1:-1:-1;;;37193:54:0;;8767:2:1;37193:54:0::1;::::0;::::1;8749:21:1::0;8806:2;8786:18;;;8779:30;-1:-1:-1;;;8825:18:1;;;8818:42;8877:18;;37193:54:0::1;8565:336:1::0;37193:54:0::1;37279:9;;37266;:22;;37258:60;;;::::0;-1:-1:-1;;;37258:60:0;;9108:2:1;37258:60:0::1;::::0;::::1;9090:21:1::0;9147:2;9127:18;;;9120:30;9186:27;9166:18;;;9159:55;9231:18;;37258:60:0::1;8906:349:1::0;37258:60:0::1;37344:10;37337:18;::::0;;;:6:::1;:18;::::0;;;;;:23;37329:57:::1;;;::::0;-1:-1:-1;;;37329:57:0;;9462:2:1;37329:57:0::1;::::0;::::1;9444:21:1::0;9501:2;9481:18;;;9474:30;-1:-1:-1;;;9520:18:1;;;9513:51;9581:18;;37329:57:0::1;9260:345:1::0;37329:57:0::1;37406:10;37399:18;::::0;;;:6:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;37430:11:0::1;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;37543:11:0::1;::::0;37497:58:::1;::::0;;37514:15:::1;37497:58;::::0;::::1;9935:19:1::0;-1:-1:-1;;37531:10:0::1;9992:2:1::0;9988:15;9984:53;9970:12;;;9963:75;;;;10054:12;;;10047:28;;;;10091:12;;37497:58:0::1;;;;;;;;;;;;37487:69;;;;;;37479:78;;37454:9;:22;37464:11;;37454:22;;;;;;;;;;;:103;;;;37568:30;37574:10;37586:11;;37568:5;:30::i;:::-;37095:511::o:0;27409:185::-;27547:39;27564:4;27570:2;27574:7;27547:39;;;;;;;;;;;;:16;:39::i;24384:239::-;24456:7;24492:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24492:16:0;24527:19;24519:73;;;;-1:-1:-1;;;24519:73:0;;10316:2:1;24519:73:0;;;10298:21:1;10355:2;10335:18;;;10328:30;10394:34;10374:18;;;10367:62;-1:-1:-1;;;10445:18:1;;;10438:39;10494:19;;24519:73:0;10114:405:1;24114:208:0;24186:7;-1:-1:-1;;;;;24214:19:0;;24206:74;;;;-1:-1:-1;;;24206:74:0;;10726:2:1;24206:74:0;;;10708:21:1;10765:2;10745:18;;;10738:30;10804:34;10784:18;;;10777:62;-1:-1:-1;;;10855:18:1;;;10848:40;10905:19;;24206:74:0;10524:406:1;24206:74:0;-1:-1:-1;;;;;;24298:16:0;;;;;:9;:16;;;;;;;24114:208::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2920:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;38717:134::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2920:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;38769:74:::1;38777:42;38821:21;38769:7;:74::i;24859:104::-:0;24915:13;24948:7;24941:14;;;;;:::i;37614:537::-;37680:18;;;;:9;:18;;;;;;:23;;:76;;-1:-1:-1;37725:22:0;;;;:13;:22;;;;;;37750:6;;37707:40;;:15;:40;:::i;:::-;:49;37680:76;37672:105;;;;-1:-1:-1;;;37672:105:0;;11267:2:1;37672:105:0;;;11249:21:1;11306:2;11286:18;;;11279:30;-1:-1:-1;;;11325:18:1;;;11318:46;11381:18;;37672:105:0;11065:340:1;37672:105:0;37796:18;;;;:9;:18;;;;;;:23;;:77;;-1:-1:-1;37841:22:0;;;;:13;:22;;;;;;37866:7;;37823:40;;:15;:40;:::i;:::-;:50;37796:77;37788:114;;;;-1:-1:-1;;;37788:114:0;;11612:2:1;37788:114:0;;;11594:21:1;11651:2;11631:18;;;11624:30;11690:26;11670:18;;;11663:54;11734:18;;37788:114:0;11410:348:1;37788:114:0;37935:16;37943:7;37935;:16::i;:::-;-1:-1:-1;;;;;37921:30:0;:10;-1:-1:-1;;;;;37921:30:0;;37913:72;;;;-1:-1:-1;;;37913:72:0;;11965:2:1;37913:72:0;;;11947:21:1;12004:2;11984:18;;;11977:30;12043:31;12023:18;;;12016:59;12092:18;;37913:72:0;11763:353:1;37913:72:0;38004:18;;;;:9;:18;;;;;;38025:2;-1:-1:-1;37996:58:0;;;;-1:-1:-1;;;37996:58:0;;12323:2:1;37996:58:0;;;12305:21:1;12362:2;12342:18;;;12335:30;-1:-1:-1;;;12381:18:1;;;12374:52;12443:18;;37996:58:0;12121:346:1;37996:58:0;38072:22;;;;:13;:22;;;;;;;;38097:15;38072:40;;38123:9;:18;;;;;:20;;;;;;:::i;:::-;;;;;;37614:537;:::o;26542:155::-;26637:52;2920:10;26670:8;26680;26637:18;:52::i;:::-;26542:155;;:::o;36784:303::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2920:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;36877:8:::1;::::0;36857:11:::1;::::0;:15:::1;::::0;36871:1:::1;36857:15;:::i;:::-;36856:29;;36848:54;;;::::0;-1:-1:-1;;;36848:54:0;;8767:2:1;36848:54:0::1;::::0;::::1;8749:21:1::0;8806:2;8786:18;;;8779:30;-1:-1:-1;;;8825:18:1;;;8818:42;8877:18;;36848:54:0::1;8565:336:1::0;36848:54:0::1;36915:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;37026:11:0::1;::::0;;36982:56:::1;::::0;;36999:15:::1;36982:56;::::0;;::::1;9935:19:1::0;;;;9992:2;9988:15;;;-1:-1:-1;;9984:53:1;9970:12;;;9963:75;10054:12;;;;10047:28;;;36982:56:0;;;;;;;;;;10091:12:1;;;;36982:56:0;;36972:67;;;;::::1;::::0;;;;-1:-1:-1;36939:22:0;;;:9:::1;:22:::0;;;;;:101;37067:11;37051:28:::1;::::0;9988:15:1;;37051:5:0::1;:28::i;:::-;36784:303:::0;:::o;27665:328::-;27840:41;2920:10;27873:7;27840:18;:41::i;:::-;27832:103;;;;-1:-1:-1;;;27832:103:0;;;;;;;:::i;:::-;27946:39;27960:4;27966:2;27970:7;27979:5;27946:13;:39::i;:::-;27665:328;;;;:::o;39140:193::-;29568:4;29592:16;;;:7;:16;;;;;;39213:13;;-1:-1:-1;;;;;29592:16:0;39239:44;;;;-1:-1:-1;;;39239:44:0;;12674:2:1;39239:44:0;;;12656:21:1;12713:2;12693:18;;;12686:30;-1:-1:-1;;;12732:18:1;;;12725:45;12787:18;;39239:44:0;12472:339:1;39239:44:0;39301:6;;:24;;-1:-1:-1;;;39301:24:0;;;;;2319:25:1;;;-1:-1:-1;;;;;39301:6:0;;;;:15;;2292:18:1;;39301:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39301:24:0;;;;;;;;;;;;:::i;38160:101::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2920:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;38227:6:::1;:26:::0;;-1:-1:-1;;;;;;38227:26:0::1;-1:-1:-1::0;;;;;38227:26:0;;;::::1;::::0;;;::::1;::::0;;38160:101::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2920:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;13658:2:1;5102:73:0::1;::::0;::::1;13640:21:1::0;13697:2;13677:18;;;13670:30;13736:34;13716:18;;;13709:62;-1:-1:-1;;;13787:18:1;;;13780:36;13833:19;;5102:73:0::1;13456:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;33485:174::-:0;33560:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33560:29:0;-1:-1:-1;;;;;33560:29:0;;;;;;;;:24;;33614:23;33560:24;33614:14;:23::i;:::-;-1:-1:-1;;;;;33605:46:0;;;;;;;;;;;33485:174;;:::o;29797:348::-;29890:4;29592:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29592:16:0;29907:73;;;;-1:-1:-1;;;29907:73:0;;14065:2:1;29907:73:0;;;14047:21:1;14104:2;14084:18;;;14077:30;14143:34;14123:18;;;14116:62;-1:-1:-1;;;14194:18:1;;;14187:42;14246:19;;29907:73:0;13863:408:1;29907:73:0;29991:13;30007:23;30022:7;30007:14;:23::i;:::-;29991:39;;30060:5;-1:-1:-1;;;;;30049:16:0;:7;-1:-1:-1;;;;;30049:16:0;;:51;;;;30093:7;-1:-1:-1;;;;;30069:31:0;:20;30081:7;30069:11;:20::i;:::-;-1:-1:-1;;;;;30069:31:0;;30049:51;:87;;;-1:-1:-1;;;;;;26889:25:0;;;26865:4;26889:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30104:32;30041:96;29797:348;-1:-1:-1;;;;29797:348:0:o;32789:578::-;32948:4;-1:-1:-1;;;;;32921:31:0;:23;32936:7;32921:14;:23::i;:::-;-1:-1:-1;;;;;32921:31:0;;32913:85;;;;-1:-1:-1;;;32913:85:0;;14478:2:1;32913:85:0;;;14460:21:1;14517:2;14497:18;;;14490:30;14556:34;14536:18;;;14529:62;-1:-1:-1;;;14607:18:1;;;14600:39;14656:19;;32913:85:0;14276:405:1;32913:85:0;-1:-1:-1;;;;;33017:16:0;;33009:65;;;;-1:-1:-1;;;33009:65:0;;14888:2:1;33009:65:0;;;14870:21:1;14927:2;14907:18;;;14900:30;14966:34;14946:18;;;14939:62;-1:-1:-1;;;15017:18:1;;;15010:34;15061:19;;33009:65:0;14686:400:1;33009:65:0;33191:29;33208:1;33212:7;33191:8;:29::i;:::-;-1:-1:-1;;;;;33233:15:0;;;;;;:9;:15;;;;;:20;;33252:1;;33233:15;:20;;33252:1;;33233:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33264:13:0;;;;;;:9;:13;;;;;:18;;33281:1;;33264:13;:18;;33281:1;;33264:18;:::i;:::-;;;;-1:-1:-1;;33293:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33293:21:0;-1:-1:-1;;;;;33293:21:0;;;;;;;;;33332:27;;33293:16;;33332:27;;;;;;;32789:578;;;:::o;31481:382::-;-1:-1:-1;;;;;31561:16:0;;31553:61;;;;-1:-1:-1;;;31553:61:0;;15293:2:1;31553:61:0;;;15275:21:1;;;15312:18;;;15305:30;15371:34;15351:18;;;15344:62;15423:18;;31553:61:0;15091:356:1;31553:61:0;29568:4;29592:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29592:16:0;:30;31625:58;;;;-1:-1:-1;;;31625:58:0;;15654:2:1;31625:58:0;;;15636:21:1;15693:2;15673:18;;;15666:30;15732;15712:18;;;15705:58;15780:18;;31625:58:0;15452:352:1;31625:58:0;-1:-1:-1;;;;;31754:13:0;;;;;;:9;:13;;;;;:18;;31771:1;;31754:13;:18;;31771:1;;31754:18;:::i;:::-;;;;-1:-1:-1;;31783:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31783:21:0;-1:-1:-1;;;;;31783:21:0;;;;;;;;31822:33;;31783:16;;;31822:33;;31783:16;;31822:33;31481:382;;:::o;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;38859:165::-;38922:12;38939:2;-1:-1:-1;;;;;38939:7:0;38954:6;38939:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38921:44;;;38984:7;38976:40;;;;-1:-1:-1;;;38976:40:0;;16221:2:1;38976:40:0;;;16203:21:1;16260:2;16240:18;;;16233:30;-1:-1:-1;;;16279:18:1;;;16272:50;16339:18;;38976:40:0;16019:344:1;33801:315:0;33956:8;-1:-1:-1;;;;;33947:17:0;:5;-1:-1:-1;;;;;33947:17:0;;;33939:55;;;;-1:-1:-1;;;33939:55:0;;16570:2:1;33939:55:0;;;16552:21:1;16609:2;16589:18;;;16582:30;16648:27;16628:18;;;16621:55;16693:18;;33939:55:0;16368:349:1;33939:55:0;-1:-1:-1;;;;;34005:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34005:46:0;;;;;;;;;;34067:41;;540::1;;;34067::0;;513:18:1;34067:41:0;;;;;;;33801:315;;;:::o;28875:::-;29032:28;29042:4;29048:2;29052:7;29032:9;:28::i;:::-;29079:48;29102:4;29108:2;29112:7;29121:5;29079:22;:48::i;:::-;29071:111;;;;-1:-1:-1;;;29071:111:0;;;;;;;:::i;34681:799::-;34836:4;-1:-1:-1;;;;;34857:13:0;;6721:20;6769:8;34853:620;;34893:72;;-1:-1:-1;;;34893:72:0;;-1:-1:-1;;;;;34893:36:0;;;;;:72;;2920:10;;34944:4;;34950:7;;34959:5;;34893:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34893:72:0;;;;;;;;-1:-1:-1;;34893:72:0;;;;;;;;;;;;:::i;:::-;;;34889:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35135:13:0;;35131:272;;35178:60;;-1:-1:-1;;;35178:60:0;;;;;;;:::i;35131:272::-;35353:6;35347:13;35338:6;35334:2;35330:15;35323:38;34889:529;-1:-1:-1;;;;;;35016:51:0;-1:-1:-1;;;35016:51:0;;-1:-1:-1;35009:58:0;;34853:620;-1:-1:-1;35457:4:0;34681:799;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:347::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3123:2;3112:9;3108:18;3095:32;3170:5;3163:13;3156:21;3149:5;3146:32;3136:60;;3192:1;3189;3182:12;3136:60;3215:5;3205:15;;;2879:347;;;;;:::o;3231:127::-;3292:10;3287:3;3283:20;3280:1;3273:31;3323:4;3320:1;3313:15;3347:4;3344:1;3337:15;3363:275;3434:2;3428:9;3499:2;3480:13;;-1:-1:-1;;3476:27:1;3464:40;;3534:18;3519:34;;3555:22;;;3516:62;3513:88;;;3581:18;;:::i;:::-;3617:2;3610:22;3363:275;;-1:-1:-1;3363:275:1:o;3643:186::-;3691:4;3724:18;3716:6;3713:30;3710:56;;;3746:18;;:::i;:::-;-1:-1:-1;3812:2:1;3791:15;-1:-1:-1;;3787:29:1;3818:4;3783:40;;3643:186::o;3834:888::-;3929:6;3937;3945;3953;4006:3;3994:9;3985:7;3981:23;3977:33;3974:53;;;4023:1;4020;4013:12;3974:53;4046:29;4065:9;4046:29;:::i;:::-;4036:39;;4094:38;4128:2;4117:9;4113:18;4094:38;:::i;:::-;4084:48;;4179:2;4168:9;4164:18;4151:32;4141:42;;4234:2;4223:9;4219:18;4206:32;4261:18;4253:6;4250:30;4247:50;;;4293:1;4290;4283:12;4247:50;4316:22;;4369:4;4361:13;;4357:27;-1:-1:-1;4347:55:1;;4398:1;4395;4388:12;4347:55;4434:2;4421:16;4459:48;4475:31;4503:2;4475:31;:::i;:::-;4459:48;:::i;:::-;4530:2;4523:5;4516:17;4570:7;4565:2;4560;4556;4552:11;4548:20;4545:33;4542:53;;;4591:1;4588;4581:12;4542:53;4646:2;4641;4637;4633:11;4628:2;4621:5;4617:14;4604:45;4690:1;4685:2;4680;4673:5;4669:14;4665:23;4658:34;4711:5;4701:15;;;;;3834:888;;;;;;;:::o;4951:260::-;5019:6;5027;5080:2;5068:9;5059:7;5055:23;5051:32;5048:52;;;5096:1;5093;5086:12;5048:52;5119:29;5138:9;5119:29;:::i;:::-;5109:39;;5167:38;5201:2;5190:9;5186:18;5167:38;:::i;:::-;5157:48;;4951:260;;;;;:::o;5216:380::-;5295:1;5291:12;;;;5338;;;5359:61;;5413:4;5405:6;5401:17;5391:27;;5359:61;5466:2;5458:6;5455:14;5435:18;5432:38;5429:161;;;5512:10;5507:3;5503:20;5500:1;5493:31;5547:4;5544:1;5537:15;5575:4;5572:1;5565:15;5429:161;;5216:380;;;:::o;6841:356::-;7043:2;7025:21;;;7062:18;;;7055:30;7121:34;7116:2;7101:18;;7094:62;7188:2;7173:18;;6841:356::o;7202:413::-;7404:2;7386:21;;;7443:2;7423:18;;;7416:30;7482:34;7477:2;7462:18;;7455:62;-1:-1:-1;;;7548:2:1;7533:18;;7526:47;7605:3;7590:19;;7202:413::o;8300:127::-;8361:10;8356:3;8352:20;8349:1;8342:31;8392:4;8389:1;8382:15;8416:4;8413:1;8406:15;8432:128;8472:3;8503:1;8499:6;8496:1;8493:13;8490:39;;;8509:18;;:::i;:::-;-1:-1:-1;8545:9:1;;8432:128::o;9610:135::-;9649:3;-1:-1:-1;;9670:17:1;;9667:43;;;9690:18;;:::i;:::-;-1:-1:-1;9737:1:1;9726:13;;9610:135::o;10935:125::-;10975:4;11003:1;11000;10997:8;10994:34;;;11008:18;;:::i;:::-;-1:-1:-1;11045:9:1;;10935:125::o;12816:635::-;12896:6;12949:2;12937:9;12928:7;12924:23;12920:32;12917:52;;;12965:1;12962;12955:12;12917:52;12998:9;12992:16;13031:18;13023:6;13020:30;13017:50;;;13063:1;13060;13053:12;13017:50;13086:22;;13139:4;13131:13;;13127:27;-1:-1:-1;13117:55:1;;13168:1;13165;13158:12;13117:55;13197:2;13191:9;13222:48;13238:31;13266:2;13238:31;:::i;13222:48::-;13293:2;13286:5;13279:17;13333:7;13328:2;13323;13319;13315:11;13311:20;13308:33;13305:53;;;13354:1;13351;13344:12;13305:53;13367:54;13418:2;13413;13406:5;13402:14;13397:2;13393;13389:11;13367:54;:::i;:::-;13440:5;12816:635;-1:-1:-1;;;;;12816:635:1:o;16722:414::-;16924:2;16906:21;;;16963:2;16943:18;;;16936:30;17002:34;16997:2;16982:18;;16975:62;-1:-1:-1;;;17068:2:1;17053:18;;17046:48;17126:3;17111:19;;16722:414::o;17141:489::-;-1:-1:-1;;;;;17410:15:1;;;17392:34;;17462:15;;17457:2;17442:18;;17435:43;17509:2;17494:18;;17487:34;;;17557:3;17552:2;17537:18;;17530:31;;;17335:4;;17578:46;;17604:19;;17596:6;17578:46;:::i;:::-;17570:54;17141:489;-1:-1:-1;;;;;;17141:489:1:o;17635:249::-;17704:6;17757:2;17745:9;17736:7;17732:23;17728:32;17725:52;;;17773:1;17770;17763:12;17725:52;17805:9;17799:16;17824:30;17848:5;17824:30;:::i

Swarm Source

ipfs://14f9252778ebb313ec431c02e0da97464f1a33dfcad629d9860ce81b6cee817c
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.