ETH Price: $3,059.20 (+1.82%)
Gas: 4 Gwei

Token

Degen$ Farm Lands (LAND)
 

Overview

Max Total Supply

258 LAND

Holders

71

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
Land

Compiler Version
v0.7.4+commit.3f05b770

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 18: LandERC721.sol
// SPDX-License-Identifier: MIT
// Degen Farm: El Dorado. Collectible NFT game
pragma solidity ^0.7.4;
pragma experimental ABIEncoderV2;

import "./ERC721URIStorage.sol";

contract Land is ERC721URIStorage {

    uint constant public MAP_HEIGHT = 50;
    uint constant public LAND_TYPE_COUNT = 5;
    enum LandType  { None, Clay, Chalky, Sandy, Loamy, Peaty }

    struct LandPiece {
        LandType atype; // uint8
        int32    x;
        int32    y;
    }

    mapping (uint256 => LandPiece) public lands;

    mapping(address => bool) public trusted_markets;
    event TrustedMarket(address indexed _market, bool _state);

    constructor(string memory name_,
        string memory symbol_) ERC721(name_, symbol_)  {
    }

    function mint(address to, uint256 tokenId, uint randomSeed) external onlyOwner {
        int32 x = (int32)(tokenId / MAP_HEIGHT);
        int32 y = (int32)(tokenId % MAP_HEIGHT);
        LandPiece memory land = LandPiece(_createLandType(x, y, randomSeed), x, y);
        lands[tokenId] = land;
        _mint(to, tokenId);
    }

    function _createLandType(int32 x, int32 y, uint randomSeed) internal returns (LandType) {
        uint256 chosen = randomSeed % LAND_TYPE_COUNT;
        return (LandType)(chosen + 1);
    }

    function burn(uint256 tokenId) external {
        _burn(tokenId);
    }

    function setTrustedMarket(address _market, bool _state) external onlyOwner {
        trusted_markets[_market] = _state;
        emit TrustedMarket(_market, _state);
    }

    function getUsersTokens(address _owner) external view returns (uint256[] memory) {
        //https://docs.soliditylang.org/en/v0.7.4/types.html#allocating-memory-arrays
        //So first we need calc size of array to be returned
        uint256 n = balanceOf(_owner);

        uint256[] memory result = new uint256[](n);
        for (uint16 i=0; i < n; i++) {
            result[i]=tokenOfOwnerByIndex(_owner, i);
        }
        return result;
    }

    function baseURI() public view  override returns (string memory) {
        return 'http://degens.farm/meta/lands/';
    }

    /**
     * @dev Overriding standard function for gas safe traiding with trusted parts like DegenFarm
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `caller` must be added to trustedMarkets.
     */
    function transferFrom(address from, address to, uint256 tokenId) public override {
        if (trusted_markets[msg.sender]) {
            _transfer(from, to, tokenId);
        } else {
            super.transferFrom(from, to, tokenId);
        }

    }

}

File 1 of 18: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 18: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 18: EnumerableMap.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

File 4 of 18: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 5 of 18: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

File 6 of 18: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./Context.sol";
import "./IERC721.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Receiver.sol";
import "./ERC165.sol";
import "./SafeMath.sol";
import "./Address.sol";
import "./EnumerableSet.sol";
import "./EnumerableMap.sol";
import "./Strings.sol";

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // 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;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

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

File 7 of 18: ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.4;
pragma experimental ABIEncoderV2;

import "./ERC721.sol";
import "./Operators.sol";

/**
 * @dev this contract used just for override some
 * OpneZeppelin tokenURI() behavior
 * so we need redeclare _tokenURIs becouse in OpenZeppelin
 * ERC721 it has private visibility
 */
abstract contract ERC721URIStorage is ERC721, Operators {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            //return string(abi.encodePacked(base, _tokenURI));
            //Due customer requirements
            return _tokenURI;
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual override {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }

    function setURI(uint256 tokenId, string calldata _tokenURI) external onlyOperator {
        _setTokenURI(tokenId, _tokenURI);
    }

    function setURIBatch(uint256[] calldata tokenId, string[] calldata _tokenURI) external onlyOperator {
        require(tokenId.length == _tokenURI.length, "tokenId length is not equal to _tokenURI length");
        for (uint i = 0; i < tokenId.length; i++) {
            _setTokenURI(tokenId[i], _tokenURI[i]);
        }
    }

    address public signerAddress;

    function setSigner(address _newSigner) external onlyOwner {
        signerAddress = _newSigner;
    }

    function hashArguments(uint256 tokenId, string calldata _tokenURI)
        public pure returns (bytes32 msgHash)
    {
        msgHash = keccak256(abi.encode(tokenId, _tokenURI));
    }

    function getSigner(uint256 tokenId, string calldata _tokenURI, uint8 _v, bytes32 _r, bytes32 _s)
        public
        pure
        returns (address)
    {
        bytes32 msgHash = hashArguments(tokenId, _tokenURI);
        return ecrecover(msgHash, _v, _r, _s);
    }

    function isValidSignature(uint256 tokenId, string calldata _tokenURI, uint8 _v, bytes32 _r, bytes32 _s)
        public
        view
        returns (bool)
    {
        return getSigner(tokenId, _tokenURI, _v, _r, _s) == signerAddress;
    }

    /**
       * @dev Sets token URI using signature
       * This method can be called by anyone, who has signature,
       * that was created by signer role
       */
    function setURISigned(uint256 tokenId, string calldata _tokenURI, uint8 _v, bytes32 _r, bytes32 _s) external {
        require(isValidSignature(tokenId, _tokenURI, _v, _r, _s), "Invalid signature");
        _setTokenURI(tokenId, _tokenURI);
    }

}

File 8 of 18: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 9 of 18: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 10 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 12 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 13 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 15 of 18: Operators.sol
// SPDX-License-Identifier: MIT
// Degen'$ Farm: Collectible NFT game (https://degens.farm)
pragma solidity ^0.7.4;

import "./IERC20.sol";
import "./Ownable.sol";

contract Operators is Ownable
{
    mapping (address=>bool) operatorAddress;

    modifier onlyOperator() {
        require(isOperator(msg.sender), "Access denied");
        _;
    }

    function isOwner(address _addr) public view returns (bool) {
        return owner() == _addr;
    }

    function isOperator(address _addr) public view returns (bool) {
        return operatorAddress[_addr] || isOwner(_addr);
    }

    function addOperator(address _newOperator) external onlyOwner {
        require(_newOperator != address(0), "New operator is empty");

        operatorAddress[_newOperator] = true;
    }

    function removeOperator(address _oldOperator) external onlyOwner {
        delete(operatorAddress[_oldOperator]);
    }

    /**
     * @dev Owner can claim any tokens that transferred
     * to this contract address
     */
    function withdrawERC20(IERC20 _tokenContract, address _admin) external onlyOwner
    {
        uint256 balance = _tokenContract.balanceOf(address(this));
        _tokenContract.transfer(_admin, balance);
    }
}

