ETH Price: $2,273.39 (+0.10%)

Token

Unknown Trajectory (UNTRY)
 

Overview

Max Total Supply

187 UNTRY

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 UNTRY
0xca64c94af19686158e9883ea5c4671e3a5adda9a
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:
UnknownTrajectory

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-24
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-27
*/

pragma solidity ^0.8.0;

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

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

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

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

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

}

// File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/EnumerableMap.sol




pragma solidity ^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: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/EnumerableSet.sol




pragma solidity ^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: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Address.sol




pragma solidity ^0.8.0;

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

        uint256 size;
        // 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: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/introspection/ERC165.sol


pragma solidity ^0.8.0;

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

// File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol


pragma solidity ^0.8.0;


/**
 * @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 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(type(IERC165).interfaceId);
    }

    /**
     * @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: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721Receiver.sol




pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

// File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721Enumerable.sol




pragma solidity ^0.8.0;


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

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

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

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

// File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721Metadata.sol




pragma solidity ^0.8.0;


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

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

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

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

// File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/introspection/IERC165.sol



// File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol




pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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) {
        return msg.sender;
    }

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



// File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/ERC721.sol




pragma solidity ^0.8.0;











/**
 * @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 Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;
    
    // 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;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(type(IERC721).interfaceId);
        _registerInterface(type(IERC721Metadata).interfaceId);
        _registerInterface(type(IERC721Enumerable).interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _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()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    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: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol




pragma solidity ^0.8.0;

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

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



    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/math/SafeMath.sol




pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


//                                    ,-.
//           ,--,               ,--/ /|
//      .--. |  | :   ,-+-. /  |:  : ' /    ,-+-. /  |  '   ,'\         /. ./|  ,-+-. /  |
//    ,'_ /| :  . |  ,--.'|'   ||  '  /    ,--.'|'   | /   /   |     .-'-. ' | ,--.'|'   |
//    |  ' | |  . . |   |  ,"' |'  |  :   |   |  ,"' |.   ; ,. :    /___/ \: ||   |  ,"' |
//    |  | ' |  | | |   | /  | ||  |   \  |   | /  | |'   | |: : .-'.. '   ' .|   | /  | |
//    :  | | :  ' ; |   | |  | |'  : |. \ |   | |  | |'   | .; :/___/ \:     '|   | |  | |
//    |  ; ' |  | ' |   | |  |/ |  | ' \ \|   | |  |/ |   :    |.   \  ' .\   |   | |  |/
//    :  | : ;  ; | |   | |--'  '  : |--' |   | |--'   \   \  /  \   \   ' \ ||   | |--'
//    '  :  `--'   \|   |/      ;  |,'    |   |/        `----'    \   \  |--" |   |/
//    :  ,      .-./'---'       '--'      '---'                    \   \ |    '---'
//    `--`----'                                                    '---"
//
//            ,----,
//          ,/   .`|
//        ,`   .'  :                                                   ___
//      ;    ;     /                                                 ,--.'|_
//    .'___,/    ,' __  ,-.                 .--.                     |  | :,'    ,---.    __  ,-.
//    |    :     |,' ,'/ /|               .--,`|                     :  : ' :   '   ,'\ ,' ,'/ /|
//    ;    |.';  ;'  | |' | ,--.--.       |  |.    ,---.     ,---. .;__,'  /   /   /   |'  | |' |   .--,
//    `----'  |  ||  |   ,'/       \      '--`_   /     \   /     \|  |   |   .   ; ,. :|  |   ,' /_ ./|
//        '   :  ;'  :  / .--.  .-. |     ,--,'| /    /  | /    / ':__,'| :   '   | |: :'  :  /, ' , ' :
//        |   |  '|  | '   \__\/: . .     |  | '.    ' / |.    ' /   '  : |__ '   | .; :|  | '/___/ \: |
//        '   :  |;  : |   ," .--.; |     :  | |'   ;   /|'   ; :__  |  | '.'||   :    |;  : | .  \  ' |
//        ;   |.' |  , ;  /  /  ,.  |   __|  : ''   |  / |'   | '.'| ;  :    ; \   \  / |  , ;  \  ;   :
//        '---'    ---'  ;  :   .'   \.'__/\_: ||   :    ||   :    : |  ,   /   `----'   ---'    \  \  ;
//                       |  ,     .-./|   :    : \   \  /  \   \  /   ---`-'                      :  \  \
//                        `--`---'     \   \  /   `----'    `----'                                 \  ' ;
//                                      `--`-'                                                      `--`


pragma solidity ^0.8.0;


// SPDX-License-Identifier: MIT

contract UnknownTrajectory is ERC721, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    uint public constant MAX_SHAPES = 8888;
    uint256 public constant SHAPES_PRICE = 77700000000000000; // 0.0777 ETH
    uint public constant DEVELOPER_SHARE = 45;
    uint public constant ARTIST_SHARE = 45;
    uint public constant ADVISOR_SHARE = 10;
    uint public constant SHARE_SUM = 100;
    address public developerAddress = 0xdaf5cFd45FeC6Cc49ea969739376dBF6136c4024;
    address public artistAddress = 0xa99CA1cAa0A27465FE8d9821Db978E778dA91Fd0;
    address public advisorAddress = 0x71CB3467D3d2528cCeACa2c3931b51ad0379C25B;
    string public script;
    string public scriptType = "TreeJs";
    bool public saleStarted = false;
    mapping (uint256 => uint256) public creationDates;

    constructor() ERC721("Unknown Trajectory","UNTRY")  {
        setBaseURI("https://gateway.pinata.cloud/ipfs/Qme2A4KViW5LiNCizVko1DEcF3tZxzET8ij139WstxeXcV/");
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

   function mint(uint256 shapesNumber) public payable {
        require(saleStarted, "Sale has not started yet");
        require(totalSupply() < MAX_SHAPES, "Sale has already ended");
        require(shapesNumber > 0 && shapesNumber <= 20, "Shape number must be between 1 and 20");
        require(totalSupply().add(shapesNumber) <= MAX_SHAPES, "Exceeds MAX_SHAPES");
        require(msg.value >= SHAPES_PRICE.mul(shapesNumber), "Ether value sent is below the price");

        for (uint i = 0; i < shapesNumber; i++) {
            uint mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
            creationDates[mintIndex] = block.number;
        }
    }

   function reserve(uint256 shapesNumber, address toAddress) public onlyOwner {
        require(totalSupply() < MAX_SHAPES, "There are no shapes left");
        require(totalSupply().add(shapesNumber) <= MAX_SHAPES, "Exceeds MAX_SHAPES");

        for (uint i = 0; i < shapesNumber; i++) {
            uint mintIndex = totalSupply();
            _safeMint(toAddress, mintIndex);
            creationDates[mintIndex] = block.number;
        }
    }

    function setScript(string memory _script) public onlyOwner {
        script = _script;
    }

    function setScriptType(string memory _scriptType) public onlyOwner {
        script = _scriptType;
    }

    function setDeveloperAddress(address _developerAddress) public onlyOwner {
        developerAddress = _developerAddress;
    }

    function setArtistAddress(address _artistAddress) public onlyOwner {
        artistAddress = _artistAddress;
    }
    
    function setAdvisorAddress(address _advisorAddress) public onlyOwner {
        advisorAddress = _advisorAddress;
    }


    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }

    function flipSaleState() public onlyOwner {
        saleStarted = !saleStarted;
    }

    function tokenHash(uint256 tokenId) public view returns(bytes32){
        require(_exists(tokenId), "DOES NOT EXIST");
        return bytes32(keccak256(abi.encodePacked(address(this), creationDates[tokenId], tokenId)));
    }

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        uint toDeveloper = balance.mul(DEVELOPER_SHARE).div(SHARE_SUM);
        uint toArtist = balance.mul(ARTIST_SHARE).div(SHARE_SUM);
        uint toAdvisor = balance.mul(ADVISOR_SHARE).div(SHARE_SUM);
        payable(developerAddress).transfer(toDeveloper);
        payable(artistAddress).transfer(toArtist);
        payable(advisorAddress).transfer(toAdvisor);
        assert(address(this).balance == 0);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADVISOR_SHARE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ARTIST_SHARE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEVELOPER_SHARE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SHAPES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHAPES_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_SUM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advisorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"","type":"uint256"}],"name":"creationDates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shapesNumber","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shapesNumber","type":"uint256"},{"internalType":"address","name":"toAddress","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"script","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scriptType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_advisorAddress","type":"address"}],"name":"setAdvisorAddress","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":"_artistAddress","type":"address"}],"name":"setArtistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developerAddress","type":"address"}],"name":"setDeveloperAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_script","type":"string"}],"name":"setScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_scriptType","type":"string"}],"name":"setScriptType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

600b80546001600160a01b031990811673daf5cfd45fec6cc49ea969739376dbf6136c402417909155600c8054821673a99ca1caa0a27465fe8d9821db978e778da91fd0179055600d80549091167371cb3467d3d2528cceaca2c3931b51ad0379c25b17905560c06040526006608081905265547265654a7360d01b60a09081526200008f91600f9190620002cd565b506010805460ff19169055348015620000a757600080fd5b5060405180604001604052806012815260200171556e6b6e6f776e205472616a6563746f727960701b81525060405180604001604052806005815260200164554e54525960d81b815250620001096301ffc9a760e01b620001f260201b60201c565b81516200011e906006906020850190620002cd565b50805162000134906007906020840190620002cd565b50620001476380ac58cd60e01b620001f2565b62000159635b5e139f60e01b620001f2565b6200016b63780e9d6360e01b620001f2565b50600090506200017a6200024d565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001ec60405180608001604052806051815260200162002fb46051913962000251565b6200041c565b6001600160e01b03198082161415620002285760405162461bcd60e51b81526004016200021f9062000373565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b6200025b6200024d565b6001600160a01b03166200026e620002a5565b6001600160a01b031614620002975760405162461bcd60e51b81526004016200021f90620003aa565b620002a281620002b4565b50565b600a546001600160a01b031690565b8051620002c9906009906020840190620002cd565b5050565b828054620002db90620003df565b90600052602060002090601f016020900481019282620002ff57600085556200034a565b82601f106200031a57805160ff19168380011785556200034a565b828001600101855582156200034a579182015b828111156200034a5782518255916020019190600101906200032d565b50620003589291506200035c565b5090565b5b808211156200035857600081556001016200035d565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620003f457607f821691505b602082108114156200041657634e487b7160e01b600052602260045260246000fd5b50919050565b612b88806200042c6000396000f3fe6080604052600436106102725760003560e01c8063715018a61161014f578063a3864397116100c1578063d7eb3f3a1161007a578063d7eb3f3a146106ae578063dcc345f2146106c3578063e406a6b914610644578063e985e9c5146106e3578063ebe9eb9f14610703578063f2fde38b1461071857610272565b8063a386439714610604578063b88d4fde14610624578063c623c54314610644578063c87b56dd14610659578063c8a0122614610679578063caccd7f71461069957610272565b806395d89b411161011357806395d89b411461057257806396d4d09114610587578063a0712d681461059c578063a2121b4e146105af578063a22cb465146105c4578063a22e4faa146105e457610272565b8063715018a61461050657806378a4ab851461033e5780638462151c1461051b5780638da5cb5b1461054857806394bc2ae71461055d57610272565b80633e6d6a6b116101e85780635d69dbdd116101ac5780635d69dbdd1461047257806362aee544146104875780636352211e1461049c5780636c0360eb146104bc57806370a08231146104d157806370d808d5146104f157610272565b80633e6d6a6b146103dd57806342842e0e146103fd5780634f6ccce71461041d57806355f804b31461043d5780635c474f9e1461045d57610272565b8063171ce0941161023a578063171ce0941461033e57806318160ddd1461035e57806323b872dd146103805780632f745c59146103a057806334918dfd146103c05780633ccfd60b146103d557610272565b806301ffc9a71461027757806303339bcb146102ad57806306fdde03146102cf578063081812fc146102f1578063095ea7b31461031e575b600080fd5b34801561028357600080fd5b506102976102923660046121cb565b610738565b6040516102a4919061239d565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004612261565b61075b565b005b3480156102db57600080fd5b506102e4610847565b6040516102a491906123b1565b3480156102fd57600080fd5b5061031161030c366004612249565b6108d9565b6040516102a49190612308565b34801561032a57600080fd5b506102cd6103393660046121a2565b61091c565b34801561034a57600080fd5b506102cd610359366004612203565b6109af565b34801561036a57600080fd5b50610373610a05565b6040516102a491906123a8565b34801561038c57600080fd5b506102cd61039b3660046120b4565b610a16565b3480156103ac57600080fd5b506103736103bb3660046121a2565b610a4e565b3480156103cc57600080fd5b506102cd610a79565b6102cd610acc565b3480156103e957600080fd5b506102cd6103f8366004612068565b610c20565b34801561040957600080fd5b506102cd6104183660046120b4565b610c81565b34801561042957600080fd5b50610373610438366004612249565b610c9c565b34801561044957600080fd5b506102cd610458366004612203565b610cb2565b34801561046957600080fd5b50610297610cfd565b34801561047e57600080fd5b506102e4610d06565b34801561049357600080fd5b50610373610d94565b3480156104a857600080fd5b506103116104b7366004612249565b610d99565b3480156104c857600080fd5b506102e4610dc1565b3480156104dd57600080fd5b506103736104ec366004612068565b610dd0565b3480156104fd57600080fd5b50610373610e19565b34801561051257600080fd5b506102cd610e25565b34801561052757600080fd5b5061053b610536366004612068565b610eae565b6040516102a49190612359565b34801561055457600080fd5b50610311610f8f565b34801561056957600080fd5b50610373610f9e565b34801561057e57600080fd5b506102e4610fa3565b34801561059357600080fd5b50610311610fb2565b6102cd6105aa366004612249565b610fc1565b3480156105bb57600080fd5b506103736110da565b3480156105d057600080fd5b506102cd6105df366004612168565b6110e0565b3480156105f057600080fd5b506102cd6105ff366004612068565b6111ae565b34801561061057600080fd5b5061037361061f366004612249565b61120f565b34801561063057600080fd5b506102cd61063f3660046120ef565b61127b565b34801561065057600080fd5b506103736112b4565b34801561066557600080fd5b506102e4610674366004612249565b6112b9565b34801561068557600080fd5b50610373610694366004612249565b6113fc565b3480156106a557600080fd5b5061031161140e565b3480156106ba57600080fd5b5061031161141d565b3480156106cf57600080fd5b506102cd6106de366004612068565b61142c565b3480156106ef57600080fd5b506102976106fe366004612082565b61148d565b34801561070f57600080fd5b506102e46114bb565b34801561072457600080fd5b506102cd610733366004612068565b6114c8565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b610763611589565b6001600160a01b0316610774610f8f565b6001600160a01b0316146107a35760405162461bcd60e51b815260040161079a906127fc565b60405180910390fd5b6122b86107ae610a05565b106107cb5760405162461bcd60e51b815260040161079a9061243d565b6122b86107e0836107da610a05565b9061158d565b11156107fe5760405162461bcd60e51b815260040161079a906129b3565b60005b82811015610842576000610813610a05565b905061081f8382611599565b60009081526011602052604090204390558061083a81612aa2565b915050610801565b505050565b60606006805461085690612a6d565b80601f016020809104026020016040519081016040528092919081815260200182805461088290612a6d565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e4826115b3565b6109005760405162461bcd60e51b815260040161079a906127b0565b506000908152600460205260409020546001600160a01b031690565b600061092782610d99565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260040161079a906128c9565b806001600160a01b031661096d611589565b6001600160a01b031614806109895750610989816106fe611589565b6109a55760405162461bcd60e51b815260040161079a9061264f565b61084283836115c0565b6109b7611589565b6001600160a01b03166109c8610f8f565b6001600160a01b0316146109ee5760405162461bcd60e51b815260040161079a906127fc565b8051610a0190600e906020840190611f48565b5050565b6000610a11600261162e565b905090565b610a27610a21611589565b82611639565b610a435760405162461bcd60e51b815260040161079a9061293a565b6108428383836116be565b6001600160a01b0382166000908152600160205260408120610a7090836117cc565b90505b92915050565b610a81611589565b6001600160a01b0316610a92610f8f565b6001600160a01b031614610ab85760405162461bcd60e51b815260040161079a906127fc565b6010805460ff19811660ff90911615179055565b610ad4611589565b6001600160a01b0316610ae5610f8f565b6001600160a01b031614610b0b5760405162461bcd60e51b815260040161079a906127fc565b476000610b246064610b1e84602d6117d8565b906117e4565b90506000610b386064610b1e85602d6117d8565b90506000610b4c6064610b1e86600a6117d8565b600b546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050158015610b87573d6000803e3d6000fd5b50600c546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610bc2573d6000803e3d6000fd5b50600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610bfd573d6000803e3d6000fd5b504715610c1a57634e487b7160e01b600052600160045260246000fd5b50505050565b610c28611589565b6001600160a01b0316610c39610f8f565b6001600160a01b031614610c5f5760405162461bcd60e51b815260040161079a906127fc565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6108428383836040518060200160405280600081525061127b565b600080610caa6002846117f0565b509392505050565b610cba611589565b6001600160a01b0316610ccb610f8f565b6001600160a01b031614610cf15760405162461bcd60e51b815260040161079a906127fc565b610cfa8161180c565b50565b60105460ff1681565b600f8054610d1390612a6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3f90612a6d565b8015610d8c5780601f10610d6157610100808354040283529160200191610d8c565b820191906000526020600020905b815481529060010190602001808311610d6f57829003601f168201915b505050505081565b600a81565b6000610a7382604051806060016040528060298152602001612b2a602991396002919061181f565b60606009805461085690612a6d565b60006001600160a01b038216610df85760405162461bcd60e51b815260040161079a906126ac565b6001600160a01b0382166000908152600160205260409020610a739061162e565b6701140bbd030c400081565b610e2d611589565b6001600160a01b0316610e3e610f8f565b6001600160a01b031614610e645760405162461bcd60e51b815260040161079a906127fc565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606000610ebb83610dd0565b905080610ed8575050604080516000815260208101909152610756565b60008167ffffffffffffffff811115610f0157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f2a578160200160208202803683370190505b50905060005b82811015610f7f57610f428582610a4e565b828281518110610f6257634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f7781612aa2565b915050610f30565b5091506107569050565b50919050565b600a546001600160a01b031690565b606481565b60606007805461085690612a6d565b600d546001600160a01b031681565b60105460ff16610fe35760405162461bcd60e51b815260040161079a90612406565b6122b8610fee610a05565b1061100b5760405162461bcd60e51b815260040161079a9061290a565b60008111801561101c575060148111155b6110385760405162461bcd60e51b815260040161079a90612543565b6122b8611047826107da610a05565b11156110655760405162461bcd60e51b815260040161079a906129b3565b6110776701140bbd030c4000826117d8565b3410156110965760405162461bcd60e51b815260040161079a906126f6565b60005b81811015610a015760006110ab610a05565b90506110b73382611599565b6000908152601160205260409020439055806110d281612aa2565b915050611099565b6122b881565b6110e8611589565b6001600160a01b0316826001600160a01b031614156111195760405162461bcd60e51b815260040161079a906125cc565b8060056000611126611589565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561116a611589565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111a2919061239d565b60405180910390a35050565b6111b6611589565b6001600160a01b03166111c7610f8f565b6001600160a01b0316146111ed5760405162461bcd60e51b815260040161079a906127fc565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600061121a826115b3565b6112365760405162461bcd60e51b815260040161079a9061298b565b3060116000848152602001908152602001600020548360405160200161125e939291906122af565b604051602081830303815290604052805190602001209050919050565b61128c611286611589565b83611639565b6112a85760405162461bcd60e51b815260040161079a9061293a565b610c1a84848484611836565b602d81565b60606112c4826115b3565b6112e05760405162461bcd60e51b815260040161079a9061287a565b600082815260086020526040812080546112f990612a6d565b80601f016020809104026020016040519081016040528092919081815260200182805461132590612a6d565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b505050505090506000611383610dc1565b905080516000141561139757509050610756565b8151156113c95780826040516020016113b19291906122d9565b60405160208183030381529060405292505050610756565b806113d385611869565b6040516020016113e49291906122d9565b60405160208183030381529060405292505050919050565b60116020526000908152604090205481565b600b546001600160a01b031681565b600c546001600160a01b031681565b611434611589565b6001600160a01b0316611445610f8f565b6001600160a01b03161461146b5760405162461bcd60e51b815260040161079a906127fc565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e8054610d1390612a6d565b6114d0611589565b6001600160a01b03166114e1610f8f565b6001600160a01b0316146115075760405162461bcd60e51b815260040161079a906127fc565b6001600160a01b03811661152d5760405162461bcd60e51b815260040161079a906124c6565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6000610a7082846129df565b610a01828260405180602001604052806000815250611984565b6000610a736002836119b7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115f582610d99565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a73826119c3565b6000611644826115b3565b6116605760405162461bcd60e51b815260040161079a90612603565b600061166b83610d99565b9050806001600160a01b0316846001600160a01b031614806116a65750836001600160a01b031661169b846108d9565b6001600160a01b0316145b806116b657506116b6818561148d565b949350505050565b826001600160a01b03166116d182610d99565b6001600160a01b0316146116f75760405162461bcd60e51b815260040161079a90612831565b6001600160a01b03821661171d5760405162461bcd60e51b815260040161079a90612588565b611728838383610842565b6117336000826115c0565b6001600160a01b038316600090815260016020526040902061175590826119c7565b506001600160a01b038216600090815260016020526040902061177890826119d3565b50611785600282846119df565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610a7083836119f5565b6000610a708284612a0b565b6000610a7082846129f7565b60008080806117ff8686611a4e565b9097909650945050505050565b8051610a01906009906020840190611f48565b600061182c848484611abe565b90505b9392505050565b6118418484846116be565b61184d84848484611b35565b610c1a5760405162461bcd60e51b815260040161079a90612474565b60608161188e57506040805180820190915260018152600360fc1b6020820152610756565b8160005b81156118b857806118a281612aa2565b91506118b19050600a836129f7565b9150611892565b60008167ffffffffffffffff8111156118e157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561190b576020820181803683370190505b5090505b84156116b657611920600183612a2a565b915061192d600a86612abd565b6119389060306129df565b60f81b81838151811061195b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061197d600a866129f7565b945061190f565b61198e8383611c50565b61199b6000848484611b35565b6108425760405162461bcd60e51b815260040161079a90612474565b6000610a708383611d14565b5490565b6000610a708383611d2c565b6000610a708383611e49565b600061182c84846001600160a01b038516611e93565b81546000908210611a185760405162461bcd60e51b815260040161079a906123c4565b826000018281548110611a3b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b815460009081908310611a735760405162461bcd60e51b815260040161079a90612739565b6000846000018481548110611a9857634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611aee5760405162461bcd60e51b815260040161079a91906123b1565b5084611afb600183612a2a565b81548110611b1957634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6000611b49846001600160a01b0316611f42565b15611c4557836001600160a01b031663150b7a02611b65611589565b8786866040518563ffffffff1660e01b8152600401611b87949392919061231c565b602060405180830381600087803b158015611ba157600080fd5b505af1925050508015611bd1575060408051601f3d908101601f19168201909252611bce918101906121e7565b60015b611c2b573d808015611bff576040519150601f19603f3d011682016040523d82523d6000602084013e611c04565b606091505b508051611c235760405162461bcd60e51b815260040161079a90612474565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116b6565b506001949350505050565b6001600160a01b038216611c765760405162461bcd60e51b815260040161079a9061277b565b611c7f816115b3565b15611c9c5760405162461bcd60e51b815260040161079a9061250c565b611ca860008383610842565b6001600160a01b0382166000908152600160205260409020611cca90826119d3565b50611cd7600282846119df565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611e3f576000611d50600183612a2a565b8554909150600090611d6490600190612a2a565b90506000866000018281548110611d8b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611dbc57634e487b7160e01b600052603260045260246000fd5b600091825260209091200155611dd38360016129df565b60008281526001890160205260409020558654879080611e0357634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610a73565b6000915050610a73565b6000611e558383611d14565b611e8b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610a73565b506000610a73565b600082815260018401602052604081205480611ef857505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561182f565b8285611f05600184612a2a565b81548110611f2357634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160010181905550600091505061182f565b3b151590565b828054611f5490612a6d565b90600052602060002090601f016020900481019282611f765760008555611fbc565b82601f10611f8f57805160ff1916838001178555611fbc565b82800160010185558215611fbc579182015b82811115611fbc578251825591602001919060010190611fa1565b50611fc8929150611fcc565b5090565b5b80821115611fc85760008155600101611fcd565b600067ffffffffffffffff80841115611ffc57611ffc612afd565b604051601f8501601f19168101602001828111828210171561202057612020612afd565b60405284815291508183850186101561203857600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461075657600080fd5b600060208284031215612079578081fd5b610a7082612051565b60008060408385031215612094578081fd5b61209d83612051565b91506120ab60208401612051565b90509250929050565b6000806000606084860312156120c8578081fd5b6120d184612051565b92506120df60208501612051565b9150604084013590509250925092565b60008060008060808587031215612104578081fd5b61210d85612051565b935061211b60208601612051565b925060408501359150606085013567ffffffffffffffff81111561213d578182fd5b8501601f8101871361214d578182fd5b61215c87823560208401611fe1565b91505092959194509250565b6000806040838503121561217a578182fd5b61218383612051565b915060208301358015158114612197578182fd5b809150509250929050565b600080604083850312156121b4578182fd5b6121bd83612051565b946020939093013593505050565b6000602082840312156121dc578081fd5b813561182f81612b13565b6000602082840312156121f8578081fd5b815161182f81612b13565b600060208284031215612214578081fd5b813567ffffffffffffffff81111561222a578182fd5b8201601f8101841361223a578182fd5b6116b684823560208401611fe1565b60006020828403121561225a578081fd5b5035919050565b60008060408385031215612273578182fd5b823591506120ab60208401612051565b6000815180845261229b816020860160208601612a41565b601f01601f19169290920160200192915050565b60609390931b6bffffffffffffffffffffffff191683526014830191909152603482015260540190565b600083516122eb818460208801612a41565b8351908301906122ff818360208801612a41565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061234f90830184612283565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561239157835183529284019291840191600101612375565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252610a706020830184612283565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526018908201527f53616c6520686173206e6f742073746172746564207965740000000000000000604082015260600190565b60208082526018908201527f546865726520617265206e6f20736861706573206c6566740000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526025908201527f5368617065206e756d626572206d757374206265206265747765656e2031206160408201526406e642032360dc1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526023908201527f45746865722076616c75652073656e742069732062656c6f772074686520707260408201526269636560e81b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600e908201526d1113d154c81393d50811561254d560921b604082015260600190565b60208082526012908201527145786365656473204d41585f53484150455360701b604082015260600190565b600082198211156129f2576129f2612ad1565b500190565b600082612a0657612a06612ae7565b500490565b6000816000190483118215151615612a2557612a25612ad1565b500290565b600082821015612a3c57612a3c612ad1565b500390565b60005b83811015612a5c578181015183820152602001612a44565b83811115610c1a5750506000910152565b600281046001821680612a8157607f821691505b60208210811415610f8957634e487b7160e01b600052602260045260246000fd5b6000600019821415612ab657612ab6612ad1565b5060010190565b600082612acc57612acc612ae7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cfa57600080fdfe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220540b78326fa36179cfdabc5dc2372fd3313950448a9afbc14c2791b7660fd6a864736f6c6343000800003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d653241344b566957354c694e43697a566b6f314445634633745a787a455438696a31333957737478655863562f

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063715018a61161014f578063a3864397116100c1578063d7eb3f3a1161007a578063d7eb3f3a146106ae578063dcc345f2146106c3578063e406a6b914610644578063e985e9c5146106e3578063ebe9eb9f14610703578063f2fde38b1461071857610272565b8063a386439714610604578063b88d4fde14610624578063c623c54314610644578063c87b56dd14610659578063c8a0122614610679578063caccd7f71461069957610272565b806395d89b411161011357806395d89b411461057257806396d4d09114610587578063a0712d681461059c578063a2121b4e146105af578063a22cb465146105c4578063a22e4faa146105e457610272565b8063715018a61461050657806378a4ab851461033e5780638462151c1461051b5780638da5cb5b1461054857806394bc2ae71461055d57610272565b80633e6d6a6b116101e85780635d69dbdd116101ac5780635d69dbdd1461047257806362aee544146104875780636352211e1461049c5780636c0360eb146104bc57806370a08231146104d157806370d808d5146104f157610272565b80633e6d6a6b146103dd57806342842e0e146103fd5780634f6ccce71461041d57806355f804b31461043d5780635c474f9e1461045d57610272565b8063171ce0941161023a578063171ce0941461033e57806318160ddd1461035e57806323b872dd146103805780632f745c59146103a057806334918dfd146103c05780633ccfd60b146103d557610272565b806301ffc9a71461027757806303339bcb146102ad57806306fdde03146102cf578063081812fc146102f1578063095ea7b31461031e575b600080fd5b34801561028357600080fd5b506102976102923660046121cb565b610738565b6040516102a4919061239d565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004612261565b61075b565b005b3480156102db57600080fd5b506102e4610847565b6040516102a491906123b1565b3480156102fd57600080fd5b5061031161030c366004612249565b6108d9565b6040516102a49190612308565b34801561032a57600080fd5b506102cd6103393660046121a2565b61091c565b34801561034a57600080fd5b506102cd610359366004612203565b6109af565b34801561036a57600080fd5b50610373610a05565b6040516102a491906123a8565b34801561038c57600080fd5b506102cd61039b3660046120b4565b610a16565b3480156103ac57600080fd5b506103736103bb3660046121a2565b610a4e565b3480156103cc57600080fd5b506102cd610a79565b6102cd610acc565b3480156103e957600080fd5b506102cd6103f8366004612068565b610c20565b34801561040957600080fd5b506102cd6104183660046120b4565b610c81565b34801561042957600080fd5b50610373610438366004612249565b610c9c565b34801561044957600080fd5b506102cd610458366004612203565b610cb2565b34801561046957600080fd5b50610297610cfd565b34801561047e57600080fd5b506102e4610d06565b34801561049357600080fd5b50610373610d94565b3480156104a857600080fd5b506103116104b7366004612249565b610d99565b3480156104c857600080fd5b506102e4610dc1565b3480156104dd57600080fd5b506103736104ec366004612068565b610dd0565b3480156104fd57600080fd5b50610373610e19565b34801561051257600080fd5b506102cd610e25565b34801561052757600080fd5b5061053b610536366004612068565b610eae565b6040516102a49190612359565b34801561055457600080fd5b50610311610f8f565b34801561056957600080fd5b50610373610f9e565b34801561057e57600080fd5b506102e4610fa3565b34801561059357600080fd5b50610311610fb2565b6102cd6105aa366004612249565b610fc1565b3480156105bb57600080fd5b506103736110da565b3480156105d057600080fd5b506102cd6105df366004612168565b6110e0565b3480156105f057600080fd5b506102cd6105ff366004612068565b6111ae565b34801561061057600080fd5b5061037361061f366004612249565b61120f565b34801561063057600080fd5b506102cd61063f3660046120ef565b61127b565b34801561065057600080fd5b506103736112b4565b34801561066557600080fd5b506102e4610674366004612249565b6112b9565b34801561068557600080fd5b50610373610694366004612249565b6113fc565b3480156106a557600080fd5b5061031161140e565b3480156106ba57600080fd5b5061031161141d565b3480156106cf57600080fd5b506102cd6106de366004612068565b61142c565b3480156106ef57600080fd5b506102976106fe366004612082565b61148d565b34801561070f57600080fd5b506102e46114bb565b34801561072457600080fd5b506102cd610733366004612068565b6114c8565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b610763611589565b6001600160a01b0316610774610f8f565b6001600160a01b0316146107a35760405162461bcd60e51b815260040161079a906127fc565b60405180910390fd5b6122b86107ae610a05565b106107cb5760405162461bcd60e51b815260040161079a9061243d565b6122b86107e0836107da610a05565b9061158d565b11156107fe5760405162461bcd60e51b815260040161079a906129b3565b60005b82811015610842576000610813610a05565b905061081f8382611599565b60009081526011602052604090204390558061083a81612aa2565b915050610801565b505050565b60606006805461085690612a6d565b80601f016020809104026020016040519081016040528092919081815260200182805461088290612a6d565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e4826115b3565b6109005760405162461bcd60e51b815260040161079a906127b0565b506000908152600460205260409020546001600160a01b031690565b600061092782610d99565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260040161079a906128c9565b806001600160a01b031661096d611589565b6001600160a01b031614806109895750610989816106fe611589565b6109a55760405162461bcd60e51b815260040161079a9061264f565b61084283836115c0565b6109b7611589565b6001600160a01b03166109c8610f8f565b6001600160a01b0316146109ee5760405162461bcd60e51b815260040161079a906127fc565b8051610a0190600e906020840190611f48565b5050565b6000610a11600261162e565b905090565b610a27610a21611589565b82611639565b610a435760405162461bcd60e51b815260040161079a9061293a565b6108428383836116be565b6001600160a01b0382166000908152600160205260408120610a7090836117cc565b90505b92915050565b610a81611589565b6001600160a01b0316610a92610f8f565b6001600160a01b031614610ab85760405162461bcd60e51b815260040161079a906127fc565b6010805460ff19811660ff90911615179055565b610ad4611589565b6001600160a01b0316610ae5610f8f565b6001600160a01b031614610b0b5760405162461bcd60e51b815260040161079a906127fc565b476000610b246064610b1e84602d6117d8565b906117e4565b90506000610b386064610b1e85602d6117d8565b90506000610b4c6064610b1e86600a6117d8565b600b546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050158015610b87573d6000803e3d6000fd5b50600c546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610bc2573d6000803e3d6000fd5b50600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610bfd573d6000803e3d6000fd5b504715610c1a57634e487b7160e01b600052600160045260246000fd5b50505050565b610c28611589565b6001600160a01b0316610c39610f8f565b6001600160a01b031614610c5f5760405162461bcd60e51b815260040161079a906127fc565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6108428383836040518060200160405280600081525061127b565b600080610caa6002846117f0565b509392505050565b610cba611589565b6001600160a01b0316610ccb610f8f565b6001600160a01b031614610cf15760405162461bcd60e51b815260040161079a906127fc565b610cfa8161180c565b50565b60105460ff1681565b600f8054610d1390612a6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3f90612a6d565b8015610d8c5780601f10610d6157610100808354040283529160200191610d8c565b820191906000526020600020905b815481529060010190602001808311610d6f57829003601f168201915b505050505081565b600a81565b6000610a7382604051806060016040528060298152602001612b2a602991396002919061181f565b60606009805461085690612a6d565b60006001600160a01b038216610df85760405162461bcd60e51b815260040161079a906126ac565b6001600160a01b0382166000908152600160205260409020610a739061162e565b6701140bbd030c400081565b610e2d611589565b6001600160a01b0316610e3e610f8f565b6001600160a01b031614610e645760405162461bcd60e51b815260040161079a906127fc565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606000610ebb83610dd0565b905080610ed8575050604080516000815260208101909152610756565b60008167ffffffffffffffff811115610f0157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f2a578160200160208202803683370190505b50905060005b82811015610f7f57610f428582610a4e565b828281518110610f6257634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f7781612aa2565b915050610f30565b5091506107569050565b50919050565b600a546001600160a01b031690565b606481565b60606007805461085690612a6d565b600d546001600160a01b031681565b60105460ff16610fe35760405162461bcd60e51b815260040161079a90612406565b6122b8610fee610a05565b1061100b5760405162461bcd60e51b815260040161079a9061290a565b60008111801561101c575060148111155b6110385760405162461bcd60e51b815260040161079a90612543565b6122b8611047826107da610a05565b11156110655760405162461bcd60e51b815260040161079a906129b3565b6110776701140bbd030c4000826117d8565b3410156110965760405162461bcd60e51b815260040161079a906126f6565b60005b81811015610a015760006110ab610a05565b90506110b73382611599565b6000908152601160205260409020439055806110d281612aa2565b915050611099565b6122b881565b6110e8611589565b6001600160a01b0316826001600160a01b031614156111195760405162461bcd60e51b815260040161079a906125cc565b8060056000611126611589565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561116a611589565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111a2919061239d565b60405180910390a35050565b6111b6611589565b6001600160a01b03166111c7610f8f565b6001600160a01b0316146111ed5760405162461bcd60e51b815260040161079a906127fc565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600061121a826115b3565b6112365760405162461bcd60e51b815260040161079a9061298b565b3060116000848152602001908152602001600020548360405160200161125e939291906122af565b604051602081830303815290604052805190602001209050919050565b61128c611286611589565b83611639565b6112a85760405162461bcd60e51b815260040161079a9061293a565b610c1a84848484611836565b602d81565b60606112c4826115b3565b6112e05760405162461bcd60e51b815260040161079a9061287a565b600082815260086020526040812080546112f990612a6d565b80601f016020809104026020016040519081016040528092919081815260200182805461132590612a6d565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b505050505090506000611383610dc1565b905080516000141561139757509050610756565b8151156113c95780826040516020016113b19291906122d9565b60405160208183030381529060405292505050610756565b806113d385611869565b6040516020016113e49291906122d9565b60405160208183030381529060405292505050919050565b60116020526000908152604090205481565b600b546001600160a01b031681565b600c546001600160a01b031681565b611434611589565b6001600160a01b0316611445610f8f565b6001600160a01b03161461146b5760405162461bcd60e51b815260040161079a906127fc565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e8054610d1390612a6d565b6114d0611589565b6001600160a01b03166114e1610f8f565b6001600160a01b0316146115075760405162461bcd60e51b815260040161079a906127fc565b6001600160a01b03811661152d5760405162461bcd60e51b815260040161079a906124c6565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6000610a7082846129df565b610a01828260405180602001604052806000815250611984565b6000610a736002836119b7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115f582610d99565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a73826119c3565b6000611644826115b3565b6116605760405162461bcd60e51b815260040161079a90612603565b600061166b83610d99565b9050806001600160a01b0316846001600160a01b031614806116a65750836001600160a01b031661169b846108d9565b6001600160a01b0316145b806116b657506116b6818561148d565b949350505050565b826001600160a01b03166116d182610d99565b6001600160a01b0316146116f75760405162461bcd60e51b815260040161079a90612831565b6001600160a01b03821661171d5760405162461bcd60e51b815260040161079a90612588565b611728838383610842565b6117336000826115c0565b6001600160a01b038316600090815260016020526040902061175590826119c7565b506001600160a01b038216600090815260016020526040902061177890826119d3565b50611785600282846119df565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610a7083836119f5565b6000610a708284612a0b565b6000610a7082846129f7565b60008080806117ff8686611a4e565b9097909650945050505050565b8051610a01906009906020840190611f48565b600061182c848484611abe565b90505b9392505050565b6118418484846116be565b61184d84848484611b35565b610c1a5760405162461bcd60e51b815260040161079a90612474565b60608161188e57506040805180820190915260018152600360fc1b6020820152610756565b8160005b81156118b857806118a281612aa2565b91506118b19050600a836129f7565b9150611892565b60008167ffffffffffffffff8111156118e157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561190b576020820181803683370190505b5090505b84156116b657611920600183612a2a565b915061192d600a86612abd565b6119389060306129df565b60f81b81838151811061195b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061197d600a866129f7565b945061190f565b61198e8383611c50565b61199b6000848484611b35565b6108425760405162461bcd60e51b815260040161079a90612474565b6000610a708383611d14565b5490565b6000610a708383611d2c565b6000610a708383611e49565b600061182c84846001600160a01b038516611e93565b81546000908210611a185760405162461bcd60e51b815260040161079a906123c4565b826000018281548110611a3b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b815460009081908310611a735760405162461bcd60e51b815260040161079a90612739565b6000846000018481548110611a9857634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611aee5760405162461bcd60e51b815260040161079a91906123b1565b5084611afb600183612a2a565b81548110611b1957634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6000611b49846001600160a01b0316611f42565b15611c4557836001600160a01b031663150b7a02611b65611589565b8786866040518563ffffffff1660e01b8152600401611b87949392919061231c565b602060405180830381600087803b158015611ba157600080fd5b505af1925050508015611bd1575060408051601f3d908101601f19168201909252611bce918101906121e7565b60015b611c2b573d808015611bff576040519150601f19603f3d011682016040523d82523d6000602084013e611c04565b606091505b508051611c235760405162461bcd60e51b815260040161079a90612474565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116b6565b506001949350505050565b6001600160a01b038216611c765760405162461bcd60e51b815260040161079a9061277b565b611c7f816115b3565b15611c9c5760405162461bcd60e51b815260040161079a9061250c565b611ca860008383610842565b6001600160a01b0382166000908152600160205260409020611cca90826119d3565b50611cd7600282846119df565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611e3f576000611d50600183612a2a565b8554909150600090611d6490600190612a2a565b90506000866000018281548110611d8b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611dbc57634e487b7160e01b600052603260045260246000fd5b600091825260209091200155611dd38360016129df565b60008281526001890160205260409020558654879080611e0357634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610a73565b6000915050610a73565b6000611e558383611d14565b611e8b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610a73565b506000610a73565b600082815260018401602052604081205480611ef857505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561182f565b8285611f05600184612a2a565b81548110611f2357634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160010181905550600091505061182f565b3b151590565b828054611f5490612a6d565b90600052602060002090601f016020900481019282611f765760008555611fbc565b82601f10611f8f57805160ff1916838001178555611fbc565b82800160010185558215611fbc579182015b82811115611fbc578251825591602001919060010190611fa1565b50611fc8929150611fcc565b5090565b5b80821115611fc85760008155600101611fcd565b600067ffffffffffffffff80841115611ffc57611ffc612afd565b604051601f8501601f19168101602001828111828210171561202057612020612afd565b60405284815291508183850186101561203857600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461075657600080fd5b600060208284031215612079578081fd5b610a7082612051565b60008060408385031215612094578081fd5b61209d83612051565b91506120ab60208401612051565b90509250929050565b6000806000606084860312156120c8578081fd5b6120d184612051565b92506120df60208501612051565b9150604084013590509250925092565b60008060008060808587031215612104578081fd5b61210d85612051565b935061211b60208601612051565b925060408501359150606085013567ffffffffffffffff81111561213d578182fd5b8501601f8101871361214d578182fd5b61215c87823560208401611fe1565b91505092959194509250565b6000806040838503121561217a578182fd5b61218383612051565b915060208301358015158114612197578182fd5b809150509250929050565b600080604083850312156121b4578182fd5b6121bd83612051565b946020939093013593505050565b6000602082840312156121dc578081fd5b813561182f81612b13565b6000602082840312156121f8578081fd5b815161182f81612b13565b600060208284031215612214578081fd5b813567ffffffffffffffff81111561222a578182fd5b8201601f8101841361223a578182fd5b6116b684823560208401611fe1565b60006020828403121561225a578081fd5b5035919050565b60008060408385031215612273578182fd5b823591506120ab60208401612051565b6000815180845261229b816020860160208601612a41565b601f01601f19169290920160200192915050565b60609390931b6bffffffffffffffffffffffff191683526014830191909152603482015260540190565b600083516122eb818460208801612a41565b8351908301906122ff818360208801612a41565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061234f90830184612283565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561239157835183529284019291840191600101612375565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252610a706020830184612283565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526018908201527f53616c6520686173206e6f742073746172746564207965740000000000000000604082015260600190565b60208082526018908201527f546865726520617265206e6f20736861706573206c6566740000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526025908201527f5368617065206e756d626572206d757374206265206265747765656e2031206160408201526406e642032360dc1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526023908201527f45746865722076616c75652073656e742069732062656c6f772074686520707260408201526269636560e81b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600e908201526d1113d154c81393d50811561254d560921b604082015260600190565b60208082526012908201527145786365656473204d41585f53484150455360701b604082015260600190565b600082198211156129f2576129f2612ad1565b500190565b600082612a0657612a06612ae7565b500490565b6000816000190483118215151615612a2557612a25612ad1565b500290565b600082821015612a3c57612a3c612ad1565b500390565b60005b83811015612a5c578181015183820152602001612a44565b83811115610c1a5750506000910152565b600281046001821680612a8157607f821691505b60208210811415610f8957634e487b7160e01b600052602260045260246000fd5b6000600019821415612ab657612ab6612ad1565b5060010190565b600082612acc57612acc612ae7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cfa57600080fdfe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220540b78326fa36179cfdabc5dc2372fd3313950448a9afbc14c2791b7660fd6a864736f6c63430008000033

Deployed Bytecode Sourcemap

68474:4242:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31719:150;;;;;;;;;;-1:-1:-1;31719:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70683:453;;;;;;;;;;-1:-1:-1;70683:453:0;;;;;:::i;:::-;;:::i;:::-;;43432:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46218:221::-;;;;;;;;;;-1:-1:-1;46218:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45748:404::-;;;;;;;;;;-1:-1:-1;45748:404:0;;;;;:::i;:::-;;:::i;71246:106::-;;;;;;;;;;-1:-1:-1;71246:106:0;;;;;:::i;:::-;;:::i;45226:211::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47108:305::-;;;;;;;;;;-1:-1:-1;47108:305:0;;;;;:::i;:::-;;:::i;44988:162::-;;;;;;;;;;-1:-1:-1;44988:162:0;;;;;:::i;:::-;;:::i;71861:87::-;;;;;;;;;;;;;:::i;72192:521::-;;;:::i;71624:120::-;;;;;;;;;;-1:-1:-1;71624:120:0;;;;;:::i;:::-;;:::i;47484:151::-;;;;;;;;;;-1:-1:-1;47484:151:0;;;;;:::i;:::-;;:::i;45514:172::-;;;;;;;;;;-1:-1:-1;45514:172:0;;;;;:::i;:::-;;:::i;71754:99::-;;;;;;;;;;-1:-1:-1;71754:99:0;;;;;:::i;:::-;;:::i;69209:31::-;;;;;;;;;;;;;:::i;69167:35::-;;;;;;;;;;;;;:::i;68807:39::-;;;;;;;;;;;;;:::i;43188:177::-;;;;;;;;;;-1:-1:-1;43188:177:0;;;;;:::i;:::-;;:::i;44807:97::-;;;;;;;;;;;;;:::i;42878:221::-;;;;;;;;;;-1:-1:-1;42878:221:0;;;;;:::i;:::-;;:::i;68637:56::-;;;;;;;;;;;;;:::i;58293:148::-;;;;;;;;;;;;;:::i;69479:502::-;;;;;;;;;;-1:-1:-1;69479:502:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57642:87::-;;;;;;;;;;;;;:::i;68853:36::-;;;;;;;;;;;;;:::i;43601:104::-;;;;;;;;;;;;;:::i;69059:74::-;;;;;;;;;;;;;:::i;69988:688::-;;;;;;:::i;:::-;;:::i;68592:38::-;;;;;;;;;;;;;:::i;46511:295::-;;;;;;;;;;-1:-1:-1;46511:295:0;;;;;:::i;:::-;;:::i;71496:116::-;;;;;;;;;;-1:-1:-1;71496:116:0;;;;;:::i;:::-;;:::i;71956:228::-;;;;;;;;;;-1:-1:-1;71956:228:0;;;;;:::i;:::-;;:::i;47706:285::-;;;;;;;;;;-1:-1:-1;47706:285:0;;;;;:::i;:::-;;:::i;68714:41::-;;;;;;;;;;;;;:::i;43776:792::-;;;;;;;;;;-1:-1:-1;43776:792:0;;;;;:::i;:::-;;:::i;69247:49::-;;;;;;;;;;-1:-1:-1;69247:49:0;;;;;:::i;:::-;;:::i;68896:76::-;;;;;;;;;;;;;:::i;68979:73::-;;;;;;;;;;;;;:::i;71360:128::-;;;;;;;;;;-1:-1:-1;71360:128:0;;;;;:::i;:::-;;:::i;46877:164::-;;;;;;;;;;-1:-1:-1;46877:164:0;;;;;:::i;:::-;;:::i;69140:20::-;;;;;;;;;;;;;:::i;58596:244::-;;;;;;;;;;-1:-1:-1;58596:244:0;;;;;:::i;:::-;;:::i;31719:150::-;-1:-1:-1;;;;;;31828:33:0;;31804:4;31828:33;;;;;;;;;;;;;31719:150;;;;:::o;70683:453::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;;;;;;;;;68626:4:::1;70777:13;:11;:13::i;:::-;:26;70769:63;;;;-1:-1:-1::0;;;70769:63:0::1;;;;;;;:::i;:::-;68626:4;70851:31;70869:12;70851:13;:11;:13::i;:::-;:17:::0;::::1;:31::i;:::-;:45;;70843:76;;;;-1:-1:-1::0;;;70843:76:0::1;;;;;;;:::i;:::-;70937:6;70932:197;70953:12;70949:1;:16;70932:197;;;70987:14;71004:13;:11;:13::i;:::-;70987:30;;71032:31;71042:9;71053;71032;:31::i;:::-;71078:24;::::0;;;:13:::1;:24;::::0;;;;71105:12:::1;71078:39:::0;;70967:3;::::1;::::0;::::1;:::i;:::-;;;;70932:197;;;;70683:453:::0;;:::o;43432:100::-;43486:13;43519:5;43512:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43432:100;:::o;46218:221::-;46294:7;46322:16;46330:7;46322;:16::i;:::-;46314:73;;;;-1:-1:-1;;;46314:73:0;;;;;;;:::i;:::-;-1:-1:-1;46407:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46407:24:0;;46218:221::o;45748:404::-;45829:13;45845:23;45860:7;45845:14;:23::i;:::-;45829:39;;45893:5;-1:-1:-1;;;;;45887:11:0;:2;-1:-1:-1;;;;;45887:11:0;;;45879:57;;;;-1:-1:-1;;;45879:57:0;;;;;;;:::i;:::-;45973:5;-1:-1:-1;;;;;45957:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;45957:21:0;;:69;;;;45982:44;46006:5;46013:12;:10;:12::i;45982:44::-;45949:161;;;;-1:-1:-1;;;45949:161:0;;;;;;;:::i;:::-;46123:21;46132:2;46136:7;46123:8;:21::i;71246:106::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;71324:20;;::::1;::::0;:6:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;71246:106:::0;:::o;45226:211::-;45287:7;45408:21;:12;:19;:21::i;:::-;45401:28;;45226:211;:::o;47108:305::-;47269:41;47288:12;:10;:12::i;:::-;47302:7;47269:18;:41::i;:::-;47261:103;;;;-1:-1:-1;;;47261:103:0;;;;;;;:::i;:::-;47377:28;47387:4;47393:2;47397:7;47377:9;:28::i;44988:162::-;-1:-1:-1;;;;;45112:20:0;;45085:7;45112:20;;;:13;:20;;;;;:30;;45136:5;45112:23;:30::i;:::-;45105:37;;44988:162;;;;;:::o;71861:87::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;71929:11:::1;::::0;;-1:-1:-1;;71914:26:0;::::1;71929:11;::::0;;::::1;71928:12;71914:26;::::0;;71861:87::o;72192:521::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;72266:21:::1;72248:15;72317:43;68886:3;72317:28;72266:21:::0;68753:2:::1;72317:11;:28::i;:::-;:32:::0;::::1;:43::i;:::-;72298:62:::0;-1:-1:-1;72371:13:0::1;72387:40;68886:3;72387:25;:7:::0;68798:2:::1;72387:11;:25::i;:40::-;72371:56:::0;-1:-1:-1;72438:14:0::1;72455:41;68886:3;72455:26;:7:::0;68844:2:::1;72455:11;:26::i;:41::-;72515:16;::::0;72507:47:::1;::::0;72438:58;;-1:-1:-1;;;;;;72515:16:0::1;::::0;72507:47;::::1;;;::::0;72542:11;;72515:16:::1;72507:47:::0;72515:16;72507:47;72542:11;72515:16;72507:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;72573:13:0::1;::::0;72565:41:::1;::::0;-1:-1:-1;;;;;72573:13:0;;::::1;::::0;72565:41;::::1;;;::::0;72597:8;;72573:13:::1;72565:41:::0;72573:13;72565:41;72597:8;72573:13;72565:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;72625:14:0::1;::::0;72617:43:::1;::::0;-1:-1:-1;;;;;72625:14:0;;::::1;::::0;72617:43;::::1;;;::::0;72650:9;;72625:14:::1;72617:43:::0;72625:14;72617:43;72650:9;72625:14;72617:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;72678:21:0::1;:26:::0;72671:34:::1;;-1:-1:-1::0;;;72671:34:0::1;;;;;;;;;57933:1;;;;72192:521::o:0;71624:120::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;71704:14:::1;:32:::0;;-1:-1:-1;;;;;;71704:32:0::1;-1:-1:-1::0;;;;;71704:32:0;;;::::1;::::0;;;::::1;::::0;;71624:120::o;47484:151::-;47588:39;47605:4;47611:2;47615:7;47588:39;;;;;;;;;;;;:16;:39::i;45514:172::-;45589:7;;45631:22;:12;45647:5;45631:15;:22::i;:::-;-1:-1:-1;45609:44:0;45514:172;-1:-1:-1;;;45514:172:0:o;71754:99::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;71825:20:::1;71837:7;71825:11;:20::i;:::-;71754:99:::0;:::o;69209:31::-;;;;;;:::o;69167:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68807:39::-;68844:2;68807:39;:::o;43188:177::-;43260:7;43287:70;43304:7;43287:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;44807:97::-;44855:13;44888:8;44881:15;;;;;:::i;42878:221::-;42950:7;-1:-1:-1;;;;;42978:19:0;;42970:74;;;;-1:-1:-1;;;42970:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43062:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;68637:56::-;68676:17;68637:56;:::o;58293:148::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;58384:6:::1;::::0;58363:40:::1;::::0;58400:1:::1;::::0;-1:-1:-1;;;;;58384:6:0::1;::::0;58363:40:::1;::::0;58400:1;;58363:40:::1;58414:6;:19:::0;;-1:-1:-1;;;;;;58414:19:0::1;::::0;;58293:148::o;69479:502::-;69540:16;69570:18;69591:17;69601:6;69591:9;:17::i;:::-;69570:38;-1:-1:-1;69623:15:0;69619:355;;-1:-1:-1;;69662:16:0;;;69676:1;69662:16;;;;;;;;69655:23;;69619:355;69711:23;69751:10;69737:25;;;;;;-1:-1:-1;;;69737:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69737:25:0;;69711:51;;69777:13;69805:130;69829:10;69821:5;:18;69805:130;;;69885:34;69905:6;69913:5;69885:19;:34::i;:::-;69869:6;69876:5;69869:13;;;;;;-1:-1:-1;;;69869:13:0;;;;;;;;;;;;;;;;;;:50;69841:7;;;;:::i;:::-;;;;69805:130;;;-1:-1:-1;69956:6:0;-1:-1:-1;69949:13:0;;-1:-1:-1;69949:13:0;69619:355;69479:502;;;;:::o;57642:87::-;57715:6;;-1:-1:-1;;;;;57715:6:0;57642:87;:::o;68853:36::-;68886:3;68853:36;:::o;43601:104::-;43657:13;43690:7;43683:14;;;;;:::i;69059:74::-;;;-1:-1:-1;;;;;69059:74:0;;:::o;69988:688::-;70058:11;;;;70050:48;;;;-1:-1:-1;;;70050:48:0;;;;;;;:::i;:::-;68626:4;70117:13;:11;:13::i;:::-;:26;70109:61;;;;-1:-1:-1;;;70109:61:0;;;;;;;:::i;:::-;70204:1;70189:12;:16;:38;;;;;70225:2;70209:12;:18;;70189:38;70181:88;;;;-1:-1:-1;;;70181:88:0;;;;;;;:::i;:::-;68626:4;70288:31;70306:12;70288:13;:11;:13::i;:31::-;:45;;70280:76;;;;-1:-1:-1;;;70280:76:0;;;;;;;:::i;:::-;70388:30;68676:17;70405:12;70388:16;:30::i;:::-;70375:9;:43;;70367:91;;;;-1:-1:-1;;;70367:91:0;;;;;;;:::i;:::-;70476:6;70471:198;70492:12;70488:1;:16;70471:198;;;70526:14;70543:13;:11;:13::i;:::-;70526:30;;70571:32;70581:10;70593:9;70571;:32::i;:::-;70618:24;;;;:13;:24;;;;;70645:12;70618:39;;70506:3;;;;:::i;:::-;;;;70471:198;;68592:38;68626:4;68592:38;:::o;46511:295::-;46626:12;:10;:12::i;:::-;-1:-1:-1;;;;;46614:24:0;:8;-1:-1:-1;;;;;46614:24:0;;;46606:62;;;;-1:-1:-1;;;46606:62:0;;;;;;;:::i;:::-;46726:8;46681:18;:32;46700:12;:10;:12::i;:::-;-1:-1:-1;;;;;46681:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;46681:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;46681:53:0;;;;;;;;;;;46765:12;:10;:12::i;:::-;-1:-1:-1;;;;;46750:48:0;;46789:8;46750:48;;;;;;:::i;:::-;;;;;;;;46511:295;;:::o;71496:116::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;71574:13:::1;:30:::0;;-1:-1:-1;;;;;;71574:30:0::1;-1:-1:-1::0;;;;;71574:30:0;;;::::1;::::0;;;::::1;::::0;;71496:116::o;71956:228::-;72012:7;72039:16;72047:7;72039;:16::i;:::-;72031:43;;;;-1:-1:-1;;;72031:43:0;;;;;;;:::i;:::-;72135:4;72142:13;:22;72156:7;72142:22;;;;;;;;;;;;72166:7;72110:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72100:75;;;;;;72085:91;;71956:228;;;:::o;47706:285::-;47838:41;47857:12;:10;:12::i;:::-;47871:7;47838:18;:41::i;:::-;47830:103;;;;-1:-1:-1;;;47830:103:0;;;;;;;:::i;:::-;47944:39;47958:4;47964:2;47968:7;47977:5;47944:13;:39::i;68714:41::-;68753:2;68714:41;:::o;43776:792::-;43849:13;43883:16;43891:7;43883;:16::i;:::-;43875:76;;;;-1:-1:-1;;;43875:76:0;;;;;;;:::i;:::-;43964:23;43990:19;;;:10;:19;;;;;43964:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44020:18;44041:9;:7;:9::i;:::-;44020:30;;44132:4;44126:18;44148:1;44126:23;44122:72;;;-1:-1:-1;44173:9:0;-1:-1:-1;44166:16:0;;44122:72;44298:23;;:27;44294:108;;44373:4;44379:9;44356:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44342:48;;;;;;44294:108;44534:4;44540:18;:7;:16;:18::i;:::-;44517:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44503:57;;;;43776:792;;;:::o;69247:49::-;;;;;;;;;;;;;:::o;68896:76::-;;;-1:-1:-1;;;;;68896:76:0;;:::o;68979:73::-;;;-1:-1:-1;;;;;68979:73:0;;:::o;71360:128::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;71444:16:::1;:36:::0;;-1:-1:-1;;;;;;71444:36:0::1;-1:-1:-1::0;;;;;71444:36:0;;;::::1;::::0;;;::::1;::::0;;71360:128::o;46877:164::-;-1:-1:-1;;;;;46998:25:0;;;46974:4;46998:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46877:164::o;69140:20::-;;;;;;;:::i;58596:244::-;57873:12;:10;:12::i;:::-;-1:-1:-1;;;;;57862:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;57862:23:0;;57854:68;;;;-1:-1:-1;;;57854:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58685:22:0;::::1;58677:73;;;;-1:-1:-1::0;;;58677:73:0::1;;;;;;;:::i;:::-;58787:6;::::0;58766:38:::1;::::0;-1:-1:-1;;;;;58766:38:0;;::::1;::::0;58787:6:::1;::::0;58766:38:::1;::::0;58787:6:::1;::::0;58766:38:::1;58815:6;:17:::0;;-1:-1:-1;;;;;;58815:17:0::1;-1:-1:-1::0;;;;;58815:17:0;;;::::1;::::0;;;::::1;::::0;;58596:244::o;40650:98::-;40730:10;40650:98;:::o;61682:::-;61740:7;61767:5;61771:1;61767;:5;:::i;50450:110::-;50526:26;50536:2;50540:7;50526:26;;;;;;;;;;;;:9;:26::i;49458:127::-;49523:4;49547:30;:12;49569:7;49547:21;:30::i;55602:183::-;55668:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;55668:29:0;-1:-1:-1;;;;;55668:29:0;;;;;;;;:24;;55722:23;55668:24;55722:14;:23::i;:::-;-1:-1:-1;;;;;55713:46:0;;;;;;;;;;;55602:183;;:::o;10176:123::-;10245:7;10272:19;10280:3;10272:7;:19::i;49752:355::-;49845:4;49870:16;49878:7;49870;:16::i;:::-;49862:73;;;;-1:-1:-1;;;49862:73:0;;;;;;;:::i;:::-;49946:13;49962:23;49977:7;49962:14;:23::i;:::-;49946:39;;50015:5;-1:-1:-1;;;;;50004:16:0;:7;-1:-1:-1;;;;;50004:16:0;;:51;;;;50048:7;-1:-1:-1;;;;;50024:31:0;:20;50036:7;50024:11;:20::i;:::-;-1:-1:-1;;;;;50024:31:0;;50004:51;:94;;;;50059:39;50083:5;50090:7;50059:23;:39::i;:::-;49996:103;49752:355;-1:-1:-1;;;;49752:355:0:o;52888:597::-;53013:4;-1:-1:-1;;;;;52986:31:0;:23;53001:7;52986:14;:23::i;:::-;-1:-1:-1;;;;;52986:31:0;;52978:85;;;;-1:-1:-1;;;52978:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53100:16:0;;53092:65;;;;-1:-1:-1;;;53092:65:0;;;;;;;:::i;:::-;53170:39;53191:4;53197:2;53201:7;53170:20;:39::i;:::-;53274:29;53291:1;53295:7;53274:8;:29::i;:::-;-1:-1:-1;;;;;53316:19:0;;;;;;:13;:19;;;;;:35;;53343:7;53316:26;:35::i;:::-;-1:-1:-1;;;;;;53362:17:0;;;;;;:13;:17;;;;;:30;;53384:7;53362:21;:30::i;:::-;-1:-1:-1;53405:29:0;:12;53422:7;53431:2;53405:16;:29::i;:::-;;53469:7;53465:2;-1:-1:-1;;;;;53450:27:0;53459:4;-1:-1:-1;;;;;53450:27:0;;;;;;;;;;;52888:597;;;:::o;21750:137::-;21821:7;21856:22;21860:3;21872:5;21856:3;:22::i;62420:98::-;62478:7;62505:5;62509:1;62505;:5;:::i;62819:98::-;62877:7;62904:5;62908:1;62904;:5;:::i;10638:236::-;10718:7;;;;10778:22;10782:3;10794:5;10778:3;:22::i;:::-;10747:53;;;;-1:-1:-1;10638:236:0;-1:-1:-1;;;;;10638:236:0:o;54086:100::-;54159:19;;;;:8;;:19;;;;;:::i;11924:213::-;12031:7;12082:44;12087:3;12107;12113:12;12082:4;:44::i;:::-;12074:53;-1:-1:-1;11924:213:0;;;;;;:::o;48873:272::-;48987:28;48997:4;49003:2;49007:7;48987:9;:28::i;:::-;49034:48;49057:4;49063:2;49067:7;49076:5;49034:22;:48::i;:::-;49026:111;;;;-1:-1:-1;;;49026:111:0;;;;;;;:::i;320:723::-;376:13;597:10;593:53;;-1:-1:-1;624:10:0;;;;;;;;;;;;-1:-1:-1;;;624:10:0;;;;;;593:53;671:5;656:12;712:78;719:9;;712:78;;745:8;;;;:::i;:::-;;-1:-1:-1;768:10:0;;-1:-1:-1;776:2:0;768:10;;:::i;:::-;;;712:78;;;800:19;832:6;822:17;;;;;;-1:-1:-1;;;822:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;822:17:0;;800:39;;850:154;857:10;;850:154;;884:11;894:1;884:11;;:::i;:::-;;-1:-1:-1;953:10:0;961:2;953:5;:10;:::i;:::-;940:24;;:2;:24;:::i;:::-;927:39;;910:6;917;910:14;;;;;;-1:-1:-1;;;910:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;910:56:0;;;;;;;;-1:-1:-1;981:11:0;990:2;981:11;;:::i;:::-;;;850:154;;50787:250;50883:18;50889:2;50893:7;50883:5;:18::i;:::-;50920:54;50951:1;50955:2;50959:7;50968:5;50920:22;:54::i;:::-;50912:117;;;;-1:-1:-1;;;50912:117:0;;;;;;;:::i;9937:151::-;10021:4;10045:35;10055:3;10075;10045:9;:35::i;6755:110::-;6838:19;;6755:110::o;20837:137::-;20907:4;20931:35;20939:3;20959:5;20931:7;:35::i;20530:131::-;20597:4;20621:32;20626:3;20646:5;20621:4;:32::i;9360:185::-;9449:4;9473:64;9478:3;9498;-1:-1:-1;;;;;9512:23:0;;9473:4;:64::i;16788:204::-;16883:18;;16855:7;;16883:26;-1:-1:-1;16875:73:0;;;;-1:-1:-1;;;16875:73:0;;;;;;;:::i;:::-;16966:3;:11;;16978:5;16966:18;;;;;;-1:-1:-1;;;16966:18:0;;;;;;;;;;;;;;;;;16959:25;;16788:204;;;;:::o;7220:279::-;7324:19;;7287:7;;;;7324:27;-1:-1:-1;7316:74:0;;;;-1:-1:-1;;;7316:74:0;;;;;;;:::i;:::-;7403:22;7428:3;:12;;7441:5;7428:19;;;;;;-1:-1:-1;;;7428:19:0;;;;;;;;;;;;;;;;;;;7403:44;;7466:5;:10;;;7478:5;:12;;;7458:33;;;;;7220:279;;;;;:::o;8717:319::-;8811:7;8850:17;;;:12;;;:17;;;;;;8901:12;8886:13;8878:36;;;;-1:-1:-1;;;8878:36:0;;;;;;;;:::i;:::-;-1:-1:-1;8968:3:0;8981:12;8992:1;8981:8;:12;:::i;:::-;8968:26;;;;;;-1:-1:-1;;;8968:26:0;;;;;;;;;;;;;;;;;;;:33;;;8961:40;;;8717:319;;;;;:::o;54751:843::-;54872:4;54898:15;:2;-1:-1:-1;;;;;54898:13:0;;:15::i;:::-;54894:693;;;54950:2;-1:-1:-1;;;;;54934:36:0;;54971:12;:10;:12::i;:::-;54985:4;54991:7;55000:5;54934:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54934:72:0;;;;;;;;-1:-1:-1;;54934:72:0;;;;;;;;;;;;:::i;:::-;;;54930:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55180:13:0;;55176:341;;55223:60;;-1:-1:-1;;;55223:60:0;;;;;;;:::i;55176:341::-;55467:6;55461:13;55452:6;55448:2;55444:15;55437:38;54930:602;-1:-1:-1;;;;;;55057:55:0;-1:-1:-1;;;55057:55:0;;-1:-1:-1;55050:62:0;;54894:693;-1:-1:-1;55571:4:0;54751:843;;;;;;:::o;51373:404::-;-1:-1:-1;;;;;51453:16:0;;51445:61;;;;-1:-1:-1;;;51445:61:0;;;;;;;:::i;:::-;51526:16;51534:7;51526;:16::i;:::-;51525:17;51517:58;;;;-1:-1:-1;;;51517:58:0;;;;;;;:::i;:::-;51588:45;51617:1;51621:2;51625:7;51588:20;:45::i;:::-;-1:-1:-1;;;;;51646:17:0;;;;;;:13;:17;;;;;:30;;51668:7;51646:21;:30::i;:::-;-1:-1:-1;51689:29:0;:12;51706:7;51715:2;51689:16;:29::i;:::-;-1:-1:-1;51736:33:0;;51761:7;;-1:-1:-1;;;;;51736:33:0;;;51753:1;;51736:33;;51753:1;;51736:33;51373:404;;:::o;6535:125::-;6606:4;6630:17;;;:12;;;;;:17;;;;;;:22;;;6535:125::o;14490:1544::-;14556:4;14695:19;;;:12;;;:19;;;;;;14731:15;;14727:1300;;15093:21;15117:14;15130:1;15117:10;:14;:::i;:::-;15166:18;;15093:38;;-1:-1:-1;15146:17:0;;15166:22;;15187:1;;15166:22;:::i;:::-;15146:42;;15433:17;15453:3;:11;;15465:9;15453:22;;;;;;-1:-1:-1;;;15453:22:0;;;;;;;;;;;;;;;;;15433:42;;15599:9;15570:3;:11;;15582:13;15570:26;;;;;;-1:-1:-1;;;15570:26:0;;;;;;;;;;;;;;;;;;:38;15702:17;:13;15718:1;15702:17;:::i;:::-;15676:23;;;;:12;;;:23;;;;;:43;15828:17;;15676:3;;15828:17;;;-1:-1:-1;;;15828:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;15923:3;:12;;:19;15936:5;15923:19;;;;;;;;;;;15916:26;;;15966:4;15959:11;;;;;;;;14727:1300;16010:5;16003:12;;;;;13900:414;13963:4;13985:21;13995:3;14000:5;13985:9;:21::i;:::-;13980:327;;-1:-1:-1;14023:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;14206:18;;14184:19;;;:12;;;:19;;;;;;:40;;;;14239:11;;13980:327;-1:-1:-1;14290:5:0;14283:12;;4035:692;4111:4;4246:17;;;:12;;;:17;;;;;;4280:13;4276:444;;-1:-1:-1;;4365:38:0;;;;;;;;;;;;;;;;;;4347:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;4562:19;;4542:17;;;:12;;;:17;;;;;;;:39;4596:11;;4276:444;4676:5;4640:3;4653:12;4664:1;4653:8;:12;:::i;:::-;4640:26;;;;;;-1:-1:-1;;;4640:26:0;;;;;;;;;;;;;;;;;;;:33;;:41;;;;4703:5;4696:12;;;;;22702:422;23069:20;23108:8;;;22702:422::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:266::-;;;4326:2;4314:9;4305:7;4301:23;4297:32;4294:2;;;4347:6;4339;4332:22;4294:2;4388:9;4375:23;4365:33;;4417:40;4453:2;4442:9;4438:18;4417:40;:::i;4468:259::-;;4549:5;4543:12;4576:6;4571:3;4564:19;4592:63;4648:6;4641:4;4636:3;4632:14;4625:4;4618:5;4614:16;4592:63;:::i;:::-;4709:2;4688:15;-1:-1:-1;;4684:29:1;4675:39;;;;4716:4;4671:50;;4519:208;-1:-1:-1;;4519:208:1:o;4732:359::-;4937:2;4933:15;;;;-1:-1:-1;;4929:53:1;4917:66;;5008:2;4999:12;;4992:28;;;;5045:2;5036:12;;5029:28;5082:2;5073:12;;4907:184::o;5096:470::-;;5313:6;5307:13;5329:53;5375:6;5370:3;5363:4;5355:6;5351:17;5329:53;:::i;:::-;5445:13;;5404:16;;;;5467:57;5445:13;5404:16;5501:4;5489:17;;5467:57;:::i;:::-;5540:20;;5283:283;-1:-1:-1;;;;5283:283:1:o;5571:203::-;-1:-1:-1;;;;;5735:32:1;;;;5717:51;;5705:2;5690:18;;5672:102::o;5779:490::-;-1:-1:-1;;;;;6048:15:1;;;6030:34;;6100:15;;6095:2;6080:18;;6073:43;6147:2;6132:18;;6125:34;;;6195:3;6190:2;6175:18;;6168:31;;;5779:490;;6216:47;;6243:19;;6235:6;6216:47;:::i;:::-;6208:55;5982:287;-1:-1:-1;;;;;;5982:287:1:o;6274:635::-;6445:2;6497:21;;;6567:13;;6470:18;;;6589:22;;;6274:635;;6445:2;6668:15;;;;6642:2;6627:18;;;6274:635;6714:169;6728:6;6725:1;6722:13;6714:169;;;6789:13;;6777:26;;6858:15;;;;6823:12;;;;6750:1;6743:9;6714:169;;;-1:-1:-1;6900:3:1;;6425:484;-1:-1:-1;;;;;;6425:484:1:o;6914:187::-;7079:14;;7072:22;7054:41;;7042:2;7027:18;;7009:92::o;7106:177::-;7252:25;;;7240:2;7225:18;;7207:76::o;7288:221::-;;7437:2;7426:9;7419:21;7457:46;7499:2;7488:9;7484:18;7476:6;7457:46;:::i;7514:398::-;7716:2;7698:21;;;7755:2;7735:18;;;7728:30;7794:34;7789:2;7774:18;;7767:62;-1:-1:-1;;;7860:2:1;7845:18;;7838:32;7902:3;7887:19;;7688:224::o;7917:348::-;8119:2;8101:21;;;8158:2;8138:18;;;8131:30;8197:26;8192:2;8177:18;;8170:54;8256:2;8241:18;;8091:174::o;8270:348::-;8472:2;8454:21;;;8511:2;8491:18;;;8484:30;8550:26;8545:2;8530:18;;8523:54;8609:2;8594:18;;8444:174::o;8623:414::-;8825:2;8807:21;;;8864:2;8844:18;;;8837:30;8903:34;8898:2;8883:18;;8876:62;-1:-1:-1;;;8969:2:1;8954:18;;8947:48;9027:3;9012:19;;8797:240::o;9042:402::-;9244:2;9226:21;;;9283:2;9263:18;;;9256:30;9322:34;9317:2;9302:18;;9295:62;-1:-1:-1;;;9388:2:1;9373:18;;9366:36;9434:3;9419:19;;9216:228::o;9449:352::-;9651:2;9633:21;;;9690:2;9670:18;;;9663:30;9729;9724:2;9709:18;;9702:58;9792:2;9777:18;;9623:178::o;9806:401::-;10008:2;9990:21;;;10047:2;10027:18;;;10020:30;10086:34;10081:2;10066:18;;10059:62;-1:-1:-1;;;10152:2:1;10137:18;;10130:35;10197:3;10182:19;;9980:227::o;10212:400::-;10414:2;10396:21;;;10453:2;10433:18;;;10426:30;10492:34;10487:2;10472:18;;10465:62;-1:-1:-1;;;10558:2:1;10543:18;;10536:34;10602:3;10587:19;;10386:226::o;10617:349::-;10819:2;10801:21;;;10858:2;10838:18;;;10831:30;10897:27;10892:2;10877:18;;10870:55;10957:2;10942:18;;10791:175::o;10971:408::-;11173:2;11155:21;;;11212:2;11192:18;;;11185:30;11251:34;11246:2;11231:18;;11224:62;-1:-1:-1;;;11317:2:1;11302:18;;11295:42;11369:3;11354:19;;11145:234::o;11384:420::-;11586:2;11568:21;;;11625:2;11605:18;;;11598:30;11664:34;11659:2;11644:18;;11637:62;11735:26;11730:2;11715:18;;11708:54;11794:3;11779:19;;11558:246::o;11809:406::-;12011:2;11993:21;;;12050:2;12030:18;;;12023:30;12089:34;12084:2;12069:18;;12062:62;-1:-1:-1;;;12155:2:1;12140:18;;12133:40;12205:3;12190:19;;11983:232::o;12220:399::-;12422:2;12404:21;;;12461:2;12441:18;;;12434:30;12500:34;12495:2;12480:18;;12473:62;-1:-1:-1;;;12566:2:1;12551:18;;12544:33;12609:3;12594:19;;12394:225::o;12624:398::-;12826:2;12808:21;;;12865:2;12845:18;;;12838:30;12904:34;12899:2;12884:18;;12877:62;-1:-1:-1;;;12970:2:1;12955:18;;12948:32;13012:3;12997:19;;12798:224::o;13027:356::-;13229:2;13211:21;;;13248:18;;;13241:30;13307:34;13302:2;13287:18;;13280:62;13374:2;13359:18;;13201:182::o;13388:408::-;13590:2;13572:21;;;13629:2;13609:18;;;13602:30;13668:34;13663:2;13648:18;;13641:62;-1:-1:-1;;;13734:2:1;13719:18;;13712:42;13786:3;13771:19;;13562:234::o;13801:356::-;14003:2;13985:21;;;14022:18;;;14015:30;14081:34;14076:2;14061:18;;14054:62;14148:2;14133:18;;13975:182::o;14162:405::-;14364:2;14346:21;;;14403:2;14383:18;;;14376:30;14442:34;14437:2;14422:18;;14415:62;-1:-1:-1;;;14508:2:1;14493:18;;14486:39;14557:3;14542:19;;14336:231::o;14572:411::-;14774:2;14756:21;;;14813:2;14793:18;;;14786:30;14852:34;14847:2;14832:18;;14825:62;-1:-1:-1;;;14918:2:1;14903:18;;14896:45;14973:3;14958:19;;14746:237::o;14988:397::-;15190:2;15172:21;;;15229:2;15209:18;;;15202:30;15268:34;15263:2;15248:18;;15241:62;-1:-1:-1;;;15334:2:1;15319:18;;15312:31;15375:3;15360:19;;15162:223::o;15390:346::-;15592:2;15574:21;;;15631:2;15611:18;;;15604:30;-1:-1:-1;;;15665:2:1;15650:18;;15643:52;15727:2;15712:18;;15564:172::o;15741:413::-;15943:2;15925:21;;;15982:2;15962:18;;;15955:30;16021:34;16016:2;16001:18;;15994:62;-1:-1:-1;;;16087:2:1;16072:18;;16065:47;16144:3;16129:19;;15915:239::o;16159:338::-;16361:2;16343:21;;;16400:2;16380:18;;;16373:30;-1:-1:-1;;;16434:2:1;16419:18;;16412:44;16488:2;16473:18;;16333:164::o;16502:342::-;16704:2;16686:21;;;16743:2;16723:18;;;16716:30;-1:-1:-1;;;16777:2:1;16762:18;;16755:48;16835:2;16820:18;;16676:168::o;17031:128::-;;17102:1;17098:6;17095:1;17092:13;17089:2;;;17108:18;;:::i;:::-;-1:-1:-1;17144:9:1;;17079:80::o;17164:120::-;;17230:1;17220:2;;17235:18;;:::i;:::-;-1:-1:-1;17269:9:1;;17210:74::o;17289:168::-;;17395:1;17391;17387:6;17383:14;17380:1;17377:21;17372:1;17365:9;17358:17;17354:45;17351:2;;;17402:18;;:::i;:::-;-1:-1:-1;17442:9:1;;17341:116::o;17462:125::-;;17530:1;17527;17524:8;17521:2;;;17535:18;;:::i;:::-;-1:-1:-1;17572:9:1;;17511:76::o;17592:258::-;17664:1;17674:113;17688:6;17685:1;17682:13;17674:113;;;17764:11;;;17758:18;17745:11;;;17738:39;17710:2;17703:10;17674:113;;;17805:6;17802:1;17799:13;17796:2;;;-1:-1:-1;;17840:1:1;17822:16;;17815:27;17645:205::o;17855:380::-;17940:1;17930:12;;17987:1;17977:12;;;17998:2;;18052:4;18044:6;18040:17;18030:27;;17998:2;18105;18097:6;18094:14;18074:18;18071:38;18068:2;;;18151:10;18146:3;18142:20;18139:1;18132:31;18186:4;18183:1;18176:15;18214:4;18211:1;18204:15;18240:135;;-1:-1:-1;;18300:17:1;;18297:2;;;18320:18;;:::i;:::-;-1:-1:-1;18367:1:1;18356:13;;18287:88::o;18380:112::-;;18438:1;18428:2;;18443:18;;:::i;:::-;-1:-1:-1;18477:9:1;;18418:74::o;18497:127::-;18558:10;18553:3;18549:20;18546:1;18539:31;18589:4;18586:1;18579:15;18613:4;18610:1;18603:15;18629:127;18690:10;18685:3;18681:20;18678:1;18671:31;18721:4;18718:1;18711:15;18745:4;18742:1;18735:15;18761:127;18822:10;18817:3;18813:20;18810:1;18803:31;18853:4;18850:1;18843:15;18877:4;18874:1;18867:15;18893:133;-1:-1:-1;;;;;;18969:32:1;;18959:43;;18949:2;;19016:1;19013;19006:12

Swarm Source

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