ETH Price: $3,688.46 (+0.83%)

Token

ERC-20: SpiroNFT (SPIRONFT)
 

Overview

Max Total Supply

995 SPIRONFT

Holders

346

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 SPIRONFT
0x28ed88c5f72c4e6dfc704f4cc71a4b7756bc4dbc
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:
SPIRONFT

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-02
*/

// File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT


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;




contract SPIRONFT is ERC721, Ownable {
    using SafeMath for uint256;
    uint public constant MAX_SPIROGRAPHS = 10001;
    uint public price = 100000000000000000;
    bool public hasSaleStarted = false;
    mapping (uint256 => uint256) public tokenIdToSeed;
    mapping (uint256 => bool) public seedClaimed;
    // THE IPFS HASH OF ALL SPIRONFT'S WILL BE SAVED HERE ONCE ALL MINTED
    string public METADATA_PROVENANCE_HASH = "";
    // ONCE ALL SPIRONFT'S MINTED THE API WILL BE UPLOADED TO ARWEAVE AND WILL BE SAVED HERE
    string public ARWEAVE_API_HASH = "";
    
    constructor() ERC721("SpiroNFT","SPIRONFT")  {
        setBaseURI("https://api.spironft.com/api/");
        
        // CREATOR IS ABOVE ALL
        tokenIdToSeed[0] = 1337;
        seedClaimed[1337] = true;
        _safeMint(address(0x16eFE37c0c557D4B1D8EB76d11E13616d2b52eAF), 0);
    }
    

   
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            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 mintSPIRO(uint256 _seed) public payable {
        require(hasSaleStarted == true, "Sale hasn't started");
        require(totalSupply() < MAX_SPIROGRAPHS, "Sale has already ended");
        require(msg.value == price, "Ether value sent is below the price");
        require(seedClaimed[_seed] == false, "Seed already claimed");
        uint mintIndex = totalSupply();
        tokenIdToSeed[mintIndex] = _seed;
        seedClaimed[_seed] = true;
        _safeMint(msg.sender, mintIndex);

    }
    
    // ONLYOWNER FUNCTIONS
    
    function setProvenanceHash(string memory _hash) public onlyOwner {
        METADATA_PROVENANCE_HASH = _hash;
    }
    
    function setArweaveHash(string memory _hash) public onlyOwner {
        ARWEAVE_API_HASH = _hash;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }
    
    function startDrop() public onlyOwner {
        hasSaleStarted = true;
    }
    
    function pauseDrop() public onlyOwner {
        hasSaleStarted = false;
    }
    
    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
    
}

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":"ARWEAVE_API_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SPIROGRAPHS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_seed","type":"uint256"}],"name":"mintSPIRO","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":"pauseDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seedClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setArweaveHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startDrop","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":"","type":"uint256"}],"name":"tokenIdToSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267016345785d8a0000600b556000600c60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600f90805190602001906200005292919062000bb6565b5060405180602001604052806000815250601090805190602001906200007a92919062000bb6565b503480156200008857600080fd5b506040518060400160405280600881526020017f537069726f4e46540000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f535049524f4e4654000000000000000000000000000000000000000000000000815250620001267f01ffc9a7000000000000000000000000000000000000000000000000000000006200035960201b60201c565b81600690805190602001906200013e92919062000bb6565b5080600790805190602001906200015792919062000bb6565b50620001897f80ac58cd000000000000000000000000000000000000000000000000000000006200035960201b60201c565b620001ba7f5b5e139f000000000000000000000000000000000000000000000000000000006200035960201b60201c565b620001eb7f780e9d63000000000000000000000000000000000000000000000000000000006200035960201b60201c565b50506000620001ff6200043160201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002e46040518060400160405280601d81526020017f68747470733a2f2f6170692e737069726f6e66742e636f6d2f6170692f0000008152506200043960201b60201c565b610539600d6000808152602001908152602001600020819055506001600e6000610539815260200190815260200160002060006101000a81548160ff021916908315150217905550620003537316efe37c0c557d4b1d8eb76d11e13616d2b52eaf6000620004dc60201b60201c565b62001187565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620003c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bc9062000e45565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b620004496200043160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200046f6200050260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bf9062000eab565b60405180910390fd5b620004d9816200052c60201b60201c565b50565b620004fe8282604051806020016040528060008152506200054860201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b80600990805190602001906200054492919062000bb6565b5050565b6200055a8383620005b660201b60201c565b6200056f60008484846200076860201b60201c565b620005b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a89062000e23565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000629576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006209062000e89565b60405180910390fd5b6200063a816200092260201b60201c565b156200067d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006749062000e67565b60405180910390fd5b62000691600083836200094660201b60201c565b620006e981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206200094b60201b62001d291790919060201c565b5062000707818360026200096d60201b62001d43179092919060201c565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007968473ffffffffffffffffffffffffffffffffffffffff16620009aa60201b62001d781760201c565b1562000915578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007c86200043160201b60201c565b8786866040518563ffffffff1660e01b8152600401620007ec949392919062000dcf565b602060405180830381600087803b1580156200080757600080fd5b505af19250505080156200083b57506040513d601f19601f8201168201806040525081019062000838919062000c7d565b60015b620008c4573d80600081146200086e576040519150601f19603f3d011682016040523d82523d6000602084013e62000873565b606091505b50600081511415620008bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008b39062000e23565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200091a565b600190505b949350505050565b60006200093f826002620009bd60201b62001d8b1790919060201c565b9050919050565b505050565b600062000965836000018360001b620009df60201b60201c565b905092915050565b6000620009a1846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b62000a5960201b60201c565b90509392505050565b600080823b905060008111915050919050565b6000620009d7836000018360001b62000b7060201b60201c565b905092915050565b6000620009f3838362000b9360201b60201c565b62000a4e57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000a53565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141562000b025784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505062000b69565b828560000160018362000b16919062000efa565b8154811062000b4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b82805462000bc49062000fd5565b90600052602060002090601f01602090048101928262000be8576000855562000c34565b82601f1062000c0357805160ff191683800117855562000c34565b8280016001018555821562000c34579182015b8281111562000c3357825182559160200191906001019062000c16565b5b50905062000c43919062000c47565b5090565b5b8082111562000c6257600081600090555060010162000c48565b5090565b60008151905062000c77816200116d565b92915050565b60006020828403121562000c9057600080fd5b600062000ca08482850162000c66565b91505092915050565b62000cb48162000f35565b82525050565b600062000cc78262000ecd565b62000cd3818562000ed8565b935062000ce581856020860162000f9f565b62000cf08162001069565b840191505092915050565b600062000d0a60328362000ee9565b915062000d17826200107a565b604082019050919050565b600062000d31601c8362000ee9565b915062000d3e82620010c9565b602082019050919050565b600062000d58601c8362000ee9565b915062000d6582620010f2565b602082019050919050565b600062000d7f60208362000ee9565b915062000d8c826200111b565b602082019050919050565b600062000da660208362000ee9565b915062000db38262001144565b602082019050919050565b62000dc98162000f95565b82525050565b600060808201905062000de6600083018762000ca9565b62000df5602083018662000ca9565b62000e04604083018562000dbe565b818103606083015262000e18818462000cba565b905095945050505050565b6000602082019050818103600083015262000e3e8162000cfb565b9050919050565b6000602082019050818103600083015262000e608162000d22565b9050919050565b6000602082019050818103600083015262000e828162000d49565b9050919050565b6000602082019050818103600083015262000ea48162000d70565b9050919050565b6000602082019050818103600083015262000ec68162000d97565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000f078262000f95565b915062000f148362000f95565b92508282101562000f2a5762000f296200100b565b5b828203905092915050565b600062000f428262000f75565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000fbf57808201518184015260208101905062000fa2565b8381111562000fcf576000848401525b50505050565b6000600282049050600182168062000fee57607f821691505b602082108114156200100557620010046200103a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620011788162000f49565b81146200118457600080fd5b50565b6143ce80620011976000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd14610739578063dc80fc7814610776578063e985e9c5146107a1578063f0c9dc60146107de578063f2fde38b1461080957610204565b8063a035b1fe1461067f578063a22cb465146106aa578063b88d4fde146106d3578063c1b5a9bd146106fc57610204565b80637e70433f116100e75780637e70433f146105b75780638462151c146105e2578063853828b61461061f5780638da5cb5b1461062957806395d89b411461065457610204565b80636c0360eb146104fb57806370a0823114610526578063715018a61461056357806375e916911461057a57610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146104065780634f6ccce71461042f57806350d630501461046c57806355f804b3146104955780636352211e146104be57610204565b806323b872dd146103725780632808c92c1461039b5780632f745c59146103b257806334d84c7b146103ef57610204565b8063100dd3dc116101d7578063100dd3dc146102d757806310969523146102f357806318160ddd1461031c5780631c8b232d1461034757610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130ef565b610832565b60405161023d919061368c565b60405180910390f35b34801561025257600080fd5b5061025b610899565b60405161026891906136a7565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613182565b61092b565b6040516102a59190613603565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130b3565b6109b0565b005b6102f160048036038101906102ec9190613182565b610ac8565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613141565b610c72565b005b34801561032857600080fd5b50610331610d08565b60405161033e9190613969565b60405180910390f35b34801561035357600080fd5b5061035c610d19565b604051610369919061368c565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190612fad565b610d2c565b005b3480156103a757600080fd5b506103b0610d8c565b005b3480156103be57600080fd5b506103d960048036038101906103d491906130b3565b610e25565b6040516103e69190613969565b60405180910390f35b3480156103fb57600080fd5b50610404610e80565b005b34801561041257600080fd5b5061042d60048036038101906104289190612fad565b610f19565b005b34801561043b57600080fd5b5061045660048036038101906104519190613182565b610f39565b6040516104639190613969565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613141565b610f5c565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613141565b610ff2565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613182565b61107a565b6040516104f29190613603565b60405180910390f35b34801561050757600080fd5b506105106110b1565b60405161051d91906136a7565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612f48565b611143565b60405161055a9190613969565b60405180910390f35b34801561056f57600080fd5b50610578611202565b005b34801561058657600080fd5b506105a1600480360381019061059c9190613182565b61133f565b6040516105ae9190613969565b60405180910390f35b3480156105c357600080fd5b506105cc611357565b6040516105d99190613969565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612f48565b61135d565b604051610616919061366a565b60405180910390f35b6106276114d9565b005b34801561063557600080fd5b5061063e611595565b60405161064b9190613603565b60405180910390f35b34801561066057600080fd5b506106696115bf565b60405161067691906136a7565b60405180910390f35b34801561068b57600080fd5b50610694611651565b6040516106a19190613969565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613077565b611657565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190612ffc565b6117d8565b005b34801561070857600080fd5b50610723600480360381019061071e9190613182565b61183a565b604051610730919061368c565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613182565b61185a565b60405161076d91906136a7565b60405180910390f35b34801561078257600080fd5b5061078b6119cd565b60405161079891906136a7565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190612f71565b611a5b565b6040516107d5919061368c565b60405180910390f35b3480156107ea57600080fd5b506107f3611aef565b60405161080091906136a7565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190612f48565b611b7d565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600680546108a890613bf8565b80601f01602080910402602001604051908101604052809291908181526020018280546108d490613bf8565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b600061093682611da5565b610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90613849565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109bb8261107a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a23906138e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4b611dc2565b73ffffffffffffffffffffffffffffffffffffffff161480610a7a5750610a7981610a74611dc2565b611a5b565b5b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab0906137a9565b60405180910390fd5b610ac38383611dca565b505050565b60011515600c60009054906101000a900460ff16151514610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613949565b60405180910390fd5b612711610b29610d08565b10610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613909565b60405180910390fd5b600b543414610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba4906137e9565b60405180910390fd5b60001515600e600083815260200190815260200160002060009054906101000a900460ff16151514610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906138c9565b60405180910390fd5b6000610c1e610d08565b905081600d6000838152602001908152602001600020819055506001600e600084815260200190815260200160002060006101000a81548160ff021916908315150217905550610c6e3382611e83565b5050565b610c7a611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610c98611595565b73ffffffffffffffffffffffffffffffffffffffff1614610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590613869565b60405180910390fd5b80600f9080519060200190610d04929190612d6c565b5050565b6000610d146002611ea1565b905090565b600c60009054906101000a900460ff1681565b610d3d610d37611dc2565b82611eb6565b610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613929565b60405180910390fd5b610d87838383611f94565b505050565b610d94611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610db2611595565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90613869565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b6000610e7882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121ab90919063ffffffff16565b905092915050565b610e88611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610ea6611595565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390613869565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b610f34838383604051806020016040528060008152506117d8565b505050565b600080610f508360026121c590919063ffffffff16565b50905080915050919050565b610f64611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610f82611595565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613869565b60405180910390fd5b8060109080519060200190610fee929190612d6c565b5050565b610ffa611dc2565b73ffffffffffffffffffffffffffffffffffffffff16611018611595565b73ffffffffffffffffffffffffffffffffffffffff161461106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590613869565b60405180910390fd5b611077816121f1565b50565b60006110aa8260405180606001604052806029815260200161437060299139600261220b9092919063ffffffff16565b9050919050565b6060600980546110c090613bf8565b80601f01602080910402602001604051908101604052809291908181526020018280546110ec90613bf8565b80156111395780601f1061110e57610100808354040283529160200191611139565b820191906000526020600020905b81548152906001019060200180831161111c57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab906137c9565b60405180910390fd5b6111fb600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061222a565b9050919050565b61120a611dc2565b73ffffffffffffffffffffffffffffffffffffffff16611228611595565b73ffffffffffffffffffffffffffffffffffffffff161461127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590613869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d6020528060005260406000206000915090505481565b61271181565b6060600061136a83611143565b905060008114156113ed57600067ffffffffffffffff8111156113b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113e45781602001602082028036833780820191505090505b509150506114d4565b60008167ffffffffffffffff81111561142f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561145d5781602001602082028036833780820191505090505b50905060005b828110156114cd576114758582610e25565b8282815181106114ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114c590613c5b565b915050611463565b8193505050505b919050565b6114e1611dc2565b73ffffffffffffffffffffffffffffffffffffffff166114ff611595565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613869565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061159357600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546115ce90613bf8565b80601f01602080910402602001604051908101604052809291908181526020018280546115fa90613bf8565b80156116475780601f1061161c57610100808354040283529160200191611647565b820191906000526020600020905b81548152906001019060200180831161162a57829003601f168201915b5050505050905090565b600b5481565b61165f611dc2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613769565b60405180910390fd5b80600560006116da611dc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611787611dc2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117cc919061368c565b60405180910390a35050565b6117e96117e3611dc2565b83611eb6565b611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613929565b60405180910390fd5b6118348484848461223f565b50505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b606061186582611da5565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b906138a9565b60405180910390fd5b60006008600084815260200190815260200160002080546118c490613bf8565b80601f01602080910402602001604051908101604052809291908181526020018280546118f090613bf8565b801561193d5780601f106119125761010080835404028352916020019161193d565b820191906000526020600020905b81548152906001019060200180831161192057829003601f168201915b50505050509050600061194e6110b1565b90506000815114156119645781925050506119c8565b6000825111156119995780826040516020016119819291906135df565b604051602081830303815290604052925050506119c8565b806119a38561229b565b6040516020016119b49291906135df565b604051602081830303815290604052925050505b919050565b601080546119da90613bf8565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0690613bf8565b8015611a535780601f10611a2857610100808354040283529160200191611a53565b820191906000526020600020905b815481529060010190602001808311611a3657829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f8054611afc90613bf8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890613bf8565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b505050505081565b611b85611dc2565b73ffffffffffffffffffffffffffffffffffffffff16611ba3611595565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090613869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613709565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611d3b836000018360001b612448565b905092915050565b6000611d6f846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6124b8565b90509392505050565b600080823b905060008111915050919050565b6000611d9d836000018360001b6125ca565b905092915050565b6000611dbb826002611d8b90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e3d8361107a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e9d8282604051806020016040528060008152506125ed565b5050565b6000611eaf82600001612648565b9050919050565b6000611ec182611da5565b611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790613789565b60405180910390fd5b6000611f0b8361107a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7a57508373ffffffffffffffffffffffffffffffffffffffff16611f628461092b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f8b5750611f8a8185611a5b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb48261107a565b73ffffffffffffffffffffffffffffffffffffffff161461200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190613889565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613749565b60405180910390fd5b612085838383612659565b612090600082611dca565b6120e181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061265e90919063ffffffff16565b5061213381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611d2990919063ffffffff16565b5061214a81836002611d439092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006121ba8360000183612678565b60001c905092915050565b6000806000806121d88660000186612712565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612207929190612d6c565b5050565b600061221e846000018460001b846127c2565b60001c90509392505050565b600061223882600001612889565b9050919050565b61224a848484611f94565b6122568484848461289a565b612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c906136e9565b60405180910390fd5b50505050565b606060008214156122e3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612443565b600082905060005b600082146123155780806122fe90613c5b565b915050600a8261230e9190613add565b91506122eb565b60008167ffffffffffffffff811115612357577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123895781602001600182028036833780820191505090505b5090505b6000851461243c576001826123a29190613b0e565b9150600a856123b19190613ca4565b60306123bd9190613a87565b60f81b8183815181106123f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124359190613add565b945061238d565b8093505050505b919050565b60006124548383612a31565b6124ad5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506124b2565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561255f578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506125c3565b82856000016001836125719190613b0e565b815481106125a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6125f78383612a54565b612604600084848461289a565b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906136e9565b60405180910390fd5b505050565b600081600001805490509050919050565b505050565b6000612670836000018360001b612be2565b905092915050565b6000818360000180549050116126c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ba906136c9565b60405180910390fd5b8260000182815481106126ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6000808284600001805490501161275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590613809565b60405180910390fd5b600084600001848154811061279c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b91906136a7565b60405180910390fd5b50846000016001826128369190613b0e565b8154811061286d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006128bb8473ffffffffffffffffffffffffffffffffffffffff16611d78565b15612a24578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128e4611dc2565b8786866040518563ffffffff1660e01b8152600401612906949392919061361e565b602060405180830381600087803b15801561292057600080fd5b505af192505050801561295157506040513d601f19601f8201168201806040525081019061294e9190613118565b60015b6129d4573d8060008114612981576040519150601f19603f3d011682016040523d82523d6000602084013e612986565b606091505b506000815114156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c3906136e9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a29565b600190505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb90613829565b60405180910390fd5b612acd81611da5565b15612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0490613729565b60405180910390fd5b612b1960008383612659565b612b6a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611d2990919063ffffffff16565b50612b8181836002611d439092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008083600101600084815260200190815260200160002054905060008114612d60576000600182612c149190613b0e565b9050600060018660000180549050612c2c9190613b0e565b90506000866000018281548110612c6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550600183612cd19190613a87565b8760010160008381526020019081526020016000208190555086600001805480612d24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612d66565b60009150505b92915050565b828054612d7890613bf8565b90600052602060002090601f016020900481019282612d9a5760008555612de1565b82601f10612db357805160ff1916838001178555612de1565b82800160010185558215612de1579182015b82811115612de0578251825591602001919060010190612dc5565b5b509050612dee9190612df2565b5090565b5b80821115612e0b576000816000905550600101612df3565b5090565b6000612e22612e1d846139a9565b613984565b905082815260208101848484011115612e3a57600080fd5b612e45848285613bb6565b509392505050565b6000612e60612e5b846139da565b613984565b905082815260208101848484011115612e7857600080fd5b612e83848285613bb6565b509392505050565b600081359050612e9a81614313565b92915050565b600081359050612eaf8161432a565b92915050565b600081359050612ec481614341565b92915050565b600081519050612ed981614341565b92915050565b600082601f830112612ef057600080fd5b8135612f00848260208601612e0f565b91505092915050565b600082601f830112612f1a57600080fd5b8135612f2a848260208601612e4d565b91505092915050565b600081359050612f4281614358565b92915050565b600060208284031215612f5a57600080fd5b6000612f6884828501612e8b565b91505092915050565b60008060408385031215612f8457600080fd5b6000612f9285828601612e8b565b9250506020612fa385828601612e8b565b9150509250929050565b600080600060608486031215612fc257600080fd5b6000612fd086828701612e8b565b9350506020612fe186828701612e8b565b9250506040612ff286828701612f33565b9150509250925092565b6000806000806080858703121561301257600080fd5b600061302087828801612e8b565b945050602061303187828801612e8b565b935050604061304287828801612f33565b925050606085013567ffffffffffffffff81111561305f57600080fd5b61306b87828801612edf565b91505092959194509250565b6000806040838503121561308a57600080fd5b600061309885828601612e8b565b92505060206130a985828601612ea0565b9150509250929050565b600080604083850312156130c657600080fd5b60006130d485828601612e8b565b92505060206130e585828601612f33565b9150509250929050565b60006020828403121561310157600080fd5b600061310f84828501612eb5565b91505092915050565b60006020828403121561312a57600080fd5b600061313884828501612eca565b91505092915050565b60006020828403121561315357600080fd5b600082013567ffffffffffffffff81111561316d57600080fd5b61317984828501612f09565b91505092915050565b60006020828403121561319457600080fd5b60006131a284828501612f33565b91505092915050565b60006131b783836135c1565b60208301905092915050565b6131cc81613b42565b82525050565b60006131dd82613a1b565b6131e78185613a49565b93506131f283613a0b565b8060005b8381101561322357815161320a88826131ab565b975061321583613a3c565b9250506001810190506131f6565b5085935050505092915050565b61323981613b54565b82525050565b600061324a82613a26565b6132548185613a5a565b9350613264818560208601613bc5565b61326d81613d91565b840191505092915050565b600061328382613a31565b61328d8185613a6b565b935061329d818560208601613bc5565b6132a681613d91565b840191505092915050565b60006132bc82613a31565b6132c68185613a7c565b93506132d6818560208601613bc5565b80840191505092915050565b60006132ef602283613a6b565b91506132fa82613da2565b604082019050919050565b6000613312603283613a6b565b915061331d82613df1565b604082019050919050565b6000613335602683613a6b565b915061334082613e40565b604082019050919050565b6000613358601c83613a6b565b915061336382613e8f565b602082019050919050565b600061337b602483613a6b565b915061338682613eb8565b604082019050919050565b600061339e601983613a6b565b91506133a982613f07565b602082019050919050565b60006133c1602c83613a6b565b91506133cc82613f30565b604082019050919050565b60006133e4603883613a6b565b91506133ef82613f7f565b604082019050919050565b6000613407602a83613a6b565b915061341282613fce565b604082019050919050565b600061342a602383613a6b565b91506134358261401d565b604082019050919050565b600061344d602283613a6b565b91506134588261406c565b604082019050919050565b6000613470602083613a6b565b915061347b826140bb565b602082019050919050565b6000613493602c83613a6b565b915061349e826140e4565b604082019050919050565b60006134b6602083613a6b565b91506134c182614133565b602082019050919050565b60006134d9602983613a6b565b91506134e48261415c565b604082019050919050565b60006134fc602f83613a6b565b9150613507826141ab565b604082019050919050565b600061351f601483613a6b565b915061352a826141fa565b602082019050919050565b6000613542602183613a6b565b915061354d82614223565b604082019050919050565b6000613565601683613a6b565b915061357082614272565b602082019050919050565b6000613588603183613a6b565b91506135938261429b565b604082019050919050565b60006135ab601383613a6b565b91506135b6826142ea565b602082019050919050565b6135ca81613bac565b82525050565b6135d981613bac565b82525050565b60006135eb82856132b1565b91506135f782846132b1565b91508190509392505050565b600060208201905061361860008301846131c3565b92915050565b600060808201905061363360008301876131c3565b61364060208301866131c3565b61364d60408301856135d0565b818103606083015261365f818461323f565b905095945050505050565b6000602082019050818103600083015261368481846131d2565b905092915050565b60006020820190506136a16000830184613230565b92915050565b600060208201905081810360008301526136c18184613278565b905092915050565b600060208201905081810360008301526136e2816132e2565b9050919050565b6000602082019050818103600083015261370281613305565b9050919050565b6000602082019050818103600083015261372281613328565b9050919050565b600060208201905081810360008301526137428161334b565b9050919050565b600060208201905081810360008301526137628161336e565b9050919050565b6000602082019050818103600083015261378281613391565b9050919050565b600060208201905081810360008301526137a2816133b4565b9050919050565b600060208201905081810360008301526137c2816133d7565b9050919050565b600060208201905081810360008301526137e2816133fa565b9050919050565b600060208201905081810360008301526138028161341d565b9050919050565b6000602082019050818103600083015261382281613440565b9050919050565b6000602082019050818103600083015261384281613463565b9050919050565b6000602082019050818103600083015261386281613486565b9050919050565b60006020820190508181036000830152613882816134a9565b9050919050565b600060208201905081810360008301526138a2816134cc565b9050919050565b600060208201905081810360008301526138c2816134ef565b9050919050565b600060208201905081810360008301526138e281613512565b9050919050565b6000602082019050818103600083015261390281613535565b9050919050565b6000602082019050818103600083015261392281613558565b9050919050565b600060208201905081810360008301526139428161357b565b9050919050565b600060208201905081810360008301526139628161359e565b9050919050565b600060208201905061397e60008301846135d0565b92915050565b600061398e61399f565b905061399a8282613c2a565b919050565b6000604051905090565b600067ffffffffffffffff8211156139c4576139c3613d62565b5b6139cd82613d91565b9050602081019050919050565b600067ffffffffffffffff8211156139f5576139f4613d62565b5b6139fe82613d91565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a9282613bac565b9150613a9d83613bac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ad257613ad1613cd5565b5b828201905092915050565b6000613ae882613bac565b9150613af383613bac565b925082613b0357613b02613d04565b5b828204905092915050565b6000613b1982613bac565b9150613b2483613bac565b925082821015613b3757613b36613cd5565b5b828203905092915050565b6000613b4d82613b8c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be3578082015181840152602081019050613bc8565b83811115613bf2576000848401525b50505050565b60006002820490506001821680613c1057607f821691505b60208210811415613c2457613c23613d33565b5b50919050565b613c3382613d91565b810181811067ffffffffffffffff82111715613c5257613c51613d62565b5b80604052505050565b6000613c6682613bac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9957613c98613cd5565b5b600182019050919050565b6000613caf82613bac565b9150613cba83613bac565b925082613cca57613cc9613d04565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5365656420616c726561647920636c61696d6564000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b61431c81613b42565b811461432757600080fd5b50565b61433381613b54565b811461433e57600080fd5b50565b61434a81613b60565b811461435557600080fd5b50565b61436181613bac565b811461436c57600080fd5b5056fe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220161bc85eeaa3c2c6be731d486efa2bf518df372e0d889c2244b737cb728e270464736f6c63430008010033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636c0360eb11610118578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd14610739578063dc80fc7814610776578063e985e9c5146107a1578063f0c9dc60146107de578063f2fde38b1461080957610204565b8063a035b1fe1461067f578063a22cb465146106aa578063b88d4fde146106d3578063c1b5a9bd146106fc57610204565b80637e70433f116100e75780637e70433f146105b75780638462151c146105e2578063853828b61461061f5780638da5cb5b1461062957806395d89b411461065457610204565b80636c0360eb146104fb57806370a0823114610526578063715018a61461056357806375e916911461057a57610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146104065780634f6ccce71461042f57806350d630501461046c57806355f804b3146104955780636352211e146104be57610204565b806323b872dd146103725780632808c92c1461039b5780632f745c59146103b257806334d84c7b146103ef57610204565b8063100dd3dc116101d7578063100dd3dc146102d757806310969523146102f357806318160ddd1461031c5780631c8b232d1461034757610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130ef565b610832565b60405161023d919061368c565b60405180910390f35b34801561025257600080fd5b5061025b610899565b60405161026891906136a7565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613182565b61092b565b6040516102a59190613603565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130b3565b6109b0565b005b6102f160048036038101906102ec9190613182565b610ac8565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613141565b610c72565b005b34801561032857600080fd5b50610331610d08565b60405161033e9190613969565b60405180910390f35b34801561035357600080fd5b5061035c610d19565b604051610369919061368c565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190612fad565b610d2c565b005b3480156103a757600080fd5b506103b0610d8c565b005b3480156103be57600080fd5b506103d960048036038101906103d491906130b3565b610e25565b6040516103e69190613969565b60405180910390f35b3480156103fb57600080fd5b50610404610e80565b005b34801561041257600080fd5b5061042d60048036038101906104289190612fad565b610f19565b005b34801561043b57600080fd5b5061045660048036038101906104519190613182565b610f39565b6040516104639190613969565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613141565b610f5c565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613141565b610ff2565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613182565b61107a565b6040516104f29190613603565b60405180910390f35b34801561050757600080fd5b506105106110b1565b60405161051d91906136a7565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612f48565b611143565b60405161055a9190613969565b60405180910390f35b34801561056f57600080fd5b50610578611202565b005b34801561058657600080fd5b506105a1600480360381019061059c9190613182565b61133f565b6040516105ae9190613969565b60405180910390f35b3480156105c357600080fd5b506105cc611357565b6040516105d99190613969565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612f48565b61135d565b604051610616919061366a565b60405180910390f35b6106276114d9565b005b34801561063557600080fd5b5061063e611595565b60405161064b9190613603565b60405180910390f35b34801561066057600080fd5b506106696115bf565b60405161067691906136a7565b60405180910390f35b34801561068b57600080fd5b50610694611651565b6040516106a19190613969565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613077565b611657565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190612ffc565b6117d8565b005b34801561070857600080fd5b50610723600480360381019061071e9190613182565b61183a565b604051610730919061368c565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613182565b61185a565b60405161076d91906136a7565b60405180910390f35b34801561078257600080fd5b5061078b6119cd565b60405161079891906136a7565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190612f71565b611a5b565b6040516107d5919061368c565b60405180910390f35b3480156107ea57600080fd5b506107f3611aef565b60405161080091906136a7565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190612f48565b611b7d565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600680546108a890613bf8565b80601f01602080910402602001604051908101604052809291908181526020018280546108d490613bf8565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b600061093682611da5565b610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90613849565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109bb8261107a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a23906138e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4b611dc2565b73ffffffffffffffffffffffffffffffffffffffff161480610a7a5750610a7981610a74611dc2565b611a5b565b5b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab0906137a9565b60405180910390fd5b610ac38383611dca565b505050565b60011515600c60009054906101000a900460ff16151514610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613949565b60405180910390fd5b612711610b29610d08565b10610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613909565b60405180910390fd5b600b543414610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba4906137e9565b60405180910390fd5b60001515600e600083815260200190815260200160002060009054906101000a900460ff16151514610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906138c9565b60405180910390fd5b6000610c1e610d08565b905081600d6000838152602001908152602001600020819055506001600e600084815260200190815260200160002060006101000a81548160ff021916908315150217905550610c6e3382611e83565b5050565b610c7a611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610c98611595565b73ffffffffffffffffffffffffffffffffffffffff1614610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590613869565b60405180910390fd5b80600f9080519060200190610d04929190612d6c565b5050565b6000610d146002611ea1565b905090565b600c60009054906101000a900460ff1681565b610d3d610d37611dc2565b82611eb6565b610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613929565b60405180910390fd5b610d87838383611f94565b505050565b610d94611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610db2611595565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90613869565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b6000610e7882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121ab90919063ffffffff16565b905092915050565b610e88611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610ea6611595565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390613869565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b610f34838383604051806020016040528060008152506117d8565b505050565b600080610f508360026121c590919063ffffffff16565b50905080915050919050565b610f64611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610f82611595565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613869565b60405180910390fd5b8060109080519060200190610fee929190612d6c565b5050565b610ffa611dc2565b73ffffffffffffffffffffffffffffffffffffffff16611018611595565b73ffffffffffffffffffffffffffffffffffffffff161461106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590613869565b60405180910390fd5b611077816121f1565b50565b60006110aa8260405180606001604052806029815260200161437060299139600261220b9092919063ffffffff16565b9050919050565b6060600980546110c090613bf8565b80601f01602080910402602001604051908101604052809291908181526020018280546110ec90613bf8565b80156111395780601f1061110e57610100808354040283529160200191611139565b820191906000526020600020905b81548152906001019060200180831161111c57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab906137c9565b60405180910390fd5b6111fb600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061222a565b9050919050565b61120a611dc2565b73ffffffffffffffffffffffffffffffffffffffff16611228611595565b73ffffffffffffffffffffffffffffffffffffffff161461127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590613869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d6020528060005260406000206000915090505481565b61271181565b6060600061136a83611143565b905060008114156113ed57600067ffffffffffffffff8111156113b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113e45781602001602082028036833780820191505090505b509150506114d4565b60008167ffffffffffffffff81111561142f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561145d5781602001602082028036833780820191505090505b50905060005b828110156114cd576114758582610e25565b8282815181106114ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114c590613c5b565b915050611463565b8193505050505b919050565b6114e1611dc2565b73ffffffffffffffffffffffffffffffffffffffff166114ff611595565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613869565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061159357600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546115ce90613bf8565b80601f01602080910402602001604051908101604052809291908181526020018280546115fa90613bf8565b80156116475780601f1061161c57610100808354040283529160200191611647565b820191906000526020600020905b81548152906001019060200180831161162a57829003601f168201915b5050505050905090565b600b5481565b61165f611dc2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613769565b60405180910390fd5b80600560006116da611dc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611787611dc2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117cc919061368c565b60405180910390a35050565b6117e96117e3611dc2565b83611eb6565b611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613929565b60405180910390fd5b6118348484848461223f565b50505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b606061186582611da5565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b906138a9565b60405180910390fd5b60006008600084815260200190815260200160002080546118c490613bf8565b80601f01602080910402602001604051908101604052809291908181526020018280546118f090613bf8565b801561193d5780601f106119125761010080835404028352916020019161193d565b820191906000526020600020905b81548152906001019060200180831161192057829003601f168201915b50505050509050600061194e6110b1565b90506000815114156119645781925050506119c8565b6000825111156119995780826040516020016119819291906135df565b604051602081830303815290604052925050506119c8565b806119a38561229b565b6040516020016119b49291906135df565b604051602081830303815290604052925050505b919050565b601080546119da90613bf8565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0690613bf8565b8015611a535780601f10611a2857610100808354040283529160200191611a53565b820191906000526020600020905b815481529060010190602001808311611a3657829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f8054611afc90613bf8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890613bf8565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b505050505081565b611b85611dc2565b73ffffffffffffffffffffffffffffffffffffffff16611ba3611595565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090613869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613709565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611d3b836000018360001b612448565b905092915050565b6000611d6f846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6124b8565b90509392505050565b600080823b905060008111915050919050565b6000611d9d836000018360001b6125ca565b905092915050565b6000611dbb826002611d8b90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e3d8361107a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e9d8282604051806020016040528060008152506125ed565b5050565b6000611eaf82600001612648565b9050919050565b6000611ec182611da5565b611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790613789565b60405180910390fd5b6000611f0b8361107a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7a57508373ffffffffffffffffffffffffffffffffffffffff16611f628461092b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f8b5750611f8a8185611a5b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb48261107a565b73ffffffffffffffffffffffffffffffffffffffff161461200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190613889565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613749565b60405180910390fd5b612085838383612659565b612090600082611dca565b6120e181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061265e90919063ffffffff16565b5061213381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611d2990919063ffffffff16565b5061214a81836002611d439092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006121ba8360000183612678565b60001c905092915050565b6000806000806121d88660000186612712565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612207929190612d6c565b5050565b600061221e846000018460001b846127c2565b60001c90509392505050565b600061223882600001612889565b9050919050565b61224a848484611f94565b6122568484848461289a565b612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c906136e9565b60405180910390fd5b50505050565b606060008214156122e3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612443565b600082905060005b600082146123155780806122fe90613c5b565b915050600a8261230e9190613add565b91506122eb565b60008167ffffffffffffffff811115612357577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123895781602001600182028036833780820191505090505b5090505b6000851461243c576001826123a29190613b0e565b9150600a856123b19190613ca4565b60306123bd9190613a87565b60f81b8183815181106123f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124359190613add565b945061238d565b8093505050505b919050565b60006124548383612a31565b6124ad5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506124b2565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561255f578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506125c3565b82856000016001836125719190613b0e565b815481106125a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6125f78383612a54565b612604600084848461289a565b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906136e9565b60405180910390fd5b505050565b600081600001805490509050919050565b505050565b6000612670836000018360001b612be2565b905092915050565b6000818360000180549050116126c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ba906136c9565b60405180910390fd5b8260000182815481106126ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6000808284600001805490501161275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590613809565b60405180910390fd5b600084600001848154811061279c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b91906136a7565b60405180910390fd5b50846000016001826128369190613b0e565b8154811061286d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006128bb8473ffffffffffffffffffffffffffffffffffffffff16611d78565b15612a24578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128e4611dc2565b8786866040518563ffffffff1660e01b8152600401612906949392919061361e565b602060405180830381600087803b15801561292057600080fd5b505af192505050801561295157506040513d601f19601f8201168201806040525081019061294e9190613118565b60015b6129d4573d8060008114612981576040519150601f19603f3d011682016040523d82523d6000602084013e612986565b606091505b506000815114156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c3906136e9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a29565b600190505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb90613829565b60405180910390fd5b612acd81611da5565b15612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0490613729565b60405180910390fd5b612b1960008383612659565b612b6a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611d2990919063ffffffff16565b50612b8181836002611d439092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008083600101600084815260200190815260200160002054905060008114612d60576000600182612c149190613b0e565b9050600060018660000180549050612c2c9190613b0e565b90506000866000018281548110612c6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550600183612cd19190613a87565b8760010160008381526020019081526020016000208190555086600001805480612d24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612d66565b60009150505b92915050565b828054612d7890613bf8565b90600052602060002090601f016020900481019282612d9a5760008555612de1565b82601f10612db357805160ff1916838001178555612de1565b82800160010185558215612de1579182015b82811115612de0578251825591602001919060010190612dc5565b5b509050612dee9190612df2565b5090565b5b80821115612e0b576000816000905550600101612df3565b5090565b6000612e22612e1d846139a9565b613984565b905082815260208101848484011115612e3a57600080fd5b612e45848285613bb6565b509392505050565b6000612e60612e5b846139da565b613984565b905082815260208101848484011115612e7857600080fd5b612e83848285613bb6565b509392505050565b600081359050612e9a81614313565b92915050565b600081359050612eaf8161432a565b92915050565b600081359050612ec481614341565b92915050565b600081519050612ed981614341565b92915050565b600082601f830112612ef057600080fd5b8135612f00848260208601612e0f565b91505092915050565b600082601f830112612f1a57600080fd5b8135612f2a848260208601612e4d565b91505092915050565b600081359050612f4281614358565b92915050565b600060208284031215612f5a57600080fd5b6000612f6884828501612e8b565b91505092915050565b60008060408385031215612f8457600080fd5b6000612f9285828601612e8b565b9250506020612fa385828601612e8b565b9150509250929050565b600080600060608486031215612fc257600080fd5b6000612fd086828701612e8b565b9350506020612fe186828701612e8b565b9250506040612ff286828701612f33565b9150509250925092565b6000806000806080858703121561301257600080fd5b600061302087828801612e8b565b945050602061303187828801612e8b565b935050604061304287828801612f33565b925050606085013567ffffffffffffffff81111561305f57600080fd5b61306b87828801612edf565b91505092959194509250565b6000806040838503121561308a57600080fd5b600061309885828601612e8b565b92505060206130a985828601612ea0565b9150509250929050565b600080604083850312156130c657600080fd5b60006130d485828601612e8b565b92505060206130e585828601612f33565b9150509250929050565b60006020828403121561310157600080fd5b600061310f84828501612eb5565b91505092915050565b60006020828403121561312a57600080fd5b600061313884828501612eca565b91505092915050565b60006020828403121561315357600080fd5b600082013567ffffffffffffffff81111561316d57600080fd5b61317984828501612f09565b91505092915050565b60006020828403121561319457600080fd5b60006131a284828501612f33565b91505092915050565b60006131b783836135c1565b60208301905092915050565b6131cc81613b42565b82525050565b60006131dd82613a1b565b6131e78185613a49565b93506131f283613a0b565b8060005b8381101561322357815161320a88826131ab565b975061321583613a3c565b9250506001810190506131f6565b5085935050505092915050565b61323981613b54565b82525050565b600061324a82613a26565b6132548185613a5a565b9350613264818560208601613bc5565b61326d81613d91565b840191505092915050565b600061328382613a31565b61328d8185613a6b565b935061329d818560208601613bc5565b6132a681613d91565b840191505092915050565b60006132bc82613a31565b6132c68185613a7c565b93506132d6818560208601613bc5565b80840191505092915050565b60006132ef602283613a6b565b91506132fa82613da2565b604082019050919050565b6000613312603283613a6b565b915061331d82613df1565b604082019050919050565b6000613335602683613a6b565b915061334082613e40565b604082019050919050565b6000613358601c83613a6b565b915061336382613e8f565b602082019050919050565b600061337b602483613a6b565b915061338682613eb8565b604082019050919050565b600061339e601983613a6b565b91506133a982613f07565b602082019050919050565b60006133c1602c83613a6b565b91506133cc82613f30565b604082019050919050565b60006133e4603883613a6b565b91506133ef82613f7f565b604082019050919050565b6000613407602a83613a6b565b915061341282613fce565b604082019050919050565b600061342a602383613a6b565b91506134358261401d565b604082019050919050565b600061344d602283613a6b565b91506134588261406c565b604082019050919050565b6000613470602083613a6b565b915061347b826140bb565b602082019050919050565b6000613493602c83613a6b565b915061349e826140e4565b604082019050919050565b60006134b6602083613a6b565b91506134c182614133565b602082019050919050565b60006134d9602983613a6b565b91506134e48261415c565b604082019050919050565b60006134fc602f83613a6b565b9150613507826141ab565b604082019050919050565b600061351f601483613a6b565b915061352a826141fa565b602082019050919050565b6000613542602183613a6b565b915061354d82614223565b604082019050919050565b6000613565601683613a6b565b915061357082614272565b602082019050919050565b6000613588603183613a6b565b91506135938261429b565b604082019050919050565b60006135ab601383613a6b565b91506135b6826142ea565b602082019050919050565b6135ca81613bac565b82525050565b6135d981613bac565b82525050565b60006135eb82856132b1565b91506135f782846132b1565b91508190509392505050565b600060208201905061361860008301846131c3565b92915050565b600060808201905061363360008301876131c3565b61364060208301866131c3565b61364d60408301856135d0565b818103606083015261365f818461323f565b905095945050505050565b6000602082019050818103600083015261368481846131d2565b905092915050565b60006020820190506136a16000830184613230565b92915050565b600060208201905081810360008301526136c18184613278565b905092915050565b600060208201905081810360008301526136e2816132e2565b9050919050565b6000602082019050818103600083015261370281613305565b9050919050565b6000602082019050818103600083015261372281613328565b9050919050565b600060208201905081810360008301526137428161334b565b9050919050565b600060208201905081810360008301526137628161336e565b9050919050565b6000602082019050818103600083015261378281613391565b9050919050565b600060208201905081810360008301526137a2816133b4565b9050919050565b600060208201905081810360008301526137c2816133d7565b9050919050565b600060208201905081810360008301526137e2816133fa565b9050919050565b600060208201905081810360008301526138028161341d565b9050919050565b6000602082019050818103600083015261382281613440565b9050919050565b6000602082019050818103600083015261384281613463565b9050919050565b6000602082019050818103600083015261386281613486565b9050919050565b60006020820190508181036000830152613882816134a9565b9050919050565b600060208201905081810360008301526138a2816134cc565b9050919050565b600060208201905081810360008301526138c2816134ef565b9050919050565b600060208201905081810360008301526138e281613512565b9050919050565b6000602082019050818103600083015261390281613535565b9050919050565b6000602082019050818103600083015261392281613558565b9050919050565b600060208201905081810360008301526139428161357b565b9050919050565b600060208201905081810360008301526139628161359e565b9050919050565b600060208201905061397e60008301846135d0565b92915050565b600061398e61399f565b905061399a8282613c2a565b919050565b6000604051905090565b600067ffffffffffffffff8211156139c4576139c3613d62565b5b6139cd82613d91565b9050602081019050919050565b600067ffffffffffffffff8211156139f5576139f4613d62565b5b6139fe82613d91565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a9282613bac565b9150613a9d83613bac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ad257613ad1613cd5565b5b828201905092915050565b6000613ae882613bac565b9150613af383613bac565b925082613b0357613b02613d04565b5b828204905092915050565b6000613b1982613bac565b9150613b2483613bac565b925082821015613b3757613b36613cd5565b5b828203905092915050565b6000613b4d82613b8c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be3578082015181840152602081019050613bc8565b83811115613bf2576000848401525b50505050565b60006002820490506001821680613c1057607f821691505b60208210811415613c2457613c23613d33565b5b50919050565b613c3382613d91565b810181811067ffffffffffffffff82111715613c5257613c51613d62565b5b80604052505050565b6000613c6682613bac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9957613c98613cd5565b5b600182019050919050565b6000613caf82613bac565b9150613cba83613bac565b925082613cca57613cc9613d04565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5365656420616c726561647920636c61696d6564000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b61431c81613b42565b811461432757600080fd5b50565b61433381613b54565b811461433e57600080fd5b50565b61434a81613b60565b811461435557600080fd5b50565b61436181613bac565b811461436c57600080fd5b5056fe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220161bc85eeaa3c2c6be731d486efa2bf518df372e0d889c2244b737cb728e270464736f6c63430008010033

