ETH Price: $2,871.02 (-5.91%)
Gas: 1 Gwei

Token

Bounty Games Round 2 (BOUNTYR2)
 

Overview

Max Total Supply

1,129 BOUNTYR2

Holders

356

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lenman.eth
Balance
1 BOUNTYR2
0x6329d4a63e9c698eb295351de3f9e0a9c6791775
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BountyGamesR2

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-08
*/

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/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.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
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;

            if (lastIndex != toDeleteIndex) {
                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] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // 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) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/contracts/utils/cryptography/draft-EIP712.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(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 from incorrect 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);

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: BountyGamesR2.sol


pragma solidity ^0.8.2;







contract BountyGamesR2 is ERC721, EIP712, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;
    using EnumerableSet for EnumerableSet.UintSet;

    Counters.Counter private _tokenIdCounter;
    address _signerAddress;

    string _baseUri;
    string _contractUri;

    uint256 _turnInFee = 0;
    uint256 _tMult = 5;

    mapping(uint256 => uint256) public batches;

    bool public canUnlock = true;
    uint256 public startSalesTimestamp = 1662660000;
    uint256 public endSalesTimestamp = 1662919200;

    mapping(address => uint256) public accountToMintedFreeTokens;
    mapping(address => EnumerableSet.UintSet) accountToLockedTokens;

    event Arrest(uint256 tokenId, address owner);
    event Release(uint256 tokenId, address owner);

    constructor()
        ERC721("Bounty Games Round 2", "BOUNTYR2")
        EIP712("BOUNTYR2", "1.0.0")
    {
        _contractUri = "ipfs:/QmPJLGsVyJCnEdUXetFnvtR5KH1TauF4Yey1d7HqAEQiSf";
        _baseUri = "https://dead-heads-api.herokuapp.com/api/bounty/";
        _signerAddress = 0x594CbAA41586785d80a6dbbee01F4662Eb09e0d0;

        batches[0] = 0;
        batches[1] = 20000000000000000;
        batches[2] = 40000000000000000;
        batches[3] = 60000000000000000;
        batches[5] = 75000000000000000;
        batches[10] = 125000000000000000;
        batches[20] = 225000000000000000;
        batches[50] = 500000000000000000;
    }

    function batchMint(uint batchCount, uint256 maxFreeMint, uint256 freeMintQuantity, bytes calldata signature) external  payable {
        
        require(isSalesActive(), "sale is not active");
        if(freeMintQuantity > 0){
            require(recoverAddress(msg.sender, maxFreeMint, signature) == _signerAddress, "user cannot free mint");
            require(accountToMintedFreeTokens[msg.sender] < maxFreeMint, "You already minted your free mint");
        }else{
            require(batchCount > 0, "You must choose a quantity");
        }
        
        uint price = batches[batchCount];
        require(price > 0 || batchCount == 0, "Invalid batch");
        require(msg.value >= price, "ether sent is under price");

        if(freeMintQuantity > 0){
            accountToMintedFreeTokens[msg.sender] += freeMintQuantity;
        }

        for (uint256 i = 0; i < batchCount + freeMintQuantity; i++) {
            safeMint(msg.sender);
        }
    }


    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

    function isSalesActive() public view returns (bool) {
        return
            block.timestamp >= startSalesTimestamp &&
            block.timestamp <= endSalesTimestamp;
    }

    function setSalesDates(uint256 start, uint256 end) external onlyOwner {
        startSalesTimestamp = start;
        endSalesTimestamp = end;
    }

    function contractURI() public view returns (string memory) {
        return _contractUri;
    }
    
    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
    }

    function setContractURI(string memory newContractURI) external onlyOwner {
        _contractUri = newContractURI;
    }

    function setPrice(uint256 newBatchQuantity, uint256 newBatchPrice) external onlyOwner{
        batches[newBatchQuantity] = newBatchPrice;
    }

    function getTurnInFee() public view returns (uint256) {
        return _turnInFee;
    }

    function setTMult(uint256 newtMult) external onlyOwner {
        _tMult = newtMult;
    }

    function setTurnInFee() internal  {
        _turnInFee = address(this).balance / 1000 * _tMult;
    }  

    function setCanUnlock(bool newCanUnlock) external onlyOwner {
        canUnlock = newCanUnlock;
        setTurnInFee();
    }

    function arrest(uint256 tokenId) external payable {
        require(msg.value >= _turnInFee, "ether sent is under turn in price, try again");
        require(!canUnlock, "cannot arrest yet");

        address tokenOwner = ownerOf(tokenId);

        require(
            tokenOwner == msg.sender || msg.sender == owner(),
            "user does not own this token"
        );

        _transfer(tokenOwner, address(this), tokenId);

        accountToLockedTokens[tokenOwner].add(tokenId);

        emit Arrest(tokenId, tokenOwner);

        setTurnInFee();
    }

    function lockedTokensFromAccount(address accountAddress) external view returns (uint[] memory tokenIds) {
        uint amount = accountToLockedTokens[accountAddress].length();
        tokenIds = new uint[](amount);

        for (uint i = 0; i < amount; i++) {
            tokenIds[i] = accountToLockedTokens[accountAddress].at(i);
        }
    }

    function _hash(address account, uint maxFreeMints) internal view returns (bytes32) {
        return
            _hashTypedDataV4(
                keccak256(
                    abi.encode(
                        keccak256("NFT(uint256 maxFreeMints,address account)"),
                        maxFreeMints,
                        account
                    )
                )
            );
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return string(abi.encodePacked(_baseUri, tokenId.toString()));
    }

    function recoverAddress(address account, uint256 maxFreeMints, bytes calldata signature) public view returns (address) {
        return ECDSA.recover(_hash(account, maxFreeMints), signature);
    }

    function setSignerAddress(address signerAddress) external onlyOwner {
        _signerAddress = signerAddress;
    }

    function sendPrize(uint256 amount, address winner) external onlyOwner {
        require(payable(winner).send(amount));
    }

    function withdraw(uint256 amount) external onlyOwner {
        require(payable(msg.sender).send(amount));
    }
}

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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"Arrest","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"Release","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountToMintedFreeTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"arrest","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchCount","type":"uint256"},{"internalType":"uint256","name":"maxFreeMint","type":"uint256"},{"internalType":"uint256","name":"freeMintQuantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"batches","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canUnlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSalesTimestamp","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":"getTurnInFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"accountAddress","type":"address"}],"name":"lockedTokensFromAccount","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"maxFreeMints","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"recoverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"winner","type":"address"}],"name":"sendPrize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newCanUnlock","type":"bool"}],"name":"setCanUnlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBatchQuantity","type":"uint256"},{"internalType":"uint256","name":"newBatchPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"setSalesDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newtMult","type":"uint256"}],"name":"setTMult","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSalesTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040526000600b556005600c556001600e60006101000a81548160ff02191690831515021790555063631a2da0600f5563631e22206010553480156200004757600080fd5b506040518060400160405280600881526020017f424f554e545952320000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f312e302e300000000000000000000000000000000000000000000000000000008152506040518060400160405280601481526020017f426f756e74792047616d657320526f756e6420320000000000000000000000008152506040518060400160405280600881526020017f424f554e54595232000000000000000000000000000000000000000000000000815250816000908051906020019062000138929190620004ef565b50806001908051906020019062000151929190620004ef565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001bd818484620003e560201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508061012081815250505050505050620002296200021d6200042160201b60201c565b6200042960201b60201c565b6040518060600160405280603481526020016200549260349139600a90805190602001906200025a929190620004ef565b50604051806060016040528060308152602001620054c660309139600990805190602001906200028c929190620004ef565b5073594cbaa41586785d80a6dbbee01f4662eb09e0d0600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d60008081526020019081526020016000208190555066470de4df820000600d60006001815260200190815260200160002081905550668e1bc9bf040000600d6000600281526020019081526020016000208190555066d529ae9e860000600d6000600381526020019081526020016000208190555067010a741a46278000600d600060058152602001908152602001600020819055506701bc16d674ec8000600d6000600a81526020019081526020016000208190555067031f5c4ed2768000600d600060148152602001908152602001600020819055506706f05b59d3b20000600d60006032815260200190815260200160002081905550620006dc565b6000838383463060405160200162000402959493929190620005d2565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004fd9062000677565b90600052602060002090601f0160209004810192826200052157600085556200056d565b82601f106200053c57805160ff19168380011785556200056d565b828001600101855582156200056d579182015b828111156200056c5782518255916020019190600101906200054f565b5b5090506200057c919062000580565b5090565b5b808211156200059b57600081600090555060010162000581565b5090565b620005aa816200062f565b82525050565b620005bb8162000643565b82525050565b620005cc816200066d565b82525050565b600060a082019050620005e96000830188620005b0565b620005f86020830187620005b0565b620006076040830186620005b0565b620006166060830185620005c1565b6200062560808301846200059f565b9695505050505050565b60006200063c826200064d565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200069057607f821691505b60208210811415620006a757620006a6620006ad565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160c05160601c60e0516101005161012051614d636200072f6000396000612c2c01526000612c6e01526000612c4d01526000612b8201526000612bd801526000612c010152614d636000f3fe6080604052600436106102255760003560e01c806386ade05111610123578063c1586ad3116100ab578063e985e9c51161006f578063e985e9c51461081a578063f2fde38b14610857578063f41505d514610880578063f7d975771461089c578063fcfe93f8146108c557610225565b8063c1586ad314610731578063c87b56dd1461075c578063d155b50a14610799578063daa81cdd146107c4578063e8a3d485146107ef57610225565b8063a0e59e2e116100f2578063a0e59e2e1461064e578063a22cb46514610677578063b32c4d8d146106a0578063b679a893146106dd578063b88d4fde1461070857610225565b806386ade051146105a65780638da5cb5b146105cf578063938e3d7b146105fa57806395d89b411461062357610225565b806342842e0e116101b15780636992ebbc116101755780636992ebbc146104af5780637055831a146104ec57806370a0823114610529578063715018a61461056657806381b45f0a1461057d57610225565b806342842e0e146103c757806345ff9f61146103f0578063486ed8941461042d57806355f804b3146104495780636352211e1461047257610225565b8063095ea7b3116101f8578063095ea7b3146102f857806318160ddd1461032157806323b872dd1461034c578063284a3bf4146103755780632e1a7d4d1461039e57610225565b806301ffc9a71461022a578063046dc1661461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613494565b6108f0565b60405161025e9190613d09565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613258565b6109d2565b005b34801561029c57600080fd5b506102a5610a1e565b6040516102b29190613df3565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613527565b610ab0565b6040516102ef9190613c80565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906133c3565b610af6565b005b34801561032d57600080fd5b50610336610c0e565b6040516103439190614175565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906132bd565b610c1f565b005b34801561038157600080fd5b5061039c6004803603810190610397919061358c565b610c7f565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613527565b610c99565b005b3480156103d357600080fd5b506103ee60048036038101906103e991906132bd565b610ce2565b005b3480156103fc57600080fd5b5061041760048036038101906104129190613258565b610d02565b6040516104249190614175565b60405180910390f35b610447600480360381019061044291906135c8565b610d1a565b005b34801561045557600080fd5b50610470600480360381019061046b91906134e6565b611013565b005b34801561047e57600080fd5b5061049960048036038101906104949190613527565b611035565b6040516104a69190613c80565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613258565b6110e7565b6040516104e39190613ce7565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e91906133ff565b611260565b6040516105209190613c80565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613258565b6112c3565b60405161055d9190614175565b60405180910390f35b34801561057257600080fd5b5061057b61137b565b005b34801561058957600080fd5b506105a4600480360381019061059f919061346b565b61138f565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190613527565b6113bc565b005b3480156105db57600080fd5b506105e46113ce565b6040516105f19190613c80565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c91906134e6565b6113f8565b005b34801561062f57600080fd5b5061063861141a565b6040516106459190613df3565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613550565b6114ac565b005b34801561068357600080fd5b5061069e60048036038101906106999190613387565b6114f6565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190613527565b61150c565b6040516106d49190614175565b60405180910390f35b3480156106e957600080fd5b506106f2611524565b6040516106ff9190614175565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a919061330c565b61152e565b005b34801561073d57600080fd5b50610746611590565b6040516107539190613d09565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613527565b6115a3565b6040516107909190613df3565b60405180910390f35b3480156107a557600080fd5b506107ae61161f565b6040516107bb9190614175565b60405180910390f35b3480156107d057600080fd5b506107d9611625565b6040516107e69190613d09565b60405180910390f35b3480156107fb57600080fd5b50610804611640565b6040516108119190613df3565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613281565b6116d2565b60405161084e9190613d09565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613258565b611766565b005b61089a60048036038101906108959190613527565b6117ea565b005b3480156108a857600080fd5b506108c360048036038101906108be919061358c565b6119d9565b005b3480156108d157600080fd5b506108da6119fd565b6040516108e79190614175565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cb57506109ca82611a03565b5b9050919050565b6109da611a6d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610a2d906144b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a59906144b3565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b5050505050905090565b6000610abb82611aeb565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0182611035565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b69906140f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b91611b36565b73ffffffffffffffffffffffffffffffffffffffff161480610bc05750610bbf81610bba611b36565b6116d2565b5b610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690614035565b60405180910390fd5b610c098383611b3e565b505050565b6000610c1a6007611bf7565b905090565b610c30610c2a611b36565b82611c05565b610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690614135565b60405180910390fd5b610c7a838383611c9a565b505050565b610c87611a6d565b81600f81905550806010819055505050565b610ca1611a6d565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610cdf57600080fd5b50565b610cfd8383836040518060200160405280600081525061152e565b505050565b60116020528060005260406000206000915090505481565b610d22611625565b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890613fb5565b60405180910390fd5b6000831115610e8b57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610daf33868585611260565b73ffffffffffffffffffffffffffffffffffffffff1614610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90613ef5565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90614095565b60405180910390fd5b610ecf565b60008511610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590613f75565b60405180910390fd5b5b6000600d60008781526020019081526020016000205490506000811180610ef65750600086145b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614155565b60405180910390fd5b80341015610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613f15565b60405180910390fd5b6000841115610fd85783601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd091906142d1565b925050819055505b60005b8487610fe791906142d1565b81101561100a57610ff733611f01565b808061100290614516565b915050610fdb565b50505050505050565b61101b611a6d565b8060099080519060200190611031929190613032565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d5906140d5565b60405180910390fd5b80915050919050565b60606000611132601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f27565b90508067ffffffffffffffff811115611174577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111a25781602001602082028036833780820191505090505b50915060005b818110156112595761120181601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f3c90919063ffffffff16565b83828151811061123a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061125190614516565b9150506111a8565b5050919050565b60006112b961126f8686611f56565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611fb3565b9050949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613ff5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611383611a6d565b61138d6000611fda565b565b611397611a6d565b80600e60006101000a81548160ff0219169083151502179055506113b96120a0565b50565b6113c4611a6d565b80600c8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611400611a6d565b80600a9080519060200190611416929190613032565b5050565b606060018054611429906144b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611455906144b3565b80156114a25780601f10611477576101008083540402835291602001916114a2565b820191906000526020600020905b81548152906001019060200180831161148557829003601f168201915b5050505050905090565b6114b4611a6d565b8073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050506114f257600080fd5b5050565b611508611501611b36565b83836120c3565b5050565b600d6020528060005260406000206000915090505481565b6000600b54905090565b61153f611539611b36565b83611c05565b61157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590614135565b60405180910390fd5b61158a84848484612230565b50505050565b600e60009054906101000a900460ff1681565b60606115ae8261228c565b6115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e4906140b5565b60405180910390fd5b60096115f8836122f8565b604051602001611609929190613c25565b6040516020818303038152906040529050919050565b600f5481565b6000600f54421015801561163b57506010544211155b905090565b6060600a805461164f906144b3565b80601f016020809104026020016040519081016040528092919081815260200182805461167b906144b3565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176e611a6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d590613e75565b60405180910390fd5b6117e781611fda565b50565b600b5434101561182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690614115565b60405180910390fd5b600e60009054906101000a900460ff161561187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690613fd5565b60405180910390fd5b600061188a82611035565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806118f857506118c96113ce565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e90613e95565b60405180910390fd5b611942813084611c9a565b61199382601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124a590919063ffffffff16565b507f7b52bbbe360306767177cd4f2a326f413313d7fb5f41779e60ea722da35bf62382826040516119c5929190614190565b60405180910390a16119d56120a0565b5050565b6119e1611a6d565b80600d6000848152602001908152602001600020819055505050565b60105481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611a75611b36565b73ffffffffffffffffffffffffffffffffffffffff16611a936113ce565b73ffffffffffffffffffffffffffffffffffffffff1614611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090614075565b60405180910390fd5b565b611af48161228c565b611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a906140d5565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bb183611035565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080611c1183611035565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c535750611c5281856116d2565b5b80611c9157508373ffffffffffffffffffffffffffffffffffffffff16611c7984610ab0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cba82611035565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790613eb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790613f35565b60405180910390fd5b611d8b8383836124bf565b611d96600082611b3e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de691906143b2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3d91906142d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611efc8383836124c4565b505050565b6000611f0d6007611bf7565b9050611f1960076124c9565b611f2382826124df565b5050565b6000611f35826000016124fd565b9050919050565b6000611f4b836000018361250e565b60001c905092915050565b6000611fab7fce8e1ff1fe1872b513b0096bbc402db383de44a03a263ae3bf5c1f8fef60a9208385604051602001611f9093929190613d77565b6040516020818303038152906040528051906020012061255f565b905092915050565b6000806000611fc28585612579565b91509150611fcf816125cb565b819250505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600c546103e8476120b19190614327565b6120bb9190614358565b600b81905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990613f55565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122239190613d09565b60405180910390a3505050565b61223b848484611c9a565b6122478484848461291c565b612286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227d90613e55565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415612340576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124a0565b600082905060005b6000821461237257808061235b90614516565b915050600a8261236b9190614327565b9150612348565b60008167ffffffffffffffff8111156123b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123e65781602001600182028036833780820191505090505b5090505b60008514612499576001826123ff91906143b2565b9150600a8561240e9190614569565b603061241a91906142d1565b60f81b818381518110612456577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124929190614327565b94506123ea565b8093505050505b919050565b60006124b7836000018360001b612ab3565b905092915050565b505050565b505050565b6001816000016000828254019250508190555050565b6124f9828260405180602001604052806000815250612b23565b5050565b600081600001805490509050919050565b600082600001828154811061254c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600061257261256c612b7e565b83612c98565b9050919050565b6000806041835114156125bb5760008060006020860151925060408601519150606086015160001a90506125af87828585612ccb565b945094505050506125c4565b60006002915091505b9250929050565b60006004811115612605577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561263e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561264957612919565b60016004811115612683577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156126bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490613e15565b60405180910390fd5b60026004811115612737577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612770577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890613e35565b60405180910390fd5b600360048111156127eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612824577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90613f95565b60405180910390fd5b60048081111561289e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156128d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614015565b60405180910390fd5b5b50565b600061293d8473ffffffffffffffffffffffffffffffffffffffff16612dd8565b15612aa6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612966611b36565b8786866040518563ffffffff1660e01b81526004016129889493929190613c9b565b602060405180830381600087803b1580156129a257600080fd5b505af19250505080156129d357506040513d601f19601f820116820180604052508101906129d091906134bd565b60015b612a56573d8060008114612a03576040519150601f19603f3d011682016040523d82523d6000602084013e612a08565b606091505b50600081511415612a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4590613e55565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aab565b600190505b949350505050565b6000612abf8383612dfb565b612b18578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612b1d565b600090505b92915050565b612b2d8383612e1e565b612b3a600084848461291c565b612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090613e55565b60405180910390fd5b505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015612bfa57507f000000000000000000000000000000000000000000000000000000000000000046145b15612c27577f00000000000000000000000000000000000000000000000000000000000000009050612c95565b612c927f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612ff8565b90505b90565b60008282604051602001612cad929190613c49565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612d06576000600391509150612dcf565b601b8560ff1614158015612d1e5750601c8560ff1614155b15612d30576000600491509150612dcf565b600060018787878760405160008152602001604052604051612d559493929190613dae565b6020604051602081039080840390855afa158015612d77573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612dc657600060019250925050612dcf565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8590614055565b60405180910390fd5b612e978161228c565b15612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece90613ed5565b60405180910390fd5b612ee3600083836124bf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3391906142d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ff4600083836124c4565b5050565b60008383834630604051602001613013959493929190613d24565b6040516020818303038152906040528051906020012090509392505050565b82805461303e906144b3565b90600052602060002090601f01602090048101928261306057600085556130a7565b82601f1061307957805160ff19168380011785556130a7565b828001600101855582156130a7579182015b828111156130a657825182559160200191906001019061308b565b5b5090506130b491906130b8565b5090565b5b808211156130d15760008160009055506001016130b9565b5090565b60006130e86130e3846141de565b6141b9565b90508281526020810184848401111561310057600080fd5b61310b848285614471565b509392505050565b60006131266131218461420f565b6141b9565b90508281526020810184848401111561313e57600080fd5b613149848285614471565b509392505050565b60008135905061316081614cd1565b92915050565b60008135905061317581614ce8565b92915050565b60008135905061318a81614cff565b92915050565b60008151905061319f81614cff565b92915050565b60008083601f8401126131b757600080fd5b8235905067ffffffffffffffff8111156131d057600080fd5b6020830191508360018202830111156131e857600080fd5b9250929050565b600082601f83011261320057600080fd5b81356132108482602086016130d5565b91505092915050565b600082601f83011261322a57600080fd5b813561323a848260208601613113565b91505092915050565b60008135905061325281614d16565b92915050565b60006020828403121561326a57600080fd5b600061327884828501613151565b91505092915050565b6000806040838503121561329457600080fd5b60006132a285828601613151565b92505060206132b385828601613151565b9150509250929050565b6000806000606084860312156132d257600080fd5b60006132e086828701613151565b93505060206132f186828701613151565b925050604061330286828701613243565b9150509250925092565b6000806000806080858703121561332257600080fd5b600061333087828801613151565b945050602061334187828801613151565b935050604061335287828801613243565b925050606085013567ffffffffffffffff81111561336f57600080fd5b61337b878288016131ef565b91505092959194509250565b6000806040838503121561339a57600080fd5b60006133a885828601613151565b92505060206133b985828601613166565b9150509250929050565b600080604083850312156133d657600080fd5b60006133e485828601613151565b92505060206133f585828601613243565b9150509250929050565b6000806000806060858703121561341557600080fd5b600061342387828801613151565b945050602061343487828801613243565b935050604085013567ffffffffffffffff81111561345157600080fd5b61345d878288016131a5565b925092505092959194509250565b60006020828403121561347d57600080fd5b600061348b84828501613166565b91505092915050565b6000602082840312156134a657600080fd5b60006134b48482850161317b565b91505092915050565b6000602082840312156134cf57600080fd5b60006134dd84828501613190565b91505092915050565b6000602082840312156134f857600080fd5b600082013567ffffffffffffffff81111561351257600080fd5b61351e84828501613219565b91505092915050565b60006020828403121561353957600080fd5b600061354784828501613243565b91505092915050565b6000806040838503121561356357600080fd5b600061357185828601613243565b925050602061358285828601613151565b9150509250929050565b6000806040838503121561359f57600080fd5b60006135ad85828601613243565b92505060206135be85828601613243565b9150509250929050565b6000806000806000608086880312156135e057600080fd5b60006135ee88828901613243565b95505060206135ff88828901613243565b945050604061361088828901613243565b935050606086013567ffffffffffffffff81111561362d57600080fd5b613639888289016131a5565b92509250509295509295909350565b60006136548383613bf8565b60208301905092915050565b613669816143e6565b82525050565b600061367a82614265565b6136848185614293565b935061368f83614240565b8060005b838110156136c05781516136a78882613648565b97506136b283614286565b925050600181019050613693565b5085935050505092915050565b6136d6816143f8565b82525050565b6136e581614404565b82525050565b6136fc6136f782614404565b61455f565b82525050565b600061370d82614270565b61371781856142a4565b9350613727818560208601614480565b61373081614656565b840191505092915050565b60006137468261427b565b61375081856142b5565b9350613760818560208601614480565b61376981614656565b840191505092915050565b600061377f8261427b565b61378981856142c6565b9350613799818560208601614480565b80840191505092915050565b600081546137b2816144b3565b6137bc81866142c6565b945060018216600081146137d757600181146137e85761381b565b60ff1983168652818601935061381b565b6137f185614250565b60005b83811015613813578154818901526001820191506020810190506137f4565b838801955050505b50505092915050565b60006138316018836142b5565b915061383c82614667565b602082019050919050565b6000613854601f836142b5565b915061385f82614690565b602082019050919050565b60006138776032836142b5565b9150613882826146b9565b604082019050919050565b600061389a6026836142b5565b91506138a582614708565b604082019050919050565b60006138bd601c836142b5565b91506138c882614757565b602082019050919050565b60006138e06025836142b5565b91506138eb82614780565b604082019050919050565b6000613903601c836142b5565b915061390e826147cf565b602082019050919050565b60006139266002836142c6565b9150613931826147f8565b600282019050919050565b60006139496015836142b5565b915061395482614821565b602082019050919050565b600061396c6019836142b5565b91506139778261484a565b602082019050919050565b600061398f6024836142b5565b915061399a82614873565b604082019050919050565b60006139b26019836142b5565b91506139bd826148c2565b602082019050919050565b60006139d5601a836142b5565b91506139e0826148eb565b602082019050919050565b60006139f86022836142b5565b9150613a0382614914565b604082019050919050565b6000613a1b6012836142b5565b9150613a2682614963565b602082019050919050565b6000613a3e6011836142b5565b9150613a498261498c565b602082019050919050565b6000613a616029836142b5565b9150613a6c826149b5565b604082019050919050565b6000613a846022836142b5565b9150613a8f82614a04565b604082019050919050565b6000613aa7603e836142b5565b9150613ab282614a53565b604082019050919050565b6000613aca6020836142b5565b9150613ad582614aa2565b602082019050919050565b6000613aed6020836142b5565b9150613af882614acb565b602082019050919050565b6000613b106021836142b5565b9150613b1b82614af4565b604082019050919050565b6000613b33602f836142b5565b9150613b3e82614b43565b604082019050919050565b6000613b566018836142b5565b9150613b6182614b92565b602082019050919050565b6000613b796021836142b5565b9150613b8482614bbb565b604082019050919050565b6000613b9c602c836142b5565b9150613ba782614c0a565b604082019050919050565b6000613bbf602e836142b5565b9150613bca82614c59565b604082019050919050565b6000613be2600d836142b5565b9150613bed82614ca8565b602082019050919050565b613c018161445a565b82525050565b613c108161445a565b82525050565b613c1f81614464565b82525050565b6000613c3182856137a5565b9150613c3d8284613774565b91508190509392505050565b6000613c5482613919565b9150613c6082856136eb565b602082019150613c7082846136eb565b6020820191508190509392505050565b6000602082019050613c956000830184613660565b92915050565b6000608082019050613cb06000830187613660565b613cbd6020830186613660565b613cca6040830185613c07565b8181036060830152613cdc8184613702565b905095945050505050565b60006020820190508181036000830152613d01818461366f565b905092915050565b6000602082019050613d1e60008301846136cd565b92915050565b600060a082019050613d3960008301886136dc565b613d4660208301876136dc565b613d5360408301866136dc565b613d606060830185613c07565b613d6d6080830184613660565b9695505050505050565b6000606082019050613d8c60008301866136dc565b613d996020830185613c07565b613da66040830184613660565b949350505050565b6000608082019050613dc360008301876136dc565b613dd06020830186613c16565b613ddd60408301856136dc565b613dea60608301846136dc565b95945050505050565b60006020820190508181036000830152613e0d818461373b565b905092915050565b60006020820190508181036000830152613e2e81613824565b9050919050565b60006020820190508181036000830152613e4e81613847565b9050919050565b60006020820190508181036000830152613e6e8161386a565b9050919050565b60006020820190508181036000830152613e8e8161388d565b9050919050565b60006020820190508181036000830152613eae816138b0565b9050919050565b60006020820190508181036000830152613ece816138d3565b9050919050565b60006020820190508181036000830152613eee816138f6565b9050919050565b60006020820190508181036000830152613f0e8161393c565b9050919050565b60006020820190508181036000830152613f2e8161395f565b9050919050565b60006020820190508181036000830152613f4e81613982565b9050919050565b60006020820190508181036000830152613f6e816139a5565b9050919050565b60006020820190508181036000830152613f8e816139c8565b9050919050565b60006020820190508181036000830152613fae816139eb565b9050919050565b60006020820190508181036000830152613fce81613a0e565b9050919050565b60006020820190508181036000830152613fee81613a31565b9050919050565b6000602082019050818103600083015261400e81613a54565b9050919050565b6000602082019050818103600083015261402e81613a77565b9050919050565b6000602082019050818103600083015261404e81613a9a565b9050919050565b6000602082019050818103600083015261406e81613abd565b9050919050565b6000602082019050818103600083015261408e81613ae0565b9050919050565b600060208201905081810360008301526140ae81613b03565b9050919050565b600060208201905081810360008301526140ce81613b26565b9050919050565b600060208201905081810360008301526140ee81613b49565b9050919050565b6000602082019050818103600083015261410e81613b6c565b9050919050565b6000602082019050818103600083015261412e81613b8f565b9050919050565b6000602082019050818103600083015261414e81613bb2565b9050919050565b6000602082019050818103600083015261416e81613bd5565b9050919050565b600060208201905061418a6000830184613c07565b92915050565b60006040820190506141a56000830185613c07565b6141b26020830184613660565b9392505050565b60006141c36141d4565b90506141cf82826144e5565b919050565b6000604051905090565b600067ffffffffffffffff8211156141f9576141f8614627565b5b61420282614656565b9050602081019050919050565b600067ffffffffffffffff82111561422a57614229614627565b5b61423382614656565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142dc8261445a565b91506142e78361445a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431c5761431b61459a565b5b828201905092915050565b60006143328261445a565b915061433d8361445a565b92508261434d5761434c6145c9565b5b828204905092915050565b60006143638261445a565b915061436e8361445a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a7576143a661459a565b5b828202905092915050565b60006143bd8261445a565b91506143c88361445a565b9250828210156143db576143da61459a565b5b828203905092915050565b60006143f18261443a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561449e578082015181840152602081019050614483565b838111156144ad576000848401525b50505050565b600060028204905060018216806144cb57607f821691505b602082108114156144df576144de6145f8565b5b50919050565b6144ee82614656565b810181811067ffffffffffffffff8211171561450d5761450c614627565b5b80604052505050565b60006145218261445a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145545761455361459a565b5b600182019050919050565b6000819050919050565b60006145748261445a565b915061457f8361445a565b92508261458f5761458e6145c9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f7573657220646f6573206e6f74206f776e207468697320746f6b656e00000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f757365722063616e6e6f742066726565206d696e740000000000000000000000600082015250565b7f65746865722073656e7420697320756e64657220707269636500000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f75206d7573742063686f6f73652061207175616e74697479000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f73616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f63616e6e6f742061727265737420796574000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520616c7265616479206d696e74656420796f75722066726565206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f65746865722073656e7420697320756e646572207475726e20696e207072696360008201527f652c2074727920616761696e0000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e76616c696420626174636800000000000000000000000000000000000000600082015250565b614cda816143e6565b8114614ce557600080fd5b50565b614cf1816143f8565b8114614cfc57600080fd5b50565b614d088161440e565b8114614d1357600080fd5b50565b614d1f8161445a565b8114614d2a57600080fd5b5056fea26469706673582212202d1612d8f06ba212c2d9db7318e35960809593dc5b5199717ba908aecf8cab5964736f6c63430008020033697066733a2f516d504a4c477356794a436e456455586574466e767452354b48315461754634596579316437487141455169536668747470733a2f2f646561642d68656164732d6170692e6865726f6b756170702e636f6d2f6170692f626f756e74792f

