ETH Price: $3,386.82 (+0.78%)

Token

AI Eggs (AIEGGS)
 

Overview

Max Total Supply

21,000,000,011 AIEGGS

Holders

35

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.47004971392225957 AIEGGS

Value
$0.00
0xdF509d252232E4f5DDe22d010995940f3857D7f3
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:
Aieggs

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-23
*/

// SPDX-License-Identifier: MIT

/**
AI Eggs. Tapping into the revolutionary debase mechanism in addition to bringing AI to the trading table 
An Eggs and Yolk fork with even MORE buyback and burns!

www.AIEggs.org
*/


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)
    {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

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

        return result;
    }

    // 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 in 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/Math.sol

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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = sqrt(a);
            return
                result +
                (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log2(value);
            return
                result +
                (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log10(value);
            return
                result +
                (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log256(value);
            return
                result +
                (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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 _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/IAccessControl.sol

// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account)
        external
        view
        returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/IAccessControlEnumerable.sol

// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        external
        view
        returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/AccessControl.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role)
        public
        view
        virtual
        override
        returns (bytes32)
    {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account)
        public
        virtual
        override
    {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/AccessControlEnumerable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is
    IAccessControlEnumerable,
    AccessControl
{
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        public
        view
        virtual
        override
        returns (address)
    {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account)
        internal
        virtual
        override
    {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account)
        internal
        virtual
        override
    {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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
            functionCallWithValue(
                target,
                data,
                0,
                "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"
        );
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return
            verifyCallResultFromTarget(
                target,
                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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return
            verifyCallResultFromTarget(
                target,
                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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage)
        private
        pure
    {
        // 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/draft-IERC20Permit.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) 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, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/ERC20Burnable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/ERC20PresetMinterRebaser.sol

pragma solidity ^0.8.0;

contract ERC20PresetMinterRebaser is
    Context,
    AccessControlEnumerable,
    ERC20Burnable
{
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant REBASER_ROLE = keccak256("REBASER_ROLE");

    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(REBASER_ROLE, _msgSender());
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/utils/SafeERC20.sol

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(
                oldAllowance >= value,
                "SafeERC20: decreased allowance below zero"
            );
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(
                token,
                abi.encodeWithSelector(
                    token.approve.selector,
                    spender,
                    newAllowance
                )
            );
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(
            nonceAfter == nonceBefore + 1,
            "SafeERC20: permit did not succeed"
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        if (returndata.length > 0) {
            // Return data is optional
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/AIEGGS.sol

pragma solidity ^0.8.0;

// Storage for a AIEGGS token
contract AIEGGS {
    using SafeMath for uint256;

    /**
     * @dev Guard variable for re-entrancy checks. Not currently used
     */
    bool internal _notEntered;

    /**
     * @notice Governor for this contract
     */
    address public gov;

    /**
     * @notice Pending governance for this contract
     */
    address public pendingGov;

    /**
     * @notice Approved rebaser for this contract
     */
    address public rebaser;

    /**
     * @notice Approved migrator for this contract
     */
    address public migrator;

    /**
     * @notice Incentivizer address of YAM protocol
     */
    address public incentivizer;

    /**
     * @notice Total supply of YAMs
     */
    uint256 public totalSupply;

    /**
     * @notice Internal decimals used to handle scaling factor
     */
    uint256 public constant internalDecimals = 10**24;

    /**
     * @notice Used for percentage maths
     */
    uint256 public constant BASE = 10**18;

    /**
     * @notice Scaling factor that adjusts everyone's balances
     */
    uint256 public yamsScalingFactor;

    mapping(address => uint256) internal _yamBalances;

    mapping(address => mapping(address => uint256)) internal _allowedFragments;

    uint256 public initSupply;

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    bytes32 public DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );
}

// File: contracts/IAIEGGS.sol

pragma solidity ^0.8.0;

abstract contract IAIEGGS {
    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(
        uint256 epoch,
        uint256 prevAieggssScalingFactor,
        uint256 newAieggssScalingFactor
    );

    /* - Extra Events - */
    /**
     * @notice Tokens minted event
     */
    event Mint(address to, uint256 amount);

    /**
     * @notice Tokens burned event
     */
    event Burn(address from, uint256 amount);
}

// File: contracts/Aieggs.sol

pragma solidity ^0.8.0;

contract Aieggs is ERC20PresetMinterRebaser, Ownable, IAIEGGS {
    using SafeMath for uint256;

    /**
     * @dev Guard variable for re-entrancy checks. Not currently used
     */
    bool internal _notEntered;

    /**
     * @notice Internal decimals used to handle scaling factor
     */
    uint256 public constant internalDecimals = 10**24;

    /**
     * @notice Used for percentage maths
     */
    uint256 public constant BASE = 10**18;

    /**
     * @notice Scaling factor that adjusts everyone's balances
     */
    uint256 public aieggssScalingFactor;

    mapping(address => uint256) internal _aieggsBalances;

    mapping(address => mapping(address => uint256)) internal _allowedFragments;

    uint256 public initSupply;

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    bytes32 public DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );

    uint256 private INIT_SUPPLY = 21000000012 * 10**18;
    uint256 private _totalSupply;

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    constructor() ERC20PresetMinterRebaser("AI Eggs", "AIEGGS") {
        aieggssScalingFactor = BASE;
        initSupply = _fragmentToAieggs(INIT_SUPPLY);
        _totalSupply = INIT_SUPPLY;
        _aieggsBalances[owner()] = initSupply;

        emit Transfer(address(0), msg.sender, INIT_SUPPLY);
    }

    /**
     * @return The total number of fragments.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @notice Computes the current max scaling factor
     */
    function maxScalingFactor() external view returns (uint256) {
        return _maxScalingFactor();
    }

    function _maxScalingFactor() internal view returns (uint256) {
        // scaling factor can only go up to 2**256-1 = initSupply * aieggssScalingFactor
        // this is used to check if aieggssScalingFactor will be too high to compute balances when rebasing.
        return uint256(int256(-1)) / initSupply;
    }

    /**
     * @notice Mints new tokens, increasing totalSupply, initSupply, and a users balance.
     */
    function mint(address to, uint256 amount) external returns (bool) {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role");

        _mint(to, amount);
        return true;
    }

    function _mint(address to, uint256 amount) internal override {
        // increase totalSupply
        _totalSupply = _totalSupply.add(amount);

        // get underlying value
        uint256 aieggsValue = _fragmentToAieggs(amount);

        // increase initSupply
        initSupply = initSupply.add(aieggsValue);

        // make sure the mint didnt push maxScalingFactor too low
        require(
            aieggssScalingFactor <= _maxScalingFactor(),
            "max scaling factor too low"
        );

        // add balance
        _aieggsBalances[to] = _aieggsBalances[to].add(aieggsValue);

        emit Mint(to, amount);
        emit Transfer(address(0), to, amount);
    }

    /**
     * @notice Burns tokens from msg.sender, decreases totalSupply, initSupply, and a users balance.
     */

    function burn(uint256 amount) public override {
        _burn(amount);
    }

    function _burn(uint256 amount) internal {
        // decrease totalSupply
        _totalSupply = _totalSupply.sub(amount);

        // get underlying value
        uint256 aieggsValue = _fragmentToAieggs(amount);

        // decrease initSupply
        initSupply = initSupply.sub(aieggsValue);

        // decrease balance
        _aieggsBalances[msg.sender] = _aieggsBalances[msg.sender].sub(aieggsValue);
        emit Burn(msg.sender, amount);
        emit Transfer(msg.sender, address(0), amount);
    }

    /**
     * @notice Mints new tokens using underlying amount, increasing totalSupply, initSupply, and a users balance.
     */
    function mintUnderlying(address to, uint256 amount) public returns (bool) {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role");

        _mintUnderlying(to, amount);
        return true;
    }

    function _mintUnderlying(address to, uint256 amount) internal {
        // increase initSupply
        initSupply = initSupply.add(amount);

        // get external value
        uint256 scaledAmount = _aieggsToFragment(amount);

        // increase totalSupply
        _totalSupply = _totalSupply.add(scaledAmount);

        // make sure the mint didnt push maxScalingFactor too low
        require(
            aieggssScalingFactor <= _maxScalingFactor(),
            "max scaling factor too low"
        );

        // add balance
        _aieggsBalances[to] = _aieggsBalances[to].add(amount);

        emit Mint(to, scaledAmount);
        emit Transfer(address(0), to, scaledAmount);
    }

    /**
     * @dev Transfer underlying balance to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transferUnderlying(address to, uint256 value)
        public
        validRecipient(to)
        returns (bool)
    {
        // sub from balance of sender
        _aieggsBalances[msg.sender] = _aieggsBalances[msg.sender].sub(value);

        // add to balance of receiver
        _aieggsBalances[to] = _aieggsBalances[to].add(value);
        emit Transfer(msg.sender, to, _aieggsToFragment(value));
        return true;
    }

    /* - ERC20 functionality - */

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        public
        override
        validRecipient(to)
        returns (bool)
    {
        // underlying balance is stored in aieggs, so divide by current scaling factor

        // note, this means as scaling factor grows, dust will be untransferrable.
        // minimum transfer value == aieggssScalingFactor / 1e24;

        // get amount in underlying
        uint256 aieggsValue = _fragmentToAieggs(value);

        // sub from balance of sender
        _aieggsBalances[msg.sender] = _aieggsBalances[msg.sender].sub(aieggsValue);

        // add to balance of receiver
        _aieggsBalances[to] = _aieggsBalances[to].add(aieggsValue);
        emit Transfer(msg.sender, to, value);

        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public override validRecipient(to) returns (bool) {
        // decrease allowance
        _allowedFragments[from][msg.sender] = _allowedFragments[from][
            msg.sender
        ].sub(value);

        // get value in aieggs
        uint256 aieggsValue = _fragmentToAieggs(value);

        // sub from from
        _aieggsBalances[from] = _aieggsBalances[from].sub(aieggsValue);
        _aieggsBalances[to] = _aieggsBalances[to].add(aieggsValue);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who) public view override returns (uint256) {
        return _aieggsToFragment(_aieggsBalances[who]);
    }

    /** @notice Currently returns the internal storage amount
     * @param who The address to query.
     * @return The underlying balance of the specified address.
     */
    function balanceOfUnderlying(address who) public view returns (uint256) {
        return _aieggsBalances[who];
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        public
        override
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][
            spender
        ].add(addedValue);
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(
                subtractedValue
            );
        }
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    // --- Approve by signature ---
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        require(block.timestamp <= deadline, "AIEGGS/permit-expired");

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(
                    abi.encode(
                        PERMIT_TYPEHASH,
                        owner,
                        spender,
                        value,
                        nonces[owner]++,
                        deadline
                    )
                )
            )
        );

        require(owner != address(0), "AIEGGS/invalid-address-0");
        require(owner == ecrecover(digest, v, r, s), "AIEGGS/invalid-permit");
        _allowedFragments[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function rebase(
        uint256 epoch,
        uint256 indexDelta,
        bool positive
    ) public returns (uint256) {
        require(hasRole(REBASER_ROLE, _msgSender()), "Must have rebaser role");

        // no change
        if (indexDelta == 0) {
            emit Rebase(epoch, aieggssScalingFactor, aieggssScalingFactor);
            return _totalSupply;
        }

        // for events
        uint256 prevAieggssScalingFactor = aieggssScalingFactor;

        if (!positive) {
            // negative rebase, decrease scaling factor
            aieggssScalingFactor = aieggssScalingFactor
                .mul(BASE.sub(indexDelta))
                .div(BASE);
        } else {
            // positive rebase, increase scaling factor
            uint256 newScalingFactor = aieggssScalingFactor
                .mul(BASE.add(indexDelta))
                .div(BASE);
            if (newScalingFactor < _maxScalingFactor()) {
                aieggssScalingFactor = newScalingFactor;
            } else {
                aieggssScalingFactor = _maxScalingFactor();
            }
        }

        // update total supply, correctly
        _totalSupply = _aieggsToFragment(initSupply);

        emit Rebase(epoch, prevAieggssScalingFactor, aieggssScalingFactor);
        return _totalSupply;
    }

    function aieggsToFragment(uint256 aieggs) public view returns (uint256) {
        return _aieggsToFragment(aieggs);
    }

    function fragmentToAieggs(uint256 value) public view returns (uint256) {
        return _fragmentToAieggs(value);
    }

    function _aieggsToFragment(uint256 aieggs) internal view returns (uint256) {
        return aieggs.mul(aieggssScalingFactor).div(internalDecimals);
    }

    function _fragmentToAieggs(uint256 value) internal view returns (uint256) {
        return value.mul(internalDecimals).div(aieggssScalingFactor);
    }

    // Rescue tokens
    function rescueTokens(
        address token,
        address to,
        uint256 amount
    ) public onlyOwner returns (bool) {
        // transfer to
        SafeERC20.safeTransfer(IERC20(token), to, amount);
        return true;
    }
}

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":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","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":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevAieggssScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAieggssScalingFactor","type":"uint256"}],"name":"Rebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBASER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"aieggs","type":"uint256"}],"name":"aieggsToFragment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aieggssScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"fragmentToAieggs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526b43dacaf9c2a3156ae0b00000600e553480156200002157600080fd5b506040518060400160405280600781526020017f41492045676773000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f414945474753000000000000000000000000000000000000000000000000000081525081818160059080519060200190620000a892919062000680565b508060069080519060200190620000c192919062000680565b505050620000e86000801b620000dc6200028260201b60201c565b6200028a60201b60201c565b620001297f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200011d6200028260201b60201c565b6200028a60201b60201c565b6200016a7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b756200015e6200028260201b60201c565b6200028a60201b60201c565b50506200018c620001806200028260201b60201c565b620002a060201b60201c565b670de0b6b3a7640000600881905550620001ae600e546200036660201b60201c565b600b81905550600e54600f81905550600b5460096000620001d4620003ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600e546040516200027491906200074b565b60405180910390a3620008c4565b600033905090565b6200029c8282620003d860201b60201c565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000620003a76008546200039369d3c21bcecceda1000000856200042060201b620022cf1790919060201c565b6200043860201b620022e51790919060201c565b9050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003ef82826200045060201b620022fb1760201c565b6200041b81600160008581526020019081526020016000206200054160201b620023db1790919060201c565b505050565b6000818362000430919062000797565b905092915050565b6000818362000448919062000827565b905092915050565b6200046282826200057960201b60201c565b6200053d57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004e26200028260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000571836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620005e360201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000620005f783836200065d60201b60201c565b6200065257826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000657565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200068e906200088e565b90600052602060002090601f016020900481019282620006b25760008555620006fe565b82601f10620006cd57805160ff1916838001178555620006fe565b82800160010185558215620006fe579182015b82811115620006fd578251825591602001919060010190620006e0565b5b5090506200070d919062000711565b5090565b5b808211156200072c57600081600090555060010162000712565b5090565b6000819050919050565b620007458162000730565b82525050565b60006020820190506200076260008301846200073a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007a48262000730565b9150620007b18362000730565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007ed57620007ec62000768565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620008348262000730565b9150620008418362000730565b925082620008545762000853620007f8565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008a757607f821691505b60208210811415620008be57620008bd6200085f565b5b50919050565b614f3f80620008d46000396000f3fe608060405234801561001057600080fd5b506004361061027f5760003560e01c806371810a0f1161015c578063a217fddf116100ce578063d539139311610087578063d53913931461084e578063d547741f1461086c578063dd62ed3e14610888578063df7eaa14146108b8578063ec342ad0146108e8578063f2fde38b146109065761027f565b8063a217fddf14610754578063a457c2d714610772578063a9059cbb146107a2578063ca15c873146107d2578063cea9d26f14610802578063d505accf146108325761027f565b80638da5cb5b116101205780638da5cb5b1461066a5780639010d07c14610688578063917505f4146106b857806391d14854146106e857806395d89b411461071857806397d63f93146107365761027f565b806371810a0f146105a057806379cc6790146105d05780637af548c1146105ec5780637ecebe001461061c57806383eb70e51461064c5761027f565b8063336d2692116101f557806340c10f19116101b957806340c10f19146104de57806342966c681461050e57806348a6f2151461052a57806364dd48f51461054857806370a0823114610566578063715018a6146105965761027f565b8063336d2692146104145780633644e5151461044457806336568abe14610462578063395093511461047e5780633af9e669146104ae5761027f565b806320606b701161024757806320606b701461033e57806323b872dd1461035c578063248a9ca31461038c5780632f2ff15d146103bc57806330adf81f146103d8578063313ce567146103f65761027f565b806301ffc9a71461028457806306fdde03146102b4578063095ea7b3146102d257806311d3e6c41461030257806318160ddd14610320575b600080fd5b61029e60048036038101906102999190613a51565b610922565b6040516102ab9190613a99565b60405180910390f35b6102bc61099c565b6040516102c99190613b4d565b60405180910390f35b6102ec60048036038101906102e79190613c03565b610a2e565b6040516102f99190613a99565b60405180910390f35b61030a610b20565b6040516103179190613c52565b60405180910390f35b610328610b2f565b6040516103359190613c52565b60405180910390f35b610346610b39565b6040516103539190613c86565b60405180910390f35b61037660048036038101906103719190613ca1565b610b5d565b6040516103839190613a99565b60405180910390f35b6103a660048036038101906103a19190613d20565b610e8b565b6040516103b39190613c86565b60405180910390f35b6103d660048036038101906103d19190613d4d565b610eaa565b005b6103e0610ecb565b6040516103ed9190613c86565b60405180910390f35b6103fe610ef2565b60405161040b9190613da9565b60405180910390f35b61042e60048036038101906104299190613c03565b610efb565b60405161043b9190613a99565b60405180910390f35b61044c611113565b6040516104599190613c86565b60405180910390f35b61047c60048036038101906104779190613d4d565b611119565b005b61049860048036038101906104939190613c03565b61119c565b6040516104a59190613a99565b60405180910390f35b6104c860048036038101906104c39190613dc4565b611398565b6040516104d59190613c52565b60405180910390f35b6104f860048036038101906104f39190613c03565b6113e1565b6040516105059190613a99565b60405180910390f35b61052860048036038101906105239190613df1565b611467565b005b610532611473565b60405161053f9190613c52565b60405180910390f35b610550611479565b60405161055d9190613c52565b60405180910390f35b610580600480360381019061057b9190613dc4565b611487565b60405161058d9190613c52565b60405180910390f35b61059e6114d8565b005b6105ba60048036038101906105b59190613df1565b6114ec565b6040516105c79190613c52565b60405180910390f35b6105ea60048036038101906105e59190613c03565b6114fe565b005b61060660048036038101906106019190613e4a565b61151e565b6040516106139190613c52565b60405180910390f35b61063660048036038101906106319190613dc4565b611717565b6040516106439190613c52565b60405180910390f35b61065461172f565b6040516106619190613c86565b60405180910390f35b610672611753565b60405161067f9190613eac565b60405180910390f35b6106a2600480360381019061069d9190613ec7565b61177d565b6040516106af9190613eac565b60405180910390f35b6106d260048036038101906106cd9190613c03565b6117ac565b6040516106df9190613a99565b60405180910390f35b61070260048036038101906106fd9190613d4d565b611832565b60405161070f9190613a99565b60405180910390f35b61072061189c565b60405161072d9190613b4d565b60405180910390f35b61073e61192e565b60405161074b9190613c52565b60405180910390f35b61075c611934565b6040516107699190613c86565b60405180910390f35b61078c60048036038101906107879190613c03565b61193b565b6040516107999190613a99565b60405180910390f35b6107bc60048036038101906107b79190613c03565b611bcb565b6040516107c99190613a99565b60405180910390f35b6107ec60048036038101906107e79190613d20565b611de9565b6040516107f99190613c52565b60405180910390f35b61081c60048036038101906108179190613ca1565b611e0d565b6040516108299190613a99565b60405180910390f35b61084c60048036038101906108479190613f33565b611e2d565b005b610856612161565b6040516108639190613c86565b60405180910390f35b61088660048036038101906108819190613d4d565b612185565b005b6108a2600480360381019061089d9190613fd5565b6121a6565b6040516108af9190613c52565b60405180910390f35b6108d260048036038101906108cd9190613df1565b61222d565b6040516108df9190613c52565b60405180910390f35b6108f061223f565b6040516108fd9190613c52565b60405180910390f35b610920600480360381019061091b9190613dc4565b61224b565b005b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099557506109948261240b565b5b9050919050565b6060600580546109ab90614044565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790614044565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b600081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b0e9190613c52565b60405180910390a36001905092915050565b6000610b2a612485565b905090565b6000600f54905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9a57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bd357600080fd5b610c6283600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610ced846124d0565b9050610d4181600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610dd681600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610e769190613c52565b60405180910390a36001925050509392505050565b6000806000838152602001908152602001600020600101549050919050565b610eb382610e8b565b610ebc81612520565b610ec68383612534565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b60006012905090565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f3857600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7157600080fd5b610fc383600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061105883600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110f386612568565b6040516111009190613c52565b60405180910390a3600191505092915050565b600c5481565b6111216125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906140e8565b60405180910390fd5b61119882826125aa565b5050565b600061122d82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516113869190613c52565b60405180910390a36001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006114147f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661140f6125a2565b611832565b611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614154565b60405180910390fd5b61145d83836125de565b6001905092915050565b611470816127a6565b50565b60085481565b69d3c21bcecceda100000081565b60006114d1600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612568565b9050919050565b6114e0612921565b6114ea600061299f565b565b60006114f782612568565b9050919050565b6115108261150a6125a2565b83612a65565b61151a8282612af1565b5050565b60006115517f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7561154c6125a2565b611832565b611590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611587906141c0565b60405180910390fd5b60008314156115e2577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0846008546008546040516115d0939291906141e0565b60405180910390a1600f549050611710565b600060085490508261164257611637670de0b6b3a764000061162961161887670de0b6b3a76400006124ba90919063ffffffff16565b6008546122cf90919063ffffffff16565b6122e590919063ffffffff16565b6008819055506116bb565b600061168d670de0b6b3a764000061167f61166e88670de0b6b3a764000061250a90919063ffffffff16565b6008546122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050611697612485565b8110156116aa57806008819055506116b9565b6116b2612485565b6008819055505b505b6116c6600b54612568565b600f819055507fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c08582600854604051611701939291906141e0565b60405180910390a1600f549150505b9392505050565b600d6020528060005260406000206000915090505481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006117a48260016000868152602001908152602001600020612cc190919063ffffffff16565b905092915050565b60006117df7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66117da6125a2565b611832565b61181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614154565b60405180910390fd5b6118288383612cdb565b6001905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600680546118ab90614044565b80601f01602080910402602001604051908101604052809291908181526020018280546118d790614044565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b5050505050905090565b600b5481565b6000801b81565b600080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310611a4b576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611adf565b611a5e83826124ba90919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611bb89190613c52565b60405180910390a3600191505092915050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c0857600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c4157600080fd5b6000611c4c846124d0565b9050611ca081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d3581600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611dd59190613c52565b60405180910390a360019250505092915050565b6000611e0660016000848152602001908152602001600020612ea3565b9050919050565b6000611e17612921565b611e22848484612eb8565b600190509392505050565b83421115611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614263565b60405180910390fd5b6000600c547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600d60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611eec906142b2565b919050558a604051602001611f06969594939291906142fb565b60405160208183030381529060405280519060200120604051602001611f2d9291906143d4565b604051602081830303815290604052805190602001209050600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90614457565b60405180910390fd5b60018185858560405160008152602001604052604051611fd89493929190614477565b6020604051602081039080840390855afa158015611ffa573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890614508565b60405180910390fd5b85600a60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258860405161214f9190613c52565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61218e82610e8b565b61219781612520565b6121a183836125aa565b505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612238826124d0565b9050919050565b670de0b6b3a764000081565b612253612921565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba9061459a565b60405180910390fd5b6122cc8161299f565b50565b600081836122dd91906145ba565b905092915050565b600081836122f39190614643565b905092915050565b6123058282611832565b6123d757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061237c6125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612403836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612f3e565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247e575061247d82612fae565b5b9050919050565b6000600b547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6124b59190614643565b905090565b600081836124c89190614674565b905092915050565b60006125036008546124f569d3c21bcecceda1000000856122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050919050565b6000818361251891906146a8565b905092915050565b6125318161252c6125a2565b613018565b50565b61253e82826122fb565b61256381600160008581526020019081526020016000206123db90919063ffffffff16565b505050565b600061259b69d3c21bcecceda100000061258d600854856122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050919050565b600033905090565b6125b4828261309d565b6125d9816001600085815260200190815260200160002061317e90919063ffffffff16565b505050565b6125f381600f5461250a90919063ffffffff16565b600f819055506000612604826124d0565b905061261b81600b5461250a90919063ffffffff16565b600b81905550612629612485565b600854111561266d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126649061474a565b60405180910390fd5b6126bf81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885838360405161273392919061476a565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127999190613c52565b60405180910390a3505050565b6127bb81600f546124ba90919063ffffffff16565b600f8190555060006127cc826124d0565b90506127e381600b546124ba90919063ffffffff16565b600b8190555061283b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca533836040516128af92919061476a565b60405180910390a1600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129159190613c52565b60405180910390a35050565b6129296125a2565b73ffffffffffffffffffffffffffffffffffffffff16612947611753565b73ffffffffffffffffffffffffffffffffffffffff161461299d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612994906147df565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a7184846121a6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612aeb5781811015612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad49061484b565b60405180910390fd5b612aea84848484036131ae565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b58906148dd565b60405180910390fd5b612b6d82600083613379565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb9061496f565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ca89190613c52565b60405180910390a3612cbc8360008461337e565b505050565b6000612cd08360000183613383565b60001c905092915050565b612cf081600b5461250a90919063ffffffff16565b600b819055506000612d0182612568565b9050612d1881600f5461250a90919063ffffffff16565b600f81905550612d26612485565b6008541115612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d619061474a565b60405180910390fd5b612dbc82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858382604051612e3092919061476a565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612e969190613c52565b60405180910390a3505050565b6000612eb1826000016133ae565b9050919050565b612f398363a9059cbb60e01b8484604051602401612ed792919061476a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506133bf565b505050565b6000612f4a8383613486565b612fa3578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612fa8565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130228282611832565b6130995761302f816134a9565b61303d8360001c60206134d6565b60405160200161304e929190614a58565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130909190613b4d565b60405180910390fd5b5050565b6130a78282611832565b1561317a57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061311f6125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006131a6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613712565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321590614b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328590614b96565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161336c9190613c52565b60405180910390a3505050565b505050565b505050565b600082600001828154811061339b5761339a614bb6565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6000613421826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166138269092919063ffffffff16565b905060008151111561348157808060200190518101906134419190614bfa565b613480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347790614c99565b60405180910390fd5b5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b60606134cf8273ffffffffffffffffffffffffffffffffffffffff16601460ff166134d6565b9050919050565b6060600060028360026134e991906145ba565b6134f391906146a8565b67ffffffffffffffff81111561350c5761350b614cb9565b5b6040519080825280601f01601f19166020018201604052801561353e5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061357657613575614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135da576135d9614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261361a91906145ba565b61362491906146a8565b90505b60018111156136c4577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061366657613665614bb6565b5b1a60f81b82828151811061367d5761367c614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136bd90614ce8565b9050613627565b5060008414613708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff90614d5e565b60405180910390fd5b8091505092915050565b6000808360010160008481526020019081526020016000205490506000811461381a5760006001826137449190614674565b905060006001866000018054905061375c9190614674565b90508181146137cb57600086600001828154811061377d5761377c614bb6565b5b90600052602060002001549050808760000184815481106137a1576137a0614bb6565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806137df576137de614d7e565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613820565b60009150505b92915050565b6060613835848460008561383e565b90509392505050565b606082471015613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387a90614e1f565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516138ac9190614e86565b60006040518083038185875af1925050503d80600081146138e9576040519150601f19603f3d011682016040523d82523d6000602084013e6138ee565b606091505b50915091506138ff8783838761390b565b92505050949350505050565b6060831561396e576000835114156139665761392685613981565b613965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395c90614ee9565b60405180910390fd5b5b829050613979565b61397883836139a4565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156139b75781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139eb9190613b4d565b60405180910390fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a2e816139f9565b8114613a3957600080fd5b50565b600081359050613a4b81613a25565b92915050565b600060208284031215613a6757613a666139f4565b5b6000613a7584828501613a3c565b91505092915050565b60008115159050919050565b613a9381613a7e565b82525050565b6000602082019050613aae6000830184613a8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aee578082015181840152602081019050613ad3565b83811115613afd576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b1f82613ab4565b613b298185613abf565b9350613b39818560208601613ad0565b613b4281613b03565b840191505092915050565b60006020820190508181036000830152613b678184613b14565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9a82613b6f565b9050919050565b613baa81613b8f565b8114613bb557600080fd5b50565b600081359050613bc781613ba1565b92915050565b6000819050919050565b613be081613bcd565b8114613beb57600080fd5b50565b600081359050613bfd81613bd7565b92915050565b60008060408385031215613c1a57613c196139f4565b5b6000613c2885828601613bb8565b9250506020613c3985828601613bee565b9150509250929050565b613c4c81613bcd565b82525050565b6000602082019050613c676000830184613c43565b92915050565b6000819050919050565b613c8081613c6d565b82525050565b6000602082019050613c9b6000830184613c77565b92915050565b600080600060608486031215613cba57613cb96139f4565b5b6000613cc886828701613bb8565b9350506020613cd986828701613bb8565b9250506040613cea86828701613bee565b9150509250925092565b613cfd81613c6d565b8114613d0857600080fd5b50565b600081359050613d1a81613cf4565b92915050565b600060208284031215613d3657613d356139f4565b5b6000613d4484828501613d0b565b91505092915050565b60008060408385031215613d6457613d636139f4565b5b6000613d7285828601613d0b565b9250506020613d8385828601613bb8565b9150509250929050565b600060ff82169050919050565b613da381613d8d565b82525050565b6000602082019050613dbe6000830184613d9a565b92915050565b600060208284031215613dda57613dd96139f4565b5b6000613de884828501613bb8565b91505092915050565b600060208284031215613e0757613e066139f4565b5b6000613e1584828501613bee565b91505092915050565b613e2781613a7e565b8114613e3257600080fd5b50565b600081359050613e4481613e1e565b92915050565b600080600060608486031215613e6357613e626139f4565b5b6000613e7186828701613bee565b9350506020613e8286828701613bee565b9250506040613e9386828701613e35565b9150509250925092565b613ea681613b8f565b82525050565b6000602082019050613ec16000830184613e9d565b92915050565b60008060408385031215613ede57613edd6139f4565b5b6000613eec85828601613d0b565b9250506020613efd85828601613bee565b9150509250929050565b613f1081613d8d565b8114613f1b57600080fd5b50565b600081359050613f2d81613f07565b92915050565b600080600080600080600060e0888a031215613f5257613f516139f4565b5b6000613f608a828b01613bb8565b9750506020613f718a828b01613bb8565b9650506040613f828a828b01613bee565b9550506060613f938a828b01613bee565b9450506080613fa48a828b01613f1e565b93505060a0613fb58a828b01613d0b565b92505060c0613fc68a828b01613d0b565b91505092959891949750929550565b60008060408385031215613fec57613feb6139f4565b5b6000613ffa85828601613bb8565b925050602061400b85828601613bb8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405c57607f821691505b602082108114156140705761406f614015565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006140d2602f83613abf565b91506140dd82614076565b604082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b7f4d7573742068617665206d696e74657220726f6c650000000000000000000000600082015250565b600061413e601583613abf565b915061414982614108565b602082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b7f4d7573742068617665207265626173657220726f6c6500000000000000000000600082015250565b60006141aa601683613abf565b91506141b582614174565b602082019050919050565b600060208201905081810360008301526141d98161419d565b9050919050565b60006060820190506141f56000830186613c43565b6142026020830185613c43565b61420f6040830184613c43565b949350505050565b7f4149454747532f7065726d69742d657870697265640000000000000000000000600082015250565b600061424d601583613abf565b915061425882614217565b602082019050919050565b6000602082019050818103600083015261427c81614240565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142bd82613bcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142f0576142ef614283565b5b600182019050919050565b600060c0820190506143106000830189613c77565b61431d6020830188613e9d565b61432a6040830187613e9d565b6143376060830186613c43565b6143446080830185613c43565b61435160a0830184613c43565b979650505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061439d60028361435c565b91506143a882614367565b600282019050919050565b6000819050919050565b6143ce6143c982613c6d565b6143b3565b82525050565b60006143df82614390565b91506143eb82856143bd565b6020820191506143fb82846143bd565b6020820191508190509392505050565b7f4149454747532f696e76616c69642d616464726573732d300000000000000000600082015250565b6000614441601883613abf565b915061444c8261440b565b602082019050919050565b6000602082019050818103600083015261447081614434565b9050919050565b600060808201905061448c6000830187613c77565b6144996020830186613d9a565b6144a66040830185613c77565b6144b36060830184613c77565b95945050505050565b7f4149454747532f696e76616c69642d7065726d69740000000000000000000000600082015250565b60006144f2601583613abf565b91506144fd826144bc565b602082019050919050565b60006020820190508181036000830152614521816144e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614584602683613abf565b915061458f82614528565b604082019050919050565b600060208201905081810360008301526145b381614577565b9050919050565b60006145c582613bcd565b91506145d083613bcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460957614608614283565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061464e82613bcd565b915061465983613bcd565b92508261466957614668614614565b5b828204905092915050565b600061467f82613bcd565b915061468a83613bcd565b92508282101561469d5761469c614283565b5b828203905092915050565b60006146b382613bcd565b91506146be83613bcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146f3576146f2614283565b5b828201905092915050565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000600082015250565b6000614734601a83613abf565b915061473f826146fe565b602082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b600060408201905061477f6000830185613e9d565b61478c6020830184613c43565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147c9602083613abf565b91506147d482614793565b602082019050919050565b600060208201905081810360008301526147f8816147bc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614835601d83613abf565b9150614840826147ff565b602082019050919050565b6000602082019050818103600083015261486481614828565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006148c7602183613abf565b91506148d28261486b565b604082019050919050565b600060208201905081810360008301526148f6816148ba565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614959602283613abf565b9150614964826148fd565b604082019050919050565b600060208201905081810360008301526149888161494c565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006149c560178361435c565b91506149d08261498f565b601782019050919050565b60006149e682613ab4565b6149f0818561435c565b9350614a00818560208601613ad0565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614a4260118361435c565b9150614a4d82614a0c565b601182019050919050565b6000614a63826149b8565b9150614a6f82856149db565b9150614a7a82614a35565b9150614a8682846149db565b91508190509392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aee602483613abf565b9150614af982614a92565b604082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602283613abf565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614bf481613e1e565b92915050565b600060208284031215614c1057614c0f6139f4565b5b6000614c1e84828501614be5565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614c83602a83613abf565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000614cf382613bcd565b91506000821415614d0757614d06614283565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614d48602083613abf565b9150614d5382614d12565b602082019050919050565b60006020820190508181036000830152614d7781614d3b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614e09602683613abf565b9150614e1482614dad565b604082019050919050565b60006020820190508181036000830152614e3881614dfc565b9050919050565b600081519050919050565b600081905092915050565b6000614e6082614e3f565b614e6a8185614e4a565b9350614e7a818560208601613ad0565b80840191505092915050565b6000614e928284614e55565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614ed3601d83613abf565b9150614ede82614e9d565b602082019050919050565b60006020820190508181036000830152614f0281614ec6565b905091905056fea26469706673582212203d1b13a400eebc7f4c386b371f79dc1d6b4dadf007ba8ef21226df416ca16ed364736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061027f5760003560e01c806371810a0f1161015c578063a217fddf116100ce578063d539139311610087578063d53913931461084e578063d547741f1461086c578063dd62ed3e14610888578063df7eaa14146108b8578063ec342ad0146108e8578063f2fde38b146109065761027f565b8063a217fddf14610754578063a457c2d714610772578063a9059cbb146107a2578063ca15c873146107d2578063cea9d26f14610802578063d505accf146108325761027f565b80638da5cb5b116101205780638da5cb5b1461066a5780639010d07c14610688578063917505f4146106b857806391d14854146106e857806395d89b411461071857806397d63f93146107365761027f565b806371810a0f146105a057806379cc6790146105d05780637af548c1146105ec5780637ecebe001461061c57806383eb70e51461064c5761027f565b8063336d2692116101f557806340c10f19116101b957806340c10f19146104de57806342966c681461050e57806348a6f2151461052a57806364dd48f51461054857806370a0823114610566578063715018a6146105965761027f565b8063336d2692146104145780633644e5151461044457806336568abe14610462578063395093511461047e5780633af9e669146104ae5761027f565b806320606b701161024757806320606b701461033e57806323b872dd1461035c578063248a9ca31461038c5780632f2ff15d146103bc57806330adf81f146103d8578063313ce567146103f65761027f565b806301ffc9a71461028457806306fdde03146102b4578063095ea7b3146102d257806311d3e6c41461030257806318160ddd14610320575b600080fd5b61029e60048036038101906102999190613a51565b610922565b6040516102ab9190613a99565b60405180910390f35b6102bc61099c565b6040516102c99190613b4d565b60405180910390f35b6102ec60048036038101906102e79190613c03565b610a2e565b6040516102f99190613a99565b60405180910390f35b61030a610b20565b6040516103179190613c52565b60405180910390f35b610328610b2f565b6040516103359190613c52565b60405180910390f35b610346610b39565b6040516103539190613c86565b60405180910390f35b61037660048036038101906103719190613ca1565b610b5d565b6040516103839190613a99565b60405180910390f35b6103a660048036038101906103a19190613d20565b610e8b565b6040516103b39190613c86565b60405180910390f35b6103d660048036038101906103d19190613d4d565b610eaa565b005b6103e0610ecb565b6040516103ed9190613c86565b60405180910390f35b6103fe610ef2565b60405161040b9190613da9565b60405180910390f35b61042e60048036038101906104299190613c03565b610efb565b60405161043b9190613a99565b60405180910390f35b61044c611113565b6040516104599190613c86565b60405180910390f35b61047c60048036038101906104779190613d4d565b611119565b005b61049860048036038101906104939190613c03565b61119c565b6040516104a59190613a99565b60405180910390f35b6104c860048036038101906104c39190613dc4565b611398565b6040516104d59190613c52565b60405180910390f35b6104f860048036038101906104f39190613c03565b6113e1565b6040516105059190613a99565b60405180910390f35b61052860048036038101906105239190613df1565b611467565b005b610532611473565b60405161053f9190613c52565b60405180910390f35b610550611479565b60405161055d9190613c52565b60405180910390f35b610580600480360381019061057b9190613dc4565b611487565b60405161058d9190613c52565b60405180910390f35b61059e6114d8565b005b6105ba60048036038101906105b59190613df1565b6114ec565b6040516105c79190613c52565b60405180910390f35b6105ea60048036038101906105e59190613c03565b6114fe565b005b61060660048036038101906106019190613e4a565b61151e565b6040516106139190613c52565b60405180910390f35b61063660048036038101906106319190613dc4565b611717565b6040516106439190613c52565b60405180910390f35b61065461172f565b6040516106619190613c86565b60405180910390f35b610672611753565b60405161067f9190613eac565b60405180910390f35b6106a2600480360381019061069d9190613ec7565b61177d565b6040516106af9190613eac565b60405180910390f35b6106d260048036038101906106cd9190613c03565b6117ac565b6040516106df9190613a99565b60405180910390f35b61070260048036038101906106fd9190613d4d565b611832565b60405161070f9190613a99565b60405180910390f35b61072061189c565b60405161072d9190613b4d565b60405180910390f35b61073e61192e565b60405161074b9190613c52565b60405180910390f35b61075c611934565b6040516107699190613c86565b60405180910390f35b61078c60048036038101906107879190613c03565b61193b565b6040516107999190613a99565b60405180910390f35b6107bc60048036038101906107b79190613c03565b611bcb565b6040516107c99190613a99565b60405180910390f35b6107ec60048036038101906107e79190613d20565b611de9565b6040516107f99190613c52565b60405180910390f35b61081c60048036038101906108179190613ca1565b611e0d565b6040516108299190613a99565b60405180910390f35b61084c60048036038101906108479190613f33565b611e2d565b005b610856612161565b6040516108639190613c86565b60405180910390f35b61088660048036038101906108819190613d4d565b612185565b005b6108a2600480360381019061089d9190613fd5565b6121a6565b6040516108af9190613c52565b60405180910390f35b6108d260048036038101906108cd9190613df1565b61222d565b6040516108df9190613c52565b60405180910390f35b6108f061223f565b6040516108fd9190613c52565b60405180910390f35b610920600480360381019061091b9190613dc4565b61224b565b005b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099557506109948261240b565b5b9050919050565b6060600580546109ab90614044565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790614044565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b600081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b0e9190613c52565b60405180910390a36001905092915050565b6000610b2a612485565b905090565b6000600f54905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9a57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bd357600080fd5b610c6283600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610ced846124d0565b9050610d4181600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610dd681600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610e769190613c52565b60405180910390a36001925050509392505050565b6000806000838152602001908152602001600020600101549050919050565b610eb382610e8b565b610ebc81612520565b610ec68383612534565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b60006012905090565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f3857600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7157600080fd5b610fc383600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061105883600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110f386612568565b6040516111009190613c52565b60405180910390a3600191505092915050565b600c5481565b6111216125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906140e8565b60405180910390fd5b61119882826125aa565b5050565b600061122d82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516113869190613c52565b60405180910390a36001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006114147f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661140f6125a2565b611832565b611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614154565b60405180910390fd5b61145d83836125de565b6001905092915050565b611470816127a6565b50565b60085481565b69d3c21bcecceda100000081565b60006114d1600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612568565b9050919050565b6114e0612921565b6114ea600061299f565b565b60006114f782612568565b9050919050565b6115108261150a6125a2565b83612a65565b61151a8282612af1565b5050565b60006115517f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7561154c6125a2565b611832565b611590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611587906141c0565b60405180910390fd5b60008314156115e2577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0846008546008546040516115d0939291906141e0565b60405180910390a1600f549050611710565b600060085490508261164257611637670de0b6b3a764000061162961161887670de0b6b3a76400006124ba90919063ffffffff16565b6008546122cf90919063ffffffff16565b6122e590919063ffffffff16565b6008819055506116bb565b600061168d670de0b6b3a764000061167f61166e88670de0b6b3a764000061250a90919063ffffffff16565b6008546122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050611697612485565b8110156116aa57806008819055506116b9565b6116b2612485565b6008819055505b505b6116c6600b54612568565b600f819055507fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c08582600854604051611701939291906141e0565b60405180910390a1600f549150505b9392505050565b600d6020528060005260406000206000915090505481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006117a48260016000868152602001908152602001600020612cc190919063ffffffff16565b905092915050565b60006117df7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66117da6125a2565b611832565b61181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614154565b60405180910390fd5b6118288383612cdb565b6001905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600680546118ab90614044565b80601f01602080910402602001604051908101604052809291908181526020018280546118d790614044565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b5050505050905090565b600b5481565b6000801b81565b600080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310611a4b576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611adf565b611a5e83826124ba90919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611bb89190613c52565b60405180910390a3600191505092915050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c0857600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c4157600080fd5b6000611c4c846124d0565b9050611ca081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d3581600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611dd59190613c52565b60405180910390a360019250505092915050565b6000611e0660016000848152602001908152602001600020612ea3565b9050919050565b6000611e17612921565b611e22848484612eb8565b600190509392505050565b83421115611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614263565b60405180910390fd5b6000600c547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600d60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611eec906142b2565b919050558a604051602001611f06969594939291906142fb565b60405160208183030381529060405280519060200120604051602001611f2d9291906143d4565b604051602081830303815290604052805190602001209050600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90614457565b60405180910390fd5b60018185858560405160008152602001604052604051611fd89493929190614477565b6020604051602081039080840390855afa158015611ffa573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890614508565b60405180910390fd5b85600a60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258860405161214f9190613c52565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61218e82610e8b565b61219781612520565b6121a183836125aa565b505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612238826124d0565b9050919050565b670de0b6b3a764000081565b612253612921565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba9061459a565b60405180910390fd5b6122cc8161299f565b50565b600081836122dd91906145ba565b905092915050565b600081836122f39190614643565b905092915050565b6123058282611832565b6123d757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061237c6125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612403836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612f3e565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247e575061247d82612fae565b5b9050919050565b6000600b547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6124b59190614643565b905090565b600081836124c89190614674565b905092915050565b60006125036008546124f569d3c21bcecceda1000000856122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050919050565b6000818361251891906146a8565b905092915050565b6125318161252c6125a2565b613018565b50565b61253e82826122fb565b61256381600160008581526020019081526020016000206123db90919063ffffffff16565b505050565b600061259b69d3c21bcecceda100000061258d600854856122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050919050565b600033905090565b6125b4828261309d565b6125d9816001600085815260200190815260200160002061317e90919063ffffffff16565b505050565b6125f381600f5461250a90919063ffffffff16565b600f819055506000612604826124d0565b905061261b81600b5461250a90919063ffffffff16565b600b81905550612629612485565b600854111561266d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126649061474a565b60405180910390fd5b6126bf81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885838360405161273392919061476a565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127999190613c52565b60405180910390a3505050565b6127bb81600f546124ba90919063ffffffff16565b600f8190555060006127cc826124d0565b90506127e381600b546124ba90919063ffffffff16565b600b8190555061283b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca533836040516128af92919061476a565b60405180910390a1600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129159190613c52565b60405180910390a35050565b6129296125a2565b73ffffffffffffffffffffffffffffffffffffffff16612947611753565b73ffffffffffffffffffffffffffffffffffffffff161461299d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612994906147df565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a7184846121a6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612aeb5781811015612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad49061484b565b60405180910390fd5b612aea84848484036131ae565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b58906148dd565b60405180910390fd5b612b6d82600083613379565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb9061496f565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ca89190613c52565b60405180910390a3612cbc8360008461337e565b505050565b6000612cd08360000183613383565b60001c905092915050565b612cf081600b5461250a90919063ffffffff16565b600b819055506000612d0182612568565b9050612d1881600f5461250a90919063ffffffff16565b600f81905550612d26612485565b6008541115612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d619061474a565b60405180910390fd5b612dbc82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250a90919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858382604051612e3092919061476a565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612e969190613c52565b60405180910390a3505050565b6000612eb1826000016133ae565b9050919050565b612f398363a9059cbb60e01b8484604051602401612ed792919061476a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506133bf565b505050565b6000612f4a8383613486565b612fa3578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612fa8565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130228282611832565b6130995761302f816134a9565b61303d8360001c60206134d6565b60405160200161304e929190614a58565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130909190613b4d565b60405180910390fd5b5050565b6130a78282611832565b1561317a57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061311f6125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006131a6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613712565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321590614b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328590614b96565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161336c9190613c52565b60405180910390a3505050565b505050565b505050565b600082600001828154811061339b5761339a614bb6565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6000613421826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166138269092919063ffffffff16565b905060008151111561348157808060200190518101906134419190614bfa565b613480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347790614c99565b60405180910390fd5b5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b60606134cf8273ffffffffffffffffffffffffffffffffffffffff16601460ff166134d6565b9050919050565b6060600060028360026134e991906145ba565b6134f391906146a8565b67ffffffffffffffff81111561350c5761350b614cb9565b5b6040519080825280601f01601f19166020018201604052801561353e5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061357657613575614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135da576135d9614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261361a91906145ba565b61362491906146a8565b90505b60018111156136c4577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061366657613665614bb6565b5b1a60f81b82828151811061367d5761367c614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136bd90614ce8565b9050613627565b5060008414613708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff90614d5e565b60405180910390fd5b8091505092915050565b6000808360010160008481526020019081526020016000205490506000811461381a5760006001826137449190614674565b905060006001866000018054905061375c9190614674565b90508181146137cb57600086600001828154811061377d5761377c614bb6565b5b90600052602060002001549050808760000184815481106137a1576137a0614bb6565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806137df576137de614d7e565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613820565b60009150505b92915050565b6060613835848460008561383e565b90509392505050565b606082471015613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387a90614e1f565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516138ac9190614e86565b60006040518083038185875af1925050503d80600081146138e9576040519150601f19603f3d011682016040523d82523d6000602084013e6138ee565b606091505b50915091506138ff8783838761390b565b92505050949350505050565b6060831561396e576000835114156139665761392685613981565b613965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395c90614ee9565b60405180910390fd5b5b829050613979565b61397883836139a4565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156139b75781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139eb9190613b4d565b60405180910390fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a2e816139f9565b8114613a3957600080fd5b50565b600081359050613a4b81613a25565b92915050565b600060208284031215613a6757613a666139f4565b5b6000613a7584828501613a3c565b91505092915050565b60008115159050919050565b613a9381613a7e565b82525050565b6000602082019050613aae6000830184613a8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aee578082015181840152602081019050613ad3565b83811115613afd576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b1f82613ab4565b613b298185613abf565b9350613b39818560208601613ad0565b613b4281613b03565b840191505092915050565b60006020820190508181036000830152613b678184613b14565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9a82613b6f565b9050919050565b613baa81613b8f565b8114613bb557600080fd5b50565b600081359050613bc781613ba1565b92915050565b6000819050919050565b613be081613bcd565b8114613beb57600080fd5b50565b600081359050613bfd81613bd7565b92915050565b60008060408385031215613c1a57613c196139f4565b5b6000613c2885828601613bb8565b9250506020613c3985828601613bee565b9150509250929050565b613c4c81613bcd565b82525050565b6000602082019050613c676000830184613c43565b92915050565b6000819050919050565b613c8081613c6d565b82525050565b6000602082019050613c9b6000830184613c77565b92915050565b600080600060608486031215613cba57613cb96139f4565b5b6000613cc886828701613bb8565b9350506020613cd986828701613bb8565b9250506040613cea86828701613bee565b9150509250925092565b613cfd81613c6d565b8114613d0857600080fd5b50565b600081359050613d1a81613cf4565b92915050565b600060208284031215613d3657613d356139f4565b5b6000613d4484828501613d0b565b91505092915050565b60008060408385031215613d6457613d636139f4565b5b6000613d7285828601613d0b565b9250506020613d8385828601613bb8565b9150509250929050565b600060ff82169050919050565b613da381613d8d565b82525050565b6000602082019050613dbe6000830184613d9a565b92915050565b600060208284031215613dda57613dd96139f4565b5b6000613de884828501613bb8565b91505092915050565b600060208284031215613e0757613e066139f4565b5b6000613e1584828501613bee565b91505092915050565b613e2781613a7e565b8114613e3257600080fd5b50565b600081359050613e4481613e1e565b92915050565b600080600060608486031215613e6357613e626139f4565b5b6000613e7186828701613bee565b9350506020613e8286828701613bee565b9250506040613e9386828701613e35565b9150509250925092565b613ea681613b8f565b82525050565b6000602082019050613ec16000830184613e9d565b92915050565b60008060408385031215613ede57613edd6139f4565b5b6000613eec85828601613d0b565b9250506020613efd85828601613bee565b9150509250929050565b613f1081613d8d565b8114613f1b57600080fd5b50565b600081359050613f2d81613f07565b92915050565b600080600080600080600060e0888a031215613f5257613f516139f4565b5b6000613f608a828b01613bb8565b9750506020613f718a828b01613bb8565b9650506040613f828a828b01613bee565b9550506060613f938a828b01613bee565b9450506080613fa48a828b01613f1e565b93505060a0613fb58a828b01613d0b565b92505060c0613fc68a828b01613d0b565b91505092959891949750929550565b60008060408385031215613fec57613feb6139f4565b5b6000613ffa85828601613bb8565b925050602061400b85828601613bb8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405c57607f821691505b602082108114156140705761406f614015565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006140d2602f83613abf565b91506140dd82614076565b604082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b7f4d7573742068617665206d696e74657220726f6c650000000000000000000000600082015250565b600061413e601583613abf565b915061414982614108565b602082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b7f4d7573742068617665207265626173657220726f6c6500000000000000000000600082015250565b60006141aa601683613abf565b91506141b582614174565b602082019050919050565b600060208201905081810360008301526141d98161419d565b9050919050565b60006060820190506141f56000830186613c43565b6142026020830185613c43565b61420f6040830184613c43565b949350505050565b7f4149454747532f7065726d69742d657870697265640000000000000000000000600082015250565b600061424d601583613abf565b915061425882614217565b602082019050919050565b6000602082019050818103600083015261427c81614240565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142bd82613bcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142f0576142ef614283565b5b600182019050919050565b600060c0820190506143106000830189613c77565b61431d6020830188613e9d565b61432a6040830187613e9d565b6143376060830186613c43565b6143446080830185613c43565b61435160a0830184613c43565b979650505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061439d60028361435c565b91506143a882614367565b600282019050919050565b6000819050919050565b6143ce6143c982613c6d565b6143b3565b82525050565b60006143df82614390565b91506143eb82856143bd565b6020820191506143fb82846143bd565b6020820191508190509392505050565b7f4149454747532f696e76616c69642d616464726573732d300000000000000000600082015250565b6000614441601883613abf565b915061444c8261440b565b602082019050919050565b6000602082019050818103600083015261447081614434565b9050919050565b600060808201905061448c6000830187613c77565b6144996020830186613d9a565b6144a66040830185613c77565b6144b36060830184613c77565b95945050505050565b7f4149454747532f696e76616c69642d7065726d69740000000000000000000000600082015250565b60006144f2601583613abf565b91506144fd826144bc565b602082019050919050565b60006020820190508181036000830152614521816144e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614584602683613abf565b915061458f82614528565b604082019050919050565b600060208201905081810360008301526145b381614577565b9050919050565b60006145c582613bcd565b91506145d083613bcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460957614608614283565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061464e82613bcd565b915061465983613bcd565b92508261466957614668614614565b5b828204905092915050565b600061467f82613bcd565b915061468a83613bcd565b92508282101561469d5761469c614283565b5b828203905092915050565b60006146b382613bcd565b91506146be83613bcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146f3576146f2614283565b5b828201905092915050565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000600082015250565b6000614734601a83613abf565b915061473f826146fe565b602082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b600060408201905061477f6000830185613e9d565b61478c6020830184613c43565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147c9602083613abf565b91506147d482614793565b602082019050919050565b600060208201905081810360008301526147f8816147bc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614835601d83613abf565b9150614840826147ff565b602082019050919050565b6000602082019050818103600083015261486481614828565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006148c7602183613abf565b91506148d28261486b565b604082019050919050565b600060208201905081810360008301526148f6816148ba565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614959602283613abf565b9150614964826148fd565b604082019050919050565b600060208201905081810360008301526149888161494c565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006149c560178361435c565b91506149d08261498f565b601782019050919050565b60006149e682613ab4565b6149f0818561435c565b9350614a00818560208601613ad0565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614a4260118361435c565b9150614a4d82614a0c565b601182019050919050565b6000614a63826149b8565b9150614a6f82856149db565b9150614a7a82614a35565b9150614a8682846149db565b91508190509392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aee602483613abf565b9150614af982614a92565b604082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602283613abf565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614bf481613e1e565b92915050565b600060208284031215614c1057614c0f6139f4565b5b6000614c1e84828501614be5565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614c83602a83613abf565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000614cf382613bcd565b91506000821415614d0757614d06614283565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614d48602083613abf565b9150614d5382614d12565b602082019050919050565b60006020820190508181036000830152614d7781614d3b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614e09602683613abf565b9150614e1482614dad565b604082019050919050565b60006020820190508181036000830152614e3881614dfc565b9050919050565b600081519050919050565b600081905092915050565b6000614e6082614e3f565b614e6a8185614e4a565b9350614e7a818560208601613ad0565b80840191505092915050565b6000614e928284614e55565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614ed3601d83613abf565b9150614ede82614e9d565b602082019050919050565b60006020820190508181036000830152614f0281614ec6565b905091905056fea26469706673582212203d1b13a400eebc7f4c386b371f79dc1d6b4dadf007ba8ef21226df416ca16ed364736f6c63430008090033

Deployed Bytecode Sourcemap

98081:14917:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46273:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69876:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107824:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100203:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100021:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99241:155;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105491:631;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41591:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42082:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98963:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70838:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103732:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99087:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43308:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108448:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106565:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100752:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101801:78;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98636:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98390:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106243:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50289:103;;;:::i;:::-;;112144:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82473:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110794:1342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99127:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82899:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49641:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47162:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102549:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40014:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70095:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98824:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39043:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109132:612;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104441:788;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47539:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112750:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109789:997;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82830:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42563:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106990:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112275:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98508:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50547:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46273:290;46403:4;46460:42;46445:57;;;:11;:57;;;;:110;;;;46519:36;46543:11;46519:23;:36::i;:::-;46445:110;46425:130;;46273:290;;;:::o;69876:100::-;69930:13;69963:5;69956:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69876:100;:::o;107824:251::-;107925:4;107988:5;107947:17;:29;107965:10;107947:29;;;;;;;;;;;;;;;:38;107977:7;107947:38;;;;;;;;;;;;;;;:46;;;;108030:7;108009:36;;108018:10;108009:36;;;108039:5;108009:36;;;;;;:::i;:::-;;;;;;;;108063:4;108056:11;;107824:251;;;;:::o;100203:105::-;100254:7;100281:19;:17;:19::i;:::-;100274:26;;100203:105;:::o;100021:100::-;100074:7;100101:12;;100094:19;;100021:100;:::o;99241:155::-;99292:104;99241:155;:::o;105491:631::-;105632:4;105619:2;99568:3;99554:18;;:2;:18;;;;99546:27;;;;;;99606:4;99592:19;;:2;:19;;;;99584:28;;;;;;105718:70:::1;105782:5;105718:17;:23;105736:4;105718:23;;;;;;;;;;;;;;;:59;105756:10;105718:59;;;;;;;;;;;;;;;;:63;;:70;;;;:::i;:::-;105680:17;:23;105698:4;105680:23;;;;;;;;;;;;;;;:35;105704:10;105680:35;;;;;;;;;;;;;;;:108;;;;105833:19;105855:24;105873:5;105855:17;:24::i;:::-;105833:46;;105942:38;105968:11;105942:15;:21;105958:4;105942:21;;;;;;;;;;;;;;;;:25;;:38;;;;:::i;:::-;105918:15;:21;105934:4;105918:21;;;;;;;;;;;;;;;:62;;;;106013:36;106037:11;106013:15;:19;106029:2;106013:19;;;;;;;;;;;;;;;;:23;;:36;;;;:::i;:::-;105991:15;:19;106007:2;105991:19;;;;;;;;;;;;;;;:58;;;;106080:2;106065:25;;106074:4;106065:25;;;106084:5;106065:25;;;;;;:::i;:::-;;;;;;;;106110:4;106103:11;;;105491:631:::0;;;;;;:::o;41591:181::-;41710:7;41742:6;:12;41749:4;41742:12;;;;;;;;;;;:22;;;41735:29;;41591:181;;;:::o;42082:188::-;42201:18;42214:4;42201:12;:18::i;:::-;39534:16;39545:4;39534:10;:16::i;:::-;42237:25:::1;42248:4;42254:7;42237:10;:25::i;:::-;42082:188:::0;;;:::o;98963:117::-;99014:66;98963:117;;;:::o;70838:93::-;70896:5;70921:2;70914:9;;70838:93;:::o;103732:446::-;103849:4;103827:2;99568:3;99554:18;;:2;:18;;;;99546:27;;;;;;99606:4;99592:19;;:2;:19;;;;99584:28;;;;;;103940:38:::1;103972:5;103940:15;:27;103956:10;103940:27;;;;;;;;;;;;;;;;:31;;:38;;;;:::i;:::-;103910:15;:27;103926:10;103910:27;;;;;;;;;;;;;;;:68;;;;104052:30;104076:5;104052:15;:19;104068:2;104052:19;;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;104030:15;:19;104046:2;104030:19;;;;;;;;;;;;;;;:52;;;;104119:2;104098:50;;104107:10;104098:50;;;104123:24;104141:5;104123:17;:24::i;:::-;104098:50;;;;;;:::i;:::-;;;;;;;;104166:4;104159:11;;103732:446:::0;;;;;:::o;99087:31::-;;;;:::o;43308:287::-;43461:12;:10;:12::i;:::-;43450:23;;:7;:23;;;43428:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;43561:26;43573:4;43579:7;43561:11;:26::i;:::-;43308:287;;:::o;108448:422::-;108564:4;108627:78;108694:10;108627:17;:29;108645:10;108627:29;;;;;;;;;;;;;;;:62;108671:7;108627:62;;;;;;;;;;;;;;;;:66;;:78;;;;:::i;:::-;108586:17;:29;108604:10;108586:29;;;;;;;;;;;;;;;:38;108616:7;108586:38;;;;;;;;;;;;;;;:119;;;;108769:7;108721:119;;108744:10;108721:119;;;108791:17;:29;108809:10;108791:29;;;;;;;;;;;;;;;:38;108821:7;108791:38;;;;;;;;;;;;;;;;108721:119;;;;;;:::i;:::-;;;;;;;;108858:4;108851:11;;108448:422;;;;:::o;106565:118::-;106628:7;106655:15;:20;106671:3;106655:20;;;;;;;;;;;;;;;;106648:27;;106565:118;;;:::o;100752:205::-;100812:4;100837:34;82868:24;100858:12;:10;:12::i;:::-;100837:7;:34::i;:::-;100829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;100910:17;100916:2;100920:6;100910:5;:17::i;:::-;100945:4;100938:11;;100752:205;;;;:::o;101801:78::-;101858:13;101864:6;101858:5;:13::i;:::-;101801:78;:::o;98636:35::-;;;;:::o;98390:49::-;98433:6;98390:49;:::o;106243:136::-;106305:7;106332:39;106350:15;:20;106366:3;106350:20;;;;;;;;;;;;;;;;106332:17;:39::i;:::-;106325:46;;106243:136;;;:::o;50289:103::-;49527:13;:11;:13::i;:::-;50354:30:::1;50381:1;50354:18;:30::i;:::-;50289:103::o:0;112144:123::-;112207:7;112234:25;112252:6;112234:17;:25::i;:::-;112227:32;;112144:123;;;:::o;82473:164::-;82550:46;82566:7;82575:12;:10;:12::i;:::-;82589:6;82550:15;:46::i;:::-;82607:22;82613:7;82622:6;82607:5;:22::i;:::-;82473:164;;:::o;110794:1342::-;110910:7;110938:35;82938:25;110960:12;:10;:12::i;:::-;110938:7;:35::i;:::-;110930:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;111053:1;111039:10;:15;111035:144;;;111076:57;111083:5;111090:20;;111112;;111076:57;;;;;;;;:::i;:::-;;;;;;;;111155:12;;111148:19;;;;111035:144;111214:32;111249:20;;111214:55;;111287:8;111282:638;;111392:92;98539:6;111392:64;111435:20;111444:10;98539:6;111435:8;;:20;;;;:::i;:::-;111392;;:42;;:64;;;;:::i;:::-;:86;;:92;;;;:::i;:::-;111369:20;:115;;;;111282:638;;;111574:24;111601:92;98539:6;111601:64;111644:20;111653:10;98539:6;111644:8;;:20;;;;:::i;:::-;111601;;:42;;:64;;;;:::i;:::-;:86;;:92;;;;:::i;:::-;111574:119;;111731:19;:17;:19::i;:::-;111712:16;:38;111708:201;;;111794:16;111771:20;:39;;;;111708:201;;;111874:19;:17;:19::i;:::-;111851:20;:42;;;;111708:201;111502:418;111282:638;111990:29;112008:10;;111990:17;:29::i;:::-;111975:12;:44;;;;112037:61;112044:5;112051:24;112077:20;;112037:61;;;;;;;;:::i;:::-;;;;;;;;112116:12;;112109:19;;;110794:1342;;;;;;:::o;99127:41::-;;;;;;;;;;;;;;;;;:::o;82899:64::-;82938:25;82899:64;:::o;49641:87::-;49687:7;49714:6;;;;;;;;;;;49707:13;;49641:87;:::o;47162:203::-;47297:7;47329:28;47351:5;47329:12;:18;47342:4;47329:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;47322:35;;47162:203;;;;:::o;102549:223::-;102617:4;102642:34;82868:24;102663:12;:10;:12::i;:::-;102642:7;:34::i;:::-;102634:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;102715:27;102731:2;102735:6;102715:15;:27::i;:::-;102760:4;102753:11;;102549:223;;;;:::o;40014:197::-;40145:4;40174:6;:12;40181:4;40174:12;;;;;;;;;;;:20;;:29;40195:7;40174:29;;;;;;;;;;;;;;;;;;;;;;;;;40167:36;;40014:197;;;;:::o;70095:104::-;70151:13;70184:7;70177:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70095:104;:::o;98824:25::-;;;;:::o;39043:49::-;39088:4;39043:49;;;:::o;109132:612::-;109253:4;109275:16;109294:17;:29;109312:10;109294:29;;;;;;;;;;;;;;;:38;109324:7;109294:38;;;;;;;;;;;;;;;;109275:57;;109366:8;109347:15;:27;109343:237;;109432:1;109391:17;:29;109409:10;109391:29;;;;;;;;;;;;;;;:38;109421:7;109391:38;;;;;;;;;;;;;;;:42;;;;109343:237;;;109507:61;109538:15;109507:8;:12;;:61;;;;:::i;:::-;109466:17;:29;109484:10;109466:29;;;;;;;;;;;;;;;:38;109496:7;109466:38;;;;;;;;;;;;;;;:102;;;;109343:237;109643:7;109595:119;;109618:10;109595:119;;;109665:17;:29;109683:10;109665:29;;;;;;;;;;;;;;;:38;109695:7;109665:38;;;;;;;;;;;;;;;;109595:119;;;;;;:::i;:::-;;;;;;;;109732:4;109725:11;;;109132:612;;;;:::o;104441:788::-;104566:4;104544:2;99568:3;99554:18;;:2;:18;;;;99546:27;;;;;;99606:4;99592:19;;:2;:19;;;;99584:28;;;;;;104868:19:::1;104890:24;104908:5;104890:17;:24::i;:::-;104868:46;;104996:44;105028:11;104996:15;:27;105012:10;104996:27;;;;;;;;;;;;;;;;:31;;:44;;;;:::i;:::-;104966:15;:27;104982:10;104966:27;;;;;;;;;;;;;;;:74;;;;105114:36;105138:11;105114:15;:19;105130:2;105114:19;;;;;;;;;;;;;;;;:23;;:36;;;;:::i;:::-;105092:15;:19;105108:2;105092:19;;;;;;;;;;;;;;;:58;;;;105187:2;105166:31;;105175:10;105166:31;;;105191:5;105166:31;;;;;;:::i;:::-;;;;;;;;105217:4;105210:11;;;104441:788:::0;;;;;:::o;47539:192::-;47664:7;47696:27;:12;:18;47709:4;47696:18;;;;;;;;;;;:25;:27::i;:::-;47689:34;;47539:192;;;:::o;112750:245::-;112875:4;49527:13;:11;:13::i;:::-;112916:49:::1;112946:5;112954:2;112958:6;112916:22;:49::i;:::-;112983:4;112976:11;;112750:245:::0;;;;;:::o;109789:997::-;110016:8;109997:15;:27;;109989:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;110063:14;110168:16;;99014:66;110272:15;;110314:5;110346:7;110380:5;110412:6;:13;110419:5;110412:13;;;;;;;;;;;;;;;;:15;;;;;;;;;:::i;:::-;;;;;110454:8;110235:250;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;110203:301;;;;;;110104:415;;;;;;;;;:::i;:::-;;;;;;;;;;;;;110080:450;;;;;;110063:467;;110568:1;110551:19;;:5;:19;;;;110543:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;110627:26;110637:6;110645:1;110648;110651;110627:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110618:35;;:5;:35;;;110610:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;110726:5;110690:17;:24;110708:5;110690:24;;;;;;;;;;;;;;;:33;110715:7;110690:33;;;;;;;;;;;;;;;:41;;;;110763:7;110747:31;;110756:5;110747:31;;;110772:5;110747:31;;;;;;:::i;:::-;;;;;;;;109978:808;109789:997;;;;;;;:::o;82830:62::-;82868:24;82830:62;:::o;42563:190::-;42683:18;42696:4;42683:12;:18::i;:::-;39534:16;39545:4;39534:10;:16::i;:::-;42719:26:::1;42731:4;42737:7;42719:11;:26::i;:::-;42563:190:::0;;;:::o;106990:192::-;107108:7;107140:17;:25;107158:6;107140:25;;;;;;;;;;;;;;;:34;107166:7;107140:34;;;;;;;;;;;;;;;;107133:41;;106990:192;;;;:::o;112275:121::-;112337:7;112364:24;112382:5;112364:17;:24::i;:::-;112357:31;;112275:121;;;:::o;98508:37::-;98539:6;98508:37;:::o;50547:238::-;49527:13;:11;:13::i;:::-;50670:1:::1;50650:22;;:8;:22;;;;50628:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;50749:28;50768:8;50749:18;:28::i;:::-;50547:238:::0;:::o;92106:98::-;92164:7;92195:1;92191;:5;;;;:::i;:::-;92184:12;;92106:98;;;;:::o;92505:::-;92563:7;92594:1;92590;:5;;;;:::i;:::-;92583:12;;92505:98;;;;:::o;44974:238::-;45058:22;45066:4;45072:7;45058;:22::i;:::-;45053:152;;45129:4;45097:6;:12;45104:4;45097:12;;;;;;;;;;;:20;;:29;45118:7;45097:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;45180:12;:10;:12::i;:::-;45153:40;;45171:7;45153:40;;45165:4;45153:40;;;;;;;;;;45053:152;44974:238;;:::o;8766:175::-;8854:4;8883:50;8888:3;:10;;8924:5;8908:23;;8900:32;;8883:4;:50::i;:::-;8876:57;;8766:175;;;;:::o;39642:280::-;39772:4;39829:32;39814:47;;;:11;:47;;;;:100;;;;39878:36;39902:11;39878:23;:36::i;:::-;39814:100;39794:120;;39642:280;;;:::o;100316:319::-;100368:7;100617:10;;100610:2;100595:32;;;;:::i;:::-;100588:39;;100316:319;:::o;91749:98::-;91807:7;91838:1;91834;:5;;;;:::i;:::-;91827:12;;91749:98;;;;:::o;112567:153::-;112632:7;112659:53;112691:20;;112659:27;98433:6;112659:5;:9;;:27;;;;:::i;:::-;:31;;:53;;;;:::i;:::-;112652:60;;112567:153;;;:::o;91368:98::-;91426:7;91457:1;91453;:5;;;;:::i;:::-;91446:12;;91368:98;;;;:::o;40515:105::-;40582:30;40593:4;40599:12;:10;:12::i;:::-;40582:10;:30::i;:::-;40515:105;:::o;47824:201::-;47944:31;47961:4;47967:7;47944:16;:31::i;:::-;47986;48009:7;47986:12;:18;47999:4;47986:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;47824:201;;:::o;112404:155::-;112470:7;112497:54;98433:6;112497:32;112508:20;;112497:6;:10;;:32;;;;:::i;:::-;:36;;:54;;;;:::i;:::-;112490:61;;112404:155;;;:::o;36808:98::-;36861:7;36888:10;36881:17;;36808:98;:::o;48119:206::-;48240:32;48258:4;48264:7;48240:17;:32::i;:::-;48283:34;48309:7;48283:12;:18;48296:4;48283:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;48119:206;;:::o;100965:706::-;101085:24;101102:6;101085:12;;:16;;:24;;;;:::i;:::-;101070:12;:39;;;;101155:19;101177:25;101195:6;101177:17;:25::i;:::-;101155:47;;101260:27;101275:11;101260:10;;:14;;:27;;;;:::i;:::-;101247:10;:40;;;;101413:19;:17;:19::i;:::-;101389:20;;:43;;101367:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;101545:36;101569:11;101545:15;:19;101561:2;101545:19;;;;;;;;;;;;;;;;:23;;:36;;;;:::i;:::-;101523:15;:19;101539:2;101523:19;;;;;;;;;;;;;;;:58;;;;101599:16;101604:2;101608:6;101599:16;;;;;;;:::i;:::-;;;;;;;;101652:2;101631:32;;101648:1;101631:32;;;101656:6;101631:32;;;;;;:::i;:::-;;;;;;;;101026:645;100965:706;;:::o;101887:521::-;101986:24;102003:6;101986:12;;:16;;:24;;;;:::i;:::-;101971:12;:39;;;;102056:19;102078:25;102096:6;102078:17;:25::i;:::-;102056:47;;102161:27;102176:11;102161:10;;:14;;:27;;;;:::i;:::-;102148:10;:40;;;;102260:44;102292:11;102260:15;:27;102276:10;102260:27;;;;;;;;;;;;;;;;:31;;:44;;;;:::i;:::-;102230:15;:27;102246:10;102230:27;;;;;;;;;;;;;;;:74;;;;102320:24;102325:10;102337:6;102320:24;;;;;;;:::i;:::-;;;;;;;;102389:1;102360:40;;102369:10;102360:40;;;102393:6;102360:40;;;;;;:::i;:::-;;;;;;;;101927:481;101887:521;:::o;49806:132::-;49881:12;:10;:12::i;:::-;49870:23;;:7;:5;:7::i;:::-;:23;;;49862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49806:132::o;50945:191::-;51019:16;51038:6;;;;;;;;;;;51019:25;;51064:8;51055:6;;:17;;;;;;;;;;;;;;;;;;51119:8;51088:40;;51109:8;51088:40;;;;;;;;;;;;51008:128;50945:191;:::o;79471:502::-;79606:24;79633:25;79643:5;79650:7;79633:9;:25::i;:::-;79606:52;;79693:17;79673:16;:37;79669:297;;79773:6;79753:16;:26;;79727:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;79888:51;79897:5;79904:7;79932:6;79913:16;:25;79888:8;:51::i;:::-;79669:297;79595:378;79471:502;;;:::o;77687:675::-;77790:1;77771:21;;:7;:21;;;;77763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77843:49;77864:7;77881:1;77885:6;77843:20;:49::i;:::-;77905:22;77930:9;:18;77940:7;77930:18;;;;;;;;;;;;;;;;77905:43;;77985:6;77967:14;:24;;77959:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78104:6;78087:14;:23;78066:9;:18;78076:7;78066:18;;;;;;;;;;;;;;;:44;;;;78221:6;78205:12;;:22;;;;;;;;;;;78282:1;78256:37;;78265:7;78256:37;;;78286:6;78256:37;;;;;;:::i;:::-;;;;;;;;78306:48;78326:7;78343:1;78347:6;78306:19;:48::i;:::-;77752:610;77687:675;;:::o;10140:190::-;10241:7;10297:22;10301:3;:10;;10313:5;10297:3;:22::i;:::-;10289:31;;10266:56;;10140:190;;;;:::o;102780:714::-;102898:22;102913:6;102898:10;;:14;;:22;;;;:::i;:::-;102885:10;:35;;;;102964:20;102987:25;103005:6;102987:17;:25::i;:::-;102964:48;;103073:30;103090:12;103073;;:16;;:30;;;;:::i;:::-;103058:12;:45;;;;103229:19;:17;:19::i;:::-;103205:20;;:43;;103183:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;103361:31;103385:6;103361:15;:19;103377:2;103361:19;;;;;;;;;;;;;;;;:23;;:31;;;;:::i;:::-;103339:15;:19;103355:2;103339:19;;;;;;;;;;;;;;;:53;;;;103410:22;103415:2;103419:12;103410:22;;;;;;;:::i;:::-;;;;;;;;103469:2;103448:38;;103465:1;103448:38;;;103473:12;103448:38;;;;;;:::i;:::-;;;;;;;;102842:652;102780:714;;:::o;9669:117::-;9732:7;9759:19;9767:3;:10;;9759:7;:19::i;:::-;9752:26;;9669:117;;;:::o;83974:248::-;84091:123;84125:5;84168:23;;;84193:2;84197:5;84145:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84091:19;:123::i;:::-;83974:248;;;:::o;2291:414::-;2354:4;2376:21;2386:3;2391:5;2376:9;:21::i;:::-;2371:327;;2414:3;:11;;2431:5;2414:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2597:3;:11;;:18;;;;2575:3;:12;;:19;2588:5;2575:19;;;;;;;;;;;:40;;;;2637:4;2630:11;;;;2371:327;2681:5;2674:12;;2291:414;;;;;:::o;15702:207::-;15832:4;15876:25;15861:40;;;:11;:40;;;;15854:47;;15702:207;;;:::o;40910:492::-;40999:22;41007:4;41013:7;40999;:22::i;:::-;40994:401;;41187:28;41207:7;41187:19;:28::i;:::-;41288:38;41316:4;41308:13;;41323:2;41288:19;:38::i;:::-;41092:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41038:345;;;;;;;;;;;:::i;:::-;;;;;;;;40994:401;40910:492;;:::o;45392:239::-;45476:22;45484:4;45490:7;45476;:22::i;:::-;45472:152;;;45547:5;45515:6;:12;45522:4;45515:12;;;;;;;;;;;:20;;:29;45536:7;45515:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;45599:12;:10;:12::i;:::-;45572:40;;45590:7;45572:40;;45584:4;45572:40;;;;;;;;;;45472:152;45392:239;;:::o;9117:181::-;9208:4;9237:53;9245:3;:10;;9281:5;9265:23;;9257:32;;9237:7;:53::i;:::-;9230:60;;9117:181;;;;:::o;78800:380::-;78953:1;78936:19;;:5;:19;;;;78928:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79034:1;79015:21;;:7;:21;;;;79007:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79118:6;79088:11;:18;79100:5;79088:18;;;;;;;;;;;;;;;:27;79107:7;79088:27;;;;;;;;;;;;;;;:36;;;;79156:7;79140:32;;79149:5;79140:32;;;79165:6;79140:32;;;;;;:::i;:::-;;;;;;;;78800:380;;;:::o;80573:125::-;;;;:::o;81302:124::-;;;;:::o;5097:152::-;5191:7;5223:3;:11;;5235:5;5223:18;;;;;;;;:::i;:::-;;;;;;;;;;5216:25;;5097:152;;;;:::o;4634:109::-;4690:7;4717:3;:11;;:18;;;;4710:25;;4634:109;;;:::o;87472:802::-;87896:23;87922:106;87964:4;87922:106;;;;;;;;;;;;;;;;;87930:5;87922:27;;;;:106;;;;;:::i;:::-;87896:132;;88063:1;88043:10;:17;:21;88039:228;;;88158:10;88147:30;;;;;;;;;;;;:::i;:::-;88121:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;88039:228;87542:732;87472:802;;:::o;4387:161::-;4487:4;4539:1;4516:3;:12;;:19;4529:5;4516:19;;;;;;;;;;;;:24;;4509:31;;4387:161;;;;:::o;31353:151::-;31411:13;31444:52;31472:4;31456:22;;29476:2;31444:52;;:11;:52::i;:::-;31437:59;;31353:151;;;:::o;30717:479::-;30819:13;30850:19;30895:1;30886:6;30882:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30872:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30850:47;;30908:15;:6;30915:1;30908:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;30934;:6;30941:1;30934:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;30965:9;30990:1;30981:6;30977:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30965:26;;30960:131;30997:1;30993;:5;30960:131;;;31032:8;31049:3;31041:5;:11;31032:21;;;;;;;:::i;:::-;;;;;31020:6;31027:1;31020:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;31078:1;31068:11;;;;;31000:3;;;;:::i;:::-;;;30960:131;;;;31118:1;31109:5;:10;31101:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31181:6;31167:21;;;30717:479;;;;:::o;2881:1420::-;2947:4;3065:18;3086:3;:12;;:19;3099:5;3086:19;;;;;;;;;;;;3065:40;;3136:1;3122:10;:15;3118:1176;;3497:21;3534:1;3521:10;:14;;;;:::i;:::-;3497:38;;3550:17;3591:1;3570:3;:11;;:18;;;;:22;;;;:::i;:::-;3550:42;;3626:13;3613:9;:26;3609:405;;3660:17;3680:3;:11;;3692:9;3680:22;;;;;;;;:::i;:::-;;;;;;;;;;3660:42;;3834:9;3805:3;:11;;3817:13;3805:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;3945:10;3919:3;:12;;:23;3932:9;3919:23;;;;;;;;;;;:36;;;;3641:373;3609:405;4095:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4190:3;:12;;:19;4203:5;4190:19;;;;;;;;;;;4183:26;;;4233:4;4226:11;;;;;;;3118:1176;4277:5;4270:12;;;2881:1420;;;;;:::o;55377:229::-;55514:12;55546:52;55568:6;55576:4;55582:1;55585:12;55546:21;:52::i;:::-;55539:59;;55377:229;;;;;:::o;56593:612::-;56763:12;56835:5;56810:21;:30;;56788:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56918:12;56932:23;56959:6;:11;;56978:5;56999:4;56959:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56917:97;;;;57045:152;57090:6;57115:7;57141:10;57170:12;57045:26;:152::i;:::-;57025:172;;;;56593:612;;;;;;:::o;59728:644::-;59913:12;59942:7;59938:427;;;59991:1;59970:10;:17;:22;59966:290;;;60188:18;60199:6;60188:10;:18::i;:::-;60180:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;59966:290;60277:10;60270:17;;;;59938:427;60320:33;60328:10;60340:12;60320:7;:33::i;:::-;59728:644;;;;;;;:::o;52427:326::-;52487:4;52744:1;52722:7;:19;;;:23;52715:30;;52427:326;;;:::o;60914:575::-;61118:1;61098:10;:17;:21;61094:388;;;61330:10;61324:17;61387:15;61374:10;61370:2;61366:19;61359:44;61094:388;61457:12;61450:20;;;;;;;;;;;:::i;:::-;;;;;;;;88:117:1;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:77::-;4640:7;4669:5;4658:16;;4603:77;;;:::o;4686:118::-;4773:24;4791:5;4773:24;:::i;:::-;4768:3;4761:37;4686:118;;:::o;4810:222::-;4903:4;4941:2;4930:9;4926:18;4918:26;;4954:71;5022:1;5011:9;5007:17;4998:6;4954:71;:::i;:::-;4810:222;;;;:::o;5038:619::-;5115:6;5123;5131;5180:2;5168:9;5159:7;5155:23;5151:32;5148:119;;;5186:79;;:::i;:::-;5148:119;5306:1;5331:53;5376:7;5367:6;5356:9;5352:22;5331:53;:::i;:::-;5321:63;;5277:117;5433:2;5459:53;5504:7;5495:6;5484:9;5480:22;5459:53;:::i;:::-;5449:63;;5404:118;5561:2;5587:53;5632:7;5623:6;5612:9;5608:22;5587:53;:::i;:::-;5577:63;;5532:118;5038:619;;;;;:::o;5663:122::-;5736:24;5754:5;5736:24;:::i;:::-;5729:5;5726:35;5716:63;;5775:1;5772;5765:12;5716:63;5663:122;:::o;5791:139::-;5837:5;5875:6;5862:20;5853:29;;5891:33;5918:5;5891:33;:::i;:::-;5791:139;;;;:::o;5936:329::-;5995:6;6044:2;6032:9;6023:7;6019:23;6015:32;6012:119;;;6050:79;;:::i;:::-;6012:119;6170:1;6195:53;6240:7;6231:6;6220:9;6216:22;6195:53;:::i;:::-;6185:63;;6141:117;5936:329;;;;:::o;6271:474::-;6339:6;6347;6396:2;6384:9;6375:7;6371:23;6367:32;6364:119;;;6402:79;;:::i;:::-;6364:119;6522:1;6547:53;6592:7;6583:6;6572:9;6568:22;6547:53;:::i;:::-;6537:63;;6493:117;6649:2;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6620:118;6271:474;;;;;:::o;6751:86::-;6786:7;6826:4;6819:5;6815:16;6804:27;;6751:86;;;:::o;6843:112::-;6926:22;6942:5;6926:22;:::i;:::-;6921:3;6914:35;6843:112;;:::o;6961:214::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:67;7165:1;7154:9;7150:17;7141:6;7101:67;:::i;:::-;6961:214;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:::-;7575:6;7624:2;7612:9;7603:7;7599:23;7595:32;7592:119;;;7630:79;;:::i;:::-;7592:119;7750:1;7775:53;7820:7;7811:6;7800:9;7796:22;7775:53;:::i;:::-;7765:63;;7721:117;7516:329;;;;:::o;7851:116::-;7921:21;7936:5;7921:21;:::i;:::-;7914:5;7911:32;7901:60;;7957:1;7954;7947:12;7901:60;7851:116;:::o;7973:133::-;8016:5;8054:6;8041:20;8032:29;;8070:30;8094:5;8070:30;:::i;:::-;7973:133;;;;:::o;8112:613::-;8186:6;8194;8202;8251:2;8239:9;8230:7;8226:23;8222:32;8219:119;;;8257:79;;:::i;:::-;8219:119;8377:1;8402:53;8447:7;8438:6;8427:9;8423:22;8402:53;:::i;:::-;8392:63;;8348:117;8504:2;8530:53;8575:7;8566:6;8555:9;8551:22;8530:53;:::i;:::-;8520:63;;8475:118;8632:2;8658:50;8700:7;8691:6;8680:9;8676:22;8658:50;:::i;:::-;8648:60;;8603:115;8112:613;;;;;:::o;8731:118::-;8818:24;8836:5;8818:24;:::i;:::-;8813:3;8806:37;8731:118;;:::o;8855:222::-;8948:4;8986:2;8975:9;8971:18;8963:26;;8999:71;9067:1;9056:9;9052:17;9043:6;8999:71;:::i;:::-;8855:222;;;;:::o;9083:474::-;9151:6;9159;9208:2;9196:9;9187:7;9183:23;9179:32;9176:119;;;9214:79;;:::i;:::-;9176:119;9334:1;9359:53;9404:7;9395:6;9384:9;9380:22;9359:53;:::i;:::-;9349:63;;9305:117;9461:2;9487:53;9532:7;9523:6;9512:9;9508:22;9487:53;:::i;:::-;9477:63;;9432:118;9083:474;;;;;:::o;9563:118::-;9634:22;9650:5;9634:22;:::i;:::-;9627:5;9624:33;9614:61;;9671:1;9668;9661:12;9614:61;9563:118;:::o;9687:135::-;9731:5;9769:6;9756:20;9747:29;;9785:31;9810:5;9785:31;:::i;:::-;9687:135;;;;:::o;9828:1199::-;9939:6;9947;9955;9963;9971;9979;9987;10036:3;10024:9;10015:7;10011:23;10007:33;10004:120;;;10043:79;;:::i;:::-;10004:120;10163:1;10188:53;10233:7;10224:6;10213:9;10209:22;10188:53;:::i;:::-;10178:63;;10134:117;10290:2;10316:53;10361:7;10352:6;10341:9;10337:22;10316:53;:::i;:::-;10306:63;;10261:118;10418:2;10444:53;10489:7;10480:6;10469:9;10465:22;10444:53;:::i;:::-;10434:63;;10389:118;10546:2;10572:53;10617:7;10608:6;10597:9;10593:22;10572:53;:::i;:::-;10562:63;;10517:118;10674:3;10701:51;10744:7;10735:6;10724:9;10720:22;10701:51;:::i;:::-;10691:61;;10645:117;10801:3;10828:53;10873:7;10864:6;10853:9;10849:22;10828:53;:::i;:::-;10818:63;;10772:119;10930:3;10957:53;11002:7;10993:6;10982:9;10978:22;10957:53;:::i;:::-;10947:63;;10901:119;9828:1199;;;;;;;;;;:::o;11033:474::-;11101:6;11109;11158:2;11146:9;11137:7;11133:23;11129:32;11126:119;;;11164:79;;:::i;:::-;11126:119;11284:1;11309:53;11354:7;11345:6;11334:9;11330:22;11309:53;:::i;:::-;11299:63;;11255:117;11411:2;11437:53;11482:7;11473:6;11462:9;11458:22;11437:53;:::i;:::-;11427:63;;11382:118;11033:474;;;;;:::o;11513:180::-;11561:77;11558:1;11551:88;11658:4;11655:1;11648:15;11682:4;11679:1;11672:15;11699:320;11743:6;11780:1;11774:4;11770:12;11760:22;;11827:1;11821:4;11817:12;11848:18;11838:81;;11904:4;11896:6;11892:17;11882:27;;11838:81;11966:2;11958:6;11955:14;11935:18;11932:38;11929:84;;;11985:18;;:::i;:::-;11929:84;11750:269;11699:320;;;:::o;12025:234::-;12165:34;12161:1;12153:6;12149:14;12142:58;12234:17;12229:2;12221:6;12217:15;12210:42;12025:234;:::o;12265:366::-;12407:3;12428:67;12492:2;12487:3;12428:67;:::i;:::-;12421:74;;12504:93;12593:3;12504:93;:::i;:::-;12622:2;12617:3;12613:12;12606:19;;12265:366;;;:::o;12637:419::-;12803:4;12841:2;12830:9;12826:18;12818:26;;12890:9;12884:4;12880:20;12876:1;12865:9;12861:17;12854:47;12918:131;13044:4;12918:131;:::i;:::-;12910:139;;12637:419;;;:::o;13062:171::-;13202:23;13198:1;13190:6;13186:14;13179:47;13062:171;:::o;13239:366::-;13381:3;13402:67;13466:2;13461:3;13402:67;:::i;:::-;13395:74;;13478:93;13567:3;13478:93;:::i;:::-;13596:2;13591:3;13587:12;13580:19;;13239:366;;;:::o;13611:419::-;13777:4;13815:2;13804:9;13800:18;13792:26;;13864:9;13858:4;13854:20;13850:1;13839:9;13835:17;13828:47;13892:131;14018:4;13892:131;:::i;:::-;13884:139;;13611:419;;;:::o;14036:172::-;14176:24;14172:1;14164:6;14160:14;14153:48;14036:172;:::o;14214:366::-;14356:3;14377:67;14441:2;14436:3;14377:67;:::i;:::-;14370:74;;14453:93;14542:3;14453:93;:::i;:::-;14571:2;14566:3;14562:12;14555:19;;14214:366;;;:::o;14586:419::-;14752:4;14790:2;14779:9;14775:18;14767:26;;14839:9;14833:4;14829:20;14825:1;14814:9;14810:17;14803:47;14867:131;14993:4;14867:131;:::i;:::-;14859:139;;14586:419;;;:::o;15011:442::-;15160:4;15198:2;15187:9;15183:18;15175:26;;15211:71;15279:1;15268:9;15264:17;15255:6;15211:71;:::i;:::-;15292:72;15360:2;15349:9;15345:18;15336:6;15292:72;:::i;:::-;15374;15442:2;15431:9;15427:18;15418:6;15374:72;:::i;:::-;15011:442;;;;;;:::o;15459:171::-;15599:23;15595:1;15587:6;15583:14;15576:47;15459:171;:::o;15636:366::-;15778:3;15799:67;15863:2;15858:3;15799:67;:::i;:::-;15792:74;;15875:93;15964:3;15875:93;:::i;:::-;15993:2;15988:3;15984:12;15977:19;;15636:366;;;:::o;16008:419::-;16174:4;16212:2;16201:9;16197:18;16189:26;;16261:9;16255:4;16251:20;16247:1;16236:9;16232:17;16225:47;16289:131;16415:4;16289:131;:::i;:::-;16281:139;;16008:419;;;:::o;16433:180::-;16481:77;16478:1;16471:88;16578:4;16575:1;16568:15;16602:4;16599:1;16592:15;16619:233;16658:3;16681:24;16699:5;16681:24;:::i;:::-;16672:33;;16727:66;16720:5;16717:77;16714:103;;;16797:18;;:::i;:::-;16714:103;16844:1;16837:5;16833:13;16826:20;;16619:233;;;:::o;16858:775::-;17091:4;17129:3;17118:9;17114:19;17106:27;;17143:71;17211:1;17200:9;17196:17;17187:6;17143:71;:::i;:::-;17224:72;17292:2;17281:9;17277:18;17268:6;17224:72;:::i;:::-;17306;17374:2;17363:9;17359:18;17350:6;17306:72;:::i;:::-;17388;17456:2;17445:9;17441:18;17432:6;17388:72;:::i;:::-;17470:73;17538:3;17527:9;17523:19;17514:6;17470:73;:::i;:::-;17553;17621:3;17610:9;17606:19;17597:6;17553:73;:::i;:::-;16858:775;;;;;;;;;:::o;17639:148::-;17741:11;17778:3;17763:18;;17639:148;;;;:::o;17793:214::-;17933:66;17929:1;17921:6;17917:14;17910:90;17793:214;:::o;18013:400::-;18173:3;18194:84;18276:1;18271:3;18194:84;:::i;:::-;18187:91;;18287:93;18376:3;18287:93;:::i;:::-;18405:1;18400:3;18396:11;18389:18;;18013:400;;;:::o;18419:79::-;18458:7;18487:5;18476:16;;18419:79;;;:::o;18504:157::-;18609:45;18629:24;18647:5;18629:24;:::i;:::-;18609:45;:::i;:::-;18604:3;18597:58;18504:157;;:::o;18667:663::-;18908:3;18930:148;19074:3;18930:148;:::i;:::-;18923:155;;19088:75;19159:3;19150:6;19088:75;:::i;:::-;19188:2;19183:3;19179:12;19172:19;;19201:75;19272:3;19263:6;19201:75;:::i;:::-;19301:2;19296:3;19292:12;19285:19;;19321:3;19314:10;;18667:663;;;;;:::o;19336:174::-;19476:26;19472:1;19464:6;19460:14;19453:50;19336:174;:::o;19516:366::-;19658:3;19679:67;19743:2;19738:3;19679:67;:::i;:::-;19672:74;;19755:93;19844:3;19755:93;:::i;:::-;19873:2;19868:3;19864:12;19857:19;;19516:366;;;:::o;19888:419::-;20054:4;20092:2;20081:9;20077:18;20069:26;;20141:9;20135:4;20131:20;20127:1;20116:9;20112:17;20105:47;20169:131;20295:4;20169:131;:::i;:::-;20161:139;;19888:419;;;:::o;20313:545::-;20486:4;20524:3;20513:9;20509:19;20501:27;;20538:71;20606:1;20595:9;20591:17;20582:6;20538:71;:::i;:::-;20619:68;20683:2;20672:9;20668:18;20659:6;20619:68;:::i;:::-;20697:72;20765:2;20754:9;20750:18;20741:6;20697:72;:::i;:::-;20779;20847:2;20836:9;20832:18;20823:6;20779:72;:::i;:::-;20313:545;;;;;;;:::o;20864:171::-;21004:23;21000:1;20992:6;20988:14;20981:47;20864:171;:::o;21041:366::-;21183:3;21204:67;21268:2;21263:3;21204:67;:::i;:::-;21197:74;;21280:93;21369:3;21280:93;:::i;:::-;21398:2;21393:3;21389:12;21382:19;;21041:366;;;:::o;21413:419::-;21579:4;21617:2;21606:9;21602:18;21594:26;;21666:9;21660:4;21656:20;21652:1;21641:9;21637:17;21630:47;21694:131;21820:4;21694:131;:::i;:::-;21686:139;;21413:419;;;:::o;21838:225::-;21978:34;21974:1;21966:6;21962:14;21955:58;22047:8;22042:2;22034:6;22030:15;22023:33;21838:225;:::o;22069:366::-;22211:3;22232:67;22296:2;22291:3;22232:67;:::i;:::-;22225:74;;22308:93;22397:3;22308:93;:::i;:::-;22426:2;22421:3;22417:12;22410:19;;22069:366;;;:::o;22441:419::-;22607:4;22645:2;22634:9;22630:18;22622:26;;22694:9;22688:4;22684:20;22680:1;22669:9;22665:17;22658:47;22722:131;22848:4;22722:131;:::i;:::-;22714:139;;22441:419;;;:::o;22866:348::-;22906:7;22929:20;22947:1;22929:20;:::i;:::-;22924:25;;22963:20;22981:1;22963:20;:::i;:::-;22958:25;;23151:1;23083:66;23079:74;23076:1;23073:81;23068:1;23061:9;23054:17;23050:105;23047:131;;;23158:18;;:::i;:::-;23047:131;23206:1;23203;23199:9;23188:20;;22866:348;;;;:::o;23220:180::-;23268:77;23265:1;23258:88;23365:4;23362:1;23355:15;23389:4;23386:1;23379:15;23406:185;23446:1;23463:20;23481:1;23463:20;:::i;:::-;23458:25;;23497:20;23515:1;23497:20;:::i;:::-;23492:25;;23536:1;23526:35;;23541:18;;:::i;:::-;23526:35;23583:1;23580;23576:9;23571:14;;23406:185;;;;:::o;23597:191::-;23637:4;23657:20;23675:1;23657:20;:::i;:::-;23652:25;;23691:20;23709:1;23691:20;:::i;:::-;23686:25;;23730:1;23727;23724:8;23721:34;;;23735:18;;:::i;:::-;23721:34;23780:1;23777;23773:9;23765:17;;23597:191;;;;:::o;23794:305::-;23834:3;23853:20;23871:1;23853:20;:::i;:::-;23848:25;;23887:20;23905:1;23887:20;:::i;:::-;23882:25;;24041:1;23973:66;23969:74;23966:1;23963:81;23960:107;;;24047:18;;:::i;:::-;23960:107;24091:1;24088;24084:9;24077:16;;23794:305;;;;:::o;24105:176::-;24245:28;24241:1;24233:6;24229:14;24222:52;24105:176;:::o;24287:366::-;24429:3;24450:67;24514:2;24509:3;24450:67;:::i;:::-;24443:74;;24526:93;24615:3;24526:93;:::i;:::-;24644:2;24639:3;24635:12;24628:19;;24287:366;;;:::o;24659:419::-;24825:4;24863:2;24852:9;24848:18;24840:26;;24912:9;24906:4;24902:20;24898:1;24887:9;24883:17;24876:47;24940:131;25066:4;24940:131;:::i;:::-;24932:139;;24659:419;;;:::o;25084:332::-;25205:4;25243:2;25232:9;25228:18;25220:26;;25256:71;25324:1;25313:9;25309:17;25300:6;25256:71;:::i;:::-;25337:72;25405:2;25394:9;25390:18;25381:6;25337:72;:::i;:::-;25084:332;;;;;:::o;25422:182::-;25562:34;25558:1;25550:6;25546:14;25539:58;25422:182;:::o;25610:366::-;25752:3;25773:67;25837:2;25832:3;25773:67;:::i;:::-;25766:74;;25849:93;25938:3;25849:93;:::i;:::-;25967:2;25962:3;25958:12;25951:19;;25610:366;;;:::o;25982:419::-;26148:4;26186:2;26175:9;26171:18;26163:26;;26235:9;26229:4;26225:20;26221:1;26210:9;26206:17;26199:47;26263:131;26389:4;26263:131;:::i;:::-;26255:139;;25982:419;;;:::o;26407:179::-;26547:31;26543:1;26535:6;26531:14;26524:55;26407:179;:::o;26592:366::-;26734:3;26755:67;26819:2;26814:3;26755:67;:::i;:::-;26748:74;;26831:93;26920:3;26831:93;:::i;:::-;26949:2;26944:3;26940:12;26933:19;;26592:366;;;:::o;26964:419::-;27130:4;27168:2;27157:9;27153:18;27145:26;;27217:9;27211:4;27207:20;27203:1;27192:9;27188:17;27181:47;27245:131;27371:4;27245:131;:::i;:::-;27237:139;;26964:419;;;:::o;27389:220::-;27529:34;27525:1;27517:6;27513:14;27506:58;27598:3;27593:2;27585:6;27581:15;27574:28;27389:220;:::o;27615:366::-;27757:3;27778:67;27842:2;27837:3;27778:67;:::i;:::-;27771:74;;27854:93;27943:3;27854:93;:::i;:::-;27972:2;27967:3;27963:12;27956:19;;27615:366;;;:::o;27987:419::-;28153:4;28191:2;28180:9;28176:18;28168:26;;28240:9;28234:4;28230:20;28226:1;28215:9;28211:17;28204:47;28268:131;28394:4;28268:131;:::i;:::-;28260:139;;27987:419;;;:::o;28412:221::-;28552:34;28548:1;28540:6;28536:14;28529:58;28621:4;28616:2;28608:6;28604:15;28597:29;28412:221;:::o;28639:366::-;28781:3;28802:67;28866:2;28861:3;28802:67;:::i;:::-;28795:74;;28878:93;28967:3;28878:93;:::i;:::-;28996:2;28991:3;28987:12;28980:19;;28639:366;;;:::o;29011:419::-;29177:4;29215:2;29204:9;29200:18;29192:26;;29264:9;29258:4;29254:20;29250:1;29239:9;29235:17;29228:47;29292:131;29418:4;29292:131;:::i;:::-;29284:139;;29011:419;;;:::o;29436:173::-;29576:25;29572:1;29564:6;29560:14;29553:49;29436:173;:::o;29615:402::-;29775:3;29796:85;29878:2;29873:3;29796:85;:::i;:::-;29789:92;;29890:93;29979:3;29890:93;:::i;:::-;30008:2;30003:3;29999:12;29992:19;;29615:402;;;:::o;30023:377::-;30129:3;30157:39;30190:5;30157:39;:::i;:::-;30212:89;30294:6;30289:3;30212:89;:::i;:::-;30205:96;;30310:52;30355:6;30350:3;30343:4;30336:5;30332:16;30310:52;:::i;:::-;30387:6;30382:3;30378:16;30371:23;;30133:267;30023:377;;;;:::o;30406:167::-;30546:19;30542:1;30534:6;30530:14;30523:43;30406:167;:::o;30579:402::-;30739:3;30760:85;30842:2;30837:3;30760:85;:::i;:::-;30753:92;;30854:93;30943:3;30854:93;:::i;:::-;30972:2;30967:3;30963:12;30956:19;;30579:402;;;:::o;30987:967::-;31369:3;31391:148;31535:3;31391:148;:::i;:::-;31384:155;;31556:95;31647:3;31638:6;31556:95;:::i;:::-;31549:102;;31668:148;31812:3;31668:148;:::i;:::-;31661:155;;31833:95;31924:3;31915:6;31833:95;:::i;:::-;31826:102;;31945:3;31938:10;;30987:967;;;;;:::o;31960:223::-;32100:34;32096:1;32088:6;32084:14;32077:58;32169:6;32164:2;32156:6;32152:15;32145:31;31960:223;:::o;32189:366::-;32331:3;32352:67;32416:2;32411:3;32352:67;:::i;:::-;32345:74;;32428:93;32517:3;32428:93;:::i;:::-;32546:2;32541:3;32537:12;32530:19;;32189:366;;;:::o;32561:419::-;32727:4;32765:2;32754:9;32750:18;32742:26;;32814:9;32808:4;32804:20;32800:1;32789:9;32785:17;32778:47;32842:131;32968:4;32842:131;:::i;:::-;32834:139;;32561:419;;;:::o;32986:221::-;33126:34;33122:1;33114:6;33110:14;33103:58;33195:4;33190:2;33182:6;33178:15;33171:29;32986:221;:::o;33213:366::-;33355:3;33376:67;33440:2;33435:3;33376:67;:::i;:::-;33369:74;;33452:93;33541:3;33452:93;:::i;:::-;33570:2;33565:3;33561:12;33554:19;;33213:366;;;:::o;33585:419::-;33751:4;33789:2;33778:9;33774:18;33766:26;;33838:9;33832:4;33828:20;33824:1;33813:9;33809:17;33802:47;33866:131;33992:4;33866:131;:::i;:::-;33858:139;;33585:419;;;:::o;34010:180::-;34058:77;34055:1;34048:88;34155:4;34152:1;34145:15;34179:4;34176:1;34169:15;34196:137;34250:5;34281:6;34275:13;34266:22;;34297:30;34321:5;34297:30;:::i;:::-;34196:137;;;;:::o;34339:345::-;34406:6;34455:2;34443:9;34434:7;34430:23;34426:32;34423:119;;;34461:79;;:::i;:::-;34423:119;34581:1;34606:61;34659:7;34650:6;34639:9;34635:22;34606:61;:::i;:::-;34596:71;;34552:125;34339:345;;;;:::o;34690:229::-;34830:34;34826:1;34818:6;34814:14;34807:58;34899:12;34894:2;34886:6;34882:15;34875:37;34690:229;:::o;34925:366::-;35067:3;35088:67;35152:2;35147:3;35088:67;:::i;:::-;35081:74;;35164:93;35253:3;35164:93;:::i;:::-;35282:2;35277:3;35273:12;35266:19;;34925:366;;;:::o;35297:419::-;35463:4;35501:2;35490:9;35486:18;35478:26;;35550:9;35544:4;35540:20;35536:1;35525:9;35521:17;35514:47;35578:131;35704:4;35578:131;:::i;:::-;35570:139;;35297:419;;;:::o;35722:180::-;35770:77;35767:1;35760:88;35867:4;35864:1;35857:15;35891:4;35888:1;35881:15;35908:171;35947:3;35970:24;35988:5;35970:24;:::i;:::-;35961:33;;36016:4;36009:5;36006:15;36003:41;;;36024:18;;:::i;:::-;36003:41;36071:1;36064:5;36060:13;36053:20;;35908:171;;;:::o;36085:182::-;36225:34;36221:1;36213:6;36209:14;36202:58;36085:182;:::o;36273:366::-;36415:3;36436:67;36500:2;36495:3;36436:67;:::i;:::-;36429:74;;36512:93;36601:3;36512:93;:::i;:::-;36630:2;36625:3;36621:12;36614:19;;36273:366;;;:::o;36645:419::-;36811:4;36849:2;36838:9;36834:18;36826:26;;36898:9;36892:4;36888:20;36884:1;36873:9;36869:17;36862:47;36926:131;37052:4;36926:131;:::i;:::-;36918:139;;36645:419;;;:::o;37070:180::-;37118:77;37115:1;37108:88;37215:4;37212:1;37205:15;37239:4;37236:1;37229:15;37256:225;37396:34;37392:1;37384:6;37380:14;37373:58;37465:8;37460:2;37452:6;37448:15;37441:33;37256:225;:::o;37487:366::-;37629:3;37650:67;37714:2;37709:3;37650:67;:::i;:::-;37643:74;;37726:93;37815:3;37726:93;:::i;:::-;37844:2;37839:3;37835:12;37828:19;;37487:366;;;:::o;37859:419::-;38025:4;38063:2;38052:9;38048:18;38040:26;;38112:9;38106:4;38102:20;38098:1;38087:9;38083:17;38076:47;38140:131;38266:4;38140:131;:::i;:::-;38132:139;;37859:419;;;:::o;38284:98::-;38335:6;38369:5;38363:12;38353:22;;38284:98;;;:::o;38388:147::-;38489:11;38526:3;38511:18;;38388:147;;;;:::o;38541:373::-;38645:3;38673:38;38705:5;38673:38;:::i;:::-;38727:88;38808:6;38803:3;38727:88;:::i;:::-;38720:95;;38824:52;38869:6;38864:3;38857:4;38850:5;38846:16;38824:52;:::i;:::-;38901:6;38896:3;38892:16;38885:23;;38649:265;38541:373;;;;:::o;38920:271::-;39050:3;39072:93;39161:3;39152:6;39072:93;:::i;:::-;39065:100;;39182:3;39175:10;;38920:271;;;;:::o;39197:179::-;39337:31;39333:1;39325:6;39321:14;39314:55;39197:179;:::o;39382:366::-;39524:3;39545:67;39609:2;39604:3;39545:67;:::i;:::-;39538:74;;39621:93;39710:3;39621:93;:::i;:::-;39739:2;39734:3;39730:12;39723:19;;39382:366;;;:::o;39754:419::-;39920:4;39958:2;39947:9;39943:18;39935:26;;40007:9;40001:4;39997:20;39993:1;39982:9;39978:17;39971:47;40035:131;40161:4;40035:131;:::i;:::-;40027:139;;39754:419;;;:::o

Swarm Source

ipfs://3d1b13a400eebc7f4c386b371f79dc1d6b4dadf007ba8ef21226df416ca16ed3
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.