ETH Price: $3,809.82 (-2.22%)
Gas: 9 Gwei

Token

BASTARD GAN PUNKS V2 (BGANPUNKV2)
 

Overview

Max Total Supply

11,305 BGANPUNKV2

Holders

2,712

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gavinmclelland.eth
Balance
4 BGANPUNKV2
0xd674d9dbea02b7457408ed2cd21051498ec8d13c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

VERSION 2 OF BASTARD GAN PUNKS ARE COOLER, BETTER AND GOOFIER THAN BOTH BOOMER CRYPTOPUNKS & VERSION 1 BASTARD GAN PUNKS. THIS TIME, ALL CRYPTOPUNK ATTRIBUTES ARE EXTRACTED AND A NEW DATASET OF ALL COMBINATIONS OF THEM ARE TRAINED WITH GAN TO GIVE BIRTH TO EVEN MORE BADASS ONES. ALSO EACH ONE HAS A UNIQUE STORY GENERATED FROM MORE THAN 10K PUNK & EMO SONG LYRICS VIA GPT-2 LANGUAGE PROCESSING ALGORITHM. BASTARDS ARE SLOWLY DEGENERATING THE WORLD. ADOPT ONE TO KICK EVERYONE'S ASSES! DISCLAIMER: THIS PROJECT IS NOT AFFILIATED WITH LARVA LABS BANNER DESIGN BY: @zfyrx

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BGANPUNKSV2

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// File: browser/BGAN.sol





pragma solidity ^0.8.0;





contract BGANPUNKSV2 is ERC721, Ownable {
    using SafeMath for uint256;
    uint public constant MAX_BASTARDS = 11305;
    bool public hasSaleStarted = false;
    
    // THE IPFS HASH OF ALL TOKEN DATAS WILL BE ADDED HERE WHEN ALL BASTARDS ARE FINALIZED.
    string public METADATA_PROVENANCE_HASH = "";
    
    
    constructor() ERC721("BASTARD GAN PUNKS V2","BGANPUNKV2")  {
        setBaseURI("https://bastardganpunks.club/api/");
        
        // TO BERK
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 0);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 1);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 2);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 3);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 4);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 5);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 6);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 7);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 8);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 9);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 10);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 11);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 12);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 13);
        
        // CANER
        _safeMint(address(0xc5E5ec38de39c632f67EbF9795CD1d7D12331799), 14);
        _safeMint(address(0xc5E5ec38de39c632f67EbF9795CD1d7D12331799), 15);
        _safeMint(address(0xc5E5ec38de39c632f67EbF9795CD1d7D12331799), 16);
        
        // GOKHAN
        _safeMint(address(0x36de990133D36d7E3DF9a820aA3eDE5a2320De71), 17);
        _safeMint(address(0x36de990133D36d7E3DF9a820aA3eDE5a2320De71), 18);
        
        // HALE
        _safeMint(address(0x58615313079FdD02eb240a11fbBFf1dadb00007e), 19);
        
        // SEDA
        _safeMint(address(0xfCAD2eB79692c2Aa0BCBaf3D3E29615dDa94FE6d), 20);
        _safeMint(address(0xfCAD2eB79692c2Aa0BCBaf3D3E29615dDa94FE6d), 21);
        _safeMint(address(0xfCAD2eB79692c2Aa0BCBaf3D3E29615dDa94FE6d), 22);
        
        // SAJIDA
        _safeMint(address(0x61C4a38D7e9ea4095FA7D507CF72Bf61eb5e1556), 23);
        _safeMint(address(0x61C4a38D7e9ea4095FA7D507CF72Bf61eb5e1556), 24);
        _safeMint(address(0x61C4a38D7e9ea4095FA7D507CF72Bf61eb5e1556), 25);
        
        // SAMET
        _safeMint(address(0xd956c14c8016c55344B3429ccDF2cDf9cc4362DD), 26);
        _safeMint(address(0xd956c14c8016c55344B3429ccDF2cDf9cc4362DD), 27);
        
        // ISIK
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 28);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 29);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 30);
        
        // GIVEAWAY
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 31);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 32);
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), 33);
    }
    

   
    

    
    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 calculatePrice() public view returns (uint256) {
        require(hasSaleStarted == true, "Sale hasn't started");

        require(totalSupply() < MAX_BASTARDS, "Sale has already ended");

        uint currentSupply = totalSupply();
        if (currentSupply == 11304) {
            return 10000000000000000000;
        } else if (currentSupply >= 11300) {
            return 3000000000000000000;
        } else if (currentSupply >= 11000) {
            return 854000000000000000 + (((currentSupply - 11000) / 50) * ((10 ** 16)));
        } else if (currentSupply >= 10000) {
            return 769000000000000000 + (((currentSupply - 10000) / 100) * ((10 ** 14) * 85));
        } else if (currentSupply >= 5000) {
            return 394000000000000000 + (((currentSupply - 5000) / 100) * ((10 ** 14) * 75));
        } else {
            return 69000000000000000 + ((currentSupply / 100) * ((10 ** 14) * 65));
        }
        
    }
    
     function calculatePriceTest(uint _id) public view returns (uint256) {


        require(_id < MAX_BASTARDS, "Sale has already ended");

        if (_id == 11304) {
            return 10000000000000000000;
        } else if (_id >= 11300) {
            return 3000000000000000000;
        } else if (_id >= 11000) {
            return 854000000000000000 + (((_id - 11000) / 50) * ((10 ** 16)));
        } else if (_id >= 10000) {
            return 769000000000000000 + (((_id - 10000) / 100) * ((10 ** 14) * 85));
        } else if (_id >= 5000) {
            return 394000000000000000 + (((_id - 5000) / 100) * ((10 ** 14) * 75));
        } else {
            return 69000000000000000 + ((_id / 100) * ((10 ** 14) * 65));
        }
        
    }
    
   function adoptBASTARD(uint256 numBastards) public payable {
        require(totalSupply() < MAX_BASTARDS, "Sale has already ended");
        require(numBastards > 0 && numBastards <= 20, "You can adopt minimum 1, maximum 20 bastards");
        require(totalSupply().add(numBastards) <= MAX_BASTARDS, "Exceeds MAX_BASTARDS");
        require(msg.value >= calculatePrice().mul(numBastards), "Ether value sent is below the price");

        for (uint i = 0; i < numBastards; i++) {
            uint mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }

    }
    
    // ONLYOWNER FUNCTIONS
    
    function setProvenanceHash(string memory _hash) public onlyOwner {
        METADATA_PROVENANCE_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":"MAX_BASTARDS","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":"uint256","name":"numBastards","type":"uint256"}],"name":"adoptBASTARD","outputs":[],"stateMutability":"payable","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":[],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"calculatePriceTest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"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":"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"}]