Deployed Bytecode Sourcemap

66040:2676:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31777:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43465:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46251:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45781:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67489:512;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68047:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45259:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66213:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47141:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68493:79;;;;;;;;;;;;;:::i;:::-;;45021:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68403:78;;;;;;;;;;;;;:::i;:::-;;47517:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45547:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68175:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68292:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43221:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44840:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42926:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58324:148;;;;;;;;;;;;;:::i;:::-;;66254:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66117:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66942:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68584:123;;;:::i;:::-;;57673:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43634:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66168:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46544:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47739:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66310:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43809:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66580:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46910:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66436:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58627:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31777:150;31862:4;31886:20;:33;31907:11;31886:33;;;;;;;;;;;;;;;;;;;;;;;;;;;31879:40;;31777:150;;;:::o;43465:100::-;43519:13;43552:5;43545:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43465:100;:::o;46251:221::-;46327:7;46355:16;46363:7;46355;:16::i;:::-;46347:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46440:15;:24;46456:7;46440:24;;;;;;;;;;;;;;;;;;;;;46433:31;;46251:221;;;:::o;45781:404::-;45862:13;45878:23;45893:7;45878:14;:23::i;:::-;45862:39;;45926:5;45920:11;;:2;:11;;;;45912:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46006:5;45990:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;46015:44;46039:5;46046:12;:10;:12::i;:::-;46015:23;:44::i;:::-;45990:69;45982:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;46156:21;46165:2;46169:7;46156:8;:21::i;:::-;45781:404;;;:::o;67489:512::-;67575:4;67557:22;;:14;;;;;;;;;;;:22;;;67549:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;66156:5;67622:13;:11;:13::i;:::-;:31;67614:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;67712:5;;67699:9;:18;67691:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;67798:5;67776:27;;:11;:18;67788:5;67776:18;;;;;;;;;;;;;;;;;;;;;:27;;;67768:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;67839:14;67856:13;:11;:13::i;:::-;67839:30;;67907:5;67880:13;:24;67894:9;67880:24;;;;;;;;;;;:32;;;;67944:4;67923:11;:18;67935:5;67923:18;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;67959:32;67969:10;67981:9;67959;:32::i;:::-;67489:512;;:::o;68047:116::-;57904:12;:10;:12::i;:::-;57893:23;;:7;:5;:7::i;:::-;:23;;;57885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68150:5:::1;68123:24;:32;;;;;;;;;;;;:::i;:::-;;68047:116:::0;:::o;45259:211::-;45320:7;45441:21;:12;:19;:21::i;:::-;45434:28;;45259:211;:::o;66213:34::-;;;;;;;;;;;;;:::o;47141:305::-;47302:41;47321:12;:10;:12::i;:::-;47335:7;47302:18;:41::i;:::-;47294:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;47410:28;47420:4;47426:2;47430:7;47410:9;:28::i;:::-;47141:305;;;:::o;68493:79::-;57904:12;:10;:12::i;:::-;57893:23;;:7;:5;:7::i;:::-;:23;;;57885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68559:5:::1;68542:14;;:22;;;;;;;;;;;;;;;;;;68493:79::o:0;45021:162::-;45118:7;45145:30;45169:5;45145:13;:20;45159:5;45145:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;45138:37;;45021:162;;;;:::o;68403:78::-;57904:12;:10;:12::i;:::-;57893:23;;:7;:5;:7::i;:::-;:23;;;57885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68469:4:::1;68452:14;;:21;;;;;;;;;;;;;;;;;;68403:78::o:0;47517:151::-;47621:39;47638:4;47644:2;47648:7;47621:39;;;;;;;;;;;;:16;:39::i;:::-;47517:151;;;:::o;45547:172::-;45622:7;45643:15;45664:22;45680:5;45664:12;:15;;:22;;;;:::i;:::-;45642:44;;;45704:7;45697:14;;;45547:172;;;:::o;68175:105::-;57904:12;:10;:12::i;:::-;57893:23;;:7;:5;:7::i;:::-;:23;;;57885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68267:5:::1;68248:16;:24;;;;;;;;;;;;:::i;:::-;;68175:105:::0;:::o;68292:99::-;57904:12;:10;:12::i;:::-;57893:23;;:7;:5;:7::i;:::-;:23;;;57885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68363:20:::1;68375:7;68363:11;:20::i;:::-;68292:99:::0;:::o;43221:177::-;43293:7;43320:70;43337:7;43320:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;43313:77;;43221:177;;;:::o;44840:97::-;44888:13;44921:8;44914:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44840:97;:::o;42926:221::-;42998:7;43043:1;43026:19;;:5;:19;;;;43018:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43110:29;:13;:20;43124:5;43110:20;;;;;;;;;;;;;;;:27;:29::i;:::-;43103:36;;42926:221;;;:::o;58324:148::-;57904:12;:10;:12::i;:::-;57893:23;;:7;:5;:7::i;:::-;:23;;;57885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58431:1:::1;58394:40;;58415:6;;;;;;;;;;;58394:40;;;;;;;;;;;;58462:1;58445:6;;:19;;;;;;;;;;;;;;;;;;58324:148::o:0;66254:49::-;;;;;;;;;;;;;;;;;:::o;66117:44::-;66156:5;66117:44;:::o;66942:540::-;67003:16;67033:18;67054:17;67064:6;67054:9;:17::i;:::-;67033:38;;67100:1;67086:10;:15;67082:393;;;67177:1;67163:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67156:23;;;;;67082:393;67212:23;67252:10;67238:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67212:51;;67278:13;67306:130;67330:10;67322:5;:18;67306:130;;;67386:34;67406:6;67414:5;67386:19;:34::i;:::-;67370:6;67377:5;67370:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;67342:7;;;;;:::i;:::-;;;;67306:130;;;67457:6;67450:13;;;;;66942:540;;;;:::o;68584:123::-;57904:12;:10;:12::i;:::-;57893:23;;:7;:5;:7::i;:::-;:23;;;57885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68659:10:::1;68651:24;;:47;68676:21;68651:47;;;;;;;;;;;;;;;;;;;;;;;68643:56;;;::::0;::::1;;68584:123::o:0;57673:87::-;57719:7;57746:6;;;;;;;;;;;57739:13;;57673:87;:::o;43634:104::-;43690:13;43723:7;43716:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43634:104;:::o;66168:38::-;;;;:::o;46544:295::-;46659:12;:10;:12::i;:::-;46647:24;;:8;:24;;;;46639:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46759:8;46714:18;:32;46733:12;:10;:12::i;:::-;46714:32;;;;;;;;;;;;;;;:42;46747:8;46714:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46812:8;46783:48;;46798:12;:10;:12::i;:::-;46783:48;;;46822:8;46783:48;;;;;;:::i;:::-;;;;;;;;46544:295;;:::o;47739:285::-;47871:41;47890:12;:10;:12::i;:::-;47904:7;47871:18;:41::i;:::-;47863:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;47977:39;47991:4;47997:2;48001:7;48010:5;47977:13;:39::i;:::-;47739:285;;;;:::o;66310:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;43809:792::-;43882:13;43916:16;43924:7;43916;:16::i;:::-;43908:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43997:23;44023:10;:19;44034:7;44023:19;;;;;;;;;;;43997:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44053:18;44074:9;:7;:9::i;:::-;44053:30;;44181:1;44165:4;44159:18;:23;44155:72;;;44206:9;44199:16;;;;;;44155:72;44357:1;44337:9;44331:23;:27;44327:108;;;44406:4;44412:9;44389:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44375:48;;;;;;44327:108;44567:4;44573:18;:7;:16;:18::i;:::-;44550:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44536:57;;;;43809:792;;;;:::o;66580:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46910:164::-;47007:4;47031:18;:25;47050:5;47031:25;;;;;;;;;;;;;;;:35;47057:8;47031:35;;;;;;;;;;;;;;;;;;;;;;;;;47024:42;;46910:164;;;;:::o;66436:43::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58627:244::-;57904:12;:10;:12::i;:::-;57893:23;;:7;:5;:7::i;:::-;:23;;;57885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58736:1:::1;58716:22;;:8;:22;;;;58708:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58826:8;58797:38;;58818:6;;;;;;;;;;;58797:38;;;;;;;;;;;;58855:8;58846:6;;:17;;;;;;;;;;;;;;;;;;58627:244:::0;:::o;20588:131::-;20655:4;20679:32;20684:3;:10;;20704:5;20696:14;;20679:4;:32::i;:::-;20672:39;;20588:131;;;;:::o;9418:185::-;9507:4;9531:64;9536:3;:10;;9556:3;9548:12;;9586:5;9570:23;;9562:32;;9531:4;:64::i;:::-;9524:71;;9418:185;;;;;:::o;22760:422::-;22820:4;23028:12;23139:7;23127:20;23119:28;;23173:1;23166:4;:8;23159:15;;;22760:422;;;:::o;9995:151::-;10079:4;10103:35;10113:3;:10;;10133:3;10125:12;;10103:9;:35::i;:::-;10096:42;;9995:151;;;;:::o;49491:127::-;49556:4;49580:30;49602:7;49580:12;:21;;:30;;;;:::i;:::-;49573:37;;49491:127;;;:::o;40708:98::-;40761:7;40788:10;40781:17;;40708:98;:::o;55637:183::-;55730:2;55703:15;:24;55719:7;55703:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;55786:7;55782:2;55748:46;;55757:23;55772:7;55757:14;:23::i;:::-;55748:46;;;;;;;;;;;;55637:183;;:::o;50483:110::-;50559:26;50569:2;50573:7;50559:26;;;;;;;;;;;;:9;:26::i;:::-;50483:110;;:::o;10234:123::-;10303:7;10330:19;10338:3;:10;;10330:7;:19::i;:::-;10323:26;;10234:123;;;:::o;49785:355::-;49878:4;49903:16;49911:7;49903;:16::i;:::-;49895:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49979:13;49995:23;50010:7;49995:14;:23::i;:::-;49979:39;;50048:5;50037:16;;:7;:16;;;:51;;;;50081:7;50057:31;;:20;50069:7;50057:11;:20::i;:::-;:31;;;50037:51;:94;;;;50092:39;50116:5;50123:7;50092:23;:39::i;:::-;50037:94;50029:103;;;49785:355;;;;:::o;52921:599::-;53046:4;53019:31;;:23;53034:7;53019:14;:23::i;:::-;:31;;;53011:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;53147:1;53133:16;;:2;:16;;;;53125:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53203:39;53224:4;53230:2;53234:7;53203:20;:39::i;:::-;53307:29;53324:1;53328:7;53307:8;:29::i;:::-;53349:35;53376:7;53349:13;:19;53363:4;53349:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;53395:30;53417:7;53395:13;:17;53409:2;53395:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;53438:29;53455:7;53464:2;53438:12;:16;;:29;;;;;:::i;:::-;;53504:7;53500:2;53485:27;;53494:4;53485:27;;;;;;;;;;;;52921:599;;;:::o;21808:137::-;21879:7;21914:22;21918:3;:10;;21930:5;21914:3;:22::i;:::-;21906:31;;21899:38;;21808:137;;;;:::o;10696:236::-;10776:7;10785;10806:11;10819:13;10836:22;10840:3;:10;;10852:5;10836:3;:22::i;:::-;10805:53;;;;10885:3;10877:12;;10915:5;10907:14;;10869:55;;;;;;10696:236;;;;;:::o;54121:100::-;54205:8;54194;:19;;;;;;;;;;;;:::i;:::-;;54121:100;:::o;11982:213::-;12089:7;12140:44;12145:3;:10;;12165:3;12157:12;;12171;12140:4;:44::i;:::-;12132:53;;12109:78;;11982:213;;;;;:::o;21350:114::-;21410:7;21437:19;21445:3;:10;;21437:7;:19::i;:::-;21430:26;;21350:114;;;:::o;48906:272::-;49020:28;49030:4;49036:2;49040:7;49020:9;:28::i;:::-;49067:48;49090:4;49096:2;49100:7;49109:5;49067:22;:48::i;:::-;49059:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;48906:272;;;;:::o;378:723::-;434:13;664:1;655:5;:10;651:53;;;682:10;;;;;;;;;;;;;;;;;;;;;651:53;714:12;729:5;714:20;;745:14;770:78;785:1;777:4;:9;770:78;;803:8;;;;;:::i;:::-;;;;834:2;826:10;;;;;:::i;:::-;;;770:78;;;858:19;890:6;880:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858:39;;908:154;924:1;915:5;:10;908:154;;952:1;942:11;;;;;:::i;:::-;;;1019:2;1011:5;:10;;;;:::i;:::-;998:2;:24;;;;:::i;:::-;985:39;;968:6;975;968:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1048:2;1039:11;;;;;:::i;:::-;;;908:154;;;1086:6;1072:21;;;;;378:723;;;;:::o;13958:414::-;14021:4;14043:21;14053:3;14058:5;14043:9;:21::i;:::-;14038:327;;14081:3;:11;;14098:5;14081:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14264:3;:11;;:18;;;;14242:3;:12;;:19;14255:5;14242:19;;;;;;;;;;;:40;;;;14304:4;14297:11;;;;14038:327;14348:5;14341:12;;13958:414;;;;;:::o;4093:692::-;4169:4;4285:16;4304:3;:12;;:17;4317:3;4304:17;;;;;;;;;;;;4285:36;;4350:1;4338:8;:13;4334:444;;;4405:3;:12;;4423:38;;;;;;;;4440:3;4423:38;;;;4453:5;4423:38;;;4405:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4620:3;:12;;:19;;;;4600:3;:12;;:17;4613:3;4600:17;;;;;;;;;;;:39;;;;4661:4;4654:11;;;;;4334:444;4734:5;4698:3;:12;;4722:1;4711:8;:12;;;;:::i;:::-;4698:26;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;:41;;;;4761:5;4754:12;;;4093:692;;;;;;:::o;6593:125::-;6664:4;6709:1;6688:3;:12;;:17;6701:3;6688:17;;;;;;;;;;;;:22;;6681:29;;6593:125;;;;:::o;50820:250::-;50916:18;50922:2;50926:7;50916:5;:18::i;:::-;50953:54;50984:1;50988:2;50992:7;51001:5;50953:22;:54::i;:::-;50945:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;50820:250;;;:::o;6813:110::-;6869:7;6896:3;:12;;:19;;;;6889:26;;6813:110;;;:::o;56433:93::-;;;;:::o;20895:137::-;20965:4;20989:35;20997:3;:10;;21017:5;21009:14;;20989:7;:35::i;:::-;20982:42;;20895:137;;;;:::o;16846:204::-;16913:7;16962:5;16941:3;:11;;:18;;;;:26;16933:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17024:3;:11;;17036:5;17024:18;;;;;;;;;;;;;;;;;;;;;;;;17017:25;;16846:204;;;;:::o;7278:279::-;7345:7;7354;7404:5;7382:3;:12;;:19;;;;:27;7374:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7461:22;7486:3;:12;;7499:5;7486:19;;;;;;;;;;;;;;;;;;;;;;;;;;7461:44;;7524:5;:10;;;7536:5;:12;;;7516:33;;;;;7278:279;;;;;:::o;8775:319::-;8869:7;8889:16;8908:3;:12;;:17;8921:3;8908:17;;;;;;;;;;;;8889:36;;8956:1;8944:8;:13;;8959:12;8936:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9026:3;:12;;9050:1;9039:8;:12;;;;:::i;:::-;9026:26;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;9019:40;;;8775:319;;;;;:::o;16393:109::-;16449:7;16476:3;:11;;:18;;;;16469:25;;16393:109;;;:::o;54786:843::-;54907:4;54933:15;:2;:13;;;:15::i;:::-;54929:693;;;54985:2;54969:36;;;55006:12;:10;:12::i;:::-;55020:4;55026:7;55035:5;54969:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54965:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55232:1;55215:6;:13;:18;55211:341;;;55258:60;;;;;;;;;;:::i;:::-;;;;;;;;55211:341;55502:6;55496:13;55487:6;55483:2;55479:15;55472:38;54965:602;55102:45;;;55092:55;;;:6;:55;;;;55085:62;;;;;54929:693;55606:4;55599:11;;54786:843;;;;;;;:::o;16178:129::-;16251:4;16298:1;16275:3;:12;;:19;16288:5;16275:19;;;;;;;;;;;;:24;;16268:31;;16178:129;;;;:::o;51406:404::-;51500:1;51486:16;;:2;:16;;;;51478:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51559:16;51567:7;51559;:16::i;:::-;51558:17;51550:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51621:45;51650:1;51654:2;51658:7;51621:20;:45::i;:::-;51679:30;51701:7;51679:13;:17;51693:2;51679:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;51722:29;51739:7;51748:2;51722:12;:16;;:29;;;;;:::i;:::-;;51794:7;51790:2;51769:33;;51786:1;51769:33;;;;;;;;;;;;51406:404;;:::o;14548:1544::-;14614:4;14732:18;14753:3;:12;;:19;14766:5;14753:19;;;;;;;;;;;;14732:40;;14803:1;14789:10;:15;14785:1300;;15151:21;15188:1;15175:10;:14;;;;:::i;:::-;15151:38;;15204:17;15245:1;15224:3;:11;;:18;;;;:22;;;;:::i;:::-;15204:42;;15491:17;15511:3;:11;;15523:9;15511:22;;;;;;;;;;;;;;;;;;;;;;;;15491:42;;15657:9;15628:3;:11;;15640:13;15628:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;15776:1;15760:13;:17;;;;:::i;:::-;15734:3;:12;;:23;15747:9;15734:23;;;;;;;;;;;:43;;;;15886:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15981:3;:12;;:19;15994:5;15981:19;;;;;;;;;;;15974:26;;;16024:4;16017:11;;;;;;;;14785:1300;16068:5;16061:12;;;14548:1544;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:179::-;;6176:46;6218:3;6210:6;6176:46;:::i;:::-;6254:4;6249:3;6245:14;6231:28;;6166:99;;;;:::o;6271:118::-;6358:24;6376:5;6358:24;:::i;:::-;6353:3;6346:37;6336:53;;:::o;6425:732::-;;6573:54;6621:5;6573:54;:::i;:::-;6643:86;6722:6;6717:3;6643:86;:::i;:::-;6636:93;;6753:56;6803:5;6753:56;:::i;:::-;6832:7;6863:1;6848:284;6873:6;6870:1;6867:13;6848:284;;;6949:6;6943:13;6976:63;7035:3;7020:13;6976:63;:::i;:::-;6969:70;;7062:60;7115:6;7062:60;:::i;:::-;7052:70;;6908:224;6895:1;6892;6888:9;6883:14;;6848:284;;;6852:14;7148:3;7141:10;;6549:608;;;;;;;:::o;7163:109::-;7244:21;7259:5;7244:21;:::i;:::-;7239:3;7232:34;7222:50;;:::o;7278:360::-;;7392:38;7424:5;7392:38;:::i;:::-;7446:70;7509:6;7504:3;7446:70;:::i;:::-;7439:77;;7525:52;7570:6;7565:3;7558:4;7551:5;7547:16;7525:52;:::i;:::-;7602:29;7624:6;7602:29;:::i;:::-;7597:3;7593:39;7586:46;;7368:270;;;;;:::o;7644:364::-;;7760:39;7793:5;7760:39;:::i;:::-;7815:71;7879:6;7874:3;7815:71;:::i;:::-;7808:78;;7895:52;7940:6;7935:3;7928:4;7921:5;7917:16;7895:52;:::i;:::-;7972:29;7994:6;7972:29;:::i;:::-;7967:3;7963:39;7956:46;;7736:272;;;;;:::o;8014:377::-;;8148:39;8181:5;8148:39;:::i;:::-;8203:89;8285:6;8280:3;8203:89;:::i;:::-;8196:96;;8301:52;8346:6;8341:3;8334:4;8327:5;8323:16;8301:52;:::i;:::-;8378:6;8373:3;8369:16;8362:23;;8124:267;;;;;:::o;8397:366::-;;8560:67;8624:2;8619:3;8560:67;:::i;:::-;8553:74;;8636:93;8725:3;8636:93;:::i;:::-;8754:2;8749:3;8745:12;8738:19;;8543:220;;;:::o;8769:366::-;;8932:67;8996:2;8991:3;8932:67;:::i;:::-;8925:74;;9008:93;9097:3;9008:93;:::i;:::-;9126:2;9121:3;9117:12;9110:19;;8915:220;;;:::o;9141:366::-;;9304:67;9368:2;9363:3;9304:67;:::i;:::-;9297:74;;9380:93;9469:3;9380:93;:::i;:::-;9498:2;9493:3;9489:12;9482:19;;9287:220;;;:::o;9513:366::-;;9676:67;9740:2;9735:3;9676:67;:::i;:::-;9669:74;;9752:93;9841:3;9752:93;:::i;:::-;9870:2;9865:3;9861:12;9854:19;;9659:220;;;:::o;9885:366::-;;10048:67;10112:2;10107:3;10048:67;:::i;:::-;10041:74;;10124:93;10213:3;10124:93;:::i;:::-;10242:2;10237:3;10233:12;10226:19;;10031:220;;;:::o;10257:366::-;;10420:67;10484:2;10479:3;10420:67;:::i;:::-;10413:74;;10496:93;10585:3;10496:93;:::i;:::-;10614:2;10609:3;10605:12;10598:19;;10403:220;;;:::o;10629:366::-;;10792:67;10856:2;10851:3;10792:67;:::i;:::-;10785:74;;10868:93;10957:3;10868:93;:::i;:::-;10986:2;10981:3;10977:12;10970:19;;10775:220;;;:::o;11001:366::-;;11164:67;11228:2;11223:3;11164:67;:::i;:::-;11157:74;;11240:93;11329:3;11240:93;:::i;:::-;11358:2;11353:3;11349:12;11342:19;;11147:220;;;:::o;11373:366::-;;11536:67;11600:2;11595:3;11536:67;:::i;:::-;11529:74;;11612:93;11701:3;11612:93;:::i;:::-;11730:2;11725:3;11721:12;11714:19;;11519:220;;;:::o;11745:366::-;;11908:67;11972:2;11967:3;11908:67;:::i;:::-;11901:74;;11984:93;12073:3;11984:93;:::i;:::-;12102:2;12097:3;12093:12;12086:19;;11891:220;;;:::o;12117:366::-;;12280:67;12344:2;12339:3;12280:67;:::i;:::-;12273:74;;12356:93;12445:3;12356:93;:::i;:::-;12474:2;12469:3;12465:12;12458:19;;12263:220;;;:::o;12489:366::-;;12652:67;12716:2;12711:3;12652:67;:::i;:::-;12645:74;;12728:93;12817:3;12728:93;:::i;:::-;12846:2;12841:3;12837:12;12830:19;;12635:220;;;:::o;12861:366::-;;13024:67;13088:2;13083:3;13024:67;:::i;:::-;13017:74;;13100:93;13189:3;13100:93;:::i;:::-;13218:2;13213:3;13209:12;13202:19;;13007:220;;;:::o;13233:366::-;;13396:67;13460:2;13455:3;13396:67;:::i;:::-;13389:74;;13472:93;13561:3;13472:93;:::i;:::-;13590:2;13585:3;13581:12;13574:19;;13379:220;;;:::o;13605:366::-;;13768:67;13832:2;13827:3;13768:67;:::i;:::-;13761:74;;13844:93;13933:3;13844:93;:::i;:::-;13962:2;13957:3;13953:12;13946:19;;13751:220;;;:::o;13977:366::-;;14140:67;14204:2;14199:3;14140:67;:::i;:::-;14133:74;;14216:93;14305:3;14216:93;:::i;:::-;14334:2;14329:3;14325:12;14318:19;;14123:220;;;:::o;14349:366::-;;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14495:220;;;:::o;14721:366::-;;14884:67;14948:2;14943:3;14884:67;:::i;:::-;14877:74;;14960:93;15049:3;14960:93;:::i;:::-;15078:2;15073:3;15069:12;15062:19;;14867:220;;;:::o;15093:366::-;;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15239:220;;;:::o;15465:366::-;;15628:67;15692:2;15687:3;15628:67;:::i;:::-;15621:74;;15704:93;15793:3;15704:93;:::i;:::-;15822:2;15817:3;15813:12;15806:19;;15611:220;;;:::o;15837:366::-;;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15983:220;;;:::o;16209:108::-;16286:24;16304:5;16286:24;:::i;:::-;16281:3;16274:37;16264:53;;:::o;16323:118::-;16410:24;16428:5;16410:24;:::i;:::-;16405:3;16398:37;16388:53;;:::o;16447:435::-;;16649:95;16740:3;16731:6;16649:95;:::i;:::-;16642:102;;16761:95;16852:3;16843:6;16761:95;:::i;:::-;16754:102;;16873:3;16866:10;;16631:251;;;;;:::o;16888:222::-;;17019:2;17008:9;17004:18;16996:26;;17032:71;17100:1;17089:9;17085:17;17076:6;17032:71;:::i;:::-;16986:124;;;;:::o;17116:640::-;;17349:3;17338:9;17334:19;17326:27;;17363:71;17431:1;17420:9;17416:17;17407:6;17363:71;:::i;:::-;17444:72;17512:2;17501:9;17497:18;17488:6;17444:72;:::i;:::-;17526;17594:2;17583:9;17579:18;17570:6;17526:72;:::i;:::-;17645:9;17639:4;17635:20;17630:2;17619:9;17615:18;17608:48;17673:76;17744:4;17735:6;17673:76;:::i;:::-;17665:84;;17316:440;;;;;;;:::o;17762:373::-;;17943:2;17932:9;17928:18;17920:26;;17992:9;17986:4;17982:20;17978:1;17967:9;17963:17;17956:47;18020:108;18123:4;18114:6;18020:108;:::i;:::-;18012:116;;17910:225;;;;:::o;18141:210::-;;18266:2;18255:9;18251:18;18243:26;;18279:65;18341:1;18330:9;18326:17;18317:6;18279:65;:::i;:::-;18233:118;;;;:::o;18357:313::-;;18508:2;18497:9;18493:18;18485:26;;18557:9;18551:4;18547:20;18543:1;18532:9;18528:17;18521:47;18585:78;18658:4;18649:6;18585:78;:::i;:::-;18577:86;;18475:195;;;;:::o;18676:419::-;;18880:2;18869:9;18865:18;18857:26;;18929:9;18923:4;18919:20;18915:1;18904:9;18900:17;18893:47;18957:131;19083:4;18957:131;:::i;:::-;18949:139;;18847:248;;;:::o;19101:419::-;;19305:2;19294:9;19290:18;19282:26;;19354:9;19348:4;19344:20;19340:1;19329:9;19325:17;19318:47;19382:131;19508:4;19382:131;:::i;:::-;19374:139;;19272:248;;;:::o;19526:419::-;;19730:2;19719:9;19715:18;19707:26;;19779:9;19773:4;19769:20;19765:1;19754:9;19750:17;19743:47;19807:131;19933:4;19807:131;:::i;:::-;19799:139;;19697:248;;;:::o;19951:419::-;;20155:2;20144:9;20140:18;20132:26;;20204:9;20198:4;20194:20;20190:1;20179:9;20175:17;20168:47;20232:131;20358:4;20232:131;:::i;:::-;20224:139;;20122:248;;;:::o;20376:419::-;;20580:2;20569:9;20565:18;20557:26;;20629:9;20623:4;20619:20;20615:1;20604:9;20600:17;20593:47;20657:131;20783:4;20657:131;:::i;:::-;20649:139;;20547:248;;;:::o;20801:419::-;;21005:2;20994:9;20990:18;20982:26;;21054:9;21048:4;21044:20;21040:1;21029:9;21025:17;21018:47;21082:131;21208:4;21082:131;:::i;:::-;21074:139;;20972:248;;;:::o;21226:419::-;;21430:2;21419:9;21415:18;21407:26;;21479:9;21473:4;21469:20;21465:1;21454:9;21450:17;21443:47;21507:131;21633:4;21507:131;:::i;:::-;21499:139;;21397:248;;;:::o;21651:419::-;;21855:2;21844:9;21840:18;21832:26;;21904:9;21898:4;21894:20;21890:1;21879:9;21875:17;21868:47;21932:131;22058:4;21932:131;:::i;:::-;21924:139;;21822:248;;;:::o;22076:419::-;;22280:2;22269:9;22265:18;22257:26;;22329:9;22323:4;22319:20;22315:1;22304:9;22300:17;22293:47;22357:131;22483:4;22357:131;:::i;:::-;22349:139;;22247:248;;;:::o;22501:419::-;;22705:2;22694:9;22690:18;22682:26;;22754:9;22748:4;22744:20;22740:1;22729:9;22725:17;22718:47;22782:131;22908:4;22782:131;:::i;:::-;22774:139;;22672:248;;;:::o;22926:419::-;;23130:2;23119:9;23115:18;23107:26;;23179:9;23173:4;23169:20;23165:1;23154:9;23150:17;23143:47;23207:131;23333:4;23207:131;:::i;:::-;23199:139;;23097:248;;;:::o;23351:419::-;;23555:2;23544:9;23540:18;23532:26;;23604:9;23598:4;23594:20;23590:1;23579:9;23575:17;23568:47;23632:131;23758:4;23632:131;:::i;:::-;23624:139;;23522:248;;;:::o;23776:419::-;;23980:2;23969:9;23965:18;23957:26;;24029:9;24023:4;24019:20;24015:1;24004:9;24000:17;23993:47;24057:131;24183:4;24057:131;:::i;:::-;24049:139;;23947:248;;;:::o;24201:419::-;;24405:2;24394:9;24390:18;24382:26;;24454:9;24448:4;24444:20;24440:1;24429:9;24425:17;24418:47;24482:131;24608:4;24482:131;:::i;:::-;24474:139;;24372:248;;;:::o;24626:419::-;;24830:2;24819:9;24815:18;24807:26;;24879:9;24873:4;24869:20;24865:1;24854:9;24850:17;24843:47;24907:131;25033:4;24907:131;:::i;:::-;24899:139;;24797:248;;;:::o;25051:419::-;;25255:2;25244:9;25240:18;25232:26;;25304:9;25298:4;25294:20;25290:1;25279:9;25275:17;25268:47;25332:131;25458:4;25332:131;:::i;:::-;25324:139;;25222:248;;;:::o;25476:419::-;;25680:2;25669:9;25665:18;25657:26;;25729:9;25723:4;25719:20;25715:1;25704:9;25700:17;25693:47;25757:131;25883:4;25757:131;:::i;:::-;25749:139;;25647:248;;;:::o;25901:419::-;;26105:2;26094:9;26090:18;26082:26;;26154:9;26148:4;26144:20;26140:1;26129:9;26125:17;26118:47;26182:131;26308:4;26182:131;:::i;:::-;26174:139;;26072:248;;;:::o;26326:419::-;;26530:2;26519:9;26515:18;26507:26;;26579:9;26573:4;26569:20;26565:1;26554:9;26550:17;26543:47;26607:131;26733:4;26607:131;:::i;:::-;26599:139;;26497:248;;;:::o;26751:419::-;;26955:2;26944:9;26940:18;26932:26;;27004:9;26998:4;26994:20;26990:1;26979:9;26975:17;26968:47;27032:131;27158:4;27032:131;:::i;:::-;27024:139;;26922:248;;;:::o;27176:419::-;;27380:2;27369:9;27365:18;27357:26;;27429:9;27423:4;27419:20;27415:1;27404:9;27400:17;27393:47;27457:131;27583:4;27457:131;:::i;:::-;27449:139;;27347:248;;;:::o;27601:222::-;;27732:2;27721:9;27717:18;27709:26;;27745:71;27813:1;27802:9;27798:17;27789:6;27745:71;:::i;:::-;27699:124;;;;:::o;27829:129::-;;27890:20;;:::i;:::-;27880:30;;27919:33;27947:4;27939:6;27919:33;:::i;:::-;27870:88;;;:::o;27964:75::-;;28030:2;28024:9;28014:19;;28004:35;:::o;28045:307::-;;28196:18;28188:6;28185:30;28182:2;;;28218:18;;:::i;:::-;28182:2;28256:29;28278:6;28256:29;:::i;:::-;28248:37;;28340:4;28334;28330:15;28322:23;;28111:241;;;:::o;28358:308::-;;28510:18;28502:6;28499:30;28496:2;;;28532:18;;:::i;:::-;28496:2;28570:29;28592:6;28570:29;:::i;:::-;28562:37;;28654:4;28648;28644:15;28636:23;;28425:241;;;:::o;28672:132::-;;28762:3;28754:11;;28792:4;28787:3;28783:14;28775:22;;28744:60;;;:::o;28810:114::-;;28911:5;28905:12;28895:22;;28884:40;;;:::o;28930:98::-;;29015:5;29009:12;28999:22;;28988:40;;;:::o;29034:99::-;;29120:5;29114:12;29104:22;;29093:40;;;:::o;29139:113::-;;29241:4;29236:3;29232:14;29224:22;;29214:38;;;:::o;29258:184::-;;29391:6;29386:3;29379:19;29431:4;29426:3;29422:14;29407:29;;29369:73;;;;:::o;29448:168::-;;29565:6;29560:3;29553:19;29605:4;29600:3;29596:14;29581:29;;29543:73;;;;:::o;29622:169::-;;29740:6;29735:3;29728:19;29780:4;29775:3;29771:14;29756:29;;29718:73;;;;:::o;29797:148::-;;29936:3;29921:18;;29911:34;;;;:::o;29951:305::-;;30010:20;30028:1;30010:20;:::i;:::-;30005:25;;30044:20;30062:1;30044:20;:::i;:::-;30039:25;;30198:1;30130:66;30126:74;30123:1;30120:81;30117:2;;;30204:18;;:::i;:::-;30117:2;30248:1;30245;30241:9;30234:16;;29995:261;;;;:::o;30262:185::-;;30319:20;30337:1;30319:20;:::i;:::-;30314:25;;30353:20;30371:1;30353:20;:::i;:::-;30348:25;;30392:1;30382:2;;30397:18;;:::i;:::-;30382:2;30439:1;30436;30432:9;30427:14;;30304:143;;;;:::o;30453:191::-;;30513:20;30531:1;30513:20;:::i;:::-;30508:25;;30547:20;30565:1;30547:20;:::i;:::-;30542:25;;30586:1;30583;30580:8;30577:2;;;30591:18;;:::i;:::-;30577:2;30636:1;30633;30629:9;30621:17;;30498:146;;;;:::o;30650:96::-;;30716:24;30734:5;30716:24;:::i;:::-;30705:35;;30695:51;;;:::o;30752:90::-;;30829:5;30822:13;30815:21;30804:32;;30794:48;;;:::o;30848:149::-;;30924:66;30917:5;30913:78;30902:89;;30892:105;;;:::o;31003:126::-;;31080:42;31073:5;31069:54;31058:65;;31048:81;;;:::o;31135:77::-;;31201:5;31190:16;;31180:32;;;:::o;31218:154::-;31302:6;31297:3;31292;31279:30;31364:1;31355:6;31350:3;31346:16;31339:27;31269:103;;;:::o;31378:307::-;31446:1;31456:113;31470:6;31467:1;31464:13;31456:113;;;31555:1;31550:3;31546:11;31540:18;31536:1;31531:3;31527:11;31520:39;31492:2;31489:1;31485:10;31480:15;;31456:113;;;31587:6;31584:1;31581:13;31578:2;;;31667:1;31658:6;31653:3;31649:16;31642:27;31578:2;31427:258;;;;:::o;31691:320::-;;31772:1;31766:4;31762:12;31752:22;;31819:1;31813:4;31809:12;31840:18;31830:2;;31896:4;31888:6;31884:17;31874:27;;31830:2;31958;31950:6;31947:14;31927:18;31924:38;31921:2;;;31977:18;;:::i;:::-;31921:2;31742:269;;;;:::o;32017:281::-;32100:27;32122:4;32100:27;:::i;:::-;32092:6;32088:40;32230:6;32218:10;32215:22;32194:18;32182:10;32179:34;32176:62;32173:2;;;32241:18;;:::i;:::-;32173:2;32281:10;32277:2;32270:22;32060:238;;;:::o;32304:233::-;;32366:24;32384:5;32366:24;:::i;:::-;32357:33;;32412:66;32405:5;32402:77;32399:2;;;32482:18;;:::i;:::-;32399:2;32529:1;32522:5;32518:13;32511:20;;32347:190;;;:::o;32543:176::-;;32592:20;32610:1;32592:20;:::i;:::-;32587:25;;32626:20;32644:1;32626:20;:::i;:::-;32621:25;;32665:1;32655:2;;32670:18;;:::i;:::-;32655:2;32711:1;32708;32704:9;32699:14;;32577:142;;;;:::o;32725:180::-;32773:77;32770:1;32763:88;32870:4;32867:1;32860:15;32894:4;32891:1;32884:15;32911:180;32959:77;32956:1;32949:88;33056:4;33053:1;33046:15;33080:4;33077:1;33070:15;33097:180;33145:77;33142:1;33135:88;33242:4;33239:1;33232:15;33266:4;33263:1;33256:15;33283:180;33331:77;33328:1;33321:88;33428:4;33425:1;33418:15;33452:4;33449:1;33442:15;33469:102;;33561:2;33557:7;33552:2;33545:5;33541:14;33537:28;33527:38;;33517:54;;;:::o;33577:221::-;33717:34;33713:1;33705:6;33701:14;33694:58;33786:4;33781:2;33773:6;33769:15;33762:29;33683:115;:::o;33804:237::-;33944:34;33940:1;33932:6;33928:14;33921:58;34013:20;34008:2;34000:6;33996:15;33989:45;33910:131;:::o;34047:225::-;34187:34;34183:1;34175:6;34171:14;34164:58;34256:8;34251:2;34243:6;34239:15;34232:33;34153:119;:::o;34278:178::-;34418:30;34414:1;34406:6;34402:14;34395:54;34384:72;:::o;34462:223::-;34602:34;34598:1;34590:6;34586:14;34579:58;34671:6;34666:2;34658:6;34654:15;34647:31;34568:117;:::o;34691:175::-;34831:27;34827:1;34819:6;34815:14;34808:51;34797:69;:::o;34872:231::-;35012:34;35008:1;35000:6;34996:14;34989:58;35081:14;35076:2;35068:6;35064:15;35057:39;34978:125;:::o;35109:243::-;35249:34;35245:1;35237:6;35233:14;35226:58;35318:26;35313:2;35305:6;35301:15;35294:51;35215:137;:::o;35358:229::-;35498:34;35494:1;35486:6;35482:14;35475:58;35567:12;35562:2;35554:6;35550:15;35543:37;35464:123;:::o;35593:222::-;35733:34;35729:1;35721:6;35717:14;35710:58;35802:5;35797:2;35789:6;35785:15;35778:30;35699:116;:::o;35821:221::-;35961:34;35957:1;35949:6;35945:14;35938:58;36030:4;36025:2;36017:6;36013:15;36006:29;35927:115;:::o;36048:182::-;36188:34;36184:1;36176:6;36172:14;36165:58;36154:76;:::o;36236:231::-;36376:34;36372:1;36364:6;36360:14;36353:58;36445:14;36440:2;36432:6;36428:15;36421:39;36342:125;:::o;36473:182::-;36613:34;36609:1;36601:6;36597:14;36590:58;36579:76;:::o;36661:228::-;36801:34;36797:1;36789:6;36785:14;36778:58;36870:11;36865:2;36857:6;36853:15;36846:36;36767:122;:::o;36895:234::-;37035:34;37031:1;37023:6;37019:14;37012:58;37104:17;37099:2;37091:6;37087:15;37080:42;37001:128;:::o;37135:170::-;37275:22;37271:1;37263:6;37259:14;37252:46;37241:64;:::o;37311:220::-;37451:34;37447:1;37439:6;37435:14;37428:58;37520:3;37515:2;37507:6;37503:15;37496:28;37417:114;:::o;37537:172::-;37677:24;37673:1;37665:6;37661:14;37654:48;37643:66;:::o;37715:236::-;37855:34;37851:1;37843:6;37839:14;37832:58;37924:19;37919:2;37911:6;37907:15;37900:44;37821:130;:::o;37957:169::-;38097:21;38093:1;38085:6;38081:14;38074:45;38063:63;:::o;38132:122::-;38205:24;38223:5;38205:24;:::i;:::-;38198:5;38195:35;38185:2;;38244:1;38241;38234:12;38185:2;38175:79;:::o;38260:116::-;38330:21;38345:5;38330:21;:::i;:::-;38323:5;38320:32;38310:2;;38366:1;38363;38356:12;38310:2;38300:76;:::o;38382:120::-;38454:23;38471:5;38454:23;:::i;:::-;38447:5;38444:34;38434:2;;38492:1;38489;38482:12;38434:2;38424:78;:::o;38508:122::-;38581:24;38599:5;38581:24;:::i;:::-;38574:5;38571:35;38561:2;;38620:1;38617;38610:12;38561:2;38551:79;:::o

Swarm Source

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