Deployed Bytecode

0x6080604052600436106102255760003560e01c806386ade05111610123578063c1586ad3116100ab578063e985e9c51161006f578063e985e9c51461081a578063f2fde38b14610857578063f41505d514610880578063f7d975771461089c578063fcfe93f8146108c557610225565b8063c1586ad314610731578063c87b56dd1461075c578063d155b50a14610799578063daa81cdd146107c4578063e8a3d485146107ef57610225565b8063a0e59e2e116100f2578063a0e59e2e1461064e578063a22cb46514610677578063b32c4d8d146106a0578063b679a893146106dd578063b88d4fde1461070857610225565b806386ade051146105a65780638da5cb5b146105cf578063938e3d7b146105fa57806395d89b411461062357610225565b806342842e0e116101b15780636992ebbc116101755780636992ebbc146104af5780637055831a146104ec57806370a0823114610529578063715018a61461056657806381b45f0a1461057d57610225565b806342842e0e146103c757806345ff9f61146103f0578063486ed8941461042d57806355f804b3146104495780636352211e1461047257610225565b8063095ea7b3116101f8578063095ea7b3146102f857806318160ddd1461032157806323b872dd1461034c578063284a3bf4146103755780632e1a7d4d1461039e57610225565b806301ffc9a71461022a578063046dc1661461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613494565b6108f0565b60405161025e9190613d09565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613258565b6109d2565b005b34801561029c57600080fd5b506102a5610a1e565b6040516102b29190613df3565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613527565b610ab0565b6040516102ef9190613c80565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906133c3565b610af6565b005b34801561032d57600080fd5b50610336610c0e565b6040516103439190614175565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906132bd565b610c1f565b005b34801561038157600080fd5b5061039c6004803603810190610397919061358c565b610c7f565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613527565b610c99565b005b3480156103d357600080fd5b506103ee60048036038101906103e991906132bd565b610ce2565b005b3480156103fc57600080fd5b5061041760048036038101906104129190613258565b610d02565b6040516104249190614175565b60405180910390f35b610447600480360381019061044291906135c8565b610d1a565b005b34801561045557600080fd5b50610470600480360381019061046b91906134e6565b611013565b005b34801561047e57600080fd5b5061049960048036038101906104949190613527565b611035565b6040516104a69190613c80565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613258565b6110e7565b6040516104e39190613ce7565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e91906133ff565b611260565b6040516105209190613c80565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613258565b6112c3565b60405161055d9190614175565b60405180910390f35b34801561057257600080fd5b5061057b61137b565b005b34801561058957600080fd5b506105a4600480360381019061059f919061346b565b61138f565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190613527565b6113bc565b005b3480156105db57600080fd5b506105e46113ce565b6040516105f19190613c80565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c91906134e6565b6113f8565b005b34801561062f57600080fd5b5061063861141a565b6040516106459190613df3565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613550565b6114ac565b005b34801561068357600080fd5b5061069e60048036038101906106999190613387565b6114f6565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190613527565b61150c565b6040516106d49190614175565b60405180910390f35b3480156106e957600080fd5b506106f2611524565b6040516106ff9190614175565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a919061330c565b61152e565b005b34801561073d57600080fd5b50610746611590565b6040516107539190613d09565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613527565b6115a3565b6040516107909190613df3565b60405180910390f35b3480156107a557600080fd5b506107ae61161f565b6040516107bb9190614175565b60405180910390f35b3480156107d057600080fd5b506107d9611625565b6040516107e69190613d09565b60405180910390f35b3480156107fb57600080fd5b50610804611640565b6040516108119190613df3565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613281565b6116d2565b60405161084e9190613d09565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613258565b611766565b005b61089a60048036038101906108959190613527565b6117ea565b005b3480156108a857600080fd5b506108c360048036038101906108be919061358c565b6119d9565b005b3480156108d157600080fd5b506108da6119fd565b6040516108e79190614175565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cb57506109ca82611a03565b5b9050919050565b6109da611a6d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610a2d906144b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a59906144b3565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b5050505050905090565b6000610abb82611aeb565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0182611035565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b69906140f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b91611b36565b73ffffffffffffffffffffffffffffffffffffffff161480610bc05750610bbf81610bba611b36565b6116d2565b5b610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690614035565b60405180910390fd5b610c098383611b3e565b505050565b6000610c1a6007611bf7565b905090565b610c30610c2a611b36565b82611c05565b610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690614135565b60405180910390fd5b610c7a838383611c9a565b505050565b610c87611a6d565b81600f81905550806010819055505050565b610ca1611a6d565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610cdf57600080fd5b50565b610cfd8383836040518060200160405280600081525061152e565b505050565b60116020528060005260406000206000915090505481565b610d22611625565b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890613fb5565b60405180910390fd5b6000831115610e8b57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610daf33868585611260565b73ffffffffffffffffffffffffffffffffffffffff1614610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90613ef5565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90614095565b60405180910390fd5b610ecf565b60008511610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590613f75565b60405180910390fd5b5b6000600d60008781526020019081526020016000205490506000811180610ef65750600086145b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614155565b60405180910390fd5b80341015610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613f15565b60405180910390fd5b6000841115610fd85783601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd091906142d1565b925050819055505b60005b8487610fe791906142d1565b81101561100a57610ff733611f01565b808061100290614516565b915050610fdb565b50505050505050565b61101b611a6d565b8060099080519060200190611031929190613032565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d5906140d5565b60405180910390fd5b80915050919050565b60606000611132601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f27565b90508067ffffffffffffffff811115611174577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111a25781602001602082028036833780820191505090505b50915060005b818110156112595761120181601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f3c90919063ffffffff16565b83828151811061123a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061125190614516565b9150506111a8565b5050919050565b60006112b961126f8686611f56565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611fb3565b9050949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613ff5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611383611a6d565b61138d6000611fda565b565b611397611a6d565b80600e60006101000a81548160ff0219169083151502179055506113b96120a0565b50565b6113c4611a6d565b80600c8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611400611a6d565b80600a9080519060200190611416929190613032565b5050565b606060018054611429906144b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611455906144b3565b80156114a25780601f10611477576101008083540402835291602001916114a2565b820191906000526020600020905b81548152906001019060200180831161148557829003601f168201915b5050505050905090565b6114b4611a6d565b8073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050506114f257600080fd5b5050565b611508611501611b36565b83836120c3565b5050565b600d6020528060005260406000206000915090505481565b6000600b54905090565b61153f611539611b36565b83611c05565b61157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590614135565b60405180910390fd5b61158a84848484612230565b50505050565b600e60009054906101000a900460ff1681565b60606115ae8261228c565b6115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e4906140b5565b60405180910390fd5b60096115f8836122f8565b604051602001611609929190613c25565b6040516020818303038152906040529050919050565b600f5481565b6000600f54421015801561163b57506010544211155b905090565b6060600a805461164f906144b3565b80601f016020809104026020016040519081016040528092919081815260200182805461167b906144b3565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176e611a6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d590613e75565b60405180910390fd5b6117e781611fda565b50565b600b5434101561182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690614115565b60405180910390fd5b600e60009054906101000a900460ff161561187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690613fd5565b60405180910390fd5b600061188a82611035565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806118f857506118c96113ce565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e90613e95565b60405180910390fd5b611942813084611c9a565b61199382601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124a590919063ffffffff16565b507f7b52bbbe360306767177cd4f2a326f413313d7fb5f41779e60ea722da35bf62382826040516119c5929190614190565b60405180910390a16119d56120a0565b5050565b6119e1611a6d565b80600d6000848152602001908152602001600020819055505050565b60105481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611a75611b36565b73ffffffffffffffffffffffffffffffffffffffff16611a936113ce565b73ffffffffffffffffffffffffffffffffffffffff1614611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090614075565b60405180910390fd5b565b611af48161228c565b611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a906140d5565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bb183611035565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080611c1183611035565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c535750611c5281856116d2565b5b80611c9157508373ffffffffffffffffffffffffffffffffffffffff16611c7984610ab0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cba82611035565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790613eb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790613f35565b60405180910390fd5b611d8b8383836124bf565b611d96600082611b3e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de691906143b2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3d91906142d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611efc8383836124c4565b505050565b6000611f0d6007611bf7565b9050611f1960076124c9565b611f2382826124df565b5050565b6000611f35826000016124fd565b9050919050565b6000611f4b836000018361250e565b60001c905092915050565b6000611fab7fce8e1ff1fe1872b513b0096bbc402db383de44a03a263ae3bf5c1f8fef60a9208385604051602001611f9093929190613d77565b6040516020818303038152906040528051906020012061255f565b905092915050565b6000806000611fc28585612579565b91509150611fcf816125cb565b819250505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600c546103e8476120b19190614327565b6120bb9190614358565b600b81905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990613f55565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122239190613d09565b60405180910390a3505050565b61223b848484611c9a565b6122478484848461291c565b612286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227d90613e55565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415612340576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124a0565b600082905060005b6000821461237257808061235b90614516565b915050600a8261236b9190614327565b9150612348565b60008167ffffffffffffffff8111156123b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123e65781602001600182028036833780820191505090505b5090505b60008514612499576001826123ff91906143b2565b9150600a8561240e9190614569565b603061241a91906142d1565b60f81b818381518110612456577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124929190614327565b94506123ea565b8093505050505b919050565b60006124b7836000018360001b612ab3565b905092915050565b505050565b505050565b6001816000016000828254019250508190555050565b6124f9828260405180602001604052806000815250612b23565b5050565b600081600001805490509050919050565b600082600001828154811061254c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600061257261256c612b7e565b83612c98565b9050919050565b6000806041835114156125bb5760008060006020860151925060408601519150606086015160001a90506125af87828585612ccb565b945094505050506125c4565b60006002915091505b9250929050565b60006004811115612605577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561263e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561264957612919565b60016004811115612683577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156126bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490613e15565b60405180910390fd5b60026004811115612737577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612770577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890613e35565b60405180910390fd5b600360048111156127eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612824577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90613f95565b60405180910390fd5b60048081111561289e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156128d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614015565b60405180910390fd5b5b50565b600061293d8473ffffffffffffffffffffffffffffffffffffffff16612dd8565b15612aa6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612966611b36565b8786866040518563ffffffff1660e01b81526004016129889493929190613c9b565b602060405180830381600087803b1580156129a257600080fd5b505af19250505080156129d357506040513d601f19601f820116820180604052508101906129d091906134bd565b60015b612a56573d8060008114612a03576040519150601f19603f3d011682016040523d82523d6000602084013e612a08565b606091505b50600081511415612a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4590613e55565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aab565b600190505b949350505050565b6000612abf8383612dfb565b612b18578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612b1d565b600090505b92915050565b612b2d8383612e1e565b612b3a600084848461291c565b612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090613e55565b60405180910390fd5b505050565b60007f000000000000000000000000e500321353f213587f8776abaedbc53ac5b8d46973ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015612bfa57507f000000000000000000000000000000000000000000000000000000000000000146145b15612c27577f609847202ca0c278d0fc93af7f65fadc55e0f46c17ac8cfaa0e934d9d08be5d89050612c95565b612c927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f9aa7b051c308921fccf34bd0f51f2e2b36075b235f5762db2aa1f72ffde66bf37f06c015bd22b4c69690933c1058878ebdfef31f9aaae40bbe86d8a09fe1b2972c612ff8565b90505b90565b60008282604051602001612cad929190613c49565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612d06576000600391509150612dcf565b601b8560ff1614158015612d1e5750601c8560ff1614155b15612d30576000600491509150612dcf565b600060018787878760405160008152602001604052604051612d559493929190613dae565b6020604051602081039080840390855afa158015612d77573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612dc657600060019250925050612dcf565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8590614055565b60405180910390fd5b612e978161228c565b15612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece90613ed5565b60405180910390fd5b612ee3600083836124bf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3391906142d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ff4600083836124c4565b5050565b60008383834630604051602001613013959493929190613d24565b6040516020818303038152906040528051906020012090509392505050565b82805461303e906144b3565b90600052602060002090601f01602090048101928261306057600085556130a7565b82601f1061307957805160ff19168380011785556130a7565b828001600101855582156130a7579182015b828111156130a657825182559160200191906001019061308b565b5b5090506130b491906130b8565b5090565b5b808211156130d15760008160009055506001016130b9565b5090565b60006130e86130e3846141de565b6141b9565b90508281526020810184848401111561310057600080fd5b61310b848285614471565b509392505050565b60006131266131218461420f565b6141b9565b90508281526020810184848401111561313e57600080fd5b613149848285614471565b509392505050565b60008135905061316081614cd1565b92915050565b60008135905061317581614ce8565b92915050565b60008135905061318a81614cff565b92915050565b60008151905061319f81614cff565b92915050565b60008083601f8401126131b757600080fd5b8235905067ffffffffffffffff8111156131d057600080fd5b6020830191508360018202830111156131e857600080fd5b9250929050565b600082601f83011261320057600080fd5b81356132108482602086016130d5565b91505092915050565b600082601f83011261322a57600080fd5b813561323a848260208601613113565b91505092915050565b60008135905061325281614d16565b92915050565b60006020828403121561326a57600080fd5b600061327884828501613151565b91505092915050565b6000806040838503121561329457600080fd5b60006132a285828601613151565b92505060206132b385828601613151565b9150509250929050565b6000806000606084860312156132d257600080fd5b60006132e086828701613151565b93505060206132f186828701613151565b925050604061330286828701613243565b9150509250925092565b6000806000806080858703121561332257600080fd5b600061333087828801613151565b945050602061334187828801613151565b935050604061335287828801613243565b925050606085013567ffffffffffffffff81111561336f57600080fd5b61337b878288016131ef565b91505092959194509250565b6000806040838503121561339a57600080fd5b60006133a885828601613151565b92505060206133b985828601613166565b9150509250929050565b600080604083850312156133d657600080fd5b60006133e485828601613151565b92505060206133f585828601613243565b9150509250929050565b6000806000806060858703121561341557600080fd5b600061342387828801613151565b945050602061343487828801613243565b935050604085013567ffffffffffffffff81111561345157600080fd5b61345d878288016131a5565b925092505092959194509250565b60006020828403121561347d57600080fd5b600061348b84828501613166565b91505092915050565b6000602082840312156134a657600080fd5b60006134b48482850161317b565b91505092915050565b6000602082840312156134cf57600080fd5b60006134dd84828501613190565b91505092915050565b6000602082840312156134f857600080fd5b600082013567ffffffffffffffff81111561351257600080fd5b61351e84828501613219565b91505092915050565b60006020828403121561353957600080fd5b600061354784828501613243565b91505092915050565b6000806040838503121561356357600080fd5b600061357185828601613243565b925050602061358285828601613151565b9150509250929050565b6000806040838503121561359f57600080fd5b60006135ad85828601613243565b92505060206135be85828601613243565b9150509250929050565b6000806000806000608086880312156135e057600080fd5b60006135ee88828901613243565b95505060206135ff88828901613243565b945050604061361088828901613243565b935050606086013567ffffffffffffffff81111561362d57600080fd5b613639888289016131a5565b92509250509295509295909350565b60006136548383613bf8565b60208301905092915050565b613669816143e6565b82525050565b600061367a82614265565b6136848185614293565b935061368f83614240565b8060005b838110156136c05781516136a78882613648565b97506136b283614286565b925050600181019050613693565b5085935050505092915050565b6136d6816143f8565b82525050565b6136e581614404565b82525050565b6136fc6136f782614404565b61455f565b82525050565b600061370d82614270565b61371781856142a4565b9350613727818560208601614480565b61373081614656565b840191505092915050565b60006137468261427b565b61375081856142b5565b9350613760818560208601614480565b61376981614656565b840191505092915050565b600061377f8261427b565b61378981856142c6565b9350613799818560208601614480565b80840191505092915050565b600081546137b2816144b3565b6137bc81866142c6565b945060018216600081146137d757600181146137e85761381b565b60ff1983168652818601935061381b565b6137f185614250565b60005b83811015613813578154818901526001820191506020810190506137f4565b838801955050505b50505092915050565b60006138316018836142b5565b915061383c82614667565b602082019050919050565b6000613854601f836142b5565b915061385f82614690565b602082019050919050565b60006138776032836142b5565b9150613882826146b9565b604082019050919050565b600061389a6026836142b5565b91506138a582614708565b604082019050919050565b60006138bd601c836142b5565b91506138c882614757565b602082019050919050565b60006138e06025836142b5565b91506138eb82614780565b604082019050919050565b6000613903601c836142b5565b915061390e826147cf565b602082019050919050565b60006139266002836142c6565b9150613931826147f8565b600282019050919050565b60006139496015836142b5565b915061395482614821565b602082019050919050565b600061396c6019836142b5565b91506139778261484a565b602082019050919050565b600061398f6024836142b5565b915061399a82614873565b604082019050919050565b60006139b26019836142b5565b91506139bd826148c2565b602082019050919050565b60006139d5601a836142b5565b91506139e0826148eb565b602082019050919050565b60006139f86022836142b5565b9150613a0382614914565b604082019050919050565b6000613a1b6012836142b5565b9150613a2682614963565b602082019050919050565b6000613a3e6011836142b5565b9150613a498261498c565b602082019050919050565b6000613a616029836142b5565b9150613a6c826149b5565b604082019050919050565b6000613a846022836142b5565b9150613a8f82614a04565b604082019050919050565b6000613aa7603e836142b5565b9150613ab282614a53565b604082019050919050565b6000613aca6020836142b5565b9150613ad582614aa2565b602082019050919050565b6000613aed6020836142b5565b9150613af882614acb565b602082019050919050565b6000613b106021836142b5565b9150613b1b82614af4565b604082019050919050565b6000613b33602f836142b5565b9150613b3e82614b43565b604082019050919050565b6000613b566018836142b5565b9150613b6182614b92565b602082019050919050565b6000613b796021836142b5565b9150613b8482614bbb565b604082019050919050565b6000613b9c602c836142b5565b9150613ba782614c0a565b604082019050919050565b6000613bbf602e836142b5565b9150613bca82614c59565b604082019050919050565b6000613be2600d836142b5565b9150613bed82614ca8565b602082019050919050565b613c018161445a565b82525050565b613c108161445a565b82525050565b613c1f81614464565b82525050565b6000613c3182856137a5565b9150613c3d8284613774565b91508190509392505050565b6000613c5482613919565b9150613c6082856136eb565b602082019150613c7082846136eb565b6020820191508190509392505050565b6000602082019050613c956000830184613660565b92915050565b6000608082019050613cb06000830187613660565b613cbd6020830186613660565b613cca6040830185613c07565b8181036060830152613cdc8184613702565b905095945050505050565b60006020820190508181036000830152613d01818461366f565b905092915050565b6000602082019050613d1e60008301846136cd565b92915050565b600060a082019050613d3960008301886136dc565b613d4660208301876136dc565b613d5360408301866136dc565b613d606060830185613c07565b613d6d6080830184613660565b9695505050505050565b6000606082019050613d8c60008301866136dc565b613d996020830185613c07565b613da66040830184613660565b949350505050565b6000608082019050613dc360008301876136dc565b613dd06020830186613c16565b613ddd60408301856136dc565b613dea60608301846136dc565b95945050505050565b60006020820190508181036000830152613e0d818461373b565b905092915050565b60006020820190508181036000830152613e2e81613824565b9050919050565b60006020820190508181036000830152613e4e81613847565b9050919050565b60006020820190508181036000830152613e6e8161386a565b9050919050565b60006020820190508181036000830152613e8e8161388d565b9050919050565b60006020820190508181036000830152613eae816138b0565b9050919050565b60006020820190508181036000830152613ece816138d3565b9050919050565b60006020820190508181036000830152613eee816138f6565b9050919050565b60006020820190508181036000830152613f0e8161393c565b9050919050565b60006020820190508181036000830152613f2e8161395f565b9050919050565b60006020820190508181036000830152613f4e81613982565b9050919050565b60006020820190508181036000830152613f6e816139a5565b9050919050565b60006020820190508181036000830152613f8e816139c8565b9050919050565b60006020820190508181036000830152613fae816139eb565b9050919050565b60006020820190508181036000830152613fce81613a0e565b9050919050565b60006020820190508181036000830152613fee81613a31565b9050919050565b6000602082019050818103600083015261400e81613a54565b9050919050565b6000602082019050818103600083015261402e81613a77565b9050919050565b6000602082019050818103600083015261404e81613a9a565b9050919050565b6000602082019050818103600083015261406e81613abd565b9050919050565b6000602082019050818103600083015261408e81613ae0565b9050919050565b600060208201905081810360008301526140ae81613b03565b9050919050565b600060208201905081810360008301526140ce81613b26565b9050919050565b600060208201905081810360008301526140ee81613b49565b9050919050565b6000602082019050818103600083015261410e81613b6c565b9050919050565b6000602082019050818103600083015261412e81613b8f565b9050919050565b6000602082019050818103600083015261414e81613bb2565b9050919050565b6000602082019050818103600083015261416e81613bd5565b9050919050565b600060208201905061418a6000830184613c07565b92915050565b60006040820190506141a56000830185613c07565b6141b26020830184613660565b9392505050565b60006141c36141d4565b90506141cf82826144e5565b919050565b6000604051905090565b600067ffffffffffffffff8211156141f9576141f8614627565b5b61420282614656565b9050602081019050919050565b600067ffffffffffffffff82111561422a57614229614627565b5b61423382614656565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142dc8261445a565b91506142e78361445a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431c5761431b61459a565b5b828201905092915050565b60006143328261445a565b915061433d8361445a565b92508261434d5761434c6145c9565b5b828204905092915050565b60006143638261445a565b915061436e8361445a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a7576143a661459a565b5b828202905092915050565b60006143bd8261445a565b91506143c88361445a565b9250828210156143db576143da61459a565b5b828203905092915050565b60006143f18261443a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561449e578082015181840152602081019050614483565b838111156144ad576000848401525b50505050565b600060028204905060018216806144cb57607f821691505b602082108114156144df576144de6145f8565b5b50919050565b6144ee82614656565b810181811067ffffffffffffffff8211171561450d5761450c614627565b5b80604052505050565b60006145218261445a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145545761455361459a565b5b600182019050919050565b6000819050919050565b60006145748261445a565b915061457f8361445a565b92508261458f5761458e6145c9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f7573657220646f6573206e6f74206f776e207468697320746f6b656e00000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f757365722063616e6e6f742066726565206d696e740000000000000000000000600082015250565b7f65746865722073656e7420697320756e64657220707269636500000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f75206d7573742063686f6f73652061207175616e74697479000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f73616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f63616e6e6f742061727265737420796574000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520616c7265616479206d696e74656420796f75722066726565206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f65746865722073656e7420697320756e646572207475726e20696e207072696360008201527f652c2074727920616761696e0000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e76616c696420626174636800000000000000000000000000000000000000600082015250565b614cda816143e6565b8114614ce557600080fd5b50565b614cf1816143f8565b8114614cfc57600080fd5b50565b614d088161440e565b8114614d1357600080fd5b50565b614d1f8161445a565b8114614d2a57600080fd5b5056fea26469706673582212202d1612d8f06ba212c2d9db7318e35960809593dc5b5199717ba908aecf8cab5964736f6c63430008020033