60806040526000600a60146101000a81548160ff02191690831515021790555060405180602001604052806000815250600b90805190602001906200004692919062001025565b503480156200005457600080fd5b506040518060400160405280601481526020017f424153544152442047414e2050554e4b532056320000000000000000000000008152506040518060400160405280600a81526020017f4247414e50554e4b563200000000000000000000000000000000000000000000815250620000f27f01ffc9a700000000000000000000000000000000000000000000000000000000620007c860201b60201c565b81600690805190602001906200010a92919062001025565b5080600790805190602001906200012392919062001025565b50620001557f80ac58cd00000000000000000000000000000000000000000000000000000000620007c860201b60201c565b620001867f5b5e139f00000000000000000000000000000000000000000000000000000000620007c860201b60201c565b620001b77f780e9d6300000000000000000000000000000000000000000000000000000000620007c860201b60201c565b50506000620001cb620008a060201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200029460405180606001604052806021815260200162005c6760219139620008a860201b60201c565b620002bb73c5e08104c19dafd00fe40737490da9552db5bfe560006200094b60201b60201c565b620002e273c5e08104c19dafd00fe40737490da9552db5bfe560016200094b60201b60201c565b6200030973c5e08104c19dafd00fe40737490da9552db5bfe560026200094b60201b60201c565b6200033073c5e08104c19dafd00fe40737490da9552db5bfe560036200094b60201b60201c565b6200035773c5e08104c19dafd00fe40737490da9552db5bfe560046200094b60201b60201c565b6200037e73c5e08104c19dafd00fe40737490da9552db5bfe560056200094b60201b60201c565b620003a573c5e08104c19dafd00fe40737490da9552db5bfe560066200094b60201b60201c565b620003cc73c5e08104c19dafd00fe40737490da9552db5bfe560076200094b60201b60201c565b620003f373c5e08104c19dafd00fe40737490da9552db5bfe560086200094b60201b60201c565b6200041a73c5e08104c19dafd00fe40737490da9552db5bfe560096200094b60201b60201c565b6200044173c5e08104c19dafd00fe40737490da9552db5bfe5600a6200094b60201b60201c565b6200046873c5e08104c19dafd00fe40737490da9552db5bfe5600b6200094b60201b60201c565b6200048f73c5e08104c19dafd00fe40737490da9552db5bfe5600c6200094b60201b60201c565b620004b673c5e08104c19dafd00fe40737490da9552db5bfe5600d6200094b60201b60201c565b620004dd73c5e5ec38de39c632f67ebf9795cd1d7d12331799600e6200094b60201b60201c565b6200050473c5e5ec38de39c632f67ebf9795cd1d7d12331799600f6200094b60201b60201c565b6200052b73c5e5ec38de39c632f67ebf9795cd1d7d1233179960106200094b60201b60201c565b620005527336de990133d36d7e3df9a820aa3ede5a2320de7160116200094b60201b60201c565b620005797336de990133d36d7e3df9a820aa3ede5a2320de7160126200094b60201b60201c565b620005a07358615313079fdd02eb240a11fbbff1dadb00007e60136200094b60201b60201c565b620005c773fcad2eb79692c2aa0bcbaf3d3e29615dda94fe6d60146200094b60201b60201c565b620005ee73fcad2eb79692c2aa0bcbaf3d3e29615dda94fe6d60156200094b60201b60201c565b6200061573fcad2eb79692c2aa0bcbaf3d3e29615dda94fe6d60166200094b60201b60201c565b6200063c7361c4a38d7e9ea4095fa7d507cf72bf61eb5e155660176200094b60201b60201c565b620006637361c4a38d7e9ea4095fa7d507cf72bf61eb5e155660186200094b60201b60201c565b6200068a7361c4a38d7e9ea4095fa7d507cf72bf61eb5e155660196200094b60201b60201c565b620006b173d956c14c8016c55344b3429ccdf2cdf9cc4362dd601a6200094b60201b60201c565b620006d873d956c14c8016c55344b3429ccdf2cdf9cc4362dd601b6200094b60201b60201c565b620006ff73c5e08104c19dafd00fe40737490da9552db5bfe5601c6200094b60201b60201c565b6200072673c5e08104c19dafd00fe40737490da9552db5bfe5601d6200094b60201b60201c565b6200074d73c5e08104c19dafd00fe40737490da9552db5bfe5601e6200094b60201b60201c565b6200077473c5e08104c19dafd00fe40737490da9552db5bfe5601f6200094b60201b60201c565b6200079b73c5e08104c19dafd00fe40737490da9552db5bfe560206200094b60201b60201c565b620007c273c5e08104c19dafd00fe40737490da9552db5bfe560216200094b60201b60201c565b620015f6565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000834576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082b90620012b4565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b620008b8620008a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008de6200097160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000937576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092e906200131a565b60405180910390fd5b62000948816200099b60201b60201c565b50565b6200096d828260405180602001604052806000815250620009b760201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060099080519060200190620009b392919062001025565b5050565b620009c9838362000a2560201b60201c565b620009de600084848462000bd760201b60201c565b62000a20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a179062001292565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8f90620012f8565b60405180910390fd5b62000aa98162000d9160201b60201c565b1562000aec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae390620012d6565b60405180910390fd5b62000b006000838362000db560201b60201c565b62000b5881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000dba60201b62001ea41790919060201c565b5062000b768183600262000ddc60201b62001ebe179092919060201c565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600062000c058473ffffffffffffffffffffffffffffffffffffffff1662000e1960201b62001ef31760201c565b1562000d84578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000c37620008a060201b60201c565b8786866040518563ffffffff1660e01b815260040162000c5b94939291906200123e565b602060405180830381600087803b15801562000c7657600080fd5b505af192505050801562000caa57506040513d601f19601f8201168201806040525081019062000ca79190620010ec565b60015b62000d33573d806000811462000cdd576040519150601f19603f3d011682016040523d82523d6000602084013e62000ce2565b606091505b5060008151141562000d2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d229062001292565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000d89565b600190505b949350505050565b600062000dae82600262000e2c60201b62001f061790919060201c565b9050919050565b505050565b600062000dd4836000018360001b62000e4e60201b60201c565b905092915050565b600062000e10846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b62000ec860201b60201c565b90509392505050565b600080823b905060008111915050919050565b600062000e46836000018360001b62000fdf60201b60201c565b905092915050565b600062000e6283836200100260201b60201c565b62000ebd57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000ec2565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141562000f715784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505062000fd8565b828560000160018362000f85919062001369565b8154811062000fbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620010339062001444565b90600052602060002090601f016020900481019282620010575760008555620010a3565b82601f106200107257805160ff1916838001178555620010a3565b82800160010185558215620010a3579182015b82811115620010a257825182559160200191906001019062001085565b5b509050620010b29190620010b6565b5090565b5b80821115620010d1576000816000905550600101620010b7565b5090565b600081519050620010e681620015dc565b92915050565b600060208284031215620010ff57600080fd5b60006200110f84828501620010d5565b91505092915050565b6200112381620013a4565b82525050565b600062001136826200133c565b62001142818562001347565b9350620011548185602086016200140e565b6200115f81620014d8565b840191505092915050565b60006200117960328362001358565b91506200118682620014e9565b604082019050919050565b6000620011a0601c8362001358565b9150620011ad8262001538565b602082019050919050565b6000620011c7601c8362001358565b9150620011d48262001561565b602082019050919050565b6000620011ee60208362001358565b9150620011fb826200158a565b602082019050919050565b60006200121560208362001358565b91506200122282620015b3565b602082019050919050565b620012388162001404565b82525050565b600060808201905062001255600083018762001118565b62001264602083018662001118565b6200127360408301856200122d565b818103606083015262001287818462001129565b905095945050505050565b60006020820190508181036000830152620012ad816200116a565b9050919050565b60006020820190508181036000830152620012cf8162001191565b9050919050565b60006020820190508181036000830152620012f181620011b8565b9050919050565b600060208201905081810360008301526200131381620011df565b9050919050565b60006020820190508181036000830152620013358162001206565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013768262001404565b9150620013838362001404565b9250828210156200139957620013986200147a565b5b828203905092915050565b6000620013b182620013e4565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200142e57808201518184015260208101905062001411565b838111156200143e576000848401525b50505050565b600060028204905060018216806200145d57607f821691505b60208210811415620014745762001473620014a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620015e781620013b8565b8114620015f357600080fd5b50565b61466180620016066000396000f3fe6080604052600436106101e35760003560e01c80636863c4f411610102578063a22cb46511610095578063d348b40911610064578063d348b409146106c4578063e985e9c5146106ef578063f0c9dc601461072c578063f2fde38b14610757576101e3565b8063a22cb4651461060a578063ac32cfd514610633578063b88d4fde1461065e578063c87b56dd14610687576101e3565b80638462151c116100d15780638462151c1461056d578063853828b6146105aa5780638da5cb5b146105b457806395d89b41146105df576101e3565b80636863c4f4146104d25780636c0360eb146104ee57806370a0823114610519578063715018a614610556576101e3565b80632808c92c1161017a5780634f6ccce7116101495780634f6ccce7146103f257806350d7c72d1461042f57806355f804b31461046c5780636352211e14610495576101e3565b80632808c92c1461035e5780632f745c591461037557806334d84c7b146103b257806342842e0e146103c9576101e3565b806310969523116101b657806310969523146102b657806318160ddd146102df5780631c8b232d1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613296565b610780565b60405161021c9190613856565b60405180910390f35b34801561023157600080fd5b5061023a6107e7565b6040516102479190613871565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613329565b610879565b60405161028491906137cd565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af919061325a565b6108fe565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906132e8565b610a16565b005b3480156102eb57600080fd5b506102f4610aac565b6040516103019190613b53565b60405180910390f35b34801561031657600080fd5b5061031f610abd565b60405161032c9190613856565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613154565b610ad0565b005b34801561036a57600080fd5b50610373610b30565b005b34801561038157600080fd5b5061039c6004803603810190610397919061325a565b610bc9565b6040516103a99190613b53565b60405180910390f35b3480156103be57600080fd5b506103c7610c24565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613154565b610cbd565b005b3480156103fe57600080fd5b5061041960048036038101906104149190613329565b610cdd565b6040516104269190613b53565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190613329565b610d00565b6040516104639190613b53565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e91906132e8565b610e9f565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613329565b610f27565b6040516104c991906137cd565b60405180910390f35b6104ec60048036038101906104e79190613329565b610f5e565b005b3480156104fa57600080fd5b506105036110ec565b6040516105109190613871565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b91906130ef565b61117e565b60405161054d9190613b53565b60405180910390f35b34801561056257600080fd5b5061056b61123d565b005b34801561057957600080fd5b50610594600480360381019061058f91906130ef565b61137a565b6040516105a19190613834565b60405180910390f35b6105b26114f6565b005b3480156105c057600080fd5b506105c96115b2565b6040516105d691906137cd565b60405180910390f35b3480156105eb57600080fd5b506105f46115dc565b6040516106019190613871565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c919061321e565b61166e565b005b34801561063f57600080fd5b506106486117ef565b6040516106559190613b53565b60405180910390f35b34801561066a57600080fd5b50610685600480360381019061068091906131a3565b6117f5565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613329565b611857565b6040516106bb9190613871565b60405180910390f35b3480156106d057600080fd5b506106d96119ca565b6040516106e69190613b53565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190613118565b611bd6565b6040516107239190613856565b60405180910390f35b34801561073857600080fd5b50610741611c6a565b60405161074e9190613871565b60405180910390f35b34801561076357600080fd5b5061077e600480360381019061077991906130ef565b611cf8565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600680546107f690613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461082290613e3c565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b600061088482611f20565b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90613a53565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090982610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097190613ad3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610999611f3d565b73ffffffffffffffffffffffffffffffffffffffff1614806109c857506109c7816109c2611f3d565b611bd6565b5b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90613993565b60405180910390fd5b610a118383611f45565b505050565b610a1e611f3d565b73ffffffffffffffffffffffffffffffffffffffff16610a3c6115b2565b73ffffffffffffffffffffffffffffffffffffffff1614610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613a73565b60405180910390fd5b80600b9080519060200190610aa8929190612f13565b5050565b6000610ab86002611ffe565b905090565b600a60149054906101000a900460ff1681565b610ae1610adb611f3d565b82612013565b610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790613b13565b60405180910390fd5b610b2b8383836120f1565b505050565b610b38611f3d565b73ffffffffffffffffffffffffffffffffffffffff16610b566115b2565b73ffffffffffffffffffffffffffffffffffffffff1614610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390613a73565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b6000610c1c82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061230890919063ffffffff16565b905092915050565b610c2c611f3d565b73ffffffffffffffffffffffffffffffffffffffff16610c4a6115b2565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613a73565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b610cd8838383604051806020016040528060008152506117f5565b505050565b600080610cf483600261232290919063ffffffff16565b50905080915050919050565b6000612c298210610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90613af3565b60405180910390fd5b612c28821415610d6057678ac7230489e800009050610e9a565b612c248210610d79576729a2241af62c00009050610e9a565b612af88210610dc857662386f26fc100006032612af884610d9a9190613d52565b610da49190613cc7565b610dae9190613cf8565b670bda0479ae2f0000610dc19190613c71565b9050610e9a565b6127108210610e1757661e32b478974000606461271084610de99190613d52565b610df39190613cc7565b610dfd9190613cf8565b670aac096cf8468000610e109190613c71565b9050610e9a565b6113888210610e6657661aa535d3d0c000606461138884610e389190613d52565b610e429190613cc7565b610e4c9190613cf8565b670577c4e999810000610e5f9190613c71565b9050610e9a565b661717b72f0a4000606483610e7b9190613cc7565b610e859190613cf8565b66f5232269808000610e979190613c71565b90505b919050565b610ea7611f3d565b73ffffffffffffffffffffffffffffffffffffffff16610ec56115b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290613a73565b60405180910390fd5b610f248161234e565b50565b6000610f57826040518060600160405280602981526020016146036029913960026123689092919063ffffffff16565b9050919050565b612c29610f69610aac565b10610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090613af3565b60405180910390fd5b600081118015610fba575060148111155b610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff0906139d3565b60405180910390fd5b612c2961101682611008610aac565b61238790919063ffffffff16565b1115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613913565b60405180910390fd5b611071816110636119ca565b61239d90919063ffffffff16565b3410156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906139f3565b60405180910390fd5b60005b818110156110e85760006110c8610aac565b90506110d433826123b3565b5080806110e090613e9f565b9150506110b6565b5050565b6060600980546110fb90613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461112790613e3c565b80156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906139b3565b60405180910390fd5b611236600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123d1565b9050919050565b611245611f3d565b73ffffffffffffffffffffffffffffffffffffffff166112636115b2565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613a73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006113878361117e565b9050600081141561140a57600067ffffffffffffffff8111156113d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114015781602001602082028036833780820191505090505b509150506114f1565b60008167ffffffffffffffff81111561144c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561147a5781602001602082028036833780820191505090505b50905060005b828110156114ea576114928582610bc9565b8282815181106114cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114e290613e9f565b915050611480565b8193505050505b919050565b6114fe611f3d565b73ffffffffffffffffffffffffffffffffffffffff1661151c6115b2565b73ffffffffffffffffffffffffffffffffffffffff1614611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990613a73565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506115b057600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546115eb90613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461161790613e3c565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b5050505050905090565b611676611f3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613953565b60405180910390fd5b80600560006116f1611f3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661179e611f3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e39190613856565b60405180910390a35050565b612c2981565b611806611800611f3d565b83612013565b611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90613b13565b60405180910390fd5b611851848484846123e6565b50505050565b606061186282611f20565b6118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613ab3565b60405180910390fd5b60006008600084815260200190815260200160002080546118c190613e3c565b80601f01602080910402602001604051908101604052809291908181526020018280546118ed90613e3c565b801561193a5780601f1061190f5761010080835404028352916020019161193a565b820191906000526020600020905b81548152906001019060200180831161191d57829003601f168201915b50505050509050600061194b6110ec565b90506000815114156119615781925050506119c5565b60008251111561199657808260405160200161197e9291906137a9565b604051602081830303815290604052925050506119c5565b806119a085612442565b6040516020016119b19291906137a9565b604051602081830303815290604052925050505b919050565b600060011515600a60149054906101000a900460ff16151514611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990613b33565b60405180910390fd5b612c29611a2d610aac565b10611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613af3565b60405180910390fd5b6000611a77610aac565b9050612c28811415611a9457678ac7230489e80000915050611bd3565b612c248110611aae576729a2241af62c0000915050611bd3565b612af88110611afe57662386f26fc100006032612af883611acf9190613d52565b611ad99190613cc7565b611ae39190613cf8565b670bda0479ae2f0000611af69190613c71565b915050611bd3565b6127108110611b4e57661e32b478974000606461271083611b1f9190613d52565b611b299190613cc7565b611b339190613cf8565b670aac096cf8468000611b469190613c71565b915050611bd3565b6113888110611b9e57661aa535d3d0c000606461138883611b6f9190613d52565b611b799190613cc7565b611b839190613cf8565b670577c4e999810000611b969190613c71565b915050611bd3565b661717b72f0a4000606482611bb39190613cc7565b611bbd9190613cf8565b66f5232269808000611bcf9190613c71565b9150505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611c7790613e3c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca390613e3c565b8015611cf05780601f10611cc557610100808354040283529160200191611cf0565b820191906000526020600020905b815481529060010190602001808311611cd357829003601f168201915b505050505081565b611d00611f3d565b73ffffffffffffffffffffffffffffffffffffffff16611d1e6115b2565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613a73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb906138d3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611eb6836000018360001b6125ef565b905092915050565b6000611eea846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61265f565b90509392505050565b600080823b905060008111915050919050565b6000611f18836000018360001b612771565b905092915050565b6000611f36826002611f0690919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fb883610f27565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061200c82600001612794565b9050919050565b600061201e82611f20565b61205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490613973565b60405180910390fd5b600061206883610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120d757508373ffffffffffffffffffffffffffffffffffffffff166120bf84610879565b73ffffffffffffffffffffffffffffffffffffffff16145b806120e857506120e78185611bd6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661211182610f27565b73ffffffffffffffffffffffffffffffffffffffff1614612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e90613a93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ce90613933565b60405180910390fd5b6121e28383836127a5565b6121ed600082611f45565b61223e81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206127aa90919063ffffffff16565b5061229081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ea490919063ffffffff16565b506122a781836002611ebe9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061231783600001836127c4565b60001c905092915050565b600080600080612335866000018661285e565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612364929190612f13565b5050565b600061237b846000018460001b8461290e565b60001c90509392505050565b600081836123959190613c71565b905092915050565b600081836123ab9190613cf8565b905092915050565b6123cd8282604051806020016040528060008152506129d5565b5050565b60006123df82600001612a30565b9050919050565b6123f18484846120f1565b6123fd84848484612a41565b61243c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612433906138b3565b60405180910390fd5b50505050565b6060600082141561248a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125ea565b600082905060005b600082146124bc5780806124a590613e9f565b915050600a826124b59190613cc7565b9150612492565b60008167ffffffffffffffff8111156124fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125305781602001600182028036833780820191505090505b5090505b600085146125e3576001826125499190613d52565b9150600a856125589190613ee8565b60306125649190613c71565b60f81b8183815181106125a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125dc9190613cc7565b9450612534565b8093505050505b919050565b60006125fb8383612bd8565b612654578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612659565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156127065784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061276a565b82856000016001836127189190613d52565b8154811061274f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b505050565b60006127bc836000018360001b612bfb565b905092915050565b60008183600001805490501161280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690613893565b60405180910390fd5b82600001828154811061284b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600080828460000180549050116128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a190613a13565b60405180910390fd5b60008460000184815481106128e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129679190613871565b60405180910390fd5b50846000016001826129829190613d52565b815481106129b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6129df8383612d85565b6129ec6000848484612a41565b612a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a22906138b3565b60405180910390fd5b505050565b600081600001805490509050919050565b6000612a628473ffffffffffffffffffffffffffffffffffffffff16611ef3565b15612bcb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8b611f3d565b8786866040518563ffffffff1660e01b8152600401612aad94939291906137e8565b602060405180830381600087803b158015612ac757600080fd5b505af1925050508015612af857506040513d601f19601f82011682018060405250810190612af591906132bf565b60015b612b7b573d8060008114612b28576040519150601f19603f3d011682016040523d82523d6000602084013e612b2d565b606091505b50600081511415612b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a906138b3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bd0565b600190505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612d79576000600182612c2d9190613d52565b9050600060018660000180549050612c459190613d52565b90506000866000018281548110612c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612ccf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550600183612cea9190613c71565b8760010160008381526020019081526020016000208190555086600001805480612d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612d7f565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec90613a33565b60405180910390fd5b612dfe81611f20565b15612e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e35906138f3565b60405180910390fd5b612e4a600083836127a5565b612e9b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ea490919063ffffffff16565b50612eb281836002611ebe9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612f1f90613e3c565b90600052602060002090601f016020900481019282612f415760008555612f88565b82601f10612f5a57805160ff1916838001178555612f88565b82800160010185558215612f88579182015b82811115612f87578251825591602001919060010190612f6c565b5b509050612f959190612f99565b5090565b5b80821115612fb2576000816000905550600101612f9a565b5090565b6000612fc9612fc484613b93565b613b6e565b905082815260208101848484011115612fe157600080fd5b612fec848285613dfa565b509392505050565b600061300761300284613bc4565b613b6e565b90508281526020810184848401111561301f57600080fd5b61302a848285613dfa565b509392505050565b600081359050613041816145a6565b92915050565b600081359050613056816145bd565b92915050565b60008135905061306b816145d4565b92915050565b600081519050613080816145d4565b92915050565b600082601f83011261309757600080fd5b81356130a7848260208601612fb6565b91505092915050565b600082601f8301126130c157600080fd5b81356130d1848260208601612ff4565b91505092915050565b6000813590506130e9816145eb565b92915050565b60006020828403121561310157600080fd5b600061310f84828501613032565b91505092915050565b6000806040838503121561312b57600080fd5b600061313985828601613032565b925050602061314a85828601613032565b9150509250929050565b60008060006060848603121561316957600080fd5b600061317786828701613032565b935050602061318886828701613032565b9250506040613199868287016130da565b9150509250925092565b600080600080608085870312156131b957600080fd5b60006131c787828801613032565b94505060206131d887828801613032565b93505060406131e9878288016130da565b925050606085013567ffffffffffffffff81111561320657600080fd5b61321287828801613086565b91505092959194509250565b6000806040838503121561323157600080fd5b600061323f85828601613032565b925050602061325085828601613047565b9150509250929050565b6000806040838503121561326d57600080fd5b600061327b85828601613032565b925050602061328c858286016130da565b9150509250929050565b6000602082840312156132a857600080fd5b60006132b68482850161305c565b91505092915050565b6000602082840312156132d157600080fd5b60006132df84828501613071565b91505092915050565b6000602082840312156132fa57600080fd5b600082013567ffffffffffffffff81111561331457600080fd5b613320848285016130b0565b91505092915050565b60006020828403121561333b57600080fd5b6000613349848285016130da565b91505092915050565b600061335e838361378b565b60208301905092915050565b61337381613d86565b82525050565b600061338482613c05565b61338e8185613c33565b935061339983613bf5565b8060005b838110156133ca5781516133b18882613352565b97506133bc83613c26565b92505060018101905061339d565b5085935050505092915050565b6133e081613d98565b82525050565b60006133f182613c10565b6133fb8185613c44565b935061340b818560208601613e09565b61341481613fd5565b840191505092915050565b600061342a82613c1b565b6134348185613c55565b9350613444818560208601613e09565b61344d81613fd5565b840191505092915050565b600061346382613c1b565b61346d8185613c66565b935061347d818560208601613e09565b80840191505092915050565b6000613496602283613c55565b91506134a182613fe6565b604082019050919050565b60006134b9603283613c55565b91506134c482614035565b604082019050919050565b60006134dc602683613c55565b91506134e782614084565b604082019050919050565b60006134ff601c83613c55565b915061350a826140d3565b602082019050919050565b6000613522601483613c55565b915061352d826140fc565b602082019050919050565b6000613545602483613c55565b915061355082614125565b604082019050919050565b6000613568601983613c55565b915061357382614174565b602082019050919050565b600061358b602c83613c55565b91506135968261419d565b604082019050919050565b60006135ae603883613c55565b91506135b9826141ec565b604082019050919050565b60006135d1602a83613c55565b91506135dc8261423b565b604082019050919050565b60006135f4602c83613c55565b91506135ff8261428a565b604082019050919050565b6000613617602383613c55565b9150613622826142d9565b604082019050919050565b600061363a602283613c55565b915061364582614328565b604082019050919050565b600061365d602083613c55565b915061366882614377565b602082019050919050565b6000613680602c83613c55565b915061368b826143a0565b604082019050919050565b60006136a3602083613c55565b91506136ae826143ef565b602082019050919050565b60006136c6602983613c55565b91506136d182614418565b604082019050919050565b60006136e9602f83613c55565b91506136f482614467565b604082019050919050565b600061370c602183613c55565b9150613717826144b6565b604082019050919050565b600061372f601683613c55565b915061373a82614505565b602082019050919050565b6000613752603183613c55565b915061375d8261452e565b604082019050919050565b6000613775601383613c55565b91506137808261457d565b602082019050919050565b61379481613df0565b82525050565b6137a381613df0565b82525050565b60006137b58285613458565b91506137c18284613458565b91508190509392505050565b60006020820190506137e2600083018461336a565b92915050565b60006080820190506137fd600083018761336a565b61380a602083018661336a565b613817604083018561379a565b818103606083015261382981846133e6565b905095945050505050565b6000602082019050818103600083015261384e8184613379565b905092915050565b600060208201905061386b60008301846133d7565b92915050565b6000602082019050818103600083015261388b818461341f565b905092915050565b600060208201905081810360008301526138ac81613489565b9050919050565b600060208201905081810360008301526138cc816134ac565b9050919050565b600060208201905081810360008301526138ec816134cf565b9050919050565b6000602082019050818103600083015261390c816134f2565b9050919050565b6000602082019050818103600083015261392c81613515565b9050919050565b6000602082019050818103600083015261394c81613538565b9050919050565b6000602082019050818103600083015261396c8161355b565b9050919050565b6000602082019050818103600083015261398c8161357e565b9050919050565b600060208201905081810360008301526139ac816135a1565b9050919050565b600060208201905081810360008301526139cc816135c4565b9050919050565b600060208201905081810360008301526139ec816135e7565b9050919050565b60006020820190508181036000830152613a0c8161360a565b9050919050565b60006020820190508181036000830152613a2c8161362d565b9050919050565b60006020820190508181036000830152613a4c81613650565b9050919050565b60006020820190508181036000830152613a6c81613673565b9050919050565b60006020820190508181036000830152613a8c81613696565b9050919050565b60006020820190508181036000830152613aac816136b9565b9050919050565b60006020820190508181036000830152613acc816136dc565b9050919050565b60006020820190508181036000830152613aec816136ff565b9050919050565b60006020820190508181036000830152613b0c81613722565b9050919050565b60006020820190508181036000830152613b2c81613745565b9050919050565b60006020820190508181036000830152613b4c81613768565b9050919050565b6000602082019050613b68600083018461379a565b92915050565b6000613b78613b89565b9050613b848282613e6e565b919050565b6000604051905090565b600067ffffffffffffffff821115613bae57613bad613fa6565b5b613bb782613fd5565b9050602081019050919050565b600067ffffffffffffffff821115613bdf57613bde613fa6565b5b613be882613fd5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c7c82613df0565b9150613c8783613df0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cbc57613cbb613f19565b5b828201905092915050565b6000613cd282613df0565b9150613cdd83613df0565b925082613ced57613cec613f48565b5b828204905092915050565b6000613d0382613df0565b9150613d0e83613df0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4757613d46613f19565b5b828202905092915050565b6000613d5d82613df0565b9150613d6883613df0565b925082821015613d7b57613d7a613f19565b5b828203905092915050565b6000613d9182613dd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e27578082015181840152602081019050613e0c565b83811115613e36576000848401525b50505050565b60006002820490506001821680613e5457607f821691505b60208210811415613e6857613e67613f77565b5b50919050565b613e7782613fd5565b810181811067ffffffffffffffff82111715613e9657613e95613fa6565b5b80604052505050565b6000613eaa82613df0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613edd57613edc613f19565b5b600182019050919050565b6000613ef382613df0565b9150613efe83613df0565b925082613f0e57613f0d613f48565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786365656473204d41585f4241535441524453000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f596f752063616e2061646f7074206d696e696d756d20312c206d6178696d756d60008201527f2032302062617374617264730000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b6145af81613d86565b81146145ba57600080fd5b50565b6145c681613d98565b81146145d157600080fd5b50565b6145dd81613da4565b81146145e857600080fd5b50565b6145f481613df0565b81146145ff57600080fd5b5056fe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220127bc5836526ffd743f1ee1d0631ea11f2245df7cb6314406647e1ab9b9c26ef64736f6c6343000802003368747470733a2f2f6261737461726467616e70756e6b732e636c75622f6170692f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636863c4f411610102578063a22cb46511610095578063d348b40911610064578063d348b409146106c4578063e985e9c5146106ef578063f0c9dc601461072c578063f2fde38b14610757576101e3565b8063a22cb4651461060a578063ac32cfd514610633578063b88d4fde1461065e578063c87b56dd14610687576101e3565b80638462151c116100d15780638462151c1461056d578063853828b6146105aa5780638da5cb5b146105b457806395d89b41146105df576101e3565b80636863c4f4146104d25780636c0360eb146104ee57806370a0823114610519578063715018a614610556576101e3565b80632808c92c1161017a5780634f6ccce7116101495780634f6ccce7146103f257806350d7c72d1461042f57806355f804b31461046c5780636352211e14610495576101e3565b80632808c92c1461035e5780632f745c591461037557806334d84c7b146103b257806342842e0e146103c9576101e3565b806310969523116101b657806310969523146102b657806318160ddd146102df5780631c8b232d1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613296565b610780565b60405161021c9190613856565b60405180910390f35b34801561023157600080fd5b5061023a6107e7565b6040516102479190613871565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613329565b610879565b60405161028491906137cd565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af919061325a565b6108fe565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906132e8565b610a16565b005b3480156102eb57600080fd5b506102f4610aac565b6040516103019190613b53565b60405180910390f35b34801561031657600080fd5b5061031f610abd565b60405161032c9190613856565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613154565b610ad0565b005b34801561036a57600080fd5b50610373610b30565b005b34801561038157600080fd5b5061039c6004803603810190610397919061325a565b610bc9565b6040516103a99190613b53565b60405180910390f35b3480156103be57600080fd5b506103c7610c24565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613154565b610cbd565b005b3480156103fe57600080fd5b5061041960048036038101906104149190613329565b610cdd565b6040516104269190613b53565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190613329565b610d00565b6040516104639190613b53565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e91906132e8565b610e9f565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613329565b610f27565b6040516104c991906137cd565b60405180910390f35b6104ec60048036038101906104e79190613329565b610f5e565b005b3480156104fa57600080fd5b506105036110ec565b6040516105109190613871565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b91906130ef565b61117e565b60405161054d9190613b53565b60405180910390f35b34801561056257600080fd5b5061056b61123d565b005b34801561057957600080fd5b50610594600480360381019061058f91906130ef565b61137a565b6040516105a19190613834565b60405180910390f35b6105b26114f6565b005b3480156105c057600080fd5b506105c96115b2565b6040516105d691906137cd565b60405180910390f35b3480156105eb57600080fd5b506105f46115dc565b6040516106019190613871565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c919061321e565b61166e565b005b34801561063f57600080fd5b506106486117ef565b6040516106559190613b53565b60405180910390f35b34801561066a57600080fd5b50610685600480360381019061068091906131a3565b6117f5565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613329565b611857565b6040516106bb9190613871565b60405180910390f35b3480156106d057600080fd5b506106d96119ca565b6040516106e69190613b53565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190613118565b611bd6565b6040516107239190613856565b60405180910390f35b34801561073857600080fd5b50610741611c6a565b60405161074e9190613871565b60405180910390f35b34801561076357600080fd5b5061077e600480360381019061077991906130ef565b611cf8565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600680546107f690613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461082290613e3c565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b600061088482611f20565b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90613a53565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090982610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097190613ad3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610999611f3d565b73ffffffffffffffffffffffffffffffffffffffff1614806109c857506109c7816109c2611f3d565b611bd6565b5b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90613993565b60405180910390fd5b610a118383611f45565b505050565b610a1e611f3d565b73ffffffffffffffffffffffffffffffffffffffff16610a3c6115b2565b73ffffffffffffffffffffffffffffffffffffffff1614610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613a73565b60405180910390fd5b80600b9080519060200190610aa8929190612f13565b5050565b6000610ab86002611ffe565b905090565b600a60149054906101000a900460ff1681565b610ae1610adb611f3d565b82612013565b610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790613b13565b60405180910390fd5b610b2b8383836120f1565b505050565b610b38611f3d565b73ffffffffffffffffffffffffffffffffffffffff16610b566115b2565b73ffffffffffffffffffffffffffffffffffffffff1614610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390613a73565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b6000610c1c82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061230890919063ffffffff16565b905092915050565b610c2c611f3d565b73ffffffffffffffffffffffffffffffffffffffff16610c4a6115b2565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613a73565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b610cd8838383604051806020016040528060008152506117f5565b505050565b600080610cf483600261232290919063ffffffff16565b50905080915050919050565b6000612c298210610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90613af3565b60405180910390fd5b612c28821415610d6057678ac7230489e800009050610e9a565b612c248210610d79576729a2241af62c00009050610e9a565b612af88210610dc857662386f26fc100006032612af884610d9a9190613d52565b610da49190613cc7565b610dae9190613cf8565b670bda0479ae2f0000610dc19190613c71565b9050610e9a565b6127108210610e1757661e32b478974000606461271084610de99190613d52565b610df39190613cc7565b610dfd9190613cf8565b670aac096cf8468000610e109190613c71565b9050610e9a565b6113888210610e6657661aa535d3d0c000606461138884610e389190613d52565b610e429190613cc7565b610e4c9190613cf8565b670577c4e999810000610e5f9190613c71565b9050610e9a565b661717b72f0a4000606483610e7b9190613cc7565b610e859190613cf8565b66f5232269808000610e979190613c71565b90505b919050565b610ea7611f3d565b73ffffffffffffffffffffffffffffffffffffffff16610ec56115b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290613a73565b60405180910390fd5b610f248161234e565b50565b6000610f57826040518060600160405280602981526020016146036029913960026123689092919063ffffffff16565b9050919050565b612c29610f69610aac565b10610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090613af3565b60405180910390fd5b600081118015610fba575060148111155b610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff0906139d3565b60405180910390fd5b612c2961101682611008610aac565b61238790919063ffffffff16565b1115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613913565b60405180910390fd5b611071816110636119ca565b61239d90919063ffffffff16565b3410156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906139f3565b60405180910390fd5b60005b818110156110e85760006110c8610aac565b90506110d433826123b3565b5080806110e090613e9f565b9150506110b6565b5050565b6060600980546110fb90613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461112790613e3c565b80156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906139b3565b60405180910390fd5b611236600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123d1565b9050919050565b611245611f3d565b73ffffffffffffffffffffffffffffffffffffffff166112636115b2565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613a73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006113878361117e565b9050600081141561140a57600067ffffffffffffffff8111156113d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114015781602001602082028036833780820191505090505b509150506114f1565b60008167ffffffffffffffff81111561144c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561147a5781602001602082028036833780820191505090505b50905060005b828110156114ea576114928582610bc9565b8282815181106114cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114e290613e9f565b915050611480565b8193505050505b919050565b6114fe611f3d565b73ffffffffffffffffffffffffffffffffffffffff1661151c6115b2565b73ffffffffffffffffffffffffffffffffffffffff1614611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990613a73565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506115b057600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546115eb90613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461161790613e3c565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b5050505050905090565b611676611f3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613953565b60405180910390fd5b80600560006116f1611f3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661179e611f3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e39190613856565b60405180910390a35050565b612c2981565b611806611800611f3d565b83612013565b611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90613b13565b60405180910390fd5b611851848484846123e6565b50505050565b606061186282611f20565b6118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613ab3565b60405180910390fd5b60006008600084815260200190815260200160002080546118c190613e3c565b80601f01602080910402602001604051908101604052809291908181526020018280546118ed90613e3c565b801561193a5780601f1061190f5761010080835404028352916020019161193a565b820191906000526020600020905b81548152906001019060200180831161191d57829003601f168201915b50505050509050600061194b6110ec565b90506000815114156119615781925050506119c5565b60008251111561199657808260405160200161197e9291906137a9565b604051602081830303815290604052925050506119c5565b806119a085612442565b6040516020016119b19291906137a9565b604051602081830303815290604052925050505b919050565b600060011515600a60149054906101000a900460ff16151514611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990613b33565b60405180910390fd5b612c29611a2d610aac565b10611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613af3565b60405180910390fd5b6000611a77610aac565b9050612c28811415611a9457678ac7230489e80000915050611bd3565b612c248110611aae576729a2241af62c0000915050611bd3565b612af88110611afe57662386f26fc100006032612af883611acf9190613d52565b611ad99190613cc7565b611ae39190613cf8565b670bda0479ae2f0000611af69190613c71565b915050611bd3565b6127108110611b4e57661e32b478974000606461271083611b1f9190613d52565b611b299190613cc7565b611b339190613cf8565b670aac096cf8468000611b469190613c71565b915050611bd3565b6113888110611b9e57661aa535d3d0c000606461138883611b6f9190613d52565b611b799190613cc7565b611b839190613cf8565b670577c4e999810000611b969190613c71565b915050611bd3565b661717b72f0a4000606482611bb39190613cc7565b611bbd9190613cf8565b66f5232269808000611bcf9190613c71565b9150505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611c7790613e3c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca390613e3c565b8015611cf05780601f10611cc557610100808354040283529160200191611cf0565b820191906000526020600020905b815481529060010190602001808311611cd357829003601f168201915b505050505081565b611d00611f3d565b73ffffffffffffffffffffffffffffffffffffffff16611d1e6115b2565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613a73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb906138d3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611eb6836000018360001b6125ef565b905092915050565b6000611eea846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61265f565b90509392505050565b600080823b905060008111915050919050565b6000611f18836000018360001b612771565b905092915050565b6000611f36826002611f0690919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fb883610f27565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061200c82600001612794565b9050919050565b600061201e82611f20565b61205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490613973565b60405180910390fd5b600061206883610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120d757508373ffffffffffffffffffffffffffffffffffffffff166120bf84610879565b73ffffffffffffffffffffffffffffffffffffffff16145b806120e857506120e78185611bd6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661211182610f27565b73ffffffffffffffffffffffffffffffffffffffff1614612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e90613a93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ce90613933565b60405180910390fd5b6121e28383836127a5565b6121ed600082611f45565b61223e81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206127aa90919063ffffffff16565b5061229081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ea490919063ffffffff16565b506122a781836002611ebe9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061231783600001836127c4565b60001c905092915050565b600080600080612335866000018661285e565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612364929190612f13565b5050565b600061237b846000018460001b8461290e565b60001c90509392505050565b600081836123959190613c71565b905092915050565b600081836123ab9190613cf8565b905092915050565b6123cd8282604051806020016040528060008152506129d5565b5050565b60006123df82600001612a30565b9050919050565b6123f18484846120f1565b6123fd84848484612a41565b61243c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612433906138b3565b60405180910390fd5b50505050565b6060600082141561248a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125ea565b600082905060005b600082146124bc5780806124a590613e9f565b915050600a826124b59190613cc7565b9150612492565b60008167ffffffffffffffff8111156124fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125305781602001600182028036833780820191505090505b5090505b600085146125e3576001826125499190613d52565b9150600a856125589190613ee8565b60306125649190613c71565b60f81b8183815181106125a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125dc9190613cc7565b9450612534565b8093505050505b919050565b60006125fb8383612bd8565b612654578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612659565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156127065784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061276a565b82856000016001836127189190613d52565b8154811061274f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b505050565b60006127bc836000018360001b612bfb565b905092915050565b60008183600001805490501161280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690613893565b60405180910390fd5b82600001828154811061284b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600080828460000180549050116128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a190613a13565b60405180910390fd5b60008460000184815481106128e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129679190613871565b60405180910390fd5b50846000016001826129829190613d52565b815481106129b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6129df8383612d85565b6129ec6000848484612a41565b612a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a22906138b3565b60405180910390fd5b505050565b600081600001805490509050919050565b6000612a628473ffffffffffffffffffffffffffffffffffffffff16611ef3565b15612bcb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8b611f3d565b8786866040518563ffffffff1660e01b8152600401612aad94939291906137e8565b602060405180830381600087803b158015612ac757600080fd5b505af1925050508015612af857506040513d601f19601f82011682018060405250810190612af591906132bf565b60015b612b7b573d8060008114612b28576040519150601f19603f3d011682016040523d82523d6000602084013e612b2d565b606091505b50600081511415612b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a906138b3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bd0565b600190505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612d79576000600182612c2d9190613d52565b9050600060018660000180549050612c459190613d52565b90506000866000018281548110612c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612ccf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550600183612cea9190613c71565b8760010160008381526020019081526020016000208190555086600001805480612d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612d7f565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec90613a33565b60405180910390fd5b612dfe81611f20565b15612e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e35906138f3565b60405180910390fd5b612e4a600083836127a5565b612e9b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ea490919063ffffffff16565b50612eb281836002611ebe9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612f1f90613e3c565b90600052602060002090601f016020900481019282612f415760008555612f88565b82601f10612f5a57805160ff1916838001178555612f88565b82800160010185558215612f88579182015b82811115612f87578251825591602001919060010190612f6c565b5b509050612f959190612f99565b5090565b5b80821115612fb2576000816000905550600101612f9a565b5090565b6000612fc9612fc484613b93565b613b6e565b905082815260208101848484011115612fe157600080fd5b612fec848285613dfa565b509392505050565b600061300761300284613bc4565b613b6e565b90508281526020810184848401111561301f57600080fd5b61302a848285613dfa565b509392505050565b600081359050613041816145a6565b92915050565b600081359050613056816145bd565b92915050565b60008135905061306b816145d4565b92915050565b600081519050613080816145d4565b92915050565b600082601f83011261309757600080fd5b81356130a7848260208601612fb6565b91505092915050565b600082601f8301126130c157600080fd5b81356130d1848260208601612ff4565b91505092915050565b6000813590506130e9816145eb565b92915050565b60006020828403121561310157600080fd5b600061310f84828501613032565b91505092915050565b6000806040838503121561312b57600080fd5b600061313985828601613032565b925050602061314a85828601613032565b9150509250929050565b60008060006060848603121561316957600080fd5b600061317786828701613032565b935050602061318886828701613032565b9250506040613199868287016130da565b9150509250925092565b600080600080608085870312156131b957600080fd5b60006131c787828801613032565b94505060206131d887828801613032565b93505060406131e9878288016130da565b925050606085013567ffffffffffffffff81111561320657600080fd5b61321287828801613086565b91505092959194509250565b6000806040838503121561323157600080fd5b600061323f85828601613032565b925050602061325085828601613047565b9150509250929050565b6000806040838503121561326d57600080fd5b600061327b85828601613032565b925050602061328c858286016130da565b9150509250929050565b6000602082840312156132a857600080fd5b60006132b68482850161305c565b91505092915050565b6000602082840312156132d157600080fd5b60006132df84828501613071565b91505092915050565b6000602082840312156132fa57600080fd5b600082013567ffffffffffffffff81111561331457600080fd5b613320848285016130b0565b91505092915050565b60006020828403121561333b57600080fd5b6000613349848285016130da565b91505092915050565b600061335e838361378b565b60208301905092915050565b61337381613d86565b82525050565b600061338482613c05565b61338e8185613c33565b935061339983613bf5565b8060005b838110156133ca5781516133b18882613352565b97506133bc83613c26565b92505060018101905061339d565b5085935050505092915050565b6133e081613d98565b82525050565b60006133f182613c10565b6133fb8185613c44565b935061340b818560208601613e09565b61341481613fd5565b840191505092915050565b600061342a82613c1b565b6134348185613c55565b9350613444818560208601613e09565b61344d81613fd5565b840191505092915050565b600061346382613c1b565b61346d8185613c66565b935061347d818560208601613e09565b80840191505092915050565b6000613496602283613c55565b91506134a182613fe6565b604082019050919050565b60006134b9603283613c55565b91506134c482614035565b604082019050919050565b60006134dc602683613c55565b91506134e782614084565b604082019050919050565b60006134ff601c83613c55565b915061350a826140d3565b602082019050919050565b6000613522601483613c55565b915061352d826140fc565b602082019050919050565b6000613545602483613c55565b915061355082614125565b604082019050919050565b6000613568601983613c55565b915061357382614174565b602082019050919050565b600061358b602c83613c55565b91506135968261419d565b604082019050919050565b60006135ae603883613c55565b91506135b9826141ec565b604082019050919050565b60006135d1602a83613c55565b91506135dc8261423b565b604082019050919050565b60006135f4602c83613c55565b91506135ff8261428a565b604082019050919050565b6000613617602383613c55565b9150613622826142d9565b604082019050919050565b600061363a602283613c55565b915061364582614328565b604082019050919050565b600061365d602083613c55565b915061366882614377565b602082019050919050565b6000613680602c83613c55565b915061368b826143a0565b604082019050919050565b60006136a3602083613c55565b91506136ae826143ef565b602082019050919050565b60006136c6602983613c55565b91506136d182614418565b604082019050919050565b60006136e9602f83613c55565b91506136f482614467565b604082019050919050565b600061370c602183613c55565b9150613717826144b6565b604082019050919050565b600061372f601683613c55565b915061373a82614505565b602082019050919050565b6000613752603183613c55565b915061375d8261452e565b604082019050919050565b6000613775601383613c55565b91506137808261457d565b602082019050919050565b61379481613df0565b82525050565b6137a381613df0565b82525050565b60006137b58285613458565b91506137c18284613458565b91508190509392505050565b60006020820190506137e2600083018461336a565b92915050565b60006080820190506137fd600083018761336a565b61380a602083018661336a565b613817604083018561379a565b818103606083015261382981846133e6565b905095945050505050565b6000602082019050818103600083015261384e8184613379565b905092915050565b600060208201905061386b60008301846133d7565b92915050565b6000602082019050818103600083015261388b818461341f565b905092915050565b600060208201905081810360008301526138ac81613489565b9050919050565b600060208201905081810360008301526138cc816134ac565b9050919050565b600060208201905081810360008301526138ec816134cf565b9050919050565b6000602082019050818103600083015261390c816134f2565b9050919050565b6000602082019050818103600083015261392c81613515565b9050919050565b6000602082019050818103600083015261394c81613538565b9050919050565b6000602082019050818103600083015261396c8161355b565b9050919050565b6000602082019050818103600083015261398c8161357e565b9050919050565b600060208201905081810360008301526139ac816135a1565b9050919050565b600060208201905081810360008301526139cc816135c4565b9050919050565b600060208201905081810360008301526139ec816135e7565b9050919050565b60006020820190508181036000830152613a0c8161360a565b9050919050565b60006020820190508181036000830152613a2c8161362d565b9050919050565b60006020820190508181036000830152613a4c81613650565b9050919050565b60006020820190508181036000830152613a6c81613673565b9050919050565b60006020820190508181036000830152613a8c81613696565b9050919050565b60006020820190508181036000830152613aac816136b9565b9050919050565b60006020820190508181036000830152613acc816136dc565b9050919050565b60006020820190508181036000830152613aec816136ff565b9050919050565b60006020820190508181036000830152613b0c81613722565b9050919050565b60006020820190508181036000830152613b2c81613745565b9050919050565b60006020820190508181036000830152613b4c81613768565b9050919050565b6000602082019050613b68600083018461379a565b92915050565b6000613b78613b89565b9050613b848282613e6e565b919050565b6000604051905090565b600067ffffffffffffffff821115613bae57613bad613fa6565b5b613bb782613fd5565b9050602081019050919050565b600067ffffffffffffffff821115613bdf57613bde613fa6565b5b613be882613fd5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c7c82613df0565b9150613c8783613df0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cbc57613cbb613f19565b5b828201905092915050565b6000613cd282613df0565b9150613cdd83613df0565b925082613ced57613cec613f48565b5b828204905092915050565b6000613d0382613df0565b9150613d0e83613df0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4757613d46613f19565b5b828202905092915050565b6000613d5d82613df0565b9150613d6883613df0565b925082821015613d7b57613d7a613f19565b5b828203905092915050565b6000613d9182613dd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e27578082015181840152602081019050613e0c565b83811115613e36576000848401525b50505050565b60006002820490506001821680613e5457607f821691505b60208210811415613e6857613e67613f77565b5b50919050565b613e7782613fd5565b810181811067ffffffffffffffff82111715613e9657613e95613fa6565b5b80604052505050565b6000613eaa82613df0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613edd57613edc613f19565b5b600182019050919050565b6000613ef382613df0565b9150613efe83613df0565b925082613f0e57613f0d613f48565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786365656473204d41585f4241535441524453000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f596f752063616e2061646f7074206d696e696d756d20312c206d6178696d756d60008201527f2032302062617374617264730000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b6145af81613d86565b81146145ba57600080fd5b50565b6145c681613d98565b81146145d157600080fd5b50565b6145dd81613da4565b81146145e857600080fd5b50565b6145f481613df0565b81146145ff57600080fd5b5056fe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220127bc5836526ffd743f1ee1d0631ea11f2245df7cb6314406647e1ab9b9c26ef64736f6c63430008020033

