ETH Price: $3,436.62 (-2.28%)
Gas: 3 Gwei

Token

Treeland (TL)
 

Overview

Max Total Supply

1,003 TL

Holders

233

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 TL
0x92a6de0de5ec22217c6a3757937581e44f2531a4
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:
Treeland

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

// SPDX-License-Identifier: MIT
/**
 *Submitted for verification at Etherscan.io on 2022-01-11
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/Quackland.sol


pragma solidity ^0.8.7;

contract Treeland is Ownable, ERC721 {
    using SafeMath for uint256;

  uint public maxPerTransaction = 3; //Max per transaction
  uint public supplyLimit = 6969;
  uint public freeSupply = 1000;
  bool public publicSaleActive = false;
  uint256 public totalSupply;
  string public baseURI;
  uint256 public tokenPrice = 20000000000000000;

  constructor(string memory name, string memory symbol, string memory baseURIinput)
    ERC721(name, symbol)
  {
      baseURI = baseURIinput;
  }

  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }

  function setBaseURI(string calldata newBaseUri) external onlyOwner {
    baseURI = newBaseUri;
  }

  function togglePublicSaleActive() external onlyOwner {
    publicSaleActive = !publicSaleActive;
  }

  function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

  function freemint(uint256 numberOfTokens) public {
    require(totalSupply <= freeSupply, "Free supply is over!");
    require(publicSaleActive == true, "Sale is Paused.");
    require(numberOfTokens <= maxPerTransaction, "Over max per transaction!");

    uint256 newId = totalSupply;
        for (uint i = 0; i < numberOfTokens; i++) {
        newId+=1;
        _safeMint(msg.sender, newId);
        }
    totalSupply = newId;
  }

      function mint(uint _count) public payable{
    require(_count <= maxPerTransaction, "invalid token count");
    require(tokenPrice.mul(_count) <= msg.value,"Ether value sent is not correct");
    require(publicSaleActive == true, "Sale is Paused.");
    require((totalSupply + _count) <= supplyLimit, "supply reached");

    uint256 newId = totalSupply;

        for(uint i = 0; i < _count; i++){
            newId+=1;
            _safeMint(msg.sender, newId);
        }

    totalSupply = newId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIinput","type":"string"}],"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526003600755611b396008556103e8600955600a805460ff1916905566470de4df820000600d553480156200003757600080fd5b506040516200209c3803806200209c8339810160408190526200005a9162000277565b82826200006733620000b4565b81516200007c90600190602085019062000104565b5080516200009290600290602084019062000104565b50508151620000aa9150600c90602084019062000104565b5050505062000345565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001129062000308565b90600052602060002090601f01602090048101928262000136576000855562000181565b82601f106200015157805160ff191683800117855562000181565b8280016001018555821562000181579182015b828111156200018157825182559160200191906001019062000164565b506200018f92915062000193565b5090565b5b808211156200018f576000815560010162000194565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d257600080fd5b81516001600160401b0380821115620001ef57620001ef620001aa565b604051601f8301601f19908116603f011681019082821181831017156200021a576200021a620001aa565b816040528381526020925086838588010111156200023757600080fd5b600091505b838210156200025b57858201830151818301840152908201906200023c565b838211156200026d5760008385830101525b9695505050505050565b6000806000606084860312156200028d57600080fd5b83516001600160401b0380821115620002a557600080fd5b620002b387838801620001c0565b94506020860151915080821115620002ca57600080fd5b620002d887838801620001c0565b93506040860151915080821115620002ef57600080fd5b50620002fe86828701620001c0565b9150509250925092565b600181811c908216806200031d57607f821691505b602082108114156200033f57634e487b7160e01b600052602260045260246000fd5b50919050565b611d4780620003556000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063a0712d681161008a578063bc8893b411610064578063bc8893b414610483578063c87b56dd1461049d578063e985e9c5146104bd578063f2fde38b1461050657600080fd5b8063a0712d6814610430578063a22cb46514610443578063b88d4fde1461046357600080fd5b8063715018a6116100c6578063715018a6146103d25780637ff9b596146103e75780638da5cb5b146103fd57806395d89b411461041b57600080fd5b80636352211e1461037d5780636c0360eb1461039d57806370a08231146103b257600080fd5b806319d1997a116101595780633ccfd60b116101335780633ccfd60b1461031257806342842e0e146103275780634b980d671461034757806355f804b31461035d57600080fd5b806319d1997a146102c657806323b872dd146102dc57806324a6ab0c146102fc57600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630c894cfe1461026d5780630fbe4fe21461028257806318160ddd146102a257600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611791565b610526565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610578565b6040516101e89190611806565b34801561021f57600080fd5b5061023361022e366004611819565b61060a565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b61026636600461184e565b6106a4565b005b34801561027957600080fd5b5061026b6107ba565b34801561028e57600080fd5b5061026b61029d366004611819565b6107f8565b3480156102ae57600080fd5b506102b8600b5481565b6040519081526020016101e8565b3480156102d257600080fd5b506102b860085481565b3480156102e857600080fd5b5061026b6102f7366004611878565b61091c565b34801561030857600080fd5b506102b860095481565b34801561031e57600080fd5b5061026b61094d565b34801561033357600080fd5b5061026b610342366004611878565b6109aa565b34801561035357600080fd5b506102b860075481565b34801561036957600080fd5b5061026b6103783660046118b4565b6109c5565b34801561038957600080fd5b50610233610398366004611819565b6109fb565b3480156103a957600080fd5b50610206610a72565b3480156103be57600080fd5b506102b86103cd366004611926565b610b00565b3480156103de57600080fd5b5061026b610b87565b3480156103f357600080fd5b506102b8600d5481565b34801561040957600080fd5b506000546001600160a01b0316610233565b34801561042757600080fd5b50610206610bbd565b61026b61043e366004611819565b610bcc565b34801561044f57600080fd5b5061026b61045e366004611941565b610d41565b34801561046f57600080fd5b5061026b61047e366004611993565b610e06565b34801561048f57600080fd5b50600a546101dc9060ff1681565b3480156104a957600080fd5b506102066104b8366004611819565b610e3e565b3480156104c957600080fd5b506101dc6104d8366004611a6f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051257600080fd5b5061026b610521366004611926565b610f19565b60006001600160e01b031982166380ac58cd60e01b148061055757506001600160e01b03198216635b5e139f60e01b145b8061057257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461058790611aa2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b390611aa2565b80156106005780601f106105d557610100808354040283529160200191610600565b820191906000526020600020905b8154815290600101906020018083116105e357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106af826109fb565b9050806001600160a01b0316836001600160a01b0316141561071d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067f565b336001600160a01b0382161480610739575061073981336104d8565b6107ab5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067f565b6107b58383610fb4565b505050565b6000546001600160a01b031633146107e45760405162461bcd60e51b815260040161067f90611add565b600a805460ff19811660ff90911615179055565b600954600b5411156108435760405162461bcd60e51b81526020600482015260146024820152734672656520737570706c79206973206f7665722160601b604482015260640161067f565b600a5460ff16151560011461088c5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b604482015260640161067f565b6007548111156108de5760405162461bcd60e51b815260206004820152601960248201527f4f766572206d617820706572207472616e73616374696f6e2100000000000000604482015260640161067f565b600b5460005b82811015610915576108f7600183611b28565b91506109033383611022565b8061090d81611b40565b9150506108e4565b50600b5550565b610926338261103c565b6109425760405162461bcd60e51b815260040161067f90611b5b565b6107b5838383611133565b6000546001600160a01b031633146109775760405162461bcd60e51b815260040161067f90611add565b6040514790339082156108fc029083906000818181858888f193505050501580156109a6573d6000803e3d6000fd5b5050565b6107b583838360405180602001604052806000815250610e06565b6000546001600160a01b031633146109ef5760405162461bcd60e51b815260040161067f90611add565b6107b5600c83836116e2565b6000818152600360205260408120546001600160a01b0316806105725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067f565b600c8054610a7f90611aa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90611aa2565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b505050505081565b60006001600160a01b038216610b6b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067f565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610bb15760405162461bcd60e51b815260040161067f90611add565b610bbb60006112d3565b565b60606002805461058790611aa2565b600754811115610c145760405162461bcd60e51b81526020600482015260136024820152721a5b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b604482015260640161067f565b600d543490610c239083611323565b1115610c715760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161067f565b600a5460ff161515600114610cba5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b604482015260640161067f565b60085481600b54610ccb9190611b28565b1115610d0a5760405162461bcd60e51b815260206004820152600e60248201526d1cdd5c1c1b1e481c995858da195960921b604482015260640161067f565b600b5460005b8281101561091557610d23600183611b28565b9150610d2f3383611022565b80610d3981611b40565b915050610d10565b6001600160a01b038216331415610d9a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e10338361103c565b610e2c5760405162461bcd60e51b815260040161067f90611b5b565b610e388484848461132f565b50505050565b6000818152600360205260409020546060906001600160a01b0316610ebd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067f565b6000610ec7611362565b90506000815111610ee75760405180602001604052806000815250610f12565b80610ef184611371565b604051602001610f02929190611bac565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610f435760405162461bcd60e51b815260040161067f90611add565b6001600160a01b038116610fa85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067f565b610fb1816112d3565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fe9826109fb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6109a682826040518060200160405280600081525061146f565b6000818152600360205260408120546001600160a01b03166110b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067f565b60006110c0836109fb565b9050806001600160a01b0316846001600160a01b031614806110fb5750836001600160a01b03166110f08461060a565b6001600160a01b0316145b8061112b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611146826109fb565b6001600160a01b0316146111ae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161067f565b6001600160a01b0382166112105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067f565b61121b600082610fb4565b6001600160a01b0383166000908152600460205260408120805460019290611244908490611bdb565b90915550506001600160a01b0382166000908152600460205260408120805460019290611272908490611b28565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f128284611bf2565b61133a848484611133565b611346848484846114a2565b610e385760405162461bcd60e51b815260040161067f90611c11565b6060600c805461058790611aa2565b6060816113955750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113bf57806113a981611b40565b91506113b89050600a83611c79565b9150611399565b60008167ffffffffffffffff8111156113da576113da61197d565b6040519080825280601f01601f191660200182016040528015611404576020820181803683370190505b5090505b841561112b57611419600183611bdb565b9150611426600a86611c8d565b611431906030611b28565b60f81b81838151811061144657611446611ca1565b60200101906001600160f81b031916908160001a905350611468600a86611c79565b9450611408565b61147983836115a0565b61148660008484846114a2565b6107b55760405162461bcd60e51b815260040161067f90611c11565b60006001600160a01b0384163b1561159557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114e6903390899088908890600401611cb7565b6020604051808303816000875af1925050508015611521575060408051601f3d908101601f1916820190925261151e91810190611cf4565b60015b61157b573d80801561154f576040519150601f19603f3d011682016040523d82523d6000602084013e611554565b606091505b5080516115735760405162461bcd60e51b815260040161067f90611c11565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061112b565b506001949350505050565b6001600160a01b0382166115f65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067f565b6000818152600360205260409020546001600160a01b03161561165b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067f565b6001600160a01b0382166000908152600460205260408120805460019290611684908490611b28565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116ee90611aa2565b90600052602060002090601f0160209004810192826117105760008555611756565b82601f106117295782800160ff19823516178555611756565b82800160010185558215611756579182015b8281111561175657823582559160200191906001019061173b565b50611762929150611766565b5090565b5b808211156117625760008155600101611767565b6001600160e01b031981168114610fb157600080fd5b6000602082840312156117a357600080fd5b8135610f128161177b565b60005b838110156117c95781810151838201526020016117b1565b83811115610e385750506000910152565b600081518084526117f28160208601602086016117ae565b601f01601f19169290920160200192915050565b602081526000610f1260208301846117da565b60006020828403121561182b57600080fd5b5035919050565b80356001600160a01b038116811461184957600080fd5b919050565b6000806040838503121561186157600080fd5b61186a83611832565b946020939093013593505050565b60008060006060848603121561188d57600080fd5b61189684611832565b92506118a460208501611832565b9150604084013590509250925092565b600080602083850312156118c757600080fd5b823567ffffffffffffffff808211156118df57600080fd5b818501915085601f8301126118f357600080fd5b81358181111561190257600080fd5b86602082850101111561191457600080fd5b60209290920196919550909350505050565b60006020828403121561193857600080fd5b610f1282611832565b6000806040838503121561195457600080fd5b61195d83611832565b91506020830135801515811461197257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119a957600080fd5b6119b285611832565b93506119c060208601611832565b925060408501359150606085013567ffffffffffffffff808211156119e457600080fd5b818701915087601f8301126119f857600080fd5b813581811115611a0a57611a0a61197d565b604051601f8201601f19908116603f01168101908382118183101715611a3257611a3261197d565b816040528281528a6020848701011115611a4b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a8257600080fd5b611a8b83611832565b9150611a9960208401611832565b90509250929050565b600181811c90821680611ab657607f821691505b60208210811415611ad757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b3b57611b3b611b12565b500190565b6000600019821415611b5457611b54611b12565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008351611bbe8184602088016117ae565b835190830190611bd28183602088016117ae565b01949350505050565b600082821015611bed57611bed611b12565b500390565b6000816000190483118215151615611c0c57611c0c611b12565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611c8857611c88611c63565b500490565b600082611c9c57611c9c611c63565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cea908301846117da565b9695505050505050565b600060208284031215611d0657600080fd5b8151610f128161177b56fea2646970667358221220fb6ab63fae430ffa3647c8e8ca863193059140cdccdc781bcc408a0477c7b8df64736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008547265656c616e640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002544c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d61764d56395356597778797159796453736b79734e7a504e554e78704d374c51574c6437595873784367574b2f322e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec578063a0712d681161008a578063bc8893b411610064578063bc8893b414610483578063c87b56dd1461049d578063e985e9c5146104bd578063f2fde38b1461050657600080fd5b8063a0712d6814610430578063a22cb46514610443578063b88d4fde1461046357600080fd5b8063715018a6116100c6578063715018a6146103d25780637ff9b596146103e75780638da5cb5b146103fd57806395d89b411461041b57600080fd5b80636352211e1461037d5780636c0360eb1461039d57806370a08231146103b257600080fd5b806319d1997a116101595780633ccfd60b116101335780633ccfd60b1461031257806342842e0e146103275780634b980d671461034757806355f804b31461035d57600080fd5b806319d1997a146102c657806323b872dd146102dc57806324a6ab0c146102fc57600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630c894cfe1461026d5780630fbe4fe21461028257806318160ddd146102a257600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611791565b610526565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610578565b6040516101e89190611806565b34801561021f57600080fd5b5061023361022e366004611819565b61060a565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b61026636600461184e565b6106a4565b005b34801561027957600080fd5b5061026b6107ba565b34801561028e57600080fd5b5061026b61029d366004611819565b6107f8565b3480156102ae57600080fd5b506102b8600b5481565b6040519081526020016101e8565b3480156102d257600080fd5b506102b860085481565b3480156102e857600080fd5b5061026b6102f7366004611878565b61091c565b34801561030857600080fd5b506102b860095481565b34801561031e57600080fd5b5061026b61094d565b34801561033357600080fd5b5061026b610342366004611878565b6109aa565b34801561035357600080fd5b506102b860075481565b34801561036957600080fd5b5061026b6103783660046118b4565b6109c5565b34801561038957600080fd5b50610233610398366004611819565b6109fb565b3480156103a957600080fd5b50610206610a72565b3480156103be57600080fd5b506102b86103cd366004611926565b610b00565b3480156103de57600080fd5b5061026b610b87565b3480156103f357600080fd5b506102b8600d5481565b34801561040957600080fd5b506000546001600160a01b0316610233565b34801561042757600080fd5b50610206610bbd565b61026b61043e366004611819565b610bcc565b34801561044f57600080fd5b5061026b61045e366004611941565b610d41565b34801561046f57600080fd5b5061026b61047e366004611993565b610e06565b34801561048f57600080fd5b50600a546101dc9060ff1681565b3480156104a957600080fd5b506102066104b8366004611819565b610e3e565b3480156104c957600080fd5b506101dc6104d8366004611a6f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051257600080fd5b5061026b610521366004611926565b610f19565b60006001600160e01b031982166380ac58cd60e01b148061055757506001600160e01b03198216635b5e139f60e01b145b8061057257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461058790611aa2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b390611aa2565b80156106005780601f106105d557610100808354040283529160200191610600565b820191906000526020600020905b8154815290600101906020018083116105e357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106af826109fb565b9050806001600160a01b0316836001600160a01b0316141561071d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067f565b336001600160a01b0382161480610739575061073981336104d8565b6107ab5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067f565b6107b58383610fb4565b505050565b6000546001600160a01b031633146107e45760405162461bcd60e51b815260040161067f90611add565b600a805460ff19811660ff90911615179055565b600954600b5411156108435760405162461bcd60e51b81526020600482015260146024820152734672656520737570706c79206973206f7665722160601b604482015260640161067f565b600a5460ff16151560011461088c5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b604482015260640161067f565b6007548111156108de5760405162461bcd60e51b815260206004820152601960248201527f4f766572206d617820706572207472616e73616374696f6e2100000000000000604482015260640161067f565b600b5460005b82811015610915576108f7600183611b28565b91506109033383611022565b8061090d81611b40565b9150506108e4565b50600b5550565b610926338261103c565b6109425760405162461bcd60e51b815260040161067f90611b5b565b6107b5838383611133565b6000546001600160a01b031633146109775760405162461bcd60e51b815260040161067f90611add565b6040514790339082156108fc029083906000818181858888f193505050501580156109a6573d6000803e3d6000fd5b5050565b6107b583838360405180602001604052806000815250610e06565b6000546001600160a01b031633146109ef5760405162461bcd60e51b815260040161067f90611add565b6107b5600c83836116e2565b6000818152600360205260408120546001600160a01b0316806105725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067f565b600c8054610a7f90611aa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90611aa2565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b505050505081565b60006001600160a01b038216610b6b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067f565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610bb15760405162461bcd60e51b815260040161067f90611add565b610bbb60006112d3565b565b60606002805461058790611aa2565b600754811115610c145760405162461bcd60e51b81526020600482015260136024820152721a5b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b604482015260640161067f565b600d543490610c239083611323565b1115610c715760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161067f565b600a5460ff161515600114610cba5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b604482015260640161067f565b60085481600b54610ccb9190611b28565b1115610d0a5760405162461bcd60e51b815260206004820152600e60248201526d1cdd5c1c1b1e481c995858da195960921b604482015260640161067f565b600b5460005b8281101561091557610d23600183611b28565b9150610d2f3383611022565b80610d3981611b40565b915050610d10565b6001600160a01b038216331415610d9a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e10338361103c565b610e2c5760405162461bcd60e51b815260040161067f90611b5b565b610e388484848461132f565b50505050565b6000818152600360205260409020546060906001600160a01b0316610ebd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067f565b6000610ec7611362565b90506000815111610ee75760405180602001604052806000815250610f12565b80610ef184611371565b604051602001610f02929190611bac565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610f435760405162461bcd60e51b815260040161067f90611add565b6001600160a01b038116610fa85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067f565b610fb1816112d3565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fe9826109fb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6109a682826040518060200160405280600081525061146f565b6000818152600360205260408120546001600160a01b03166110b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067f565b60006110c0836109fb565b9050806001600160a01b0316846001600160a01b031614806110fb5750836001600160a01b03166110f08461060a565b6001600160a01b0316145b8061112b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611146826109fb565b6001600160a01b0316146111ae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161067f565b6001600160a01b0382166112105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067f565b61121b600082610fb4565b6001600160a01b0383166000908152600460205260408120805460019290611244908490611bdb565b90915550506001600160a01b0382166000908152600460205260408120805460019290611272908490611b28565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f128284611bf2565b61133a848484611133565b611346848484846114a2565b610e385760405162461bcd60e51b815260040161067f90611c11565b6060600c805461058790611aa2565b6060816113955750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113bf57806113a981611b40565b91506113b89050600a83611c79565b9150611399565b60008167ffffffffffffffff8111156113da576113da61197d565b6040519080825280601f01601f191660200182016040528015611404576020820181803683370190505b5090505b841561112b57611419600183611bdb565b9150611426600a86611c8d565b611431906030611b28565b60f81b81838151811061144657611446611ca1565b60200101906001600160f81b031916908160001a905350611468600a86611c79565b9450611408565b61147983836115a0565b61148660008484846114a2565b6107b55760405162461bcd60e51b815260040161067f90611c11565b60006001600160a01b0384163b1561159557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114e6903390899088908890600401611cb7565b6020604051808303816000875af1925050508015611521575060408051601f3d908101601f1916820190925261151e91810190611cf4565b60015b61157b573d80801561154f576040519150601f19603f3d011682016040523d82523d6000602084013e611554565b606091505b5080516115735760405162461bcd60e51b815260040161067f90611c11565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061112b565b506001949350505050565b6001600160a01b0382166115f65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067f565b6000818152600360205260409020546001600160a01b03161561165b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067f565b6001600160a01b0382166000908152600460205260408120805460019290611684908490611b28565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116ee90611aa2565b90600052602060002090601f0160209004810192826117105760008555611756565b82601f106117295782800160ff19823516178555611756565b82800160010185558215611756579182015b8281111561175657823582559160200191906001019061173b565b50611762929150611766565b5090565b5b808211156117625760008155600101611767565b6001600160e01b031981168114610fb157600080fd5b6000602082840312156117a357600080fd5b8135610f128161177b565b60005b838110156117c95781810151838201526020016117b1565b83811115610e385750506000910152565b600081518084526117f28160208601602086016117ae565b601f01601f19169290920160200192915050565b602081526000610f1260208301846117da565b60006020828403121561182b57600080fd5b5035919050565b80356001600160a01b038116811461184957600080fd5b919050565b6000806040838503121561186157600080fd5b61186a83611832565b946020939093013593505050565b60008060006060848603121561188d57600080fd5b61189684611832565b92506118a460208501611832565b9150604084013590509250925092565b600080602083850312156118c757600080fd5b823567ffffffffffffffff808211156118df57600080fd5b818501915085601f8301126118f357600080fd5b81358181111561190257600080fd5b86602082850101111561191457600080fd5b60209290920196919550909350505050565b60006020828403121561193857600080fd5b610f1282611832565b6000806040838503121561195457600080fd5b61195d83611832565b91506020830135801515811461197257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119a957600080fd5b6119b285611832565b93506119c060208601611832565b925060408501359150606085013567ffffffffffffffff808211156119e457600080fd5b818701915087601f8301126119f857600080fd5b813581811115611a0a57611a0a61197d565b604051601f8201601f19908116603f01168101908382118183101715611a3257611a3261197d565b816040528281528a6020848701011115611a4b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a8257600080fd5b611a8b83611832565b9150611a9960208401611832565b90509250929050565b600181811c90821680611ab657607f821691505b60208210811415611ad757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b3b57611b3b611b12565b500190565b6000600019821415611b5457611b54611b12565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008351611bbe8184602088016117ae565b835190830190611bd28183602088016117ae565b01949350505050565b600082821015611bed57611bed611b12565b500390565b6000816000190483118215151615611c0c57611c0c611b12565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611c8857611c88611c63565b500490565b600082611c9c57611c9c611c63565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cea908301846117da565b9695505050505050565b600060208284031215611d0657600080fd5b8151610f128161177b56fea2646970667358221220fb6ab63fae430ffa3647c8e8ca863193059140cdccdc781bcc408a0477c7b8df64736f6c634300080c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008547265656c616e640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002544c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d61764d56395356597778797159796453736b79734e7a504e554e78704d374c51574c6437595873784367574b2f322e6a736f6e00000000

-----Decoded View---------------
Arg [0] : name (string): Treeland
Arg [1] : symbol (string): TL
Arg [2] : baseURIinput (string): ipfs://QmavMV9SVYwxyqYydSskysNzPNUNxpM7LQWLd7YXsxCgWK/2.json

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 547265656c616e64000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 544c000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [8] : 697066733a2f2f516d61764d56395356597778797159796453736b79734e7a50
Arg [9] : 4e554e78704d374c51574c6437595873784367574b2f322e6a736f6e00000000


Deployed Bytecode Sourcemap

42755:1945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30567:305;;;;;;;;;;-1:-1:-1;30567:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30567:305:0;;;;;;;;31512:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33071:221::-;;;;;;;;;;-1:-1:-1;33071:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;33071:221:0;1528:203:1;32594:411:0;;;;;;;;;;-1:-1:-1;32594:411:0;;;;;:::i;:::-;;:::i;:::-;;43471:102;;;;;;;;;;;;;:::i;43728:443::-;;;;;;;;;;-1:-1:-1;43728:443:0;;;;;:::i;:::-;;:::i;43002:26::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;43002:26:0;2173:177:1;42892:30:0;;;;;;;;;;;;;;;;33961:339;;;;;;;;;;-1:-1:-1;33961:339:0;;;;;:::i;:::-;;:::i;42927:29::-;;;;;;;;;;;;;;;;43579:143;;;;;;;;;;;;;:::i;34371:185::-;;;;;;;;;;-1:-1:-1;34371:185:0;;;;;:::i;:::-;;:::i;42832:33::-;;;;;;;;;;;;;;;;43365:100;;;;;;;;;;-1:-1:-1;43365:100:0;;;;;:::i;:::-;;:::i;31206:239::-;;;;;;;;;;-1:-1:-1;31206:239:0;;;;;:::i;:::-;;:::i;43033:21::-;;;;;;;;;;;;;:::i;30936:208::-;;;;;;;;;;-1:-1:-1;30936:208:0;;;;;:::i;:::-;;:::i;11831:94::-;;;;;;;;;;;;;:::i;43059:45::-;;;;;;;;;;;;;;;;11180:87;;;;;;;;;;-1:-1:-1;11226:7:0;11253:6;-1:-1:-1;;;;;11253:6:0;11180:87;;31681:104;;;;;;;;;;;;;:::i;44181:516::-;;;;;;:::i;:::-;;:::i;33364:295::-;;;;;;;;;;-1:-1:-1;33364:295:0;;;;;:::i;:::-;;:::i;34627:328::-;;;;;;;;;;-1:-1:-1;34627:328:0;;;;;:::i;:::-;;:::i;42961:36::-;;;;;;;;;;-1:-1:-1;42961:36:0;;;;;;;;31856:334;;;;;;;;;;-1:-1:-1;31856:334:0;;;;;:::i;:::-;;:::i;33730:164::-;;;;;;;;;;-1:-1:-1;33730:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33851:25:0;;;33827:4;33851:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33730:164;12080:192;;;;;;;;;;-1:-1:-1;12080:192:0;;;;;:::i;:::-;;:::i;30567:305::-;30669:4;-1:-1:-1;;;;;;30706:40:0;;-1:-1:-1;;;30706:40:0;;:105;;-1:-1:-1;;;;;;;30763:48:0;;-1:-1:-1;;;30763:48:0;30706:105;:158;;;-1:-1:-1;;;;;;;;;;23487:40:0;;;30828:36;30686:178;30567:305;-1:-1:-1;;30567:305:0:o;31512:100::-;31566:13;31599:5;31592:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31512:100;:::o;33071:221::-;33147:7;36554:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36554:16:0;33167:73;;;;-1:-1:-1;;;33167:73:0;;5955:2:1;33167:73:0;;;5937:21:1;5994:2;5974:18;;;5967:30;6033:34;6013:18;;;6006:62;-1:-1:-1;;;6084:18:1;;;6077:42;6136:19;;33167:73:0;;;;;;;;;-1:-1:-1;33260:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33260:24:0;;33071:221::o;32594:411::-;32675:13;32691:23;32706:7;32691:14;:23::i;:::-;32675:39;;32739:5;-1:-1:-1;;;;;32733:11:0;:2;-1:-1:-1;;;;;32733:11:0;;;32725:57;;;;-1:-1:-1;;;32725:57:0;;6368:2:1;32725:57:0;;;6350:21:1;6407:2;6387:18;;;6380:30;6446:34;6426:18;;;6419:62;-1:-1:-1;;;6497:18:1;;;6490:31;6538:19;;32725:57:0;6166:397:1;32725:57:0;9995:10;-1:-1:-1;;;;;32817:21:0;;;;:62;;-1:-1:-1;32842:37:0;32859:5;9995:10;33730:164;:::i;32842:37::-;32795:168;;;;-1:-1:-1;;;32795:168:0;;6770:2:1;32795:168:0;;;6752:21:1;6809:2;6789:18;;;6782:30;6848:34;6828:18;;;6821:62;6919:26;6899:18;;;6892:54;6963:19;;32795:168:0;6568:420:1;32795:168:0;32976:21;32985:2;32989:7;32976:8;:21::i;:::-;32664:341;32594:411;;:::o;43471:102::-;11226:7;11253:6;-1:-1:-1;;;;;11253:6:0;9995:10;11400:23;11392:68;;;;-1:-1:-1;;;11392:68:0;;;;;;;:::i;:::-;43551:16:::1;::::0;;-1:-1:-1;;43531:36:0;::::1;43551:16;::::0;;::::1;43550:17;43531:36;::::0;;43471:102::o;43728:443::-;43807:10;;43792:11;;:25;;43784:58;;;;-1:-1:-1;;;43784:58:0;;7556:2:1;43784:58:0;;;7538:21:1;7595:2;7575:18;;;7568:30;-1:-1:-1;;;7614:18:1;;;7607:50;7674:18;;43784:58:0;7354:344:1;43784:58:0;43857:16;;;;:24;;:16;:24;43849:52;;;;-1:-1:-1;;;43849:52:0;;7905:2:1;43849:52:0;;;7887:21:1;7944:2;7924:18;;;7917:30;-1:-1:-1;;;7963:18:1;;;7956:45;8018:18;;43849:52:0;7703:339:1;43849:52:0;43934:17;;43916:14;:35;;43908:73;;;;-1:-1:-1;;;43908:73:0;;8249:2:1;43908:73:0;;;8231:21:1;8288:2;8268:18;;;8261:30;8327:27;8307:18;;;8300:55;8372:18;;43908:73:0;8047:349:1;43908:73:0;44006:11;;43990:13;44028:112;44049:14;44045:1;:18;44028:112;;;44081:8;44088:1;44081:8;;:::i;:::-;;;44100:28;44110:10;44122:5;44100:9;:28::i;:::-;44065:3;;;;:::i;:::-;;;;44028:112;;;-1:-1:-1;44146:11:0;:19;-1:-1:-1;43728:443:0:o;33961:339::-;34156:41;9995:10;34189:7;34156:18;:41::i;:::-;34148:103;;;;-1:-1:-1;;;34148:103:0;;;;;;;:::i;:::-;34264:28;34274:4;34280:2;34284:7;34264:9;:28::i;43579:143::-;11226:7;11253:6;-1:-1:-1;;;;;11253:6:0;9995:10;11400:23;11392:68;;;;-1:-1:-1;;;11392:68:0;;;;;;;:::i;:::-;43677:37:::1;::::0;43645:21:::1;::::0;43685:10:::1;::::0;43677:37;::::1;;;::::0;43645:21;;43627:15:::1;43677:37:::0;43627:15;43677:37;43645:21;43685:10;43677:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43616:106;43579:143::o:0;34371:185::-;34509:39;34526:4;34532:2;34536:7;34509:39;;;;;;;;;;;;:16;:39::i;43365:100::-;11226:7;11253:6;-1:-1:-1;;;;;11253:6:0;9995:10;11400:23;11392:68;;;;-1:-1:-1;;;11392:68:0;;;;;;;:::i;:::-;43439:20:::1;:7;43449:10:::0;;43439:20:::1;:::i;31206:239::-:0;31278:7;31314:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31314:16:0;31349:19;31341:73;;;;-1:-1:-1;;;31341:73:0;;9426:2:1;31341:73:0;;;9408:21:1;9465:2;9445:18;;;9438:30;9504:34;9484:18;;;9477:62;-1:-1:-1;;;9555:18:1;;;9548:39;9604:19;;31341:73:0;9224:405:1;43033:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30936:208::-;31008:7;-1:-1:-1;;;;;31036:19:0;;31028:74;;;;-1:-1:-1;;;31028:74:0;;9836:2:1;31028:74:0;;;9818:21:1;9875:2;9855:18;;;9848:30;9914:34;9894:18;;;9887:62;-1:-1:-1;;;9965:18:1;;;9958:40;10015:19;;31028:74:0;9634:406:1;31028:74:0;-1:-1:-1;;;;;;31120:16:0;;;;;:9;:16;;;;;;;30936:208::o;11831:94::-;11226:7;11253:6;-1:-1:-1;;;;;11253:6:0;9995:10;11400:23;11392:68;;;;-1:-1:-1;;;11392:68:0;;;;;;;:::i;:::-;11896:21:::1;11914:1;11896:9;:21::i;:::-;11831:94::o:0;31681:104::-;31737:13;31770:7;31763:14;;;;;:::i;44181:516::-;44247:17;;44237:6;:27;;44229:59;;;;-1:-1:-1;;;44229:59:0;;10247:2:1;44229:59:0;;;10229:21:1;10286:2;10266:18;;;10259:30;-1:-1:-1;;;10305:18:1;;;10298:49;10364:18;;44229:59:0;10045:343:1;44229:59:0;44303:10;;44329:9;;44303:22;;44318:6;44303:14;:22::i;:::-;:35;;44295:78;;;;-1:-1:-1;;;44295:78:0;;10595:2:1;44295:78:0;;;10577:21:1;10634:2;10614:18;;;10607:30;10673:33;10653:18;;;10646:61;10724:18;;44295:78:0;10393:355:1;44295:78:0;44388:16;;;;:24;;:16;:24;44380:52;;;;-1:-1:-1;;;44380:52:0;;7905:2:1;44380:52:0;;;7887:21:1;7944:2;7924:18;;;7917:30;-1:-1:-1;;;7963:18:1;;;7956:45;8018:18;;44380:52:0;7703:339:1;44380:52:0;44473:11;;44462:6;44448:11;;:20;;;;:::i;:::-;44447:37;;44439:64;;;;-1:-1:-1;;;44439:64:0;;10955:2:1;44439:64:0;;;10937:21:1;10994:2;10974:18;;;10967:30;-1:-1:-1;;;11013:18:1;;;11006:44;11067:18;;44439:64:0;10753:338:1;44439:64:0;44528:11;;44512:13;44552:110;44572:6;44568:1;:10;44552:110;;;44599:8;44606:1;44599:8;;:::i;:::-;;;44622:28;44632:10;44644:5;44622:9;:28::i;:::-;44580:3;;;;:::i;:::-;;;;44552:110;;33364:295;-1:-1:-1;;;;;33467:24:0;;9995:10;33467:24;;33459:62;;;;-1:-1:-1;;;33459:62:0;;11298:2:1;33459:62:0;;;11280:21:1;11337:2;11317:18;;;11310:30;11376:27;11356:18;;;11349:55;11421:18;;33459:62:0;11096:349:1;33459:62:0;9995:10;33534:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33534:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33534:53:0;;;;;;;;;;33603:48;;540:41:1;;;33534:42:0;;9995:10;33603:48;;513:18:1;33603:48:0;;;;;;;33364:295;;:::o;34627:328::-;34802:41;9995:10;34835:7;34802:18;:41::i;:::-;34794:103;;;;-1:-1:-1;;;34794:103:0;;;;;;;:::i;:::-;34908:39;34922:4;34928:2;34932:7;34941:5;34908:13;:39::i;:::-;34627:328;;;;:::o;31856:334::-;36530:4;36554:16;;;:7;:16;;;;;;31929:13;;-1:-1:-1;;;;;36554:16:0;31955:76;;;;-1:-1:-1;;;31955:76:0;;11652:2:1;31955:76:0;;;11634:21:1;11691:2;11671:18;;;11664:30;11730:34;11710:18;;;11703:62;-1:-1:-1;;;11781:18:1;;;11774:45;11836:19;;31955:76:0;11450:411:1;31955:76:0;32044:21;32068:10;:8;:10::i;:::-;32044:34;;32120:1;32102:7;32096:21;:25;:86;;;;;;;;;;;;;;;;;32148:7;32157:18;:7;:16;:18::i;:::-;32131:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32096:86;32089:93;31856:334;-1:-1:-1;;;31856:334:0:o;12080:192::-;11226:7;11253:6;-1:-1:-1;;;;;11253:6:0;9995:10;11400:23;11392:68;;;;-1:-1:-1;;;11392:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12169:22:0;::::1;12161:73;;;::::0;-1:-1:-1;;;12161:73:0;;12543:2:1;12161:73:0::1;::::0;::::1;12525:21:1::0;12582:2;12562:18;;;12555:30;12621:34;12601:18;;;12594:62;-1:-1:-1;;;12672:18:1;;;12665:36;12718:19;;12161:73:0::1;12341:402:1::0;12161:73:0::1;12245:19;12255:8;12245:9;:19::i;:::-;12080:192:::0;:::o;40447:174::-;40522:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40522:29:0;-1:-1:-1;;;;;40522:29:0;;;;;;;;:24;;40576:23;40522:24;40576:14;:23::i;:::-;-1:-1:-1;;;;;40567:46:0;;;;;;;;;;;40447:174;;:::o;37449:110::-;37525:26;37535:2;37539:7;37525:26;;;;;;;;;;;;:9;:26::i;36759:348::-;36852:4;36554:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36554:16:0;36869:73;;;;-1:-1:-1;;;36869:73:0;;12950:2:1;36869:73:0;;;12932:21:1;12989:2;12969:18;;;12962:30;13028:34;13008:18;;;13001:62;-1:-1:-1;;;13079:18:1;;;13072:42;13131:19;;36869:73:0;12748:408:1;36869:73:0;36953:13;36969:23;36984:7;36969:14;:23::i;:::-;36953:39;;37022:5;-1:-1:-1;;;;;37011:16:0;:7;-1:-1:-1;;;;;37011:16:0;;:51;;;;37055:7;-1:-1:-1;;;;;37031:31:0;:20;37043:7;37031:11;:20::i;:::-;-1:-1:-1;;;;;37031:31:0;;37011:51;:87;;;-1:-1:-1;;;;;;33851:25:0;;;33827:4;33851:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37066:32;37003:96;36759:348;-1:-1:-1;;;;36759:348:0:o;39751:578::-;39910:4;-1:-1:-1;;;;;39883:31:0;:23;39898:7;39883:14;:23::i;:::-;-1:-1:-1;;;;;39883:31:0;;39875:85;;;;-1:-1:-1;;;39875:85:0;;13363:2:1;39875:85:0;;;13345:21:1;13402:2;13382:18;;;13375:30;13441:34;13421:18;;;13414:62;-1:-1:-1;;;13492:18:1;;;13485:39;13541:19;;39875:85:0;13161:405:1;39875:85:0;-1:-1:-1;;;;;39979:16:0;;39971:65;;;;-1:-1:-1;;;39971:65:0;;13773:2:1;39971:65:0;;;13755:21:1;13812:2;13792:18;;;13785:30;13851:34;13831:18;;;13824:62;-1:-1:-1;;;13902:18:1;;;13895:34;13946:19;;39971:65:0;13571:400:1;39971:65:0;40153:29;40170:1;40174:7;40153:8;:29::i;:::-;-1:-1:-1;;;;;40195:15:0;;;;;;:9;:15;;;;;:20;;40214:1;;40195:15;:20;;40214:1;;40195:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40226:13:0;;;;;;:9;:13;;;;;:18;;40243:1;;40226:13;:18;;40243:1;;40226:18;:::i;:::-;;;;-1:-1:-1;;40255:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40255:21:0;-1:-1:-1;;;;;40255:21:0;;;;;;;;;40294:27;;40255:16;;40294:27;;;;;;;39751:578;;;:::o;12280:173::-;12336:16;12355:6;;-1:-1:-1;;;;;12372:17:0;;;-1:-1:-1;;;;;;12372:17:0;;;;;;12405:40;;12355:6;;;;;;;12405:40;;12336:16;12405:40;12325:128;12280:173;:::o;3687:98::-;3745:7;3772:5;3776:1;3772;:5;:::i;35837:315::-;35994:28;36004:4;36010:2;36014:7;35994:9;:28::i;:::-;36041:48;36064:4;36070:2;36074:7;36083:5;36041:22;:48::i;:::-;36033:111;;;;-1:-1:-1;;;36033:111:0;;;;;;;:::i;43265:94::-;43317:13;43346:7;43339:14;;;;;:::i;7478:723::-;7534:13;7755:10;7751:53;;-1:-1:-1;;7782:10:0;;;;;;;;;;;;-1:-1:-1;;;7782:10:0;;;;;7478:723::o;7751:53::-;7829:5;7814:12;7870:78;7877:9;;7870:78;;7903:8;;;;:::i;:::-;;-1:-1:-1;7926:10:0;;-1:-1:-1;7934:2:0;7926:10;;:::i;:::-;;;7870:78;;;7958:19;7990:6;7980:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7980:17:0;;7958:39;;8008:154;8015:10;;8008:154;;8042:11;8052:1;8042:11;;:::i;:::-;;-1:-1:-1;8111:10:0;8119:2;8111:5;:10;:::i;:::-;8098:24;;:2;:24;:::i;:::-;8085:39;;8068:6;8075;8068:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8068:56:0;;;;;;;;-1:-1:-1;8139:11:0;8148:2;8139:11;;:::i;:::-;;;8008:154;;37786:321;37916:18;37922:2;37926:7;37916:5;:18::i;:::-;37967:54;37998:1;38002:2;38006:7;38015:5;37967:22;:54::i;:::-;37945:154;;;;-1:-1:-1;;;37945:154:0;;;;;;;:::i;41186:799::-;41341:4;-1:-1:-1;;;;;41362:13:0;;13602:20;13650:8;41358:620;;41398:72;;-1:-1:-1;;;41398:72:0;;-1:-1:-1;;;;;41398:36:0;;;;;:72;;9995:10;;41449:4;;41455:7;;41464:5;;41398:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41398:72:0;;;;;;;;-1:-1:-1;;41398:72:0;;;;;;;;;;;;:::i;:::-;;;41394:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41640:13:0;;41636:272;;41683:60;;-1:-1:-1;;;41683:60:0;;;;;;;:::i;41636:272::-;41858:6;41852:13;41843:6;41839:2;41835:15;41828:38;41394:529;-1:-1:-1;;;;;;41521:51:0;-1:-1:-1;;;41521:51:0;;-1:-1:-1;41514:58:0;;41358:620;-1:-1:-1;41962:4:0;41186:799;;;;;;:::o;38443:382::-;-1:-1:-1;;;;;38523:16:0;;38515:61;;;;-1:-1:-1;;;38515:61:0;;16154:2:1;38515:61:0;;;16136:21:1;;;16173:18;;;16166:30;16232:34;16212:18;;;16205:62;16284:18;;38515:61:0;15952:356:1;38515:61:0;36530:4;36554:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36554:16:0;:30;38587:58;;;;-1:-1:-1;;;38587:58:0;;16515:2:1;38587:58:0;;;16497:21:1;16554:2;16534:18;;;16527:30;16593;16573:18;;;16566:58;16641:18;;38587:58:0;16313:352:1;38587:58:0;-1:-1:-1;;;;;38716:13:0;;;;;;:9;:13;;;;;:18;;38733:1;;38716:13;:18;;38733:1;;38716:18;:::i;:::-;;;;-1:-1:-1;;38745:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38745:21:0;-1:-1:-1;;;;;38745:21:0;;;;;;;;38784:33;;38745:16;;;38784:33;;38745:16;;38784:33;38443:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;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:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:380::-;5447:1;5443:12;;;;5490;;;5511:61;;5565:4;5557:6;5553:17;5543:27;;5511:61;5618:2;5610:6;5607:14;5587:18;5584:38;5581:161;;;5664:10;5659:3;5655:20;5652:1;5645:31;5699:4;5696:1;5689:15;5727:4;5724:1;5717:15;5581:161;;5368:380;;;:::o;6993:356::-;7195:2;7177:21;;;7214:18;;;7207:30;7273:34;7268:2;7253:18;;7246:62;7340:2;7325:18;;6993:356::o;8401:127::-;8462:10;8457:3;8453:20;8450:1;8443:31;8493:4;8490:1;8483:15;8517:4;8514:1;8507:15;8533:128;8573:3;8604:1;8600:6;8597:1;8594:13;8591:39;;;8610:18;;:::i;:::-;-1:-1:-1;8646:9:1;;8533:128::o;8666:135::-;8705:3;-1:-1:-1;;8726:17:1;;8723:43;;;8746:18;;:::i;:::-;-1:-1:-1;8793:1:1;8782:13;;8666:135::o;8806:413::-;9008:2;8990:21;;;9047:2;9027:18;;;9020:30;9086:34;9081:2;9066:18;;9059:62;-1:-1:-1;;;9152:2:1;9137:18;;9130:47;9209:3;9194:19;;8806:413::o;11866:470::-;12045:3;12083:6;12077:13;12099:53;12145:6;12140:3;12133:4;12125:6;12121:17;12099:53;:::i;:::-;12215:13;;12174:16;;;;12237:57;12215:13;12174:16;12271:4;12259:17;;12237:57;:::i;:::-;12310:20;;11866:470;-1:-1:-1;;;;11866:470:1:o;13976:125::-;14016:4;14044:1;14041;14038:8;14035:34;;;14049:18;;:::i;:::-;-1:-1:-1;14086:9:1;;13976:125::o;14106:168::-;14146:7;14212:1;14208;14204:6;14200:14;14197:1;14194:21;14189:1;14182:9;14175:17;14171:45;14168:71;;;14219:18;;:::i;:::-;-1:-1:-1;14259:9:1;;14106:168::o;14279:414::-;14481:2;14463:21;;;14520:2;14500:18;;;14493:30;14559:34;14554:2;14539:18;;14532:62;-1:-1:-1;;;14625:2:1;14610:18;;14603:48;14683:3;14668:19;;14279:414::o;14698:127::-;14759:10;14754:3;14750:20;14747:1;14740:31;14790:4;14787:1;14780:15;14814:4;14811:1;14804:15;14830:120;14870:1;14896;14886:35;;14901:18;;:::i;:::-;-1:-1:-1;14935:9:1;;14830:120::o;14955:112::-;14987:1;15013;15003:35;;15018:18;;:::i;:::-;-1:-1:-1;15052:9:1;;14955:112::o;15072:127::-;15133:10;15128:3;15124:20;15121:1;15114:31;15164:4;15161:1;15154:15;15188:4;15185:1;15178:15;15204:489;-1:-1:-1;;;;;15473:15:1;;;15455:34;;15525:15;;15520:2;15505:18;;15498:43;15572:2;15557:18;;15550:34;;;15620:3;15615:2;15600:18;;15593:31;;;15398:4;;15641:46;;15667:19;;15659:6;15641:46;:::i;:::-;15633:54;15204:489;-1:-1:-1;;;;;;15204:489:1:o;15698:249::-;15767:6;15820:2;15808:9;15799:7;15795:23;15791:32;15788:52;;;15836:1;15833;15826:12;15788:52;15868:9;15862:16;15887:30;15911:5;15887:30;:::i

Swarm Source

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