File 16 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 18 of 18: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_market","type":"address"},{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"TrustedMarket","type":"event"},{"inputs":[],"name":"LAND_TYPE_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAP_HEIGHT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOperator","type":"address"}],"name":"addOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"getSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getUsersTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"hashArguments","outputs":[{"internalType":"bytes32","name":"msgHash","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidSignature","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lands","outputs":[{"internalType":"enum Land.LandType","name":"atype","type":"uint8"},{"internalType":"int32","name":"x","type":"int32"},{"internalType":"int32","name":"y","type":"int32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"randomSeed","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_oldOperator","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSigner","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_market","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setTrustedMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"string[]","name":"_tokenURI","type":"string[]"}],"name":"setURIBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"setURISigned","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"trusted_markets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_admin","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200357c3803806200357c8339810160408190526200003491620002e7565b8181620000486301ffc9a760e01b6200010f565b81516200005d90600690602085019062000198565b5080516200007390600790602084019062000198565b50620000866380ac58cd60e01b6200010f565b62000098635b5e139f60e01b6200010f565b620000aa63780e9d6360e01b6200010f565b5060009050620000b962000194565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050506200034e565b6001600160e01b031980821614156200016f576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b600082601f83011262000255578081fd5b81516001600160401b03808211156200026a57fe5b6040516020601f8401601f19168201810183811183821017156200028a57fe5b80604052508194508382528681858801011115620002a757600080fd5b600092505b83831015620002cb5785830181015182840182015291820191620002ac565b83831115620002dd5760008185840101525b5050505092915050565b60008060408385031215620002fa578182fd5b82516001600160401b038082111562000311578384fd5b6200031f8683870162000244565b9350602085015191508082111562000335578283fd5b50620003448582860162000244565b9150509250929050565b61321e806200035e6000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c80636d70f7ae11610146578063963513ca116100c3578063c87b56dd11610087578063c87b56dd146104da578063d7a377a1146104ed578063e261f1e514610500578063e985e9c514610522578063eb46a46614610535578063f2fde38b1461054857610253565b8063963513ca1461047b5780639870d7fe1461048e578063a22cb465146104a1578063ac8a584a146104b4578063b88d4fde146104c757610253565b806389dd289f1161010a57806389dd289f1461043d5780638da5cb5b14610450578063927f25c6146104585780639456fbcc1461046057806395d89b411461047357610253565b80636d70f7ae146103e957806370a08231146103fc578063715018a61461040f57806385aa84b614610417578063862440e21461042a57610253565b806342842e0e116101d457806359b786811161019857806359b78681146103ab5780635b7633d0146103b35780636352211e146103bb5780636c0360eb146103ce5780636c19e783146103d657610253565b806342842e0e1461033f57806342966c68146103525780634f6ccce714610365578063509044be14610378578063540d259e1461039857610253565b8063156e29f61161021b578063156e29f6146102de57806318160ddd146102f157806323b872dd146103065780632f54bf6e146103195780632f745c591461032c57610253565b806301b98ea01461025857806301ffc9a71461026d57806306fdde0314610296578063081812fc146102ab578063095ea7b3146102cb575b600080fd5b61026b610266366004612b30565b61055b565b005b61028061027b366004612b99565b610655565b60405161028d9190612d01565b60405180910390f35b61029e610678565b60405161028d9190612d59565b6102be6102b9366004612bd3565b61070e565b60405161028d9190612ca9565b61026b6102d9366004612ad1565b610770565b61026b6102ec366004612afc565b610846565b6102f961097d565b60405161028d9190612d0c565b61026b61031436600461299c565b61098e565b610280610327366004612948565b6109c1565b6102f961033a366004612ad1565b6109e5565b61026b61034d36600461299c565b610a10565b61026b610360366004612bd3565b610a2b565b6102f9610373366004612bd3565b610a37565b61038b610386366004612948565b610a4d565b60405161028d9190612cbd565b61026b6103a6366004612c35565b610ae2565b6102f9610b4c565b6102be610b51565b6102be6103c9366004612bd3565b610b60565b61029e610b88565b61026b6103e4366004612948565b610bbf565b6102806103f7366004612948565b610c43565b6102f961040a366004612948565b610c6e565b61026b610cd6565b6102be610425366004612c35565b610d82565b61026b610438366004612beb565b610dee565b6102f961044b366004612beb565b610e78565b6102be610eae565b6102f9610ebd565b61026b61046e366004612bc1565b610ec2565b61029e61101f565b610280610489366004612c35565b611080565b61026b61049c366004612948565b6110b2565b61026b6104af366004612aa0565b61118b565b61026b6104c2366004612948565b611290565b61026b6104d53660046129dc565b611313565b61029e6104e8366004612bd3565b611371565b61026b6104fb366004612aa0565b611472565b61051361050e366004612bd3565b611534565b60405161028d93929190612d33565b610280610530366004612964565b611561565b610280610543366004612948565b61158f565b61026b610556366004612948565b6115a4565b61056433610c43565b6105a5576040805162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b604482015290519081900360640190fd5b8281146105cd5760405162461bcd60e51b81526004016105c490612dac565b60405180910390fd5b60005b8381101561064e576106468585838181106105e757fe5b905060200201358484848181106105fa57fe5b905060200281019061060c9190612efb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116a792505050565b6001016105d0565b5050505050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107045780601f106106d957610100808354040283529160200191610704565b820191906000526020600020905b8154815290600101906020018083116106e757829003601f168201915b5050505050905090565b6000610719826116eb565b6107545760405162461bcd60e51b815260040180806020018281038252602c8152602001806130f3602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077b82610b60565b9050806001600160a01b0316836001600160a01b031614156107ce5760405162461bcd60e51b81526004018080602001828103825260218152602001806131976021913960400191505060405180910390fd5b806001600160a01b03166107e06116f8565b6001600160a01b031614806107fc57506107fc816105306116f8565b6108375760405162461bcd60e51b81526004018080602001828103825260388152602001806130466038913960400191505060405180910390fd5b61084183836116fc565b505050565b61084e6116f8565b6001600160a01b031661085f610eae565b6001600160a01b0316146108a8576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b60328083049083066108b86127c3565b60405180606001604052806108ce85858861176a565b60058111156108d957fe5b8152600385810b6020808401919091529085900b6040928301526000888152600e90915220815181549293508392829060ff1916600183600581111561091b57fe5b021790555060208201518154604090930151600390810b63ffffffff908116650100000000000268ffffffff0000000000199390920b166101000264ffffffff00199094169390931716919091179055610975868661178b565b505050505050565b600061098960026118b9565b905090565b336000908152600f602052604090205460ff16156109b6576109b18383836118c4565b610841565b610841838383611a10565b6000816001600160a01b03166109d5610eae565b6001600160a01b03161492915050565b6001600160a01b0382166000908152600160205260408120610a079083611a67565b90505b92915050565b61084183838360405180602001604052806000815250611313565b610a3481611a73565b50565b600080610a45600284611aba565b509392505050565b60606000610a5a83610c6e565b905060608167ffffffffffffffff81118015610a7557600080fd5b50604051908082528060200260200182016040528015610a9f578160200160208202803683370190505b50905060005b828161ffff161015610a4557610abf858261ffff166109e5565b828261ffff1681518110610acf57fe5b6020908102919091010152600101610aa5565b610af0868686868686611080565b610b0c5760405162461bcd60e51b81526004016105c490612dfb565b6109758686868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116a792505050565b603281565b600d546001600160a01b031681565b6000610a0a826040518060600160405280602981526020016130a86029913960029190611ad8565b60408051808201909152601e81527f687474703a2f2f646567656e732e6661726d2f6d6574612f6c616e64732f0000602082015290565b610bc76116f8565b6001600160a01b0316610bd8610eae565b6001600160a01b031614610c21576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600b602052604081205460ff1680610a0a5750610a0a826109c1565b60006001600160a01b038216610cb55760405162461bcd60e51b815260040180806020018281038252602a81526020018061307e602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610a0a906118b9565b610cde6116f8565b6001600160a01b0316610cef610eae565b6001600160a01b031614610d38576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600080610d90888888610e78565b905060018186868660405160008152602001604052604051610db59493929190612d15565b6020604051602081039080840390855afa158015610dd7573d6000803e3d6000fd5b5050604051601f1901519998505050505050505050565b610df733610c43565b610e38576040805162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b604482015290519081900360640190fd5b6108418383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116a792505050565b6000838383604051602001610e8f93929190612ec5565b6040516020818303038152906040528051906020012090509392505050565b600a546001600160a01b031690565b600581565b610eca6116f8565b6001600160a01b0316610edb610eae565b6001600160a01b031614610f24576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610f7357600080fd5b505afa158015610f87573d6000803e3d6000fd5b505050506040513d6020811015610f9d57600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905291519293509085169163a9059cbb916044808201926020929091908290030181600087803b158015610ff557600080fd5b505af1158015611009573d6000803e3d6000fd5b505050506040513d602081101561064e57600080fd5b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107045780601f106106d957610100808354040283529160200191610704565b600d546000906001600160a01b031661109d888888888888610d82565b6001600160a01b031614979650505050505050565b6110ba6116f8565b6001600160a01b03166110cb610eae565b6001600160a01b031614611114576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6001600160a01b038116611167576040805162461bcd60e51b81526020600482015260156024820152744e6577206f70657261746f7220697320656d70747960581b604482015290519081900360640190fd5b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6111936116f8565b6001600160a01b0316826001600160a01b031614156111f9576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006112066116f8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561124a6116f8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6112986116f8565b6001600160a01b03166112a9610eae565b6001600160a01b0316146112f2576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600b60205260409020805460ff19169055565b61132461131e6116f8565b83611ae5565b61135f5760405162461bcd60e51b81526004018080602001828103825260318152602001806131b86031913960400191505060405180910390fd5b61136b84848484611b81565b50505050565b606061137c826116eb565b6113985760405162461bcd60e51b81526004016105c490612e74565b6000828152600c602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561142d5780601f106114025761010080835404028352916020019161142d565b820191906000526020600020905b81548152906001019060200180831161141057829003601f168201915b50505050509050606061143e610b88565b905080516000141561145257509050610673565b81511561146157509050610673565b61146a84611bd3565b949350505050565b61147a6116f8565b6001600160a01b031661148b610eae565b6001600160a01b0316146114d4576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6001600160a01b0382166000818152600f602052604090819020805460ff1916841515179055517f735768a8abddcbaa527672c7b507c39cdfee45818f675893d3ccf2326523c09e90611528908490612d01565b60405180910390a25050565b600e6020526000908152604090205460ff8116906101008104600390810b91650100000000009004900b83565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f6020526000908152604090205460ff1681565b6115ac6116f8565b6001600160a01b03166115bd610eae565b6001600160a01b031614611606576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6001600160a01b03811661164b5760405162461bcd60e51b8152600401808060200182810382526026815260200180612faa6026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6116b0826116eb565b6116cc5760405162461bcd60e51b81526004016105c490612e26565b6000828152600c602090815260409091208251610841928401906127e5565b6000610a0a600283611e56565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061173182610b60565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600580830690600182019081111561178057fe5b9150505b9392505050565b6001600160a01b0382166117e6576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6117ef816116eb565b15611841576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b61184d60008383610841565b6001600160a01b038216600090815260016020526040902061186f9082611e62565b5061187c60028284611e6e565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000610a0a82611e84565b826001600160a01b03166118d782610b60565b6001600160a01b03161461191c5760405162461bcd60e51b815260040180806020018281038252602981526020018061313f6029913960400191505060405180910390fd5b6001600160a01b0382166119615760405162461bcd60e51b8152600401808060200182810382526024815260200180612fd06024913960400191505060405180910390fd5b61196c838383610841565b6119776000826116fc565b6001600160a01b03831660009081526001602052604090206119999082611e88565b506001600160a01b03821660009081526001602052604090206119bc9082611e62565b506119c960028284611e6e565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611a21611a1b6116f8565b82611ae5565b611a5c5760405162461bcd60e51b81526004018080602001828103825260318152602001806131b86031913960400191505060405180910390fd5b6108418383836118c4565b6000610a078383611e94565b611a7c81611ef8565b6000818152600c60205260409020546002600019610100600184161502019091160415610a34576000818152600c60205260408120610a3491612871565b6000808080611ac98686611fc5565b909450925050505b9250929050565b600061146a848484612040565b6000611af0826116eb565b611b2b5760405162461bcd60e51b815260040180806020018281038252602c81526020018061301a602c913960400191505060405180910390fd5b6000611b3683610b60565b9050806001600160a01b0316846001600160a01b03161480611b715750836001600160a01b0316611b668461070e565b6001600160a01b0316145b8061146a575061146a8185611561565b611b8c8484846118c4565b611b988484848461210a565b61136b5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f786032913960400191505060405180910390fd5b6060611bde826116eb565b611c195760405162461bcd60e51b815260040180806020018281038252602f815260200180613168602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611cae5780601f10611c8357610100808354040283529160200191611cae565b820191906000526020600020905b815481529060010190602001808311611c9157829003601f168201915b505050505090506060611cbf610b88565b9050805160001415611cd357509050610673565b815115611d945780826040516020018083805190602001908083835b60208310611d0e5780518252601f199092019160209182019101611cef565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611d565780518252601f199092019160209182019101611d37565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610673565b80611d9e85612272565b6040516020018083805190602001908083835b60208310611dd05780518252601f199092019160209182019101611db1565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611e185780518252601f199092019160209182019101611df9565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6000610a07838361234d565b6000610a078383612365565b600061146a84846001600160a01b0385166123af565b5490565b6000610a078383612446565b81546000908210611ed65760405162461bcd60e51b8152600401808060200182810382526022815260200180612f566022913960400191505060405180910390fd5b826000018281548110611ee557fe5b9060005260206000200154905092915050565b6000611f0382610b60565b9050611f1181600084610841565b611f1c6000836116fc565b6000828152600860205260409020546002600019610100600184161502019091160415611f5a576000828152600860205260408120611f5a91612871565b6001600160a01b0381166000908152600160205260409020611f7c9083611e88565b50611f8860028361250c565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b8154600090819083106120095760405162461bcd60e51b81526004018080602001828103825260228152602001806130d16022913960400191505060405180910390fd5b600084600001848154811061201a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816120db5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120a0578181015183820152602001612088565b50505050905090810190601f1680156120cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106120ee57fe5b9060005260206000209060020201600101549150509392505050565b600061211e846001600160a01b0316612518565b61212a5750600161146a565b6060612238630a85bd0160e11b61213f6116f8565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156121a657818101518382015260200161218e565b50505050905090810190601f1680156121d35780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612f78603291396001600160a01b038816919061251e565b9050600081806020019051602081101561225157600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60608161229757506040805180820190915260018152600360fc1b6020820152610673565b8160005b81156122af57600101600a8204915061229b565b60608167ffffffffffffffff811180156122c857600080fd5b506040519080825280601f01601f1916602001820160405280156122f3576020820181803683370190505b50859350905060001982015b831561234457600a840660300160f81b8282806001900393508151811061232257fe5b60200101906001600160f81b031916908160001a905350600a840493506122ff565b50949350505050565b60009081526001919091016020526040902054151590565b6000612371838361234d565b6123a757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610a0a565b506000610a0a565b600082815260018401602052604081205480612414575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611784565b8285600001600183038154811061242757fe5b9060005260206000209060020201600101819055506000915050611784565b60008181526001830160205260408120548015612502578354600019808301919081019060009087908390811061247957fe5b906000526020600020015490508087600001848154811061249657fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806124c657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610a0a565b6000915050610a0a565b6000610a07838361252d565b3b151590565b606061146a8484600085612601565b60008181526001830160205260408120548015612502578354600019808301919081019060009087908390811061256057fe5b906000526020600020906002020190508087600001848154811061258057fe5b6000918252602080832084546002909302019182556001938401549184019190915583548252898301905260409020908401905586548790806125bf57fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610a0a9350505050565b6060824710156126425760405162461bcd60e51b8152600401808060200182810382526026815260200180612ff46026913960400191505060405180910390fd5b61264b85612518565b61269c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126db5780518252601f1990920191602091820191016126bc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461273d576040519150601f19603f3d011682016040523d82523d6000602084013e612742565b606091505b509150915061275282828661275d565b979650505050505050565b6060831561276c575081611784565b82511561277c5782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156120a0578181015183820152602001612088565b6040805160608101909152806000815260006020820181905260409091015290565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261281b5760008555612861565b82601f1061283457805160ff1916838001178555612861565b82800160010185558215612861579182015b82811115612861578251825591602001919060010190612846565b5061286d9291506128b1565b5090565b50805460018160011615610100020316600290046000825580601f106128975750610a34565b601f016020900490600052602060002090810190610a3491905b5b8082111561286d57600081556001016128b2565b60008083601f8401126128d7578182fd5b50813567ffffffffffffffff8111156128ee578182fd5b6020830191508360208083028501011115611ad157600080fd5b60008083601f840112612919578182fd5b50813567ffffffffffffffff811115612930578182fd5b602083019150836020828501011115611ad157600080fd5b600060208284031215612959578081fd5b813561178481612f40565b60008060408385031215612976578081fd5b823561298181612f40565b9150602083013561299181612f40565b809150509250929050565b6000806000606084860312156129b0578081fd5b83356129bb81612f40565b925060208401356129cb81612f40565b929592945050506040919091013590565b600080600080608085870312156129f1578081fd5b84356129fc81612f40565b9350602085810135612a0d81612f40565b935060408601359250606086013567ffffffffffffffff80821115612a30578384fd5b818801915088601f830112612a43578384fd5b813581811115612a4f57fe5b604051601f8201601f1916810185018381118282101715612a6c57fe5b60405281815283820185018b1015612a82578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215612ab2578182fd5b8235612abd81612f40565b915060208301358015158114612991578182fd5b60008060408385031215612ae3578182fd5b8235612aee81612f40565b946020939093013593505050565b600080600060608486031215612b10578283fd5b8335612b1b81612f40565b95602085013595506040909401359392505050565b60008060008060408587031215612b45578384fd5b843567ffffffffffffffff80821115612b5c578586fd5b612b68888389016128c6565b90965094506020870135915080821115612b80578384fd5b50612b8d878288016128c6565b95989497509550505050565b600060208284031215612baa578081fd5b81356001600160e01b031981168114611784578182fd5b60008060408385031215612976578182fd5b600060208284031215612be4578081fd5b5035919050565b600080600060408486031215612bff578081fd5b83359250602084013567ffffffffffffffff811115612c1c578182fd5b612c2886828701612908565b9497909650939450505050565b60008060008060008060a08789031215612c4d578384fd5b86359550602087013567ffffffffffffffff811115612c6a578485fd5b612c7689828a01612908565b909650945050604087013560ff81168114612c8f578283fd5b959894975092956060810135946080909101359350915050565b6001600160a01b0391909116815260200190565b6020808252825182820181905260009190848201906040850190845b81811015612cf557835183529284019291840191600101612cd9565b50909695505050505050565b901515815260200190565b90815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6060810160068510612d4157fe5b938152600392830b6020820152910b60409091015290565b6000602080835283518082850152825b81811015612d8557858101830151858201604001528201612d69565b81811115612d965783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602f908201527f746f6b656e4964206c656e677468206973206e6f7420657175616c20746f205f60408201526e0e8ded6cadcaaa49240d8cadccee8d608b1b606082015260800190565b602080825260119082015270496e76616c6964207369676e617475726560781b604082015260600190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b60008482526040602083015282604083015282846060840137818301606090810191909152601f909201601f1916010192915050565b6000808335601e19843603018112612f11578283fd5b83018035915067ffffffffffffffff821115612f2b578283fd5b602001915036819003821315611ad157600080fd5b6001600160a01b0381168114610a3457600080fdfe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220102b1f7a3853359ac87f01893f3ca030cca3225a8f752a5a6b375082887657ec64736f6c63430007040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000011446567656e24204661726d204c616e647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c414e4400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102535760003560e01c80636d70f7ae11610146578063963513ca116100c3578063c87b56dd11610087578063c87b56dd146104da578063d7a377a1146104ed578063e261f1e514610500578063e985e9c514610522578063eb46a46614610535578063f2fde38b1461054857610253565b8063963513ca1461047b5780639870d7fe1461048e578063a22cb465146104a1578063ac8a584a146104b4578063b88d4fde146104c757610253565b806389dd289f1161010a57806389dd289f1461043d5780638da5cb5b14610450578063927f25c6146104585780639456fbcc1461046057806395d89b411461047357610253565b80636d70f7ae146103e957806370a08231146103fc578063715018a61461040f57806385aa84b614610417578063862440e21461042a57610253565b806342842e0e116101d457806359b786811161019857806359b78681146103ab5780635b7633d0146103b35780636352211e146103bb5780636c0360eb146103ce5780636c19e783146103d657610253565b806342842e0e1461033f57806342966c68146103525780634f6ccce714610365578063509044be14610378578063540d259e1461039857610253565b8063156e29f61161021b578063156e29f6146102de57806318160ddd146102f157806323b872dd146103065780632f54bf6e146103195780632f745c591461032c57610253565b806301b98ea01461025857806301ffc9a71461026d57806306fdde0314610296578063081812fc146102ab578063095ea7b3146102cb575b600080fd5b61026b610266366004612b30565b61055b565b005b61028061027b366004612b99565b610655565b60405161028d9190612d01565b60405180910390f35b61029e610678565b60405161028d9190612d59565b6102be6102b9366004612bd3565b61070e565b60405161028d9190612ca9565b61026b6102d9366004612ad1565b610770565b61026b6102ec366004612afc565b610846565b6102f961097d565b60405161028d9190612d0c565b61026b61031436600461299c565b61098e565b610280610327366004612948565b6109c1565b6102f961033a366004612ad1565b6109e5565b61026b61034d36600461299c565b610a10565b61026b610360366004612bd3565b610a2b565b6102f9610373366004612bd3565b610a37565b61038b610386366004612948565b610a4d565b60405161028d9190612cbd565b61026b6103a6366004612c35565b610ae2565b6102f9610b4c565b6102be610b51565b6102be6103c9366004612bd3565b610b60565b61029e610b88565b61026b6103e4366004612948565b610bbf565b6102806103f7366004612948565b610c43565b6102f961040a366004612948565b610c6e565b61026b610cd6565b6102be610425366004612c35565b610d82565b61026b610438366004612beb565b610dee565b6102f961044b366004612beb565b610e78565b6102be610eae565b6102f9610ebd565b61026b61046e366004612bc1565b610ec2565b61029e61101f565b610280610489366004612c35565b611080565b61026b61049c366004612948565b6110b2565b61026b6104af366004612aa0565b61118b565b61026b6104c2366004612948565b611290565b61026b6104d53660046129dc565b611313565b61029e6104e8366004612bd3565b611371565b61026b6104fb366004612aa0565b611472565b61051361050e366004612bd3565b611534565b60405161028d93929190612d33565b610280610530366004612964565b611561565b610280610543366004612948565b61158f565b61026b610556366004612948565b6115a4565b61056433610c43565b6105a5576040805162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b604482015290519081900360640190fd5b8281146105cd5760405162461bcd60e51b81526004016105c490612dac565b60405180910390fd5b60005b8381101561064e576106468585838181106105e757fe5b905060200201358484848181106105fa57fe5b905060200281019061060c9190612efb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116a792505050565b6001016105d0565b5050505050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107045780601f106106d957610100808354040283529160200191610704565b820191906000526020600020905b8154815290600101906020018083116106e757829003601f168201915b5050505050905090565b6000610719826116eb565b6107545760405162461bcd60e51b815260040180806020018281038252602c8152602001806130f3602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077b82610b60565b9050806001600160a01b0316836001600160a01b031614156107ce5760405162461bcd60e51b81526004018080602001828103825260218152602001806131976021913960400191505060405180910390fd5b806001600160a01b03166107e06116f8565b6001600160a01b031614806107fc57506107fc816105306116f8565b6108375760405162461bcd60e51b81526004018080602001828103825260388152602001806130466038913960400191505060405180910390fd5b61084183836116fc565b505050565b61084e6116f8565b6001600160a01b031661085f610eae565b6001600160a01b0316146108a8576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b60328083049083066108b86127c3565b60405180606001604052806108ce85858861176a565b60058111156108d957fe5b8152600385810b6020808401919091529085900b6040928301526000888152600e90915220815181549293508392829060ff1916600183600581111561091b57fe5b021790555060208201518154604090930151600390810b63ffffffff908116650100000000000268ffffffff0000000000199390920b166101000264ffffffff00199094169390931716919091179055610975868661178b565b505050505050565b600061098960026118b9565b905090565b336000908152600f602052604090205460ff16156109b6576109b18383836118c4565b610841565b610841838383611a10565b6000816001600160a01b03166109d5610eae565b6001600160a01b03161492915050565b6001600160a01b0382166000908152600160205260408120610a079083611a67565b90505b92915050565b61084183838360405180602001604052806000815250611313565b610a3481611a73565b50565b600080610a45600284611aba565b509392505050565b60606000610a5a83610c6e565b905060608167ffffffffffffffff81118015610a7557600080fd5b50604051908082528060200260200182016040528015610a9f578160200160208202803683370190505b50905060005b828161ffff161015610a4557610abf858261ffff166109e5565b828261ffff1681518110610acf57fe5b6020908102919091010152600101610aa5565b610af0868686868686611080565b610b0c5760405162461bcd60e51b81526004016105c490612dfb565b6109758686868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116a792505050565b603281565b600d546001600160a01b031681565b6000610a0a826040518060600160405280602981526020016130a86029913960029190611ad8565b60408051808201909152601e81527f687474703a2f2f646567656e732e6661726d2f6d6574612f6c616e64732f0000602082015290565b610bc76116f8565b6001600160a01b0316610bd8610eae565b6001600160a01b031614610c21576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600b602052604081205460ff1680610a0a5750610a0a826109c1565b60006001600160a01b038216610cb55760405162461bcd60e51b815260040180806020018281038252602a81526020018061307e602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610a0a906118b9565b610cde6116f8565b6001600160a01b0316610cef610eae565b6001600160a01b031614610d38576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600080610d90888888610e78565b905060018186868660405160008152602001604052604051610db59493929190612d15565b6020604051602081039080840390855afa158015610dd7573d6000803e3d6000fd5b5050604051601f1901519998505050505050505050565b610df733610c43565b610e38576040805162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b604482015290519081900360640190fd5b6108418383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116a792505050565b6000838383604051602001610e8f93929190612ec5565b6040516020818303038152906040528051906020012090509392505050565b600a546001600160a01b031690565b600581565b610eca6116f8565b6001600160a01b0316610edb610eae565b6001600160a01b031614610f24576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610f7357600080fd5b505afa158015610f87573d6000803e3d6000fd5b505050506040513d6020811015610f9d57600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905291519293509085169163a9059cbb916044808201926020929091908290030181600087803b158015610ff557600080fd5b505af1158015611009573d6000803e3d6000fd5b505050506040513d602081101561064e57600080fd5b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107045780601f106106d957610100808354040283529160200191610704565b600d546000906001600160a01b031661109d888888888888610d82565b6001600160a01b031614979650505050505050565b6110ba6116f8565b6001600160a01b03166110cb610eae565b6001600160a01b031614611114576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6001600160a01b038116611167576040805162461bcd60e51b81526020600482015260156024820152744e6577206f70657261746f7220697320656d70747960581b604482015290519081900360640190fd5b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6111936116f8565b6001600160a01b0316826001600160a01b031614156111f9576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006112066116f8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561124a6116f8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6112986116f8565b6001600160a01b03166112a9610eae565b6001600160a01b0316146112f2576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600b60205260409020805460ff19169055565b61132461131e6116f8565b83611ae5565b61135f5760405162461bcd60e51b81526004018080602001828103825260318152602001806131b86031913960400191505060405180910390fd5b61136b84848484611b81565b50505050565b606061137c826116eb565b6113985760405162461bcd60e51b81526004016105c490612e74565b6000828152600c602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561142d5780601f106114025761010080835404028352916020019161142d565b820191906000526020600020905b81548152906001019060200180831161141057829003601f168201915b50505050509050606061143e610b88565b905080516000141561145257509050610673565b81511561146157509050610673565b61146a84611bd3565b949350505050565b61147a6116f8565b6001600160a01b031661148b610eae565b6001600160a01b0316146114d4576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6001600160a01b0382166000818152600f602052604090819020805460ff1916841515179055517f735768a8abddcbaa527672c7b507c39cdfee45818f675893d3ccf2326523c09e90611528908490612d01565b60405180910390a25050565b600e6020526000908152604090205460ff8116906101008104600390810b91650100000000009004900b83565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f6020526000908152604090205460ff1681565b6115ac6116f8565b6001600160a01b03166115bd610eae565b6001600160a01b031614611606576040805162461bcd60e51b8152602060048201819052602482015260008051602061311f833981519152604482015290519081900360640190fd5b6001600160a01b03811661164b5760405162461bcd60e51b8152600401808060200182810382526026815260200180612faa6026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6116b0826116eb565b6116cc5760405162461bcd60e51b81526004016105c490612e26565b6000828152600c602090815260409091208251610841928401906127e5565b6000610a0a600283611e56565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061173182610b60565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600580830690600182019081111561178057fe5b9150505b9392505050565b6001600160a01b0382166117e6576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6117ef816116eb565b15611841576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b61184d60008383610841565b6001600160a01b038216600090815260016020526040902061186f9082611e62565b5061187c60028284611e6e565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000610a0a82611e84565b826001600160a01b03166118d782610b60565b6001600160a01b03161461191c5760405162461bcd60e51b815260040180806020018281038252602981526020018061313f6029913960400191505060405180910390fd5b6001600160a01b0382166119615760405162461bcd60e51b8152600401808060200182810382526024815260200180612fd06024913960400191505060405180910390fd5b61196c838383610841565b6119776000826116fc565b6001600160a01b03831660009081526001602052604090206119999082611e88565b506001600160a01b03821660009081526001602052604090206119bc9082611e62565b506119c960028284611e6e565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611a21611a1b6116f8565b82611ae5565b611a5c5760405162461bcd60e51b81526004018080602001828103825260318152602001806131b86031913960400191505060405180910390fd5b6108418383836118c4565b6000610a078383611e94565b611a7c81611ef8565b6000818152600c60205260409020546002600019610100600184161502019091160415610a34576000818152600c60205260408120610a3491612871565b6000808080611ac98686611fc5565b909450925050505b9250929050565b600061146a848484612040565b6000611af0826116eb565b611b2b5760405162461bcd60e51b815260040180806020018281038252602c81526020018061301a602c913960400191505060405180910390fd5b6000611b3683610b60565b9050806001600160a01b0316846001600160a01b03161480611b715750836001600160a01b0316611b668461070e565b6001600160a01b0316145b8061146a575061146a8185611561565b611b8c8484846118c4565b611b988484848461210a565b61136b5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f786032913960400191505060405180910390fd5b6060611bde826116eb565b611c195760405162461bcd60e51b815260040180806020018281038252602f815260200180613168602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611cae5780601f10611c8357610100808354040283529160200191611cae565b820191906000526020600020905b815481529060010190602001808311611c9157829003601f168201915b505050505090506060611cbf610b88565b9050805160001415611cd357509050610673565b815115611d945780826040516020018083805190602001908083835b60208310611d0e5780518252601f199092019160209182019101611cef565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611d565780518252601f199092019160209182019101611d37565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610673565b80611d9e85612272565b6040516020018083805190602001908083835b60208310611dd05780518252601f199092019160209182019101611db1565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611e185780518252601f199092019160209182019101611df9565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6000610a07838361234d565b6000610a078383612365565b600061146a84846001600160a01b0385166123af565b5490565b6000610a078383612446565b81546000908210611ed65760405162461bcd60e51b8152600401808060200182810382526022815260200180612f566022913960400191505060405180910390fd5b826000018281548110611ee557fe5b9060005260206000200154905092915050565b6000611f0382610b60565b9050611f1181600084610841565b611f1c6000836116fc565b6000828152600860205260409020546002600019610100600184161502019091160415611f5a576000828152600860205260408120611f5a91612871565b6001600160a01b0381166000908152600160205260409020611f7c9083611e88565b50611f8860028361250c565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b8154600090819083106120095760405162461bcd60e51b81526004018080602001828103825260228152602001806130d16022913960400191505060405180910390fd5b600084600001848154811061201a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816120db5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120a0578181015183820152602001612088565b50505050905090810190601f1680156120cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106120ee57fe5b9060005260206000209060020201600101549150509392505050565b600061211e846001600160a01b0316612518565b61212a5750600161146a565b6060612238630a85bd0160e11b61213f6116f8565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156121a657818101518382015260200161218e565b50505050905090810190601f1680156121d35780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612f78603291396001600160a01b038816919061251e565b9050600081806020019051602081101561225157600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60608161229757506040805180820190915260018152600360fc1b6020820152610673565b8160005b81156122af57600101600a8204915061229b565b60608167ffffffffffffffff811180156122c857600080fd5b506040519080825280601f01601f1916602001820160405280156122f3576020820181803683370190505b50859350905060001982015b831561234457600a840660300160f81b8282806001900393508151811061232257fe5b60200101906001600160f81b031916908160001a905350600a840493506122ff565b50949350505050565b60009081526001919091016020526040902054151590565b6000612371838361234d565b6123a757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610a0a565b506000610a0a565b600082815260018401602052604081205480612414575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611784565b8285600001600183038154811061242757fe5b9060005260206000209060020201600101819055506000915050611784565b60008181526001830160205260408120548015612502578354600019808301919081019060009087908390811061247957fe5b906000526020600020015490508087600001848154811061249657fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806124c657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610a0a565b6000915050610a0a565b6000610a07838361252d565b3b151590565b606061146a8484600085612601565b60008181526001830160205260408120548015612502578354600019808301919081019060009087908390811061256057fe5b906000526020600020906002020190508087600001848154811061258057fe5b6000918252602080832084546002909302019182556001938401549184019190915583548252898301905260409020908401905586548790806125bf57fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610a0a9350505050565b6060824710156126425760405162461bcd60e51b8152600401808060200182810382526026815260200180612ff46026913960400191505060405180910390fd5b61264b85612518565b61269c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126db5780518252601f1990920191602091820191016126bc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461273d576040519150601f19603f3d011682016040523d82523d6000602084013e612742565b606091505b509150915061275282828661275d565b979650505050505050565b6060831561276c575081611784565b82511561277c5782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156120a0578181015183820152602001612088565b6040805160608101909152806000815260006020820181905260409091015290565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261281b5760008555612861565b82601f1061283457805160ff1916838001178555612861565b82800160010185558215612861579182015b82811115612861578251825591602001919060010190612846565b5061286d9291506128b1565b5090565b50805460018160011615610100020316600290046000825580601f106128975750610a34565b601f016020900490600052602060002090810190610a3491905b5b8082111561286d57600081556001016128b2565b60008083601f8401126128d7578182fd5b50813567ffffffffffffffff8111156128ee578182fd5b6020830191508360208083028501011115611ad157600080fd5b60008083601f840112612919578182fd5b50813567ffffffffffffffff811115612930578182fd5b602083019150836020828501011115611ad157600080fd5b600060208284031215612959578081fd5b813561178481612f40565b60008060408385031215612976578081fd5b823561298181612f40565b9150602083013561299181612f40565b809150509250929050565b6000806000606084860312156129b0578081fd5b83356129bb81612f40565b925060208401356129cb81612f40565b929592945050506040919091013590565b600080600080608085870312156129f1578081fd5b84356129fc81612f40565b9350602085810135612a0d81612f40565b935060408601359250606086013567ffffffffffffffff80821115612a30578384fd5b818801915088601f830112612a43578384fd5b813581811115612a4f57fe5b604051601f8201601f1916810185018381118282101715612a6c57fe5b60405281815283820185018b1015612a82578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215612ab2578182fd5b8235612abd81612f40565b915060208301358015158114612991578182fd5b60008060408385031215612ae3578182fd5b8235612aee81612f40565b946020939093013593505050565b600080600060608486031215612b10578283fd5b8335612b1b81612f40565b95602085013595506040909401359392505050565b60008060008060408587031215612b45578384fd5b843567ffffffffffffffff80821115612b5c578586fd5b612b68888389016128c6565b90965094506020870135915080821115612b80578384fd5b50612b8d878288016128c6565b95989497509550505050565b600060208284031215612baa578081fd5b81356001600160e01b031981168114611784578182fd5b60008060408385031215612976578182fd5b600060208284031215612be4578081fd5b5035919050565b600080600060408486031215612bff578081fd5b83359250602084013567ffffffffffffffff811115612c1c578182fd5b612c2886828701612908565b9497909650939450505050565b60008060008060008060a08789031215612c4d578384fd5b86359550602087013567ffffffffffffffff811115612c6a578485fd5b612c7689828a01612908565b909650945050604087013560ff81168114612c8f578283fd5b959894975092956060810135946080909101359350915050565b6001600160a01b0391909116815260200190565b6020808252825182820181905260009190848201906040850190845b81811015612cf557835183529284019291840191600101612cd9565b50909695505050505050565b901515815260200190565b90815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6060810160068510612d4157fe5b938152600392830b6020820152910b60409091015290565b6000602080835283518082850152825b81811015612d8557858101830151858201604001528201612d69565b81811115612d965783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602f908201527f746f6b656e4964206c656e677468206973206e6f7420657175616c20746f205f60408201526e0e8ded6cadcaaa49240d8cadccee8d608b1b606082015260800190565b602080825260119082015270496e76616c6964207369676e617475726560781b604082015260600190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b60008482526040602083015282604083015282846060840137818301606090810191909152601f909201601f1916010192915050565b6000808335601e19843603018112612f11578283fd5b83018035915067ffffffffffffffff821115612f2b578283fd5b602001915036819003821315611ad157600080fd5b6001600160a01b0381168114610a3457600080fdfe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220102b1f7a3853359ac87f01893f3ca030cca3225a8f752a5a6b375082887657ec64736f6c63430007040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000011446567656e24204661726d204c616e647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c414e4400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Degen$ Farm Lands
Arg [1] : symbol_ (string): LAND

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 446567656e24204661726d204c616e6473000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4c414e4400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