Deployed Bytecode Sourcemap

66148:6271:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52895:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72044:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53822:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55335:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54852:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68796:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56035:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69098:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72303:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56442:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66711:60;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67621:985;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69365:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53533:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70793:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71837:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53264:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33431:103;;;;;;;;;;;;;:::i;:::-;;70070:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69858:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32783:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69478:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53991:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72169:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55578:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66517:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69760:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56698:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66568:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71572:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66603:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68908:182;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69256:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55804:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33689:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70206:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69607:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66657:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52895:305;52997:4;53049:25;53034:40;;;:11;:40;;;;:105;;;;53106:33;53091:48;;;:11;:48;;;;53034:105;:158;;;;53156:36;53180:11;53156:23;:36::i;:::-;53034:158;53014:178;;52895:305;;;:::o;72044:117::-;32669:13;:11;:13::i;:::-;72140::::1;72123:14;;:30;;;;;;;;;;;;;;;;;;72044:117:::0;:::o;53822:100::-;53876:13;53909:5;53902:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53822:100;:::o;55335:171::-;55411:7;55431:23;55446:7;55431:14;:23::i;:::-;55474:15;:24;55490:7;55474:24;;;;;;;;;;;;;;;;;;;;;55467:31;;55335:171;;;:::o;54852:417::-;54933:13;54949:23;54964:7;54949:14;:23::i;:::-;54933:39;;54997:5;54991:11;;:2;:11;;;;54983:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;55091:5;55075:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;55100:37;55117:5;55124:12;:10;:12::i;:::-;55100:16;:37::i;:::-;55075:62;55053:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;55240:21;55249:2;55253:7;55240:8;:21::i;:::-;54852:417;;;:::o;68796:104::-;68840:7;68867:25;:15;:23;:25::i;:::-;68860:32;;68796:104;:::o;56035:336::-;56230:41;56249:12;:10;:12::i;:::-;56263:7;56230:18;:41::i;:::-;56222:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;56335:28;56345:4;56351:2;56355:7;56335:9;:28::i;:::-;56035:336;;;:::o;69098:150::-;32669:13;:11;:13::i;:::-;69201:5:::1;69179:19;:27;;;;69237:3;69217:17;:23;;;;69098:150:::0;;:::o;72303:113::-;32669:13;:11;:13::i;:::-;72383:10:::1;72375:24;;:32;72400:6;72375:32;;;;;;;;;;;;;;;;;;;;;;;72367:41;;;::::0;::::1;;72303:113:::0;:::o;56442:185::-;56580:39;56597:4;56603:2;56607:7;56580:39;;;;;;;;;;;;:16;:39::i;:::-;56442:185;;;:::o;66711:60::-;;;;;;;;;;;;;;;;;:::o;67621:985::-;67777:15;:13;:15::i;:::-;67769:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;67848:1;67829:16;:20;67826:349;;;67927:14;;;;;;;;;;;67873:68;;:50;67888:10;67900:11;67913:9;;67873:14;:50::i;:::-;:68;;;67865:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;68030:11;67990:25;:37;68016:10;67990:37;;;;;;;;;;;;;;;;:51;67982:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;67826:349;;;68131:1;68118:10;:14;68110:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;67826:349;68195:10;68208:7;:19;68216:10;68208:19;;;;;;;;;;;;68195:32;;68254:1;68246:5;:9;:28;;;;68273:1;68259:10;:15;68246:28;68238:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;68324:5;68311:9;:18;;68303:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;68394:1;68375:16;:20;68372:108;;;68452:16;68411:25;:37;68437:10;68411:37;;;;;;;;;;;;;;;;:57;;;;;;;:::i;:::-;;;;;;;;68372:108;68497:9;68492:107;68529:16;68516:10;:29;;;;:::i;:::-;68512:1;:33;68492:107;;;68567:20;68576:10;68567:8;:20::i;:::-;68547:3;;;;;:::i;:::-;;;;68492:107;;;;67621:985;;;;;;:::o;69365:105::-;32669:13;:11;:13::i;:::-;69452:10:::1;69441:8;:21;;;;;;;;;;;;:::i;:::-;;69365:105:::0;:::o;53533:222::-;53605:7;53625:13;53641:7;:16;53649:7;53641:16;;;;;;;;;;;;;;;;;;;;;53625:32;;53693:1;53676:19;;:5;:19;;;;53668:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;53742:5;53735:12;;;53533:222;;;:::o;70793:353::-;70873:22;70908:11;70922:46;:21;:37;70944:14;70922:37;;;;;;;;;;;;;;;:44;:46::i;:::-;70908:60;;71001:6;70990:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70979:29;;71026:6;71021:118;71042:6;71038:1;:10;71021:118;;;71084:43;71125:1;71084:21;:37;71106:14;71084:37;;;;;;;;;;;;;;;:40;;:43;;;;:::i;:::-;71070:8;71079:1;71070:11;;;;;;;;;;;;;;;;;;;;;:57;;;;;71050:3;;;;;:::i;:::-;;;;71021:118;;;;70793:353;;;;:::o;71837:199::-;71947:7;71974:54;71988:28;71994:7;72003:12;71988:5;:28::i;:::-;72018:9;;71974:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:54::i;:::-;71967:61;;71837:199;;;;;;:::o;53264:207::-;53336:7;53381:1;53364:19;;:5;:19;;;;53356:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53447:9;:16;53457:5;53447:16;;;;;;;;;;;;;;;;53440:23;;53264:207;;;:::o;33431:103::-;32669:13;:11;:13::i;:::-;33496:30:::1;33523:1;33496:18;:30::i;:::-;33431:103::o:0;70070:128::-;32669:13;:11;:13::i;:::-;70153:12:::1;70141:9;;:24;;;;;;;;;;;;;;;;;;70176:14;:12;:14::i;:::-;70070:128:::0;:::o;69858:91::-;32669:13;:11;:13::i;:::-;69933:8:::1;69924:6;:17;;;;69858:91:::0;:::o;32783:87::-;32829:7;32856:6;;;;;;;;;;;32849:13;;32783:87;:::o;69478:121::-;32669:13;:11;:13::i;:::-;69577:14:::1;69562:12;:29;;;;;;;;;;;;:::i;:::-;;69478:121:::0;:::o;53991:104::-;54047:13;54080:7;54073:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53991:104;:::o;72169:126::-;32669:13;:11;:13::i;:::-;72266:6:::1;72258:20;;:28;72279:6;72258:28;;;;;;;;;;;;;;;;;;;;;;;72250:37;;;::::0;::::1;;72169:126:::0;;:::o;55578:155::-;55673:52;55692:12;:10;:12::i;:::-;55706:8;55716;55673:18;:52::i;:::-;55578:155;;:::o;66517:42::-;;;;;;;;;;;;;;;;;:::o;69760:90::-;69805:7;69832:10;;69825:17;;69760:90;:::o;56698:323::-;56872:41;56891:12;:10;:12::i;:::-;56905:7;56872:18;:41::i;:::-;56864:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;56975:38;56989:4;56995:2;56999:7;57008:4;56975:13;:38::i;:::-;56698:323;;;;:::o;66568:28::-;;;;;;;;;;;;;:::o;71572:257::-;71645:13;71679:16;71687:7;71679;:16::i;:::-;71671:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;71791:8;71801:18;:7;:16;:18::i;:::-;71774:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71760:61;;71572:257;;;:::o;66603:47::-;;;;:::o;68908:182::-;68954:4;69010:19;;68991:15;:38;;:91;;;;;69065:17;;69046:15;:36;;68991:91;68971:111;;68908:182;:::o;69256:97::-;69300:13;69333:12;69326:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69256:97;:::o;55804:164::-;55901:4;55925:18;:25;55944:5;55925:25;;;;;;;;;;;;;;;:35;55951:8;55925:35;;;;;;;;;;;;;;;;;;;;;;;;;55918:42;;55804:164;;;;:::o;33689:201::-;32669:13;:11;:13::i;:::-;33798:1:::1;33778:22;;:8;:22;;;;33770:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33854:28;33873:8;33854:18;:28::i;:::-;33689:201:::0;:::o;70206:579::-;70288:10;;70275:9;:23;;70267:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;70367:9;;;;;;;;;;;70366:10;70358:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;70411:18;70432:16;70440:7;70432;:16::i;:::-;70411:37;;70497:10;70483:24;;:10;:24;;;:49;;;;70525:7;:5;:7::i;:::-;70511:21;;:10;:21;;;70483:49;70461:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;70601:45;70611:10;70631:4;70638:7;70601:9;:45::i;:::-;70659:46;70697:7;70659:21;:33;70681:10;70659:33;;;;;;;;;;;;;;;:37;;:46;;;;:::i;:::-;;70723:27;70730:7;70739:10;70723:27;;;;;;;:::i;:::-;;;;;;;;70763:14;:12;:14::i;:::-;70206:579;;:::o;69607:145::-;32669:13;:11;:13::i;:::-;69731::::1;69703:7;:25;69711:16;69703:25;;;;;;;;;;;:41;;;;69607:145:::0;;:::o;66657:45::-;;;;:::o;45637:157::-;45722:4;45761:25;45746:40;;;:11;:40;;;;45739:47;;45637:157;;;:::o;32948:132::-;33023:12;:10;:12::i;:::-;33012:23;;:7;:5;:7::i;:::-;:23;;;33004:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32948:132::o;63310:135::-;63392:16;63400:7;63392;:16::i;:::-;63384:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;63310:135;:::o;31334:98::-;31387:7;31414:10;31407:17;;31334:98;:::o;62589:174::-;62691:2;62664:15;:24;62680:7;62664:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;62747:7;62743:2;62709:46;;62718:23;62733:7;62718:14;:23::i;:::-;62709:46;;;;;;;;;;;;62589:174;;:::o;13961:114::-;14026:7;14053;:14;;;14046:21;;13961:114;;;:::o;58822:264::-;58915:4;58932:13;58948:23;58963:7;58948:14;:23::i;:::-;58932:39;;59001:5;58990:16;;:7;:16;;;:52;;;;59010:32;59027:5;59034:7;59010:16;:32::i;:::-;58990:52;:87;;;;59070:7;59046:31;;:20;59058:7;59046:11;:20::i;:::-;:31;;;58990:87;58982:96;;;58822:264;;;;:::o;61845:625::-;62004:4;61977:31;;:23;61992:7;61977:14;:23::i;:::-;:31;;;61969:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;62083:1;62069:16;;:2;:16;;;;62061:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;62139:39;62160:4;62166:2;62170:7;62139:20;:39::i;:::-;62243:29;62260:1;62264:7;62243:8;:29::i;:::-;62304:1;62285:9;:15;62295:4;62285:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;62333:1;62316:9;:13;62326:2;62316:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;62364:2;62345:7;:16;62353:7;62345:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;62403:7;62399:2;62384:27;;62393:4;62384:27;;;;;;;;;;;;62424:38;62444:4;62450:2;62454:7;62424:19;:38::i;:::-;61845:625;;;:::o;68616:172::-;68666:15;68684:25;:15;:23;:25::i;:::-;68666:43;;68720:27;:15;:25;:27::i;:::-;68758:22;68768:2;68772:7;68758:9;:22::i;:::-;68616:172;;:::o;11620:114::-;11680:7;11707:19;11715:3;:10;;11707:7;:19::i;:::-;11700:26;;11620:114;;;:::o;12088:137::-;12159:7;12194:22;12198:3;:10;;12210:5;12194:3;:22::i;:::-;12186:31;;12179:38;;12088:137;;;;:::o;71154:410::-;71228:7;71268:288;71372:54;71453:12;71492:7;71335:187;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71303:238;;;;;;71268:16;:288::i;:::-;71248:308;;71154:410;;;;:::o;20907:231::-;20985:7;21006:17;21025:18;21047:27;21058:4;21064:9;21047:10;:27::i;:::-;21005:69;;;;21085:18;21097:5;21085:11;:18::i;:::-;21121:9;21114:16;;;;20907:231;;;;:::o;34050:191::-;34124:16;34143:6;;;;;;;;;;;34124:25;;34169:8;34160:6;;:17;;;;;;;;;;;;;;;;;;34224:8;34193:40;;34214:8;34193:40;;;;;;;;;;;;34050:191;;:::o;69957:103::-;70046:6;;70039:4;70015:21;:28;;;;:::i;:::-;:37;;;;:::i;:::-;70002:10;:50;;;;69957:103::o;62906:315::-;63061:8;63052:17;;:5;:17;;;;63044:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;63148:8;63110:18;:25;63129:5;63110:25;;;;;;;;;;;;;;;:35;63136:8;63110:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;63194:8;63172:41;;63187:5;63172:41;;;63204:8;63172:41;;;;;;:::i;:::-;;;;;;;;62906:315;;;:::o;57902:313::-;58058:28;58068:4;58074:2;58078:7;58058:9;:28::i;:::-;58105:47;58128:4;58134:2;58138:7;58147:4;58105:22;:47::i;:::-;58097:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;57902:313;;;;:::o;58528:127::-;58593:4;58645:1;58617:30;;:7;:16;58625:7;58617:16;;;;;;;;;;;;;;;;;;;;;:30;;;;58610:37;;58528:127;;;:::o;14984:723::-;15040:13;15270:1;15261:5;:10;15257:53;;;15288:10;;;;;;;;;;;;;;;;;;;;;15257:53;15320:12;15335:5;15320:20;;15351:14;15376:78;15391:1;15383:4;:9;15376:78;;15409:8;;;;;:::i;:::-;;;;15440:2;15432:10;;;;;:::i;:::-;;;15376:78;;;15464:19;15496:6;15486:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15464:39;;15514:154;15530:1;15521:5;:10;15514:154;;15558:1;15548:11;;;;;:::i;:::-;;;15625:2;15617:5;:10;;;;:::i;:::-;15604:2;:24;;;;:::i;:::-;15591:39;;15574:6;15581;15574:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;15654:2;15645:11;;;;;:::i;:::-;;;15514:154;;;15692:6;15678:21;;;;;14984:723;;;;:::o;10858:131::-;10925:4;10949:32;10954:3;:10;;10974:5;10966:14;;10949:4;:32::i;:::-;10942:39;;10858:131;;;;:::o;65434:126::-;;;;:::o;65945:125::-;;;;:::o;14083:127::-;14190:1;14172:7;:14;;;:19;;;;;;;;;;;14083:127;:::o;59428:110::-;59504:26;59514:2;59518:7;59504:26;;;;;;;;;;;;:9;:26::i;:::-;59428:110;;:::o;4522:109::-;4578:7;4605:3;:11;;:18;;;;4598:25;;4522:109;;;:::o;4985:120::-;5052:7;5079:3;:11;;5091:5;5079:18;;;;;;;;;;;;;;;;;;;;;;;;5072:25;;4985:120;;;;:::o;30481:167::-;30558:7;30585:55;30607:20;:18;:20::i;:::-;30629:10;30585:21;:55::i;:::-;30578:62;;30481:167;;;:::o;19358:747::-;19439:7;19448:12;19497:2;19477:9;:16;:22;19473:625;;;19516:9;19540;19564:7;19821:4;19810:9;19806:20;19800:27;19795:32;;19871:4;19860:9;19856:20;19850:27;19845:32;;19929:4;19918:9;19914:20;19908:27;19905:1;19900:36;19895:41;;19972:25;19983:4;19989:1;19992;19995;19972:10;:25::i;:::-;19965:32;;;;;;;;;19473:625;20046:1;20050:35;20030:56;;;;19358:747;;;;;;:::o;17629:643::-;17707:20;17698:29;;;;;;;;;;;;;;;;:5;:29;;;;;;;;;;;;;;;;;17694:571;;;17744:7;;17694:571;17805:29;17796:38;;;;;;;;;;;;;;;;:5;:38;;;;;;;;;;;;;;;;;17792:473;;;17851:34;;;;;;;;;;:::i;:::-;;;;;;;;17792:473;17916:35;17907:44;;;;;;;;;;;;;;;;:5;:44;;;;;;;;;;;;;;;;;17903:362;;;17968:41;;;;;;;;;;:::i;:::-;;;;;;;;17903:362;18040:30;18031:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;18027:238;;;18087:44;;;;;;;;;;:::i;:::-;;;;;;;;18027:238;18162:30;18153:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;18149:116;;;18209:44;;;;;;;;;;:::i;:::-;;;;;;;;18149:116;17629:643;;:::o;64009:853::-;64163:4;64184:15;:2;:13;;;:15::i;:::-;64180:675;;;64236:2;64220:36;;;64257:12;:10;:12::i;:::-;64271:4;64277:7;64286:4;64220:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64216:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64478:1;64461:6;:13;:18;64457:328;;;64504:60;;;;;;;;;;:::i;:::-;;;;;;;;64457:328;64735:6;64729:13;64720:6;64716:2;64712:15;64705:38;64216:584;64352:41;;;64342:51;;;:6;:51;;;;64335:58;;;;;64180:675;64839:4;64832:11;;64009:853;;;;;;;:::o;2211:414::-;2274:4;2296:21;2306:3;2311:5;2296:9;:21::i;:::-;2291:327;;2334:3;:11;;2351:5;2334:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2517:3;:11;;:18;;;;2495:3;:12;;:19;2508:5;2495:19;;;;;;;;;;;:40;;;;2557:4;2550:11;;;;2291:327;2601:5;2594:12;;2211:414;;;;;:::o;59765:319::-;59894:18;59900:2;59904:7;59894:5;:18::i;:::-;59945:53;59976:1;59980:2;59984:7;59993:4;59945:22;:53::i;:::-;59923:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;59765:319;;;:::o;29254:314::-;29307:7;29348:12;29331:29;;29339:4;29331:29;;;:66;;;;;29381:16;29364:13;:33;29331:66;29327:234;;;29421:24;29414:31;;;;29327:234;29485:64;29507:10;29519:12;29533:15;29485:21;:64::i;:::-;29478:71;;29254:314;;:::o;25821:196::-;25914:7;25980:15;25997:10;25951:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25941:68;;;;;;25934:75;;25821:196;;;;:::o;22359:1632::-;22490:7;22499:12;23424:66;23419:1;23411:10;;:79;23407:163;;;23523:1;23527:30;23507:51;;;;;;23407:163;23589:2;23584:1;:7;;;;:18;;;;;23600:2;23595:1;:7;;;;23584:18;23580:102;;;23635:1;23639:30;23619:51;;;;;;23580:102;23779:14;23796:24;23806:4;23812:1;23815;23818;23796:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23779:41;;23853:1;23835:20;;:6;:20;;;23831:103;;;23888:1;23892:29;23872:50;;;;;;;23831:103;23954:6;23962:20;23946:37;;;;;22359:1632;;;;;;;;:::o;35481:326::-;35541:4;35798:1;35776:7;:19;;;:23;35769:30;;35481:326;;;:::o;4307:129::-;4380:4;4427:1;4404:3;:12;;:19;4417:5;4404:19;;;;;;;;;;;;:24;;4397:31;;4307:129;;;;:::o;60420:439::-;60514:1;60500:16;;:2;:16;;;;60492:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;60573:16;60581:7;60573;:16::i;:::-;60572:17;60564:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60635:45;60664:1;60668:2;60672:7;60635:20;:45::i;:::-;60710:1;60693:9;:13;60703:2;60693:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;60741:2;60722:7;:16;60730:7;60722:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;60786:7;60782:2;60761:33;;60778:1;60761:33;;;;;;;;;;;;60807:44;60835:1;60839:2;60843:7;60807:19;:44::i;:::-;60420:439;;:::o;29576:263::-;29720:7;29768:8;29778;29788:11;29801:13;29824:4;29757:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29747:84;;;;;;29740:91;;29576:263;;;;;:::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:351::-;;;1411:3;1404:4;1396:6;1392:17;1388:27;1378:2;;1429:1;1426;1419:12;1378:2;1465:6;1452:20;1442:30;;1495:18;1487:6;1484:30;1481:2;;;1527:1;1524;1517:12;1481:2;1564:4;1556:6;1552:17;1540:29;;1618:3;1610:4;1602:6;1598:17;1588:8;1584:32;1581:41;1578:2;;;1635:1;1632;1625:12;1578:2;1368:277;;;;;:::o;1664:271::-;;1768:3;1761:4;1753:6;1749:17;1745:27;1735:2;;1786:1;1783;1776:12;1735:2;1826:6;1813:20;1851:78;1925:3;1917:6;1910:4;1902:6;1898:17;1851:78;:::i;:::-;1842:87;;1725:210;;;;;:::o;1955:273::-;;2060:3;2053:4;2045:6;2041:17;2037:27;2027:2;;2078:1;2075;2068:12;2027:2;2118:6;2105:20;2143:79;2218:3;2210:6;2203:4;2195:6;2191:17;2143:79;:::i;:::-;2134:88;;2017:211;;;;;:::o;2234:139::-;;2318:6;2305:20;2296:29;;2334:33;2361:5;2334:33;:::i;:::-;2286:87;;;;:::o;2379:262::-;;2487:2;2475:9;2466:7;2462:23;2458:32;2455:2;;;2503:1;2500;2493:12;2455:2;2546:1;2571:53;2616:7;2607:6;2596:9;2592:22;2571:53;:::i;:::-;2561:63;;2517:117;2445:196;;;;:::o;2647:407::-;;;2772:2;2760:9;2751:7;2747:23;2743:32;2740:2;;;2788:1;2785;2778:12;2740:2;2831:1;2856:53;2901:7;2892:6;2881:9;2877:22;2856:53;:::i;:::-;2846:63;;2802:117;2958:2;2984:53;3029:7;3020:6;3009:9;3005:22;2984:53;:::i;:::-;2974:63;;2929:118;2730:324;;;;;:::o;3060:552::-;;;;3202:2;3190:9;3181:7;3177:23;3173:32;3170:2;;;3218:1;3215;3208:12;3170:2;3261:1;3286:53;3331:7;3322:6;3311:9;3307:22;3286:53;:::i;:::-;3276:63;;3232:117;3388:2;3414:53;3459:7;3450:6;3439:9;3435:22;3414:53;:::i;:::-;3404:63;;3359:118;3516:2;3542:53;3587:7;3578:6;3567:9;3563:22;3542:53;:::i;:::-;3532:63;;3487:118;3160:452;;;;;:::o;3618:809::-;;;;;3786:3;3774:9;3765:7;3761:23;3757:33;3754:2;;;3803:1;3800;3793:12;3754:2;3846:1;3871:53;3916:7;3907:6;3896:9;3892:22;3871:53;:::i;:::-;3861:63;;3817:117;3973:2;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3944:118;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;4257:2;4246:9;4242:18;4229:32;4288:18;4280:6;4277:30;4274:2;;;4320:1;4317;4310:12;4274:2;4348:62;4402:7;4393:6;4382:9;4378:22;4348:62;:::i;:::-;4338:72;;4200:220;3744:683;;;;;;;:::o;4433:401::-;;;4555:2;4543:9;4534:7;4530:23;4526:32;4523:2;;;4571:1;4568;4561:12;4523:2;4614:1;4639:53;4684:7;4675:6;4664:9;4660:22;4639:53;:::i;:::-;4629:63;;4585:117;4741:2;4767:50;4809:7;4800:6;4789:9;4785:22;4767:50;:::i;:::-;4757:60;;4712:115;4513:321;;;;;:::o;4840:407::-;;;4965:2;4953:9;4944:7;4940:23;4936:32;4933:2;;;4981:1;4978;4971:12;4933:2;5024:1;5049:53;5094:7;5085:6;5074:9;5070:22;5049:53;:::i;:::-;5039:63;;4995:117;5151:2;5177:53;5222:7;5213:6;5202:9;5198:22;5177:53;:::i;:::-;5167:63;;5122:118;4923:324;;;;;:::o;5253:683::-;;;;;5414:2;5402:9;5393:7;5389:23;5385:32;5382:2;;;5430:1;5427;5420:12;5382:2;5473:1;5498:53;5543:7;5534:6;5523:9;5519:22;5498:53;:::i;:::-;5488:63;;5444:117;5600:2;5626:53;5671:7;5662:6;5651:9;5647:22;5626:53;:::i;:::-;5616:63;;5571:118;5756:2;5745:9;5741:18;5728:32;5787:18;5779:6;5776:30;5773:2;;;5819:1;5816;5809:12;5773:2;5855:64;5911:7;5902:6;5891:9;5887:22;5855:64;:::i;:::-;5837:82;;;;5699:230;5372:564;;;;;;;:::o;5942:256::-;;6047:2;6035:9;6026:7;6022:23;6018:32;6015:2;;;6063:1;6060;6053:12;6015:2;6106:1;6131:50;6173:7;6164:6;6153:9;6149:22;6131:50;:::i;:::-;6121:60;;6077:114;6005:193;;;;:::o;6204:260::-;;6311:2;6299:9;6290:7;6286:23;6282:32;6279:2;;;6327:1;6324;6317:12;6279:2;6370:1;6395:52;6439:7;6430:6;6419:9;6415:22;6395:52;:::i;:::-;6385:62;;6341:116;6269:195;;;;:::o;6470:282::-;;6588:2;6576:9;6567:7;6563:23;6559:32;6556:2;;;6604:1;6601;6594:12;6556:2;6647:1;6672:63;6727:7;6718:6;6707:9;6703:22;6672:63;:::i;:::-;6662:73;;6618:127;6546:206;;;;:::o;6758:375::-;;6876:2;6864:9;6855:7;6851:23;6847:32;6844:2;;;6892:1;6889;6882:12;6844:2;6963:1;6952:9;6948:17;6935:31;6993:18;6985:6;6982:30;6979:2;;;7025:1;7022;7015:12;6979:2;7053:63;7108:7;7099:6;7088:9;7084:22;7053:63;:::i;:::-;7043:73;;6906:220;6834:299;;;;:::o;7139:262::-;;7247:2;7235:9;7226:7;7222:23;7218:32;7215:2;;;7263:1;7260;7253:12;7215:2;7306:1;7331:53;7376:7;7367:6;7356:9;7352:22;7331:53;:::i;:::-;7321:63;;7277:117;7205:196;;;;:::o;7407:407::-;;;7532:2;7520:9;7511:7;7507:23;7503:32;7500:2;;;7548:1;7545;7538:12;7500:2;7591:1;7616:53;7661:7;7652:6;7641:9;7637:22;7616:53;:::i;:::-;7606:63;;7562:117;7718:2;7744:53;7789:7;7780:6;7769:9;7765:22;7744:53;:::i;:::-;7734:63;;7689:118;7490:324;;;;;:::o;7820:407::-;;;7945:2;7933:9;7924:7;7920:23;7916:32;7913:2;;;7961:1;7958;7951:12;7913:2;8004:1;8029:53;8074:7;8065:6;8054:9;8050:22;8029:53;:::i;:::-;8019:63;;7975:117;8131:2;8157:53;8202:7;8193:6;8182:9;8178:22;8157:53;:::i;:::-;8147:63;;8102:118;7903:324;;;;;:::o;8233:829::-;;;;;;8411:3;8399:9;8390:7;8386:23;8382:33;8379:2;;;8428:1;8425;8418:12;8379:2;8471:1;8496:53;8541:7;8532:6;8521:9;8517:22;8496:53;:::i;:::-;8486:63;;8442:117;8598:2;8624:53;8669:7;8660:6;8649:9;8645:22;8624:53;:::i;:::-;8614:63;;8569:118;8726:2;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8697:118;8882:2;8871:9;8867:18;8854:32;8913:18;8905:6;8902:30;8899:2;;;8945:1;8942;8935:12;8899:2;8981:64;9037:7;9028:6;9017:9;9013:22;8981:64;:::i;:::-;8963:82;;;;8825:230;8369:693;;;;;;;;:::o;9068:179::-;;9158:46;9200:3;9192:6;9158:46;:::i;:::-;9236:4;9231:3;9227:14;9213:28;;9148:99;;;;:::o;9253:118::-;9340:24;9358:5;9340:24;:::i;:::-;9335:3;9328:37;9318:53;;:::o;9407:732::-;;9555:54;9603:5;9555:54;:::i;:::-;9625:86;9704:6;9699:3;9625:86;:::i;:::-;9618:93;;9735:56;9785:5;9735:56;:::i;:::-;9814:7;9845:1;9830:284;9855:6;9852:1;9849:13;9830:284;;;9931:6;9925:13;9958:63;10017:3;10002:13;9958:63;:::i;:::-;9951:70;;10044:60;10097:6;10044:60;:::i;:::-;10034:70;;9890:224;9877:1;9874;9870:9;9865:14;;9830:284;;;9834:14;10130:3;10123:10;;9531:608;;;;;;;:::o;10145:109::-;10226:21;10241:5;10226:21;:::i;:::-;10221:3;10214:34;10204:50;;:::o;10260:118::-;10347:24;10365:5;10347:24;:::i;:::-;10342:3;10335:37;10325:53;;:::o;10384:157::-;10489:45;10509:24;10527:5;10509:24;:::i;:::-;10489:45;:::i;:::-;10484:3;10477:58;10467:74;;:::o;10547:360::-;;10661:38;10693:5;10661:38;:::i;:::-;10715:70;10778:6;10773:3;10715:70;:::i;:::-;10708:77;;10794:52;10839:6;10834:3;10827:4;10820:5;10816:16;10794:52;:::i;:::-;10871:29;10893:6;10871:29;:::i;:::-;10866:3;10862:39;10855:46;;10637:270;;;;;:::o;10913:364::-;;11029:39;11062:5;11029:39;:::i;:::-;11084:71;11148:6;11143:3;11084:71;:::i;:::-;11077:78;;11164:52;11209:6;11204:3;11197:4;11190:5;11186:16;11164:52;:::i;:::-;11241:29;11263:6;11241:29;:::i;:::-;11236:3;11232:39;11225:46;;11005:272;;;;;:::o;11283:377::-;;11417:39;11450:5;11417:39;:::i;:::-;11472:89;11554:6;11549:3;11472:89;:::i;:::-;11465:96;;11570:52;11615:6;11610:3;11603:4;11596:5;11592:16;11570:52;:::i;:::-;11647:6;11642:3;11638:16;11631:23;;11393:267;;;;;:::o;11690:845::-;;11830:5;11824:12;11859:36;11885:9;11859:36;:::i;:::-;11911:89;11993:6;11988:3;11911:89;:::i;:::-;11904:96;;12031:1;12020:9;12016:17;12047:1;12042:137;;;;12193:1;12188:341;;;;12009:520;;12042:137;12126:4;12122:9;12111;12107:25;12102:3;12095:38;12162:6;12157:3;12153:16;12146:23;;12042:137;;12188:341;12255:38;12287:5;12255:38;:::i;:::-;12315:1;12329:154;12343:6;12340:1;12337:13;12329:154;;;12417:7;12411:14;12407:1;12402:3;12398:11;12391:35;12467:1;12458:7;12454:15;12443:26;;12365:4;12362:1;12358:12;12353:17;;12329:154;;;12512:6;12507:3;12503:16;12496:23;;12195:334;;12009:520;;11797:738;;;;;;:::o;12541:366::-;;12704:67;12768:2;12763:3;12704:67;:::i;:::-;12697:74;;12780:93;12869:3;12780:93;:::i;:::-;12898:2;12893:3;12889:12;12882:19;;12687:220;;;:::o;12913:366::-;;13076:67;13140:2;13135:3;13076:67;:::i;:::-;13069:74;;13152:93;13241:3;13152:93;:::i;:::-;13270:2;13265:3;13261:12;13254:19;;13059:220;;;:::o;13285:366::-;;13448:67;13512:2;13507:3;13448:67;:::i;:::-;13441:74;;13524:93;13613:3;13524:93;:::i;:::-;13642:2;13637:3;13633:12;13626:19;;13431:220;;;:::o;13657:366::-;;13820:67;13884:2;13879:3;13820:67;:::i;:::-;13813:74;;13896:93;13985:3;13896:93;:::i;:::-;14014:2;14009:3;14005:12;13998:19;;13803:220;;;:::o;14029:366::-;;14192:67;14256:2;14251:3;14192:67;:::i;:::-;14185:74;;14268:93;14357:3;14268:93;:::i;:::-;14386:2;14381:3;14377:12;14370:19;;14175:220;;;:::o;14401:366::-;;14564:67;14628:2;14623:3;14564:67;:::i;:::-;14557:74;;14640:93;14729:3;14640:93;:::i;:::-;14758:2;14753:3;14749:12;14742:19;;14547:220;;;:::o;14773:366::-;;14936:67;15000:2;14995:3;14936:67;:::i;:::-;14929:74;;15012:93;15101:3;15012:93;:::i;:::-;15130:2;15125:3;15121:12;15114:19;;14919:220;;;:::o;15145:400::-;;15326:84;15408:1;15403:3;15326:84;:::i;:::-;15319:91;;15419:93;15508:3;15419:93;:::i;:::-;15537:1;15532:3;15528:11;15521:18;;15309:236;;;:::o;15551:366::-;;15714:67;15778:2;15773:3;15714:67;:::i;:::-;15707:74;;15790:93;15879:3;15790:93;:::i;:::-;15908:2;15903:3;15899:12;15892:19;;15697:220;;;:::o;15923:366::-;;16086:67;16150:2;16145:3;16086:67;:::i;:::-;16079:74;;16162:93;16251:3;16162:93;:::i;:::-;16280:2;16275:3;16271:12;16264:19;;16069:220;;;:::o;16295:366::-;;16458:67;16522:2;16517:3;16458:67;:::i;:::-;16451:74;;16534:93;16623:3;16534:93;:::i;:::-;16652:2;16647:3;16643:12;16636:19;;16441:220;;;:::o;16667:366::-;;16830:67;16894:2;16889:3;16830:67;:::i;:::-;16823:74;;16906:93;16995:3;16906:93;:::i;:::-;17024:2;17019:3;17015:12;17008:19;;16813:220;;;:::o;17039:366::-;;17202:67;17266:2;17261:3;17202:67;:::i;:::-;17195:74;;17278:93;17367:3;17278:93;:::i;:::-;17396:2;17391:3;17387:12;17380:19;;17185:220;;;:::o;17411:366::-;;17574:67;17638:2;17633:3;17574:67;:::i;:::-;17567:74;;17650:93;17739:3;17650:93;:::i;:::-;17768:2;17763:3;17759:12;17752:19;;17557:220;;;:::o;17783:366::-;;17946:67;18010:2;18005:3;17946:67;:::i;:::-;17939:74;;18022:93;18111:3;18022:93;:::i;:::-;18140:2;18135:3;18131:12;18124:19;;17929:220;;;:::o;18155:366::-;;18318:67;18382:2;18377:3;18318:67;:::i;:::-;18311:74;;18394:93;18483:3;18394:93;:::i;:::-;18512:2;18507:3;18503:12;18496:19;;18301:220;;;:::o;18527:366::-;;18690:67;18754:2;18749:3;18690:67;:::i;:::-;18683:74;;18766:93;18855:3;18766:93;:::i;:::-;18884:2;18879:3;18875:12;18868:19;;18673:220;;;:::o;18899:366::-;;19062:67;19126:2;19121:3;19062:67;:::i;:::-;19055:74;;19138:93;19227:3;19138:93;:::i;:::-;19256:2;19251:3;19247:12;19240:19;;19045:220;;;:::o;19271:366::-;;19434:67;19498:2;19493:3;19434:67;:::i;:::-;19427:74;;19510:93;19599:3;19510:93;:::i;:::-;19628:2;19623:3;19619:12;19612:19;;19417:220;;;:::o;19643:366::-;;19806:67;19870:2;19865:3;19806:67;:::i;:::-;19799:74;;19882:93;19971:3;19882:93;:::i;:::-;20000:2;19995:3;19991:12;19984:19;;19789:220;;;:::o;20015:366::-;;20178:67;20242:2;20237:3;20178:67;:::i;:::-;20171:74;;20254:93;20343:3;20254:93;:::i;:::-;20372:2;20367:3;20363:12;20356:19;;20161:220;;;:::o;20387:366::-;;20550:67;20614:2;20609:3;20550:67;:::i;:::-;20543:74;;20626:93;20715:3;20626:93;:::i;:::-;20744:2;20739:3;20735:12;20728:19;;20533:220;;;:::o;20759:366::-;;20922:67;20986:2;20981:3;20922:67;:::i;:::-;20915:74;;20998:93;21087:3;20998:93;:::i;:::-;21116:2;21111:3;21107:12;21100:19;;20905:220;;;:::o;21131:366::-;;21294:67;21358:2;21353:3;21294:67;:::i;:::-;21287:74;;21370:93;21459:3;21370:93;:::i;:::-;21488:2;21483:3;21479:12;21472:19;;21277:220;;;:::o;21503:366::-;;21666:67;21730:2;21725:3;21666:67;:::i;:::-;21659:74;;21742:93;21831:3;21742:93;:::i;:::-;21860:2;21855:3;21851:12;21844:19;;21649:220;;;:::o;21875:366::-;;22038:67;22102:2;22097:3;22038:67;:::i;:::-;22031:74;;22114:93;22203:3;22114:93;:::i;:::-;22232:2;22227:3;22223:12;22216:19;;22021:220;;;:::o;22247:366::-;;22410:67;22474:2;22469:3;22410:67;:::i;:::-;22403:74;;22486:93;22575:3;22486:93;:::i;:::-;22604:2;22599:3;22595:12;22588:19;;22393:220;;;:::o;22619:366::-;;22782:67;22846:2;22841:3;22782:67;:::i;:::-;22775:74;;22858:93;22947:3;22858:93;:::i;:::-;22976:2;22971:3;22967:12;22960:19;;22765:220;;;:::o;22991:108::-;23068:24;23086:5;23068:24;:::i;:::-;23063:3;23056:37;23046:53;;:::o;23105:118::-;23192:24;23210:5;23192:24;:::i;:::-;23187:3;23180:37;23170:53;;:::o;23229:112::-;23312:22;23328:5;23312:22;:::i;:::-;23307:3;23300:35;23290:51;;:::o;23347:429::-;;23546:92;23634:3;23625:6;23546:92;:::i;:::-;23539:99;;23655:95;23746:3;23737:6;23655:95;:::i;:::-;23648:102;;23767:3;23760:10;;23528:248;;;;;:::o;23782:663::-;;24045:148;24189:3;24045:148;:::i;:::-;24038:155;;24203:75;24274:3;24265:6;24203:75;:::i;:::-;24303:2;24298:3;24294:12;24287:19;;24316:75;24387:3;24378:6;24316:75;:::i;:::-;24416:2;24411:3;24407:12;24400:19;;24436:3;24429:10;;24027:418;;;;;:::o;24451:222::-;;24582:2;24571:9;24567:18;24559:26;;24595:71;24663:1;24652:9;24648:17;24639:6;24595:71;:::i;:::-;24549:124;;;;:::o;24679:640::-;;24912:3;24901:9;24897:19;24889:27;;24926:71;24994:1;24983:9;24979:17;24970:6;24926:71;:::i;:::-;25007:72;25075:2;25064:9;25060:18;25051:6;25007:72;:::i;:::-;25089;25157:2;25146:9;25142:18;25133:6;25089:72;:::i;:::-;25208:9;25202:4;25198:20;25193:2;25182:9;25178:18;25171:48;25236:76;25307:4;25298:6;25236:76;:::i;:::-;25228:84;;24879:440;;;;;;;:::o;25325:373::-;;25506:2;25495:9;25491:18;25483:26;;25555:9;25549:4;25545:20;25541:1;25530:9;25526:17;25519:47;25583:108;25686:4;25677:6;25583:108;:::i;:::-;25575:116;;25473:225;;;;:::o;25704:210::-;;25829:2;25818:9;25814:18;25806:26;;25842:65;25904:1;25893:9;25889:17;25880:6;25842:65;:::i;:::-;25796:118;;;;:::o;25920:664::-;;26163:3;26152:9;26148:19;26140:27;;26177:71;26245:1;26234:9;26230:17;26221:6;26177:71;:::i;:::-;26258:72;26326:2;26315:9;26311:18;26302:6;26258:72;:::i;:::-;26340;26408:2;26397:9;26393:18;26384:6;26340:72;:::i;:::-;26422;26490:2;26479:9;26475:18;26466:6;26422:72;:::i;:::-;26504:73;26572:3;26561:9;26557:19;26548:6;26504:73;:::i;:::-;26130:454;;;;;;;;:::o;26590:442::-;;26777:2;26766:9;26762:18;26754:26;;26790:71;26858:1;26847:9;26843:17;26834:6;26790:71;:::i;:::-;26871:72;26939:2;26928:9;26924:18;26915:6;26871:72;:::i;:::-;26953;27021:2;27010:9;27006:18;26997:6;26953:72;:::i;:::-;26744:288;;;;;;:::o;27038:545::-;;27249:3;27238:9;27234:19;27226:27;;27263:71;27331:1;27320:9;27316:17;27307:6;27263:71;:::i;:::-;27344:68;27408:2;27397:9;27393:18;27384:6;27344:68;:::i;:::-;27422:72;27490:2;27479:9;27475:18;27466:6;27422:72;:::i;:::-;27504;27572:2;27561:9;27557:18;27548:6;27504:72;:::i;:::-;27216:367;;;;;;;:::o;27589:313::-;;27740:2;27729:9;27725:18;27717:26;;27789:9;27783:4;27779:20;27775:1;27764:9;27760:17;27753:47;27817:78;27890:4;27881:6;27817:78;:::i;:::-;27809:86;;27707:195;;;;:::o;27908:419::-;;28112:2;28101:9;28097:18;28089:26;;28161:9;28155:4;28151:20;28147:1;28136:9;28132:17;28125:47;28189:131;28315:4;28189:131;:::i;:::-;28181:139;;28079:248;;;:::o;28333:419::-;;28537:2;28526:9;28522:18;28514:26;;28586:9;28580:4;28576:20;28572:1;28561:9;28557:17;28550:47;28614:131;28740:4;28614:131;:::i;:::-;28606:139;;28504:248;;;:::o;28758:419::-;;28962:2;28951:9;28947:18;28939:26;;29011:9;29005:4;29001:20;28997:1;28986:9;28982:17;28975:47;29039:131;29165:4;29039:131;:::i;:::-;29031:139;;28929:248;;;:::o;29183:419::-;;29387:2;29376:9;29372:18;29364:26;;29436:9;29430:4;29426:20;29422:1;29411:9;29407:17;29400:47;29464:131;29590:4;29464:131;:::i;:::-;29456:139;;29354:248;;;:::o;29608:419::-;;29812:2;29801:9;29797:18;29789:26;;29861:9;29855:4;29851:20;29847:1;29836:9;29832:17;29825:47;29889:131;30015:4;29889:131;:::i;:::-;29881:139;;29779:248;;;:::o;30033:419::-;;30237:2;30226:9;30222:18;30214:26;;30286:9;30280:4;30276:20;30272:1;30261:9;30257:17;30250:47;30314:131;30440:4;30314:131;:::i;:::-;30306:139;;30204:248;;;:::o;30458:419::-;;30662:2;30651:9;30647:18;30639:26;;30711:9;30705:4;30701:20;30697:1;30686:9;30682:17;30675:47;30739:131;30865:4;30739:131;:::i;:::-;30731:139;;30629:248;;;:::o;30883:419::-;;31087:2;31076:9;31072:18;31064:26;;31136:9;31130:4;31126:20;31122:1;31111:9;31107:17;31100:47;31164:131;31290:4;31164:131;:::i;:::-;31156:139;;31054:248;;;:::o;31308:419::-;;31512:2;31501:9;31497:18;31489:26;;31561:9;31555:4;31551:20;31547:1;31536:9;31532:17;31525:47;31589:131;31715:4;31589:131;:::i;:::-;31581:139;;31479:248;;;:::o;31733:419::-;;31937:2;31926:9;31922:18;31914:26;;31986:9;31980:4;31976:20;31972:1;31961:9;31957:17;31950:47;32014:131;32140:4;32014:131;:::i;:::-;32006:139;;31904:248;;;:::o;32158:419::-;;32362:2;32351:9;32347:18;32339:26;;32411:9;32405:4;32401:20;32397:1;32386:9;32382:17;32375:47;32439:131;32565:4;32439:131;:::i;:::-;32431:139;;32329:248;;;:::o;32583:419::-;;32787:2;32776:9;32772:18;32764:26;;32836:9;32830:4;32826:20;32822:1;32811:9;32807:17;32800:47;32864:131;32990:4;32864:131;:::i;:::-;32856:139;;32754:248;;;:::o;33008:419::-;;33212:2;33201:9;33197:18;33189:26;;33261:9;33255:4;33251:20;33247:1;33236:9;33232:17;33225:47;33289:131;33415:4;33289:131;:::i;:::-;33281:139;;33179:248;;;:::o;33433:419::-;;33637:2;33626:9;33622:18;33614:26;;33686:9;33680:4;33676:20;33672:1;33661:9;33657:17;33650:47;33714:131;33840:4;33714:131;:::i;:::-;33706:139;;33604:248;;;:::o;33858:419::-;;34062:2;34051:9;34047:18;34039:26;;34111:9;34105:4;34101:20;34097:1;34086:9;34082:17;34075:47;34139:131;34265:4;34139:131;:::i;:::-;34131:139;;34029:248;;;:::o;34283:419::-;;34487:2;34476:9;34472:18;34464:26;;34536:9;34530:4;34526:20;34522:1;34511:9;34507:17;34500:47;34564:131;34690:4;34564:131;:::i;:::-;34556:139;;34454:248;;;:::o;34708:419::-;;34912:2;34901:9;34897:18;34889:26;;34961:9;34955:4;34951:20;34947:1;34936:9;34932:17;34925:47;34989:131;35115:4;34989:131;:::i;:::-;34981:139;;34879:248;;;:::o;35133:419::-;;35337:2;35326:9;35322:18;35314:26;;35386:9;35380:4;35376:20;35372:1;35361:9;35357:17;35350:47;35414:131;35540:4;35414:131;:::i;:::-;35406:139;;35304:248;;;:::o;35558:419::-;;35762:2;35751:9;35747:18;35739:26;;35811:9;35805:4;35801:20;35797:1;35786:9;35782:17;35775:47;35839:131;35965:4;35839:131;:::i;:::-;35831:139;;35729:248;;;:::o;35983:419::-;;36187:2;36176:9;36172:18;36164:26;;36236:9;36230:4;36226:20;36222:1;36211:9;36207:17;36200:47;36264:131;36390:4;36264:131;:::i;:::-;36256:139;;36154:248;;;:::o;36408:419::-;;36612:2;36601:9;36597:18;36589:26;;36661:9;36655:4;36651:20;36647:1;36636:9;36632:17;36625:47;36689:131;36815:4;36689:131;:::i;:::-;36681:139;;36579:248;;;:::o;36833:419::-;;37037:2;37026:9;37022:18;37014:26;;37086:9;37080:4;37076:20;37072:1;37061:9;37057:17;37050:47;37114:131;37240:4;37114:131;:::i;:::-;37106:139;;37004:248;;;:::o;37258:419::-;;37462:2;37451:9;37447:18;37439:26;;37511:9;37505:4;37501:20;37497:1;37486:9;37482:17;37475:47;37539:131;37665:4;37539:131;:::i;:::-;37531:139;;37429:248;;;:::o;37683:419::-;;37887:2;37876:9;37872:18;37864:26;;37936:9;37930:4;37926:20;37922:1;37911:9;37907:17;37900:47;37964:131;38090:4;37964:131;:::i;:::-;37956:139;;37854:248;;;:::o;38108:419::-;;38312:2;38301:9;38297:18;38289:26;;38361:9;38355:4;38351:20;38347:1;38336:9;38332:17;38325:47;38389:131;38515:4;38389:131;:::i;:::-;38381:139;;38279:248;;;:::o;38533:419::-;;38737:2;38726:9;38722:18;38714:26;;38786:9;38780:4;38776:20;38772:1;38761:9;38757:17;38750:47;38814:131;38940:4;38814:131;:::i;:::-;38806:139;;38704:248;;;:::o;38958:419::-;;39162:2;39151:9;39147:18;39139:26;;39211:9;39205:4;39201:20;39197:1;39186:9;39182:17;39175:47;39239:131;39365:4;39239:131;:::i;:::-;39231:139;;39129:248;;;:::o;39383:222::-;;39514:2;39503:9;39499:18;39491:26;;39527:71;39595:1;39584:9;39580:17;39571:6;39527:71;:::i;:::-;39481:124;;;;:::o;39611:332::-;;39770:2;39759:9;39755:18;39747:26;;39783:71;39851:1;39840:9;39836:17;39827:6;39783:71;:::i;:::-;39864:72;39932:2;39921:9;39917:18;39908:6;39864:72;:::i;:::-;39737:206;;;;;:::o;39949:129::-;;40010:20;;:::i;:::-;40000:30;;40039:33;40067:4;40059:6;40039:33;:::i;:::-;39990:88;;;:::o;40084:75::-;;40150:2;40144:9;40134:19;;40124:35;:::o;40165:307::-;;40316:18;40308:6;40305:30;40302:2;;;40338:18;;:::i;:::-;40302:2;40376:29;40398:6;40376:29;:::i;:::-;40368:37;;40460:4;40454;40450:15;40442:23;;40231:241;;;:::o;40478:308::-;;40630:18;40622:6;40619:30;40616:2;;;40652:18;;:::i;:::-;40616:2;40690:29;40712:6;40690:29;:::i;:::-;40682:37;;40774:4;40768;40764:15;40756:23;;40545:241;;;:::o;40792:132::-;;40882:3;40874:11;;40912:4;40907:3;40903:14;40895:22;;40864:60;;;:::o;40930:141::-;;41002:3;40994:11;;41025:3;41022:1;41015:14;41059:4;41056:1;41046:18;41038:26;;40984:87;;;:::o;41077:114::-;;41178:5;41172:12;41162:22;;41151:40;;;:::o;41197:98::-;;41282:5;41276:12;41266:22;;41255:40;;;:::o;41301:99::-;;41387:5;41381:12;41371:22;;41360:40;;;:::o;41406:113::-;;41508:4;41503:3;41499:14;41491:22;;41481:38;;;:::o;41525:184::-;;41658:6;41653:3;41646:19;41698:4;41693:3;41689:14;41674:29;;41636:73;;;;:::o;41715:168::-;;41832:6;41827:3;41820:19;41872:4;41867:3;41863:14;41848:29;;41810:73;;;;:::o;41889:169::-;;42007:6;42002:3;41995:19;42047:4;42042:3;42038:14;42023:29;;41985:73;;;;:::o;42064:148::-;;42203:3;42188:18;;42178:34;;;;:::o;42218:305::-;;42277:20;42295:1;42277:20;:::i;:::-;42272:25;;42311:20;42329:1;42311:20;:::i;:::-;42306:25;;42465:1;42397:66;42393:74;42390:1;42387:81;42384:2;;;42471:18;;:::i;:::-;42384:2;42515:1;42512;42508:9;42501:16;;42262:261;;;;:::o;42529:185::-;;42586:20;42604:1;42586:20;:::i;:::-;42581:25;;42620:20;42638:1;42620:20;:::i;:::-;42615:25;;42659:1;42649:2;;42664:18;;:::i;:::-;42649:2;42706:1;42703;42699:9;42694:14;;42571:143;;;;:::o;42720:348::-;;42783:20;42801:1;42783:20;:::i;:::-;42778:25;;42817:20;42835:1;42817:20;:::i;:::-;42812:25;;43005:1;42937:66;42933:74;42930:1;42927:81;42922:1;42915:9;42908:17;42904:105;42901:2;;;43012:18;;:::i;:::-;42901:2;43060:1;43057;43053:9;43042:20;;42768:300;;;;:::o;43074:191::-;;43134:20;43152:1;43134:20;:::i;:::-;43129:25;;43168:20;43186:1;43168:20;:::i;:::-;43163:25;;43207:1;43204;43201:8;43198:2;;;43212:18;;:::i;:::-;43198:2;43257:1;43254;43250:9;43242:17;;43119:146;;;;:::o;43271:96::-;;43337:24;43355:5;43337:24;:::i;:::-;43326:35;;43316:51;;;:::o;43373:90::-;;43450:5;43443:13;43436:21;43425:32;;43415:48;;;:::o;43469:77::-;;43535:5;43524:16;;43514:32;;;:::o;43552:149::-;;43628:66;43621:5;43617:78;43606:89;;43596:105;;;:::o;43707:126::-;;43784:42;43777:5;43773:54;43762:65;;43752:81;;;:::o;43839:77::-;;43905:5;43894:16;;43884:32;;;:::o;43922:86::-;;43997:4;43990:5;43986:16;43975:27;;43965:43;;;:::o;44014:154::-;44098:6;44093:3;44088;44075:30;44160:1;44151:6;44146:3;44142:16;44135:27;44065:103;;;:::o;44174:307::-;44242:1;44252:113;44266:6;44263:1;44260:13;44252:113;;;44351:1;44346:3;44342:11;44336:18;44332:1;44327:3;44323:11;44316:39;44288:2;44285:1;44281:10;44276:15;;44252:113;;;44383:6;44380:1;44377:13;44374:2;;;44463:1;44454:6;44449:3;44445:16;44438:27;44374:2;44223:258;;;;:::o;44487:320::-;;44568:1;44562:4;44558:12;44548:22;;44615:1;44609:4;44605:12;44636:18;44626:2;;44692:4;44684:6;44680:17;44670:27;;44626:2;44754;44746:6;44743:14;44723:18;44720:38;44717:2;;;44773:18;;:::i;:::-;44717:2;44538:269;;;;:::o;44813:281::-;44896:27;44918:4;44896:27;:::i;:::-;44888:6;44884:40;45026:6;45014:10;45011:22;44990:18;44978:10;44975:34;44972:62;44969:2;;;45037:18;;:::i;:::-;44969:2;45077:10;45073:2;45066:22;44856:238;;;:::o;45100:233::-;;45162:24;45180:5;45162:24;:::i;:::-;45153:33;;45208:66;45201:5;45198:77;45195:2;;;45278:18;;:::i;:::-;45195:2;45325:1;45318:5;45314:13;45307:20;;45143:190;;;:::o;45339:79::-;;45407:5;45396:16;;45386:32;;;:::o;45424:176::-;;45473:20;45491:1;45473:20;:::i;:::-;45468:25;;45507:20;45525:1;45507:20;:::i;:::-;45502:25;;45546:1;45536:2;;45551:18;;:::i;:::-;45536:2;45592:1;45589;45585:9;45580:14;;45458:142;;;;:::o;45606:180::-;45654:77;45651:1;45644:88;45751:4;45748:1;45741:15;45775:4;45772:1;45765:15;45792:180;45840:77;45837:1;45830:88;45937:4;45934:1;45927:15;45961:4;45958:1;45951:15;45978:180;46026:77;46023:1;46016:88;46123:4;46120:1;46113:15;46147:4;46144:1;46137:15;46164:180;46212:77;46209:1;46202:88;46309:4;46306:1;46299:15;46333:4;46330:1;46323:15;46350:102;;46442:2;46438:7;46433:2;46426:5;46422:14;46418:28;46408:38;;46398:54;;;:::o;46458:174::-;46598:26;46594:1;46586:6;46582:14;46575:50;46564:68;:::o;46638:181::-;46778:33;46774:1;46766:6;46762:14;46755:57;46744:75;:::o;46825:237::-;46965:34;46961:1;46953:6;46949:14;46942:58;47034:20;47029:2;47021:6;47017:15;47010:45;46931:131;:::o;47068:225::-;47208:34;47204:1;47196:6;47192:14;47185:58;47277:8;47272:2;47264:6;47260:15;47253:33;47174:119;:::o;47299:178::-;47439:30;47435:1;47427:6;47423:14;47416:54;47405:72;:::o;47483:224::-;47623:34;47619:1;47611:6;47607:14;47600:58;47692:7;47687:2;47679:6;47675:15;47668:32;47589:118;:::o;47713:178::-;47853:30;47849:1;47841:6;47837:14;47830:54;47819:72;:::o;47897:214::-;48037:66;48033:1;48025:6;48021:14;48014:90;48003:108;:::o;48117:171::-;48257:23;48253:1;48245:6;48241:14;48234:47;48223:65;:::o;48294:175::-;48434:27;48430:1;48422:6;48418:14;48411:51;48400:69;:::o;48475:223::-;48615:34;48611:1;48603:6;48599:14;48592:58;48684:6;48679:2;48671:6;48667:15;48660:31;48581:117;:::o;48704:175::-;48844:27;48840:1;48832:6;48828:14;48821:51;48810:69;:::o;48885:176::-;49025:28;49021:1;49013:6;49009:14;49002:52;48991:70;:::o;49067:221::-;49207:34;49203:1;49195:6;49191:14;49184:58;49276:4;49271:2;49263:6;49259:15;49252:29;49173:115;:::o;49294:168::-;49434:20;49430:1;49422:6;49418:14;49411:44;49400:62;:::o;49468:167::-;49608:19;49604:1;49596:6;49592:14;49585:43;49574:61;:::o;49641:228::-;49781:34;49777:1;49769:6;49765:14;49758:58;49850:11;49845:2;49837:6;49833:15;49826:36;49747:122;:::o;49875:221::-;50015:34;50011:1;50003:6;49999:14;49992:58;50084:4;50079:2;50071:6;50067:15;50060:29;49981:115;:::o;50102:249::-;50242:34;50238:1;50230:6;50226:14;50219:58;50311:32;50306:2;50298:6;50294:15;50287:57;50208:143;:::o;50357:182::-;50497:34;50493:1;50485:6;50481:14;50474:58;50463:76;:::o;50545:182::-;50685:34;50681:1;50673:6;50669:14;50662:58;50651:76;:::o;50733:220::-;50873:34;50869:1;50861:6;50857:14;50850:58;50942:3;50937:2;50929:6;50925:15;50918:28;50839:114;:::o;50959:234::-;51099:34;51095:1;51087:6;51083:14;51076:58;51168:17;51163:2;51155:6;51151:15;51144:42;51065:128;:::o;51199:174::-;51339:26;51335:1;51327:6;51323:14;51316:50;51305:68;:::o;51379:220::-;51519:34;51515:1;51507:6;51503:14;51496:58;51588:3;51583:2;51575:6;51571:15;51564:28;51485:114;:::o;51605:231::-;51745:34;51741:1;51733:6;51729:14;51722:58;51814:14;51809:2;51801:6;51797:15;51790:39;51711:125;:::o;51842:233::-;51982:34;51978:1;51970:6;51966:14;51959:58;52051:16;52046:2;52038:6;52034:15;52027:41;51948:127;:::o;52081:163::-;52221:15;52217:1;52209:6;52205:14;52198:39;52187:57;:::o;52250:122::-;52323:24;52341:5;52323:24;:::i;:::-;52316:5;52313:35;52303:2;;52362:1;52359;52352:12;52303:2;52293:79;:::o;52378:116::-;52448:21;52463:5;52448:21;:::i;:::-;52441:5;52438:32;52428:2;;52484:1;52481;52474:12;52428:2;52418:76;:::o;52500:120::-;52572:23;52589:5;52572:23;:::i;:::-;52565:5;52562:34;52552:2;;52610:1;52607;52600:12;52552:2;52542:78;:::o;52626:122::-;52699:24;52717:5;52699:24;:::i;:::-;52692:5;52689:35;52679:2;;52738:1;52735;52728:12;52679:2;52669:79;:::o

Swarm Source

ipfs://2d1612d8f06ba212c2d9db7318e35960809593dc5b5199717ba908aecf8cab59
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.