Deployed Bytecode Sourcemap

66079:6854:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31781:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43469:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46255:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45785:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72377:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45263:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66207:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47145:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72700:79;;;;;;;;;;;;;:::i;:::-;;45025:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72616:78;;;;;;;;;;;;;:::i;:::-;;47521:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45551:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70958:766;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72505:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43225:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71735:596;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44844:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42930:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58328:148;;;;;;;;;;;;;:::i;:::-;;69431:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72797:123;;;:::i;:::-;;57677:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43638:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46548:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66159:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47743:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43813:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69983:962;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46914:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66347:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58631:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31781:150;31866:4;31890:20;:33;31911:11;31890:33;;;;;;;;;;;;;;;;;;;;;;;;;;;31883:40;;31781:150;;;:::o;43469:100::-;43523:13;43556:5;43549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43469:100;:::o;46255:221::-;46331:7;46359:16;46367:7;46359;:16::i;:::-;46351:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46444:15;:24;46460:7;46444:24;;;;;;;;;;;;;;;;;;;;;46437:31;;46255:221;;;:::o;45785:404::-;45866:13;45882:23;45897:7;45882:14;:23::i;:::-;45866:39;;45930:5;45924:11;;:2;:11;;;;45916:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46010:5;45994:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;46019:44;46043:5;46050:12;:10;:12::i;:::-;46019:23;:44::i;:::-;45994:69;45986:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;46160:21;46169:2;46173:7;46160:8;:21::i;:::-;45785:404;;;:::o;72377:116::-;57908:12;:10;:12::i;:::-;57897:23;;:7;:5;:7::i;:::-;:23;;;57889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72480:5:::1;72453:24;:32;;;;;;;;;;;;:::i;:::-;;72377:116:::0;:::o;45263:211::-;45324:7;45445:21;:12;:19;:21::i;:::-;45438:28;;45263:211;:::o;66207:34::-;;;;;;;;;;;;;:::o;47145:305::-;47306:41;47325:12;:10;:12::i;:::-;47339:7;47306:18;:41::i;:::-;47298:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;47414:28;47424:4;47430:2;47434:7;47414:9;:28::i;:::-;47145:305;;;:::o;72700:79::-;57908:12;:10;:12::i;:::-;57897:23;;:7;:5;:7::i;:::-;:23;;;57889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72766:5:::1;72749:14;;:22;;;;;;;;;;;;;;;;;;72700:79::o:0;45025:162::-;45122:7;45149:30;45173:5;45149:13;:20;45163:5;45149:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;45142:37;;45025:162;;;;:::o;72616:78::-;57908:12;:10;:12::i;:::-;57897:23;;:7;:5;:7::i;:::-;:23;;;57889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72682:4:::1;72665:14;;:21;;;;;;;;;;;;;;;;;;72616:78::o:0;47521:151::-;47625:39;47642:4;47648:2;47652:7;47625:39;;;;;;;;;;;;:16;:39::i;:::-;47521:151;;;:::o;45551:172::-;45626:7;45647:15;45668:22;45684:5;45668:12;:15;;:22;;;;:::i;:::-;45646:44;;;45708:7;45701:14;;;45551:172;;;:::o;70958:766::-;71017:7;66195:5;71049:3;:18;71041:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;71118:5;71111:3;:12;71107:600;;;71147:20;71140:27;;;;71107:600;71196:5;71189:3;:12;71185:522;;71225:19;71218:26;;;;71185:522;71273:5;71266:3;:12;71262:445;;71349:8;71341:2;71332:5;71326:3;:11;;;;:::i;:::-;71325:18;;;;:::i;:::-;71324:35;;;;:::i;:::-;71302:18;:58;;;;:::i;:::-;71295:65;;;;71262:445;71389:5;71382:3;:12;71378:329;;71465:15;71457:3;71448:5;71442:3;:11;;;;:::i;:::-;71441:19;;;;:::i;:::-;71440:41;;;;:::i;:::-;71418:18;:64;;;;:::i;:::-;71411:71;;;;71378:329;71511:4;71504:3;:11;71500:207;;71585:15;71577:3;71569:4;71563:3;:10;;;;:::i;:::-;71562:18;;;;:::i;:::-;71561:40;;;;:::i;:::-;71539:18;:63;;;;:::i;:::-;71532:70;;;;71500:207;71678:15;71670:3;71664;:9;;;;:::i;:::-;71663:31;;;;:::i;:::-;71642:17;:53;;;;:::i;:::-;71635:60;;70958:766;;;;:::o;72505:99::-;57908:12;:10;:12::i;:::-;57897:23;;:7;:5;:7::i;:::-;:23;;;57889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72576:20:::1;72588:7;72576:11;:20::i;:::-;72505:99:::0;:::o;43225:177::-;43297:7;43324:70;43341:7;43324:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;43317:77;;43225:177;;;:::o;71735:596::-;66195:5;71812:13;:11;:13::i;:::-;:28;71804:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71900:1;71886:11;:15;:36;;;;;71920:2;71905:11;:17;;71886:36;71878:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;66195:5;71990:30;72008:11;71990:13;:11;:13::i;:::-;:17;;:30;;;;:::i;:::-;:46;;71982:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;72093:33;72114:11;72093:16;:14;:16::i;:::-;:20;;:33;;;;:::i;:::-;72080:9;:46;;72072:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;72184:6;72179:143;72200:11;72196:1;:15;72179:143;;;72233:14;72250:13;:11;:13::i;:::-;72233:30;;72278:32;72288:10;72300:9;72278;:32::i;:::-;72179:143;72213:3;;;;;:::i;:::-;;;;72179:143;;;;71735:596;:::o;44844:97::-;44892:13;44925:8;44918:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44844:97;:::o;42930:221::-;43002:7;43047:1;43030:19;;:5;:19;;;;43022:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43114:29;:13;:20;43128:5;43114:20;;;;;;;;;;;;;;;:27;:29::i;:::-;43107:36;;42930:221;;;:::o;58328:148::-;57908:12;:10;:12::i;:::-;57897:23;;:7;:5;:7::i;:::-;:23;;;57889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58435:1:::1;58398:40;;58419:6;;;;;;;;;;;58398:40;;;;;;;;;;;;58466:1;58449:6;;:19;;;;;;;;;;;;;;;;;;58328:148::o:0;69431:540::-;69492:16;69522:18;69543:17;69553:6;69543:9;:17::i;:::-;69522:38;;69589:1;69575:10;:15;69571:393;;;69666:1;69652:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69645:23;;;;;69571:393;69701:23;69741:10;69727:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69701:51;;69767:13;69795:130;69819:10;69811:5;:18;69795:130;;;69875:34;69895:6;69903:5;69875:19;:34::i;:::-;69859:6;69866:5;69859:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;69831:7;;;;;:::i;:::-;;;;69795:130;;;69946:6;69939:13;;;;;69431:540;;;;:::o;72797:123::-;57908:12;:10;:12::i;:::-;57897:23;;:7;:5;:7::i;:::-;:23;;;57889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72872:10:::1;72864:24;;:47;72889:21;72864:47;;;;;;;;;;;;;;;;;;;;;;;72856:56;;;::::0;::::1;;72797:123::o:0;57677:87::-;57723:7;57750:6;;;;;;;;;;;57743:13;;57677:87;:::o;43638:104::-;43694:13;43727:7;43720:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43638:104;:::o;46548:295::-;46663:12;:10;:12::i;:::-;46651:24;;:8;:24;;;;46643:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46763:8;46718:18;:32;46737:12;:10;:12::i;:::-;46718:32;;;;;;;;;;;;;;;:42;46751:8;46718:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46816:8;46787:48;;46802:12;:10;:12::i;:::-;46787:48;;;46826:8;46787:48;;;;;;:::i;:::-;;;;;;;;46548:295;;:::o;66159:41::-;66195:5;66159:41;:::o;47743:285::-;47875:41;47894:12;:10;:12::i;:::-;47908:7;47875:18;:41::i;:::-;47867:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;47981:39;47995:4;48001:2;48005:7;48014:5;47981:13;:39::i;:::-;47743:285;;;;:::o;43813:792::-;43886:13;43920:16;43928:7;43920;:16::i;:::-;43912:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44001:23;44027:10;:19;44038:7;44027:19;;;;;;;;;;;44001:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44057:18;44078:9;:7;:9::i;:::-;44057:30;;44185:1;44169:4;44163:18;:23;44159:72;;;44210:9;44203:16;;;;;;44159:72;44361:1;44341:9;44335:23;:27;44331:108;;;44410:4;44416:9;44393:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44379:48;;;;;;44331:108;44571:4;44577:18;:7;:16;:18::i;:::-;44554:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44540:57;;;;43813:792;;;;:::o;69983:962::-;70030:7;70076:4;70058:22;;:14;;;;;;;;;;;:22;;;70050:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;66195:5;70125:13;:11;:13::i;:::-;:28;70117:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70193:18;70214:13;:11;:13::i;:::-;70193:34;;70259:5;70242:13;:22;70238:690;;;70288:20;70281:27;;;;;70238:690;70347:5;70330:13;:22;70326:602;;70376:19;70369:26;;;;;70326:602;70434:5;70417:13;:22;70413:515;;70520:8;70512:2;70503:5;70487:13;:21;;;;:::i;:::-;70486:28;;;;:::i;:::-;70485:45;;;;:::i;:::-;70463:18;:68;;;;:::i;:::-;70456:75;;;;;70413:515;70570:5;70553:13;:22;70549:379;;70656:15;70648:3;70639:5;70623:13;:21;;;;:::i;:::-;70622:29;;;;:::i;:::-;70621:51;;;;:::i;:::-;70599:18;:74;;;;:::i;:::-;70592:81;;;;;70549:379;70712:4;70695:13;:21;70691:237;;70796:15;70788:3;70780:4;70764:13;:20;;;;:::i;:::-;70763:28;;;;:::i;:::-;70762:50;;;;:::i;:::-;70740:18;:73;;;;:::i;:::-;70733:80;;;;;70691:237;70899:15;70891:3;70875:13;:19;;;;:::i;:::-;70874:41;;;;:::i;:::-;70853:17;:63;;;;:::i;:::-;70846:70;;;69983:962;;:::o;46914:164::-;47011:4;47035:18;:25;47054:5;47035:25;;;;;;;;;;;;;;;:35;47061:8;47035:35;;;;;;;;;;;;;;;;;;;;;;;;;47028:42;;46914:164;;;;:::o;66347:43::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58631:244::-;57908:12;:10;:12::i;:::-;57897:23;;:7;:5;:7::i;:::-;:23;;;57889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58740:1:::1;58720:22;;:8;:22;;;;58712:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58830:8;58801:38;;58822:6;;;;;;;;;;;58801:38;;;;;;;;;;;;58859:8;58850:6;;:17;;;;;;;;;;;;;;;;;;58631:244:::0;:::o;20592:131::-;20659:4;20683:32;20688:3;:10;;20708:5;20700:14;;20683:4;:32::i;:::-;20676:39;;20592:131;;;;:::o;9422:185::-;9511:4;9535:64;9540:3;:10;;9560:3;9552:12;;9590:5;9574:23;;9566:32;;9535:4;:64::i;:::-;9528:71;;9422:185;;;;;:::o;22764:422::-;22824:4;23032:12;23143:7;23131:20;23123:28;;23177:1;23170:4;:8;23163:15;;;22764:422;;;:::o;9999:151::-;10083:4;10107:35;10117:3;:10;;10137:3;10129:12;;10107:9;:35::i;:::-;10100:42;;9999:151;;;;:::o;49495:127::-;49560:4;49584:30;49606:7;49584:12;:21;;:30;;;;:::i;:::-;49577:37;;49495:127;;;:::o;40712:98::-;40765:7;40792:10;40785:17;;40712:98;:::o;55641:183::-;55734:2;55707:15;:24;55723:7;55707:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;55790:7;55786:2;55752:46;;55761:23;55776:7;55761:14;:23::i;:::-;55752:46;;;;;;;;;;;;55641:183;;:::o;10238:123::-;10307:7;10334:19;10342:3;:10;;10334:7;:19::i;:::-;10327:26;;10238:123;;;:::o;49789:355::-;49882:4;49907:16;49915:7;49907;:16::i;:::-;49899:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49983:13;49999:23;50014:7;49999:14;:23::i;:::-;49983:39;;50052:5;50041:16;;:7;:16;;;:51;;;;50085:7;50061:31;;:20;50073:7;50061:11;:20::i;:::-;:31;;;50041:51;:94;;;;50096:39;50120:5;50127:7;50096:23;:39::i;:::-;50041:94;50033:103;;;49789:355;;;;:::o;52925:599::-;53050:4;53023:31;;:23;53038:7;53023:14;:23::i;:::-;:31;;;53015:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;53151:1;53137:16;;:2;:16;;;;53129:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53207:39;53228:4;53234:2;53238:7;53207:20;:39::i;:::-;53311:29;53328:1;53332:7;53311:8;:29::i;:::-;53353:35;53380:7;53353:13;:19;53367:4;53353:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;53399:30;53421:7;53399:13;:17;53413:2;53399:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;53442:29;53459:7;53468:2;53442:12;:16;;:29;;;;;:::i;:::-;;53508:7;53504:2;53489:27;;53498:4;53489:27;;;;;;;;;;;;52925:599;;;:::o;21812:137::-;21883:7;21918:22;21922:3;:10;;21934:5;21918:3;:22::i;:::-;21910:31;;21903:38;;21812:137;;;;:::o;10700:236::-;10780:7;10789;10810:11;10823:13;10840:22;10844:3;:10;;10856:5;10840:3;:22::i;:::-;10809:53;;;;10889:3;10881:12;;10919:5;10911:14;;10873:55;;;;;;10700:236;;;;;:::o;54125:100::-;54209:8;54198;:19;;;;;;;;;;;;:::i;:::-;;54125:100;:::o;11986:213::-;12093:7;12144:44;12149:3;:10;;12169:3;12161:12;;12175;12144:4;:44::i;:::-;12136:53;;12113:78;;11986:213;;;;;:::o;61717:98::-;61775:7;61806:1;61802;:5;;;;:::i;:::-;61795:12;;61717:98;;;;:::o;62455:::-;62513:7;62544:1;62540;:5;;;;:::i;:::-;62533:12;;62455:98;;;;:::o;50487:110::-;50563:26;50573:2;50577:7;50563:26;;;;;;;;;;;;:9;:26::i;:::-;50487:110;;:::o;21354:114::-;21414:7;21441:19;21449:3;:10;;21441:7;:19::i;:::-;21434:26;;21354:114;;;:::o;48910:272::-;49024:28;49034:4;49040:2;49044:7;49024:9;:28::i;:::-;49071:48;49094:4;49100:2;49104:7;49113:5;49071:22;:48::i;:::-;49063:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;48910:272;;;;:::o;382:723::-;438:13;668:1;659:5;:10;655:53;;;686:10;;;;;;;;;;;;;;;;;;;;;655:53;718:12;733:5;718:20;;749:14;774:78;789:1;781:4;:9;774:78;;807:8;;;;;:::i;:::-;;;;838:2;830:10;;;;;:::i;:::-;;;774:78;;;862:19;894:6;884:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;862:39;;912:154;928:1;919:5;:10;912:154;;956:1;946:11;;;;;:::i;:::-;;;1023:2;1015:5;:10;;;;:::i;:::-;1002:2;:24;;;;:::i;:::-;989:39;;972:6;979;972:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1052:2;1043:11;;;;;:::i;:::-;;;912:154;;;1090:6;1076:21;;;;;382:723;;;;:::o;13962:414::-;14025:4;14047:21;14057:3;14062:5;14047:9;:21::i;:::-;14042:327;;14085:3;:11;;14102:5;14085:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14268:3;:11;;:18;;;;14246:3;:12;;:19;14259:5;14246:19;;;;;;;;;;;:40;;;;14308:4;14301:11;;;;14042:327;14352:5;14345:12;;13962:414;;;;;:::o;4097:692::-;4173:4;4289:16;4308:3;:12;;:17;4321:3;4308:17;;;;;;;;;;;;4289:36;;4354:1;4342:8;:13;4338:444;;;4409:3;:12;;4427:38;;;;;;;;4444:3;4427:38;;;;4457:5;4427:38;;;4409:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4624:3;:12;;:19;;;;4604:3;:12;;:17;4617:3;4604:17;;;;;;;;;;;:39;;;;4665:4;4658:11;;;;;4338:444;4738:5;4702:3;:12;;4726:1;4715:8;:12;;;;:::i;:::-;4702:26;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;:41;;;;4765:5;4758:12;;;4097:692;;;;;;:::o;6597:125::-;6668:4;6713:1;6692:3;:12;;:17;6705:3;6692:17;;;;;;;;;;;;:22;;6685:29;;6597:125;;;;:::o;6817:110::-;6873:7;6900:3;:12;;:19;;;;6893:26;;6817:110;;;:::o;56437:93::-;;;;:::o;20899:137::-;20969:4;20993:35;21001:3;:10;;21021:5;21013:14;;20993:7;:35::i;:::-;20986:42;;20899:137;;;;:::o;16850:204::-;16917:7;16966:5;16945:3;:11;;:18;;;;:26;16937:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17028:3;:11;;17040:5;17028:18;;;;;;;;;;;;;;;;;;;;;;;;17021:25;;16850:204;;;;:::o;7282:279::-;7349:7;7358;7408:5;7386:3;:12;;:19;;;;:27;7378:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7465:22;7490:3;:12;;7503:5;7490:19;;;;;;;;;;;;;;;;;;;;;;;;;;7465:44;;7528:5;:10;;;7540:5;:12;;;7520:33;;;;;7282:279;;;;;:::o;8779:319::-;8873:7;8893:16;8912:3;:12;;:17;8925:3;8912:17;;;;;;;;;;;;8893:36;;8960:1;8948:8;:13;;8963:12;8940:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9030:3;:12;;9054:1;9043:8;:12;;;;:::i;:::-;9030:26;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;9023:40;;;8779:319;;;;;:::o;50824:250::-;50920:18;50926:2;50930:7;50920:5;:18::i;:::-;50957:54;50988:1;50992:2;50996:7;51005:5;50957:22;:54::i;:::-;50949:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;50824:250;;;:::o;16397:109::-;16453:7;16480:3;:11;;:18;;;;16473:25;;16397:109;;;:::o;54790:843::-;54911:4;54937:15;:2;:13;;;:15::i;:::-;54933:693;;;54989:2;54973:36;;;55010:12;:10;:12::i;:::-;55024:4;55030:7;55039:5;54973:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54969:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55236:1;55219:6;:13;:18;55215:341;;;55262:60;;;;;;;;;;:::i;:::-;;;;;;;;55215:341;55506:6;55500:13;55491:6;55487:2;55483:15;55476:38;54969:602;55106:45;;;55096:55;;;:6;:55;;;;55089:62;;;;;54933:693;55610:4;55603:11;;54790:843;;;;;;;:::o;16182:129::-;16255:4;16302:1;16279:3;:12;;:19;16292:5;16279:19;;;;;;;;;;;;:24;;16272:31;;16182:129;;;;:::o;14552:1544::-;14618:4;14736:18;14757:3;:12;;:19;14770:5;14757:19;;;;;;;;;;;;14736:40;;14807:1;14793:10;:15;14789:1300;;15155:21;15192:1;15179:10;:14;;;;:::i;:::-;15155:38;;15208:17;15249:1;15228:3;:11;;:18;;;;:22;;;;:::i;:::-;15208:42;;15495:17;15515:3;:11;;15527:9;15515:22;;;;;;;;;;;;;;;;;;;;;;;;15495:42;;15661:9;15632:3;:11;;15644:13;15632:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;15780:1;15764:13;:17;;;;:::i;:::-;15738:3;:12;;:23;15751:9;15738:23;;;;;;;;;;;:43;;;;15890:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15985:3;:12;;:19;15998:5;15985:19;;;;;;;;;;;15978:26;;;16028:4;16021:11;;;;;;;;14789:1300;16072:5;16065:12;;;14552:1544;;;;;:::o;51410:404::-;51504:1;51490:16;;:2;:16;;;;51482:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51563:16;51571:7;51563;:16::i;:::-;51562:17;51554:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51625:45;51654:1;51658:2;51662:7;51625:20;:45::i;:::-;51683:30;51705:7;51683:13;:17;51697:2;51683:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;51726:29;51743:7;51752:2;51726:12;:16;;:29;;;;;:::i;:::-;;51798:7;51794:2;51773:33;;51790:1;51773:33;;;;;;;;;;;;51410:404;;:::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:366::-;;16372:67;16436:2;16431:3;16372:67;:::i;:::-;16365:74;;16448:93;16537:3;16448:93;:::i;:::-;16566:2;16561:3;16557:12;16550:19;;16355:220;;;:::o;16581:108::-;16658:24;16676:5;16658:24;:::i;:::-;16653:3;16646:37;16636:53;;:::o;16695:118::-;16782:24;16800:5;16782:24;:::i;:::-;16777:3;16770:37;16760:53;;:::o;16819:435::-;;17021:95;17112:3;17103:6;17021:95;:::i;:::-;17014:102;;17133:95;17224:3;17215:6;17133:95;:::i;:::-;17126:102;;17245:3;17238:10;;17003:251;;;;;:::o;17260:222::-;;17391:2;17380:9;17376:18;17368:26;;17404:71;17472:1;17461:9;17457:17;17448:6;17404:71;:::i;:::-;17358:124;;;;:::o;17488:640::-;;17721:3;17710:9;17706:19;17698:27;;17735:71;17803:1;17792:9;17788:17;17779:6;17735:71;:::i;:::-;17816:72;17884:2;17873:9;17869:18;17860:6;17816:72;:::i;:::-;17898;17966:2;17955:9;17951:18;17942:6;17898:72;:::i;:::-;18017:9;18011:4;18007:20;18002:2;17991:9;17987:18;17980:48;18045:76;18116:4;18107:6;18045:76;:::i;:::-;18037:84;;17688:440;;;;;;;:::o;18134:373::-;;18315:2;18304:9;18300:18;18292:26;;18364:9;18358:4;18354:20;18350:1;18339:9;18335:17;18328:47;18392:108;18495:4;18486:6;18392:108;:::i;:::-;18384:116;;18282:225;;;;:::o;18513:210::-;;18638:2;18627:9;18623:18;18615:26;;18651:65;18713:1;18702:9;18698:17;18689:6;18651:65;:::i;:::-;18605:118;;;;:::o;18729:313::-;;18880:2;18869:9;18865:18;18857:26;;18929:9;18923:4;18919:20;18915:1;18904:9;18900:17;18893:47;18957:78;19030:4;19021:6;18957:78;:::i;:::-;18949:86;;18847:195;;;;:::o;19048:419::-;;19252:2;19241:9;19237:18;19229:26;;19301:9;19295:4;19291:20;19287:1;19276:9;19272:17;19265:47;19329:131;19455:4;19329:131;:::i;:::-;19321:139;;19219:248;;;:::o;19473:419::-;;19677:2;19666:9;19662:18;19654:26;;19726:9;19720:4;19716:20;19712:1;19701:9;19697:17;19690:47;19754:131;19880:4;19754:131;:::i;:::-;19746:139;;19644:248;;;:::o;19898:419::-;;20102:2;20091:9;20087:18;20079:26;;20151:9;20145:4;20141:20;20137:1;20126:9;20122:17;20115:47;20179:131;20305:4;20179:131;:::i;:::-;20171:139;;20069:248;;;:::o;20323:419::-;;20527:2;20516:9;20512:18;20504:26;;20576:9;20570:4;20566:20;20562:1;20551:9;20547:17;20540:47;20604:131;20730:4;20604:131;:::i;:::-;20596:139;;20494:248;;;:::o;20748:419::-;;20952:2;20941:9;20937:18;20929:26;;21001:9;20995:4;20991:20;20987:1;20976:9;20972:17;20965:47;21029:131;21155:4;21029:131;:::i;:::-;21021:139;;20919:248;;;:::o;21173:419::-;;21377:2;21366:9;21362:18;21354:26;;21426:9;21420:4;21416:20;21412:1;21401:9;21397:17;21390:47;21454:131;21580:4;21454:131;:::i;:::-;21446:139;;21344:248;;;:::o;21598:419::-;;21802:2;21791:9;21787:18;21779:26;;21851:9;21845:4;21841:20;21837:1;21826:9;21822:17;21815:47;21879:131;22005:4;21879:131;:::i;:::-;21871:139;;21769:248;;;:::o;22023:419::-;;22227:2;22216:9;22212:18;22204:26;;22276:9;22270:4;22266:20;22262:1;22251:9;22247:17;22240:47;22304:131;22430:4;22304:131;:::i;:::-;22296:139;;22194:248;;;:::o;22448:419::-;;22652:2;22641:9;22637:18;22629:26;;22701:9;22695:4;22691:20;22687:1;22676:9;22672:17;22665:47;22729:131;22855:4;22729:131;:::i;:::-;22721:139;;22619:248;;;:::o;22873:419::-;;23077:2;23066:9;23062:18;23054:26;;23126:9;23120:4;23116:20;23112:1;23101:9;23097:17;23090:47;23154:131;23280:4;23154:131;:::i;:::-;23146:139;;23044:248;;;:::o;23298:419::-;;23502:2;23491:9;23487:18;23479:26;;23551:9;23545:4;23541:20;23537:1;23526:9;23522:17;23515:47;23579:131;23705:4;23579:131;:::i;:::-;23571:139;;23469:248;;;:::o;23723:419::-;;23927:2;23916:9;23912:18;23904:26;;23976:9;23970:4;23966:20;23962:1;23951:9;23947:17;23940:47;24004:131;24130:4;24004:131;:::i;:::-;23996:139;;23894:248;;;:::o;24148:419::-;;24352:2;24341:9;24337:18;24329:26;;24401:9;24395:4;24391:20;24387:1;24376:9;24372:17;24365:47;24429:131;24555:4;24429:131;:::i;:::-;24421:139;;24319:248;;;:::o;24573:419::-;;24777:2;24766:9;24762:18;24754:26;;24826:9;24820:4;24816:20;24812:1;24801:9;24797:17;24790:47;24854:131;24980:4;24854:131;:::i;:::-;24846:139;;24744:248;;;:::o;24998:419::-;;25202:2;25191:9;25187:18;25179:26;;25251:9;25245:4;25241:20;25237:1;25226:9;25222:17;25215:47;25279:131;25405:4;25279:131;:::i;:::-;25271:139;;25169:248;;;:::o;25423:419::-;;25627:2;25616:9;25612:18;25604:26;;25676:9;25670:4;25666:20;25662:1;25651:9;25647:17;25640:47;25704:131;25830:4;25704:131;:::i;:::-;25696:139;;25594:248;;;:::o;25848:419::-;;26052:2;26041:9;26037:18;26029:26;;26101:9;26095:4;26091:20;26087:1;26076:9;26072:17;26065:47;26129:131;26255:4;26129:131;:::i;:::-;26121:139;;26019:248;;;:::o;26273:419::-;;26477:2;26466:9;26462:18;26454:26;;26526:9;26520:4;26516:20;26512:1;26501:9;26497:17;26490:47;26554:131;26680:4;26554:131;:::i;:::-;26546:139;;26444:248;;;:::o;26698:419::-;;26902:2;26891:9;26887:18;26879:26;;26951:9;26945:4;26941:20;26937:1;26926:9;26922:17;26915:47;26979:131;27105:4;26979:131;:::i;:::-;26971:139;;26869:248;;;:::o;27123:419::-;;27327:2;27316:9;27312:18;27304:26;;27376:9;27370:4;27366:20;27362:1;27351:9;27347:17;27340:47;27404:131;27530:4;27404:131;:::i;:::-;27396:139;;27294:248;;;:::o;27548:419::-;;27752:2;27741:9;27737:18;27729:26;;27801:9;27795:4;27791:20;27787:1;27776:9;27772:17;27765:47;27829:131;27955:4;27829:131;:::i;:::-;27821:139;;27719:248;;;:::o;27973:419::-;;28177:2;28166:9;28162:18;28154:26;;28226:9;28220:4;28216:20;28212:1;28201:9;28197:17;28190:47;28254:131;28380:4;28254:131;:::i;:::-;28246:139;;28144:248;;;:::o;28398:222::-;;28529:2;28518:9;28514:18;28506:26;;28542:71;28610:1;28599:9;28595:17;28586:6;28542:71;:::i;:::-;28496:124;;;;:::o;28626:129::-;;28687:20;;:::i;:::-;28677:30;;28716:33;28744:4;28736:6;28716:33;:::i;:::-;28667:88;;;:::o;28761:75::-;;28827:2;28821:9;28811:19;;28801:35;:::o;28842:307::-;;28993:18;28985:6;28982:30;28979:2;;;29015:18;;:::i;:::-;28979:2;29053:29;29075:6;29053:29;:::i;:::-;29045:37;;29137:4;29131;29127:15;29119:23;;28908:241;;;:::o;29155:308::-;;29307:18;29299:6;29296:30;29293:2;;;29329:18;;:::i;:::-;29293:2;29367:29;29389:6;29367:29;:::i;:::-;29359:37;;29451:4;29445;29441:15;29433:23;;29222:241;;;:::o;29469:132::-;;29559:3;29551:11;;29589:4;29584:3;29580:14;29572:22;;29541:60;;;:::o;29607:114::-;;29708:5;29702:12;29692:22;;29681:40;;;:::o;29727:98::-;;29812:5;29806:12;29796:22;;29785:40;;;:::o;29831:99::-;;29917:5;29911:12;29901:22;;29890:40;;;:::o;29936:113::-;;30038:4;30033:3;30029:14;30021:22;;30011:38;;;:::o;30055:184::-;;30188:6;30183:3;30176:19;30228:4;30223:3;30219:14;30204:29;;30166:73;;;;:::o;30245:168::-;;30362:6;30357:3;30350:19;30402:4;30397:3;30393:14;30378:29;;30340:73;;;;:::o;30419:169::-;;30537:6;30532:3;30525:19;30577:4;30572:3;30568:14;30553:29;;30515:73;;;;:::o;30594:148::-;;30733:3;30718:18;;30708:34;;;;:::o;30748:305::-;;30807:20;30825:1;30807:20;:::i;:::-;30802:25;;30841:20;30859:1;30841:20;:::i;:::-;30836:25;;30995:1;30927:66;30923:74;30920:1;30917:81;30914:2;;;31001:18;;:::i;:::-;30914:2;31045:1;31042;31038:9;31031:16;;30792:261;;;;:::o;31059:185::-;;31116:20;31134:1;31116:20;:::i;:::-;31111:25;;31150:20;31168:1;31150:20;:::i;:::-;31145:25;;31189:1;31179:2;;31194:18;;:::i;:::-;31179:2;31236:1;31233;31229:9;31224:14;;31101:143;;;;:::o;31250:348::-;;31313:20;31331:1;31313:20;:::i;:::-;31308:25;;31347:20;31365:1;31347:20;:::i;:::-;31342:25;;31535:1;31467:66;31463:74;31460:1;31457:81;31452:1;31445:9;31438:17;31434:105;31431:2;;;31542:18;;:::i;:::-;31431:2;31590:1;31587;31583:9;31572:20;;31298:300;;;;:::o;31604:191::-;;31664:20;31682:1;31664:20;:::i;:::-;31659:25;;31698:20;31716:1;31698:20;:::i;:::-;31693:25;;31737:1;31734;31731:8;31728:2;;;31742:18;;:::i;:::-;31728:2;31787:1;31784;31780:9;31772:17;;31649:146;;;;:::o;31801:96::-;;31867:24;31885:5;31867:24;:::i;:::-;31856:35;;31846:51;;;:::o;31903:90::-;;31980:5;31973:13;31966:21;31955:32;;31945:48;;;:::o;31999:149::-;;32075:66;32068:5;32064:78;32053:89;;32043:105;;;:::o;32154:126::-;;32231:42;32224:5;32220:54;32209:65;;32199:81;;;:::o;32286:77::-;;32352:5;32341:16;;32331:32;;;:::o;32369:154::-;32453:6;32448:3;32443;32430:30;32515:1;32506:6;32501:3;32497:16;32490:27;32420:103;;;:::o;32529:307::-;32597:1;32607:113;32621:6;32618:1;32615:13;32607:113;;;32706:1;32701:3;32697:11;32691:18;32687:1;32682:3;32678:11;32671:39;32643:2;32640:1;32636:10;32631:15;;32607:113;;;32738:6;32735:1;32732:13;32729:2;;;32818:1;32809:6;32804:3;32800:16;32793:27;32729:2;32578:258;;;;:::o;32842:320::-;;32923:1;32917:4;32913:12;32903:22;;32970:1;32964:4;32960:12;32991:18;32981:2;;33047:4;33039:6;33035:17;33025:27;;32981:2;33109;33101:6;33098:14;33078:18;33075:38;33072:2;;;33128:18;;:::i;:::-;33072:2;32893:269;;;;:::o;33168:281::-;33251:27;33273:4;33251:27;:::i;:::-;33243:6;33239:40;33381:6;33369:10;33366:22;33345:18;33333:10;33330:34;33327:62;33324:2;;;33392:18;;:::i;:::-;33324:2;33432:10;33428:2;33421:22;33211:238;;;:::o;33455:233::-;;33517:24;33535:5;33517:24;:::i;:::-;33508:33;;33563:66;33556:5;33553:77;33550:2;;;33633:18;;:::i;:::-;33550:2;33680:1;33673:5;33669:13;33662:20;;33498:190;;;:::o;33694:176::-;;33743:20;33761:1;33743:20;:::i;:::-;33738:25;;33777:20;33795:1;33777:20;:::i;:::-;33772:25;;33816:1;33806:2;;33821:18;;:::i;:::-;33806:2;33862:1;33859;33855:9;33850:14;;33728:142;;;;:::o;33876:180::-;33924:77;33921:1;33914:88;34021:4;34018:1;34011:15;34045:4;34042:1;34035:15;34062:180;34110:77;34107:1;34100:88;34207:4;34204:1;34197:15;34231:4;34228:1;34221:15;34248:180;34296:77;34293:1;34286:88;34393:4;34390:1;34383:15;34417:4;34414:1;34407:15;34434:180;34482:77;34479:1;34472:88;34579:4;34576:1;34569:15;34603:4;34600:1;34593:15;34620:102;;34712:2;34708:7;34703:2;34696:5;34692:14;34688:28;34678:38;;34668:54;;;:::o;34728:221::-;34868:34;34864:1;34856:6;34852:14;34845:58;34937:4;34932:2;34924:6;34920:15;34913:29;34834:115;:::o;34955:237::-;35095:34;35091:1;35083:6;35079:14;35072:58;35164:20;35159:2;35151:6;35147:15;35140:45;35061:131;:::o;35198:225::-;35338:34;35334:1;35326:6;35322:14;35315:58;35407:8;35402:2;35394:6;35390:15;35383:33;35304:119;:::o;35429:178::-;35569:30;35565:1;35557:6;35553:14;35546:54;35535:72;:::o;35613:170::-;35753:22;35749:1;35741:6;35737:14;35730:46;35719:64;:::o;35789:223::-;35929:34;35925:1;35917:6;35913:14;35906:58;35998:6;35993:2;35985:6;35981:15;35974:31;35895:117;:::o;36018:175::-;36158:27;36154:1;36146:6;36142:14;36135:51;36124:69;:::o;36199:231::-;36339:34;36335:1;36327:6;36323:14;36316:58;36408:14;36403:2;36395:6;36391:15;36384:39;36305:125;:::o;36436:243::-;36576:34;36572:1;36564:6;36560:14;36553:58;36645:26;36640:2;36632:6;36628:15;36621:51;36542:137;:::o;36685:229::-;36825:34;36821:1;36813:6;36809:14;36802:58;36894:12;36889:2;36881:6;36877:15;36870:37;36791:123;:::o;36920:231::-;37060:34;37056:1;37048:6;37044:14;37037:58;37129:14;37124:2;37116:6;37112:15;37105:39;37026:125;:::o;37157:222::-;37297:34;37293:1;37285:6;37281:14;37274:58;37366:5;37361:2;37353:6;37349:15;37342:30;37263:116;:::o;37385:221::-;37525:34;37521:1;37513:6;37509:14;37502:58;37594:4;37589:2;37581:6;37577:15;37570:29;37491:115;:::o;37612:182::-;37752:34;37748:1;37740:6;37736:14;37729:58;37718:76;:::o;37800:231::-;37940:34;37936:1;37928:6;37924:14;37917:58;38009:14;38004:2;37996:6;37992:15;37985:39;37906:125;:::o;38037:182::-;38177:34;38173:1;38165:6;38161:14;38154:58;38143:76;:::o;38225:228::-;38365:34;38361:1;38353:6;38349:14;38342:58;38434:11;38429:2;38421:6;38417:15;38410:36;38331:122;:::o;38459:234::-;38599:34;38595:1;38587:6;38583:14;38576:58;38668:17;38663:2;38655:6;38651:15;38644:42;38565:128;:::o;38699:220::-;38839:34;38835:1;38827:6;38823:14;38816:58;38908:3;38903:2;38895:6;38891:15;38884:28;38805:114;:::o;38925:172::-;39065:24;39061:1;39053:6;39049:14;39042:48;39031:66;:::o;39103:236::-;39243:34;39239:1;39231:6;39227:14;39220:58;39312:19;39307:2;39299:6;39295:15;39288:44;39209:130;:::o;39345:169::-;39485:21;39481:1;39473:6;39469:14;39462:45;39451:63;:::o;39520:122::-;39593:24;39611:5;39593:24;:::i;:::-;39586:5;39583:35;39573:2;;39632:1;39629;39622:12;39573:2;39563:79;:::o;39648:116::-;39718:21;39733:5;39718:21;:::i;:::-;39711:5;39708:32;39698:2;;39754:1;39751;39744:12;39698:2;39688:76;:::o;39770:120::-;39842:23;39859:5;39842:23;:::i;:::-;39835:5;39832:34;39822:2;;39880:1;39877;39870:12;39822:2;39812:78;:::o;39896:122::-;39969:24;39987:5;39969:24;:::i;:::-;39962:5;39959:35;39949:2;;40008:1;40005;39998:12;39949:2;39939:79;:::o

Swarm Source

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