172:2431:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2240:325:4;;;;;;:::i;:::-;;:::i;:::-;;965:148:2;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4440:98:3;;;:::i;:::-;;;;;;;:::i;7145:217::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6689:395::-;;;;;;:::i;:::-;;:::i;736:327:13:-;;;;;;:::i;:::-;;:::i;6183:208:3:-;;;:::i;:::-;;;;;;;:::i;2348:252:13:-;;;;;;:::i;:::-;;:::i;353:99:14:-;;;;;;:::i;:::-;;:::i;5952:160:3:-;;;;;;:::i;:::-;;:::i;8375:149::-;;;;;;:::i;:::-;;:::i;1264:71:13:-;;;;;;:::i;:::-;;:::i;6463:169:3:-;;;;;;:::i;:::-;;:::i;1517:453:13:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3596:246:4:-;;;;;;:::i;:::-;;:::i;213:36:13:-;;;:::i;2571:28:4:-;;;:::i;4203:175:3:-;;;;;;:::i;:::-;;:::i;1976:121:13:-;;;:::i;2606:101:4:-;;;;;;:::i;:::-;;:::i;458:126:14:-;;;;;;:::i;:::-;;:::i;3928:218:3:-;;;;;;:::i;:::-;;:::i;1710:145:15:-;;;:::i;2904:270:4:-;;;;;;:::i;:::-;;:::i;2103:131::-;;;;;;:::i;:::-;;:::i;2713:185::-;;;;;;:::i;:::-;;:::i;1078:85:15:-;;;:::i;255:40:13:-;;;:::i;1011:209:14:-;;;;;;:::i;:::-;;:::i;4602:102:3:-;;;:::i;3180:241:4:-;;;;;;:::i;:::-;;:::i;590:186:14:-;;;;;;:::i;:::-;;:::i;7429:290:3:-;;;;;;:::i;:::-;;:::i;782:119:14:-;;;;;;:::i;:::-;;:::i;8590:282:3:-;;;;;;:::i;:::-;;:::i;576:734:4:-;;;;;;:::i;:::-;;:::i;1341:170:13:-;;;;;;:::i;:::-;;:::i;468:43::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;7785:162:3:-;;;;;;:::i;:::-;;:::i;518:47:13:-;;;;;;:::i;:::-;;:::i;2004:240:15:-;;;;;;:::i;:::-;;:::i;2240:325:4:-;289:22:14;300:10;289;:22::i;:::-;281:48;;;;;-1:-1:-1;;;281:48:14;;;;;;;;;;;;-1:-1:-1;;;281:48:14;;;;;;;;;;;;;;;2358:34:4;;::::1;2350:94;;;;-1:-1:-1::0;;;2350:94:4::1;;;;;;;:::i;:::-;;;;;;;;;2459:6;2454:105;2471:18:::0;;::::1;2454:105;;;2510:38;2523:7;;2531:1;2523:10;;;;;;;;;;;;;2535:9;;2545:1;2535:12;;;;;;;;;;;;;;;;;;:::i;:::-;2510:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;2510:12:4::1;::::0;-1:-1:-1;;;2510:38:4:i:1;:::-;2491:3;;2454:105;;;;2240:325:::0;;;;:::o;965:148:2:-;-1:-1:-1;;;;;;1073:33:2;;1050:4;1073:33;;;;;;;;;;;;;965:148;;;;:::o;4440:98:3:-;4526:5;4519:12;;;;;;;;-1:-1:-1;;4519:12:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4494:13;;4519:12;;4526:5;;4519:12;;4526:5;4519:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4440:98;:::o;7145:217::-;7221:7;7248:16;7256:7;7248;:16::i;:::-;7240:73;;;;-1:-1:-1;;;7240:73:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7331:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7331:24:3;;7145:217::o;6689:395::-;6769:13;6785:23;6800:7;6785:14;:23::i;:::-;6769:39;;6832:5;-1:-1:-1;;;;;6826:11:3;:2;-1:-1:-1;;;;;6826:11:3;;;6818:57;;;;-1:-1:-1;;;6818:57:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6910:5;-1:-1:-1;;;;;6894:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6894:21:3;;:69;;;;6919:44;6943:5;6950:12;:10;:12::i;6919:44::-;6886:159;;;;-1:-1:-1;;;6886:159:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7056:21;7065:2;7069:7;7056:8;:21::i;:::-;6689:395;;;:::o;736:327:13:-;1301:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1290:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1290:23:15;;1282:68;;;;;-1:-1:-1;;;1282:68:15;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1282:68:15;;;;;;;;;;;;;;;247:2:13::1;843:20:::0;;::::1;::::0;892;::::1;923:21;;:::i;:::-;947:50;;;;;;;;957:33;973:1;976;979:10;957:15;:33::i;:::-;947:50;;;;;;;;::::0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;;;;;::::1;::::0;;;;;-1:-1:-1;1007:14:13;;;:5:::1;:14:::0;;;;:21;;;;923:74;;-1:-1:-1;923:74:13;;1007:14;;-1:-1:-1;;1007:21:13::1;::::0;;::::1;::::0;::::1;;;;;;;;::::0;;-1:-1:-1;1007:21:13::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;1007:21:13;;;::::1;;;;-1:-1:-1::0;;1007:21:13;;::::1;::::0;;;::::1;;::::0;;;::::1;::::0;;1038:18:::1;1044:2:::0;1048:7;1038:5:::1;:18::i;:::-;1360:1:15;;;736:327:13::0;;;:::o;6183:208:3:-;6244:7;6363:21;:12;:19;:21::i;:::-;6356:28;;6183:208;:::o;2348:252:13:-;2459:10;2443:27;;;;:15;:27;;;;;;;;2439:154;;;2486:28;2496:4;2502:2;2506:7;2486:9;:28::i;:::-;2439:154;;;2545:37;2564:4;2570:2;2574:7;2545:18;:37::i;353:99:14:-;406:4;440:5;-1:-1:-1;;;;;429:16:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;429:16:14;;;353:99;-1:-1:-1;;353:99:14:o;5952:160:3:-;-1:-1:-1;;;;;6075:20:3;;6049:7;6075:20;;;:13;:20;;;;;:30;;6099:5;6075:23;:30::i;:::-;6068:37;;5952:160;;;;;:::o;8375:149::-;8478:39;8495:4;8501:2;8505:7;8478:39;;;;;;;;;;;;:16;:39::i;1264:71:13:-;1314:14;1320:7;1314:5;:14::i;:::-;1264:71;:::o;6463:169:3:-;6538:7;;6579:22;:12;6595:5;6579:15;:22::i;:::-;-1:-1:-1;6557:44:3;6463:169;-1:-1:-1;;;6463:169:3:o;1517:453:13:-;1580:16;1755:9;1767:17;1777:6;1767:9;:17::i;:::-;1755:29;;1795:23;1835:1;1821:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1821:16:13;;1795:42;;1852:8;1847:94;1868:1;1864;:5;;;1847:94;;;1900:30;1920:6;1928:1;1900:30;;:19;:30::i;:::-;1890:6;1897:1;1890:9;;;;;;;;;;;;;;;;;;;:40;1871:3;;1847:94;;3596:246:4;3723:48;3740:7;3749:9;;3760:2;3764;3768;3723:16;:48::i;:::-;3715:78;;;;-1:-1:-1;;;3715:78:4;;;;;;;:::i;:::-;3803:32;3816:7;3825:9;;3803:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3803:12:4;;-1:-1:-1;;;3803:32:4:i;213:36:13:-;247:2;213:36;:::o;2571:28:4:-;;;-1:-1:-1;;;;;2571:28:4;;:::o;4203:175:3:-;4275:7;4301:70;4318:7;4301:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;1976:121:13:-;2051:39;;;;;;;;;;;;;;;;;1976:121;:::o;2606:101:4:-;1301:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1290:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1290:23:15;;1282:68;;;;;-1:-1:-1;;;1282:68:15;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1282:68:15;;;;;;;;;;;;;;;2674:13:4::1;:26:::0;;-1:-1:-1;;;;;;2674:26:4::1;-1:-1:-1::0;;;;;2674:26:4;;;::::1;::::0;;;::::1;::::0;;2606:101::o;458:126:14:-;-1:-1:-1;;;;;537:22:14;;514:4;537:22;;;:15;:22;;;;;;;;;:40;;;563:14;571:5;563:7;:14::i;3928:218:3:-;4000:7;-1:-1:-1;;;;;4027:19:3;;4019:74;;;;-1:-1:-1;;;4019:74:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4110:20:3;;;;;;:13;:20;;;;;:29;;:27;:29::i;1710:145:15:-;1301:12;:10;:12::i;:::-;-1:-1:-1;;;;;1290:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1290:23:15;;1282:68;;;;;-1:-1:-1;;;1282:68:15;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1282:68:15;;;;;;;;;;;;;;;1800:6:::1;::::0;1779:40:::1;::::0;1816:1:::1;::::0;-1:-1:-1;;;;;1800:6:15::1;::::0;1779:40:::1;::::0;1816:1;;1779:40:::1;1829:6;:19:::0;;-1:-1:-1;;;;;;1829:19:15::1;::::0;;1710:145::o;2904:270:4:-;3046:7;3069:15;3087:33;3101:7;3110:9;;3087:13;:33::i;:::-;3069:51;;3137:30;3147:7;3156:2;3160;3164;3137:30;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3137:30:4;;-1:-1:-1;;3137:30:4;;;2904:270;-1:-1:-1;;;;;;;;;2904:270:4:o;2103:131::-;289:22:14;300:10;289;:22::i;:::-;281:48;;;;;-1:-1:-1;;;281:48:14;;;;;;;;;;;;-1:-1:-1;;;281:48:14;;;;;;;;;;;;;;;2195:32:4::1;2208:7;2217:9;;2195:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;2195:12:4::1;::::0;-1:-1:-1;;;2195:32:4:i:1;2713:185::-:0;2809:15;2871:7;2880:9;;2860:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2850:41;;;;;;2840:51;;2713:185;;;;;:::o;1078:85:15:-;1150:6;;-1:-1:-1;;;;;1150:6:15;1078:85;:::o;255:40:13:-;294:1;255:40;:::o;1011:209:14:-;1301:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1290:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1290:23:15;;1282:68;;;;;-1:-1:-1;;;1282:68:15;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1282:68:15;;;;;;;;;;;;;;;1106:15:14::1;1124:14;-1:-1:-1::0;;;;;1124:24:14::1;;1157:4;1124:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;1124:39:14::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;1124:39:14;1173:40:::1;::::0;;-1:-1:-1;;;1173:40:14;;-1:-1:-1;;;;;1173:40:14;;::::1;;::::0;::::1;::::0;;;;;;;;;1124:39;;-1:-1:-1;1173:23:14;;::::1;::::0;::::1;::::0;:40;;;;;1124:39:::1;::::0;1173:40;;;;;;;;-1:-1:-1;1173:23:14;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;4602:102:3::0;4690:7;4683:14;;;;;;;;-1:-1:-1;;4683:14:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4658:13;;4683:14;;4690:7;;4683:14;;4690:7;4683:14;;;;;;;;;;;;;;;;;;;;;;;;3180:241:4;3401:13;;3329:4;;-1:-1:-1;;;;;3401:13:4;3356:41;3366:7;3375:9;;3386:2;3390;3394;3356:9;:41::i;:::-;-1:-1:-1;;;;;3356:58:4;;;3180:241;-1:-1:-1;;;;;;;3180:241:4:o;590:186:14:-;1301:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1290:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1290:23:15;;1282:68;;;;;-1:-1:-1;;;1282:68:15;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1282:68:15;;;;;;;;;;;;;;;-1:-1:-1;;;;;670:26:14;::::1;662:60;;;::::0;;-1:-1:-1;;;662:60:14;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;662:60:14;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;733:29:14::1;;::::0;;;:15:::1;:29;::::0;;;;:36;;-1:-1:-1;;733:36:14::1;765:4;733:36;::::0;;590:186::o;7429:290:3:-;7543:12;:10;:12::i;:::-;-1:-1:-1;;;;;7531:24:3;:8;-1:-1:-1;;;;;7531:24:3;;;7523:62;;;;;-1:-1:-1;;;7523:62:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;7641:8;7596:18;:32;7615:12;:10;:12::i;:::-;-1:-1:-1;;;;;7596:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;7596:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;7596:53:3;;;;;;;;;;;7679:12;:10;:12::i;:::-;-1:-1:-1;;;;;7664:48:3;;7703:8;7664:48;;;;;;;;;;;;;;;;;;;;7429:290;;:::o;782:119:14:-;1301:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1290:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1290:23:15;;1282:68;;;;;-1:-1:-1;;;1282:68:15;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1282:68:15;;;;;;;;;;;;;;;-1:-1:-1;;;;;864:29:14::1;;::::0;;;:15:::1;:29;::::0;;;;857:37;;-1:-1:-1;;857:37:14::1;::::0;;782:119::o;8590:282:3:-;8721:41;8740:12;:10;:12::i;:::-;8754:7;8721:18;:41::i;:::-;8713:103;;;;-1:-1:-1;;;8713:103:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8826:39;8840:4;8846:2;8850:7;8859:5;8826:13;:39::i;:::-;8590:282;;;;:::o;576:734:4:-;649:13;682:16;690:7;682;:16::i;:::-;674:78;;;;-1:-1:-1;;;674:78:4;;;;;;;:::i;:::-;789:19;;;;:10;:19;;;;;;;;;763:45;;;;;;-1:-1:-1;;763:45:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;789:19;763:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818:18;839:9;:7;:9::i;:::-;818:30;;927:4;921:18;943:1;921:23;917:70;;;-1:-1:-1;967:9:4;-1:-1:-1;960:16:4;;917:70;1089:23;;:27;1085:178;;-1:-1:-1;1243:9:4;-1:-1:-1;1236:16:4;;1085:178;1280:23;1295:7;1280:14;:23::i;:::-;1273:30;576:734;-1:-1:-1;;;;576:734:4:o;1341:170:13:-;1301:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1290:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1290:23:15;;1282:68;;;;;-1:-1:-1;;;1282:68:15;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1282:68:15;;;;;;;;;;;;;;;-1:-1:-1;;;;;1426:24:13;::::1;;::::0;;;:15:::1;:24;::::0;;;;;;:33;;-1:-1:-1;;1426:33:13::1;::::0;::::1;;;::::0;;1474:30;::::1;::::0;::::1;::::0;1426:33;;1474:30:::1;:::i;:::-;;;;;;;;1341:170:::0;;:::o;468:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7785:162:3:-;-1:-1:-1;;;;;7905:25:3;;;7882:4;7905:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7785:162::o;518:47:13:-;;;;;;;;;;;;;;;:::o;2004:240:15:-;1301:12;:10;:12::i;:::-;-1:-1:-1;;;;;1290:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1290:23:15;;1282:68;;;;;-1:-1:-1;;;1282:68:15;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1282:68:15;;;;;;;;;;;;;;;-1:-1:-1;;;;;2092:22:15;::::1;2084:73;;;;-1:-1:-1::0;;;2084:73:15::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2193:6;::::0;2172:38:::1;::::0;-1:-1:-1;;;;;2172:38:15;;::::1;::::0;2193:6:::1;::::0;2172:38:::1;::::0;2193:6:::1;::::0;2172:38:::1;2220:6;:17:::0;;-1:-1:-1;;;;;;2220:17:15::1;-1:-1:-1::0;;;;;2220:17:15;;;::::1;::::0;;;::::1;::::0;;2004:240::o;1457:223:4:-;1565:16;1573:7;1565;:16::i;:::-;1557:75;;;;-1:-1:-1;;;1557:75:4;;;;;;;:::i;:::-;1642:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;10306:125:3:-;10371:4;10394:30;:12;10416:7;10394:21;:30::i;598:104:1:-;685:10;598:104;:::o;16042:180:3:-;16107:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;16107:29:3;-1:-1:-1;;;;;16107:29:3;;;;;;;;:24;;16160:23;16107:24;16160:14;:23::i;:::-;-1:-1:-1;;;;;16151:46:3;;;;;;;;;;;16042:180;;:::o;1069:189:13:-;1147:8;294:1;1184:28;;;;1249:1;1240:10;;;1229:22;;;;;;;1222:29;;;1069:189;;;;;;:::o;12169:393:3:-;-1:-1:-1;;;;;12248:16:3;;12240:61;;;;;-1:-1:-1;;;12240:61:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12320:16;12328:7;12320;:16::i;:::-;12319:17;12311:58;;;;;-1:-1:-1;;;12311:58:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;12380:45;12409:1;12413:2;12417:7;12380:20;:45::i;:::-;-1:-1:-1;;;;;12436:17:3;;;;;;:13;:17;;;;;:30;;12458:7;12436:21;:30::i;:::-;-1:-1:-1;12477:29:3;:12;12494:7;12503:2;12477:16;:29::i;:::-;-1:-1:-1;12522:33:3;;12547:7;;-1:-1:-1;;;;;12522:33:3;;;12539:1;;12522:33;;12539:1;;12522:33;12169:393;;:::o;7820:121:5:-;7889:7;7915:19;7923:3;7915:7;:19::i;13630:584:3:-;13754:4;-1:-1:-1;;;;;13727:31:3;:23;13742:7;13727:14;:23::i;:::-;-1:-1:-1;;;;;13727:31:3;;13719:85;;;;-1:-1:-1;;;13719:85:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13840:16:3;;13832:65;;;;-1:-1:-1;;;13832:65:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13908:39;13929:4;13935:2;13939:7;13908:20;:39::i;:::-;14009:29;14026:1;14030:7;14009:8;:29::i;:::-;-1:-1:-1;;;;;14049:19:3;;;;;;:13;:19;;;;;:35;;14076:7;14049:26;:35::i;:::-;-1:-1:-1;;;;;;14094:17:3;;;;;;:13;:17;;;;;:30;;14116:7;14094:21;:30::i;:::-;-1:-1:-1;14135:29:3;:12;14152:7;14161:2;14135:16;:29::i;:::-;;14199:7;14195:2;-1:-1:-1;;;;;14180:27:3;14189:4;-1:-1:-1;;;;;14180:27:3;;;;;;;;;;;13630:584;;;:::o;8009:300::-;8168:41;8187:12;:10;:12::i;:::-;8201:7;8168:18;:41::i;:::-;8160:103;;;;-1:-1:-1;;;8160:103:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8274:28;8284:4;8290:2;8294:7;8274:9;:28::i;9250:135:6:-;9321:7;9355:22;9359:3;9371:5;9355:3;:22::i;1897:200:4:-;1965:20;1977:7;1965:11;:20::i;:::-;2006:19;;;;:10;:19;;;;;2000:33;;-1:-1:-1;;2000:33:4;;;;;;;;;;;:38;1996:95;;2061:19;;;;:10;:19;;;;;2054:26;;;:::i;8269:233:5:-;8349:7;;;;8408:22;8412:3;8424:5;8408:3;:22::i;:::-;8377:53;;-1:-1:-1;8377:53:5;-1:-1:-1;;;8269:233:5;;;;;;:::o;9522:211::-;9629:7;9679:44;9684:3;9704;9710:12;9679:4;:44::i;10589:351:3:-;10682:4;10706:16;10714:7;10706;:16::i;:::-;10698:73;;;;-1:-1:-1;;;10698:73:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10781:13;10797:23;10812:7;10797:14;:23::i;:::-;10781:39;;10849:5;-1:-1:-1;;;;;10838:16:3;:7;-1:-1:-1;;;;;10838:16:3;;:51;;;;10882:7;-1:-1:-1;;;;;10858:31:3;:20;10870:7;10858:11;:20::i;:::-;-1:-1:-1;;;;;10858:31:3;;10838:51;:94;;;;10893:39;10917:5;10924:7;10893:23;:39::i;9734:269::-;9847:28;9857:4;9863:2;9867:7;9847:9;:28::i;:::-;9893:48;9916:4;9922:2;9926:7;9935:5;9893:22;:48::i;:::-;9885:111;;;;-1:-1:-1;;;9885:111:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4770:776;4843:13;4876:16;4884:7;4876;:16::i;:::-;4868:76;;;;-1:-1:-1;;;4868:76:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4981:19;;;;:10;:19;;;;;;;;;4955:45;;;;;;-1:-1:-1;;4955:45:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;4981:19;4955:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5010:18;5031:9;:7;:9::i;:::-;5010:30;;5119:4;5113:18;5135:1;5113:23;5109:70;;;-1:-1:-1;5159:9:3;-1:-1:-1;5152:16:3;;5109:70;5281:23;;:27;5277:106;;5355:4;5361:9;5338:33;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5338:33:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5338:33:3;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5338:33:3;;;;;;;;;;;;;-1:-1:-1;;5338:33:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5324:48;;;;;;5277:106;5513:4;5519:18;:7;:16;:18::i;:::-;5496:42;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5496:42:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5496:42:3;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5496:42:3;;;;;;;;;;;;;-1:-1:-1;;5496:42:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5482:57;;;;4770:776;;;:::o;7588:149:5:-;7672:4;7695:35;7705:3;7725;7695:9;:35::i;8068:129:6:-;8135:4;8158:32;8163:3;8183:5;8158:4;:32::i;7027:183:5:-;7116:4;7139:64;7144:3;7164;-1:-1:-1;;;;;7178:23:5;;7139:4;:64::i;4491:108::-;4573:19;;4491:108::o;8365:135:6:-;8435:4;8458:35;8466:3;8486:5;8458:7;:35::i;4452:201::-;4546:18;;4519:7;;4546:26;-1:-1:-1;4538:73:6;;;;-1:-1:-1;;;4538:73:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4628:3;:11;;4640:5;4628:18;;;;;;;;;;;;;;;;4621:25;;4452:201;;;;:::o;12779:527:3:-;12838:13;12854:23;12869:7;12854:14;:23::i;:::-;12838:39;;12906:48;12927:5;12942:1;12946:7;12906:20;:48::i;:::-;12992:29;13009:1;13013:7;12992:8;:29::i;:::-;13077:19;;;;:10;:19;;;;;13071:33;;-1:-1:-1;;13071:33:3;;;;;;;;;;;:38;13067:95;;13132:19;;;;:10;:19;;;;;13125:26;;;:::i;:::-;-1:-1:-1;;;;;13172:20:3;;;;;;:13;:20;;;;;:36;;13200:7;13172:27;:36::i;:::-;-1:-1:-1;13219:28:3;:12;13239:7;13219:19;:28::i;:::-;-1:-1:-1;13263:36:3;;13291:7;;13287:1;;-1:-1:-1;;;;;13263:36:3;;;;;13287:1;;13263:36;12779:527;;:::o;4942:274:5:-;5045:19;;5009:7;;;;5045:27;-1:-1:-1;5037:74:5;;;;-1:-1:-1;;;5037:74:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5122:22;5147:3;:12;;5160:5;5147:19;;;;;;;;;;;;;;;;;;5122:44;;5184:5;:10;;;5196:5;:12;;;5176:33;;;;;4942:274;;;;;:::o;6403:315::-;6497:7;6535:17;;;:12;;;:17;;;;;;6585:12;6570:13;6562:36;;;;-1:-1:-1;;;6562:36:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:3;:12;;6675:1;6664:8;:12;6651:26;;;;;;;;;;;;;;;;;;:33;;;6644:40;;;6403:315;;;;;:::o;15447:589:3:-;15567:4;15592:15;:2;-1:-1:-1;;;;;15592:13:3;;:15::i;:::-;15587:58;;-1:-1:-1;15630:4:3;15623:11;;15587:58;15654:23;15680:246;-1:-1:-1;;;15791:12:3;:10;:12::i;:::-;15817:4;15835:7;15856:5;15696:175;;;;;;-1:-1:-1;;;;;15696:175:3;;;;;;-1:-1:-1;;;;;15696:175:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15696:175:3;;;;;;;-1:-1:-1;;;;;15696:175:3;;;;;;;;;;;15680:246;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15680:15:3;;;:246;:15;:246::i;:::-;15654:272;;15936:13;15963:10;15952:32;;;;;;;;;;;;;;;-1:-1:-1;15952:32:3;-1:-1:-1;;;;;;16002:26:3;-1:-1:-1;;;16002:26:3;;-1:-1:-1;;;15447:589:3;;;;;;:::o;210:725:17:-;266:13;483:10;479:51;;-1:-1:-1;509:10:17;;;;;;;;;;;;-1:-1:-1;;;509:10:17;;;;;;479:51;554:5;539:12;593:75;600:9;;593:75;;625:8;;655:2;647:10;;;;593:75;;;677:19;709:6;699:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;699:17:17;-1:-1:-1;769:5:17;;-1:-1:-1;677:39:17;-1:-1:-1;;;742:10:17;;784:114;791:9;;784:114;;859:2;852:4;:9;847:2;:14;834:29;;816:6;823:7;;;;;;;816:15;;;;;;;;;;;:47;-1:-1:-1;;;;;816:47:17;;;;;;;;-1:-1:-1;885:2:17;877:10;;;;784:114;;;-1:-1:-1;921:6:17;210:725;-1:-1:-1;;;;210:725:17:o;4278:123:5:-;4349:4;4372:17;;;:12;;;;;:17;;;;;;:22;;;4278:123::o;1640:404:6:-;1703:4;1724:21;1734:3;1739:5;1724:9;:21::i;:::-;1719:319;;-1:-1:-1;1761:23:6;;;;;;;;:11;:23;;;;;;;;;;;;;1941:18;;1919:19;;;:12;;;:19;;;;;;:40;;;;1973:11;;1719:319;-1:-1:-1;2022:5:6;2015:12;;1836:678:5;1912:4;2045:17;;;:12;;;:17;;;;;;2077:13;2073:435;;-1:-1:-1;;2161:38:5;;;;;;;;;;;;;;;;;;2143:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;2355:19;;2335:17;;;:12;;;:17;;;;;;;:39;2388:11;;2073:435;2466:5;2430:3;:12;;2454:1;2443:8;:12;2430:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;2492:5;2485:12;;;;;2212:1512:6;2278:4;2415:19;;;:12;;;:19;;;;;;2449:15;;2445:1273;;2878:18;;-1:-1:-1;;2830:14:6;;;;2878:22;;;;2806:21;;2878:3;;:22;;3160;;;;;;;;;;;;;;3140:42;;3303:9;3274:3;:11;;3286:13;3274:26;;;;;;;;;;;;;;;;;;;:38;;;;3378:23;;;3420:1;3378:12;;;:23;;;;;;3404:17;;;3378:43;;3527:17;;3378:3;;3527:17;;;;;;;;;;;;;;;;;;;;;;3619:3;:12;;:19;3632:5;3619:19;;;;;;;;;;;3612:26;;;3660:4;3653:11;;;;;;;;2445:1273;3702:5;3695:12;;;;;7369:140:5;7446:4;7469:33;7477:3;7497;7469:7;:33::i;726:413:0:-;1086:20;1124:8;;;726:413::o;3581:193::-;3684:12;3715:52;3737:6;3745:4;3751:1;3754:12;3715:21;:52::i;2682:1517:5:-;2746:4;2879:17;;;:12;;;:17;;;;;;2911:13;;2907:1286;;3337:19;;-1:-1:-1;;3291:12:5;;;;3337:23;;;;3267:21;;3337:3;;:23;;3629;;;;;;;;;;;;;;;;3600:52;;3774:9;3744:3;:12;;3757:13;3744:27;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;;;;3862:14;;3849:28;;:12;;;:28;;;;;3880:17;;;3849:48;;4003:18;;3849:3;;4003:18;;;;;;;;;;;;;;-1:-1:-1;;4003:18:5;;;;;;;;;;;;;;;;;;;;;4096:17;;;:12;;;:17;;;;;;4089:24;;;;4003:18;-1:-1:-1;4128:11:5;;-1:-1:-1;;;;4128:11:5;4608:523:0;4735:12;4792:5;4767:21;:30;;4759:81;;;;-1:-1:-1;;;4759:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4858:18;4869:6;4858:10;:18::i;:::-;4850:60;;;;;-1:-1:-1;;;4850:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4981:12;4995:23;5022:6;-1:-1:-1;;;;;5022:11:0;5042:5;5050:4;5022:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5022:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4980:75;;;;5072:52;5090:7;5099:10;5111:12;5072:17;:52::i;:::-;5065:59;4608:523;-1:-1:-1;;;;;;;4608:523:0:o;7091:725::-;7206:12;7234:7;7230:580;;;-1:-1:-1;7264:10:0;7257:17;;7230:580;7375:17;;:21;7371:429;;7633:10;7627:17;7693:15;7680:10;7676:2;7672:19;7665:44;7582:145;7765:20;;-1:-1:-1;;;7765:20:0;;;;;;;;;;;;;;;;;7772:12;;7765:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:412:18;;;155:3;148:4;140:6;136:17;132:27;122:2;;180:8;170;163:26;122:2;-1:-1:-1;210:20:18;;253:18;242:30;;239:2;;;292:8;282;275:26;239:2;336:4;328:6;324:17;312:29;;399:3;392:4;384;376:6;372:17;364:6;360:30;356:41;353:50;350:2;;;416:1;413;406:12;431:378;;;549:3;542:4;534:6;530:17;526:27;516:2;;574:8;564;557:26;516:2;-1:-1:-1;604:20:18;;647:18;636:30;;633:2;;;686:8;676;669:26;633:2;730:4;722:6;718:17;706:29;;782:3;775:4;766:6;758;754:19;750:30;747:39;744:2;;;799:1;796;789:12;814:259;;926:2;914:9;905:7;901:23;897:32;894:2;;;947:6;939;932:22;894:2;991:9;978:23;1010:33;1037:5;1010:33;:::i;1078:402::-;;;1207:2;1195:9;1186:7;1182:23;1178:32;1175:2;;;1228:6;1220;1213:22;1175:2;1272:9;1259:23;1291:33;1318:5;1291:33;:::i;:::-;1343:5;-1:-1:-1;1400:2:18;1385:18;;1372:32;1413:35;1372:32;1413:35;:::i;:::-;1467:7;1457:17;;;1165:315;;;;;:::o;1485:470::-;;;;1631:2;1619:9;1610:7;1606:23;1602:32;1599:2;;;1652:6;1644;1637:22;1599:2;1696:9;1683:23;1715:33;1742:5;1715:33;:::i;:::-;1767:5;-1:-1:-1;1824:2:18;1809:18;;1796:32;1837:35;1796:32;1837:35;:::i;:::-;1589:366;;1891:7;;-1:-1:-1;;;1945:2:18;1930:18;;;;1917:32;;1589:366::o;1960:1316::-;;;;;2132:3;2120:9;2111:7;2107:23;2103:33;2100:2;;;2154:6;2146;2139:22;2100:2;2198:9;2185:23;2217:33;2244:5;2217:33;:::i;:::-;2269:5;-1:-1:-1;2293:2:18;2332:18;;;2319:32;2360:35;2319:32;2360:35;:::i;:::-;2414:7;-1:-1:-1;2468:2:18;2453:18;;2440:32;;-1:-1:-1;2523:2:18;2508:18;;2495:32;2546:18;2576:14;;;2573:2;;;2608:6;2600;2593:22;2573:2;2651:6;2640:9;2636:22;2626:32;;2696:7;2689:4;2685:2;2681:13;2677:27;2667:2;;2723:6;2715;2708:22;2667:2;2768;2755:16;2794:2;2786:6;2783:14;2780:2;;;2800:9;2780:2;2840;2834:9;2913:2;2890:17;;-1:-1:-1;;2886:31:18;2874:44;;2870:53;;2938:18;;;2958:22;;;2935:46;2932:2;;;2984:9;2932:2;3011;3004:22;3035;;;3076:15;;;3072:24;;3069:37;-1:-1:-1;3066:2:18;;;3124:6;3116;3109:22;3066:2;3185:6;3180:2;3176;3172:11;3167:2;3159:6;3155:15;3142:50;3212:19;;;3208:28;;;3201:44;;;;-1:-1:-1;2090:1186:18;;;;-1:-1:-1;2090:1186:18;;-1:-1:-1;;2090:1186:18:o;3281:438::-;;;3407:2;3395:9;3386:7;3382:23;3378:32;3375:2;;;3428:6;3420;3413:22;3375:2;3472:9;3459:23;3491:33;3518:5;3491:33;:::i;:::-;3543:5;-1:-1:-1;3600:2:18;3585:18;;3572:32;3642:15;;3635:23;3623:36;;3613:2;;3678:6;3670;3663:22;3724:327;;;3853:2;3841:9;3832:7;3828:23;3824:32;3821:2;;;3874:6;3866;3859:22;3821:2;3918:9;3905:23;3937:33;3964:5;3937:33;:::i;:::-;3989:5;4041:2;4026:18;;;;4013:32;;-1:-1:-1;;;3811:240:18:o;4056:395::-;;;;4202:2;4190:9;4181:7;4177:23;4173:32;4170:2;;;4223:6;4215;4208:22;4170:2;4267:9;4254:23;4286:33;4313:5;4286:33;:::i;:::-;4338:5;4390:2;4375:18;;4362:32;;-1:-1:-1;4441:2:18;4426:18;;;4413:32;;4160:291;-1:-1:-1;;;4160:291:18:o;4456:843::-;;;;;4667:2;4655:9;4646:7;4642:23;4638:32;4635:2;;;4688:6;4680;4673:22;4635:2;4733:9;4720:23;4762:18;4803:2;4795:6;4792:14;4789:2;;;4824:6;4816;4809:22;4789:2;4868:84;4944:7;4935:6;4924:9;4920:22;4868:84;:::i;:::-;4971:8;;-1:-1:-1;4842:110:18;-1:-1:-1;5059:2:18;5044:18;;5031:32;;-1:-1:-1;5075:16:18;;;5072:2;;;5109:6;5101;5094:22;5072:2;;5153:86;5231:7;5220:8;5209:9;5205:24;5153:86;:::i;:::-;4625:674;;;;-1:-1:-1;5258:8:18;-1:-1:-1;;;;4625:674:18:o;5304:306::-;;5415:2;5403:9;5394:7;5390:23;5386:32;5383:2;;;5436:6;5428;5421:22;5383:2;5467:23;;-1:-1:-1;;;;;;5519:32:18;;5509:43;;5499:2;;5571:6;5563;5556:22;5615:417;;;5759:2;5747:9;5738:7;5734:23;5730:32;5727:2;;;5780:6;5772;5765:22;6037:190;;6149:2;6137:9;6128:7;6124:23;6120:32;6117:2;;;6170:6;6162;6155:22;6117:2;-1:-1:-1;6198:23:18;;6107:120;-1:-1:-1;6107:120:18:o;6232:501::-;;;;6381:2;6369:9;6360:7;6356:23;6352:32;6349:2;;;6402:6;6394;6387:22;6349:2;6443:9;6430:23;6420:33;;6504:2;6493:9;6489:18;6476:32;6531:18;6523:6;6520:30;6517:2;;;6568:6;6560;6553:22;6517:2;6612:61;6665:7;6656:6;6645:9;6641:22;6612:61;:::i;:::-;6339:394;;6692:8;;-1:-1:-1;6586:87:18;;-1:-1:-1;;;;6339:394:18:o;6738:806::-;;;;;;;6936:3;6924:9;6915:7;6911:23;6907:33;6904:2;;;6958:6;6950;6943:22;6904:2;6999:9;6986:23;6976:33;;7060:2;7049:9;7045:18;7032:32;7087:18;7079:6;7076:30;7073:2;;;7124:6;7116;7109:22;7073:2;7168:61;7221:7;7212:6;7201:9;7197:22;7168:61;:::i;:::-;7248:8;;-1:-1:-1;7142:87:18;-1:-1:-1;;7333:2:18;7318:18;;7305:32;7377:4;7366:16;;7356:27;;7346:2;;7402:6;7394;7387:22;7346:2;6894:650;;;;-1:-1:-1;6894:650:18;;7482:2;7467:18;;7454:32;;7533:3;7518:19;;;7505:33;;-1:-1:-1;6894:650:18;-1:-1:-1;;6894:650:18:o;7549:203::-;-1:-1:-1;;;;;7713:32:18;;;;7695:51;;7683:2;7668:18;;7650:102::o;7757:635::-;7928:2;7980:21;;;8050:13;;7953:18;;;8072:22;;;7757:635;;7928:2;8151:15;;;;8125:2;8110:18;;;7757:635;8197:169;8211:6;8208:1;8205:13;8197:169;;;8272:13;;8260:26;;8341:15;;;;8306:12;;;;8233:1;8226:9;8197:169;;;-1:-1:-1;8383:3:18;;7908:484;-1:-1:-1;;;;;;7908:484:18:o;8397:187::-;8562:14;;8555:22;8537:41;;8525:2;8510:18;;8492:92::o;8589:177::-;8735:25;;;8723:2;8708:18;;8690:76::o;8771:398::-;8998:25;;;9071:4;9059:17;;;;9054:2;9039:18;;9032:45;9108:2;9093:18;;9086:34;9151:2;9136:18;;9129:34;8985:3;8970:19;;8952:217::o;9174:399::-;9367:2;9352:18;;9400:1;9389:13;;9379:2;;9406:9;9379:2;9426:25;;;9498:1;9487:21;;;9482:2;9467:18;;9460:49;9545:21;;9540:2;9525:18;;;9518:49;9334:239;:::o;9578:603::-;;9719:2;9748;9737:9;9730:21;9780:6;9774:13;9823:6;9818:2;9807:9;9803:18;9796:34;9848:4;9861:140;9875:6;9872:1;9869:13;9861:140;;;9970:14;;;9966:23;;9960:30;9936:17;;;9955:2;9932:26;9925:66;9890:10;;9861:140;;;10019:6;10016:1;10013:13;10010:2;;;10089:4;10084:2;10075:6;10064:9;10060:22;10056:31;10049:45;10010:2;-1:-1:-1;10165:2:18;10144:15;-1:-1:-1;;10140:29:18;10125:45;;;;10172:2;10121:54;;9699:482;-1:-1:-1;;;9699:482:18:o;10186:411::-;10388:2;10370:21;;;10427:2;10407:18;;;10400:30;10466:34;10461:2;10446:18;;10439:62;-1:-1:-1;;;10532:2:18;10517:18;;10510:45;10587:3;10572:19;;10360:237::o;10602:341::-;10804:2;10786:21;;;10843:2;10823:18;;;10816:30;-1:-1:-1;;;10877:2:18;10862:18;;10855:47;10934:2;10919:18;;10776:167::o;10948:410::-;11150:2;11132:21;;;11189:2;11169:18;;;11162:30;11228:34;11223:2;11208:18;;11201:62;-1:-1:-1;;;11294:2:18;11279:18;;11272:44;11348:3;11333:19;;11122:236::o;11363:413::-;11565:2;11547:21;;;11604:2;11584:18;;;11577:30;11643:34;11638:2;11623:18;;11616:62;-1:-1:-1;;;11709:2:18;11694:18;;11687:47;11766:3;11751:19;;11537:239::o;11963:464::-;;12150:6;12139:9;12132:25;12193:2;12188;12177:9;12173:18;12166:30;12232:6;12227:2;12216:9;12212:18;12205:34;12289:6;12281;12276:2;12265:9;12261:18;12248:48;12316:22;;;12340:2;12312:31;;;12305:45;;;;12411:2;12390:15;;;-1:-1:-1;;12386:29:18;12371:45;12367:54;;12122:305;-1:-1:-1;;12122:305:18:o;12432:534::-;;;12576:11;12563:25;12670:2;12666:7;12655:8;12639:14;12635:29;12631:43;12611:18;12607:68;12597:2;;12692:4;12686;12679:18;12597:2;12722:33;;12774:20;;;-1:-1:-1;12817:18:18;12806:30;;12803:2;;;12852:4;12846;12839:18;12803:2;12888:4;12876:17;;-1:-1:-1;12919:14:18;12915:27;;;12905:38;;12902:2;;;12956:1;12953;12946:12;12971:133;-1:-1:-1;;;;;13048:31:18;;13038:42;;13028:2;;13094:1;13091;13084:12

Swarm Source

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