ETH Price: $2,951.35 (+0.35%)

Token

Wheat (WHEAT)

Overview

Max Total Supply

1,000,000,000,000,386,649,136,788.817301412210505775 WHEAT

Holders

417 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,029,139.275275962988156523 WHEAT

Value
$0.86 ( ~0.000291392545682337 ETH) [0.0000%]
0x000000fa6e634d6d555bff2542e41176ef9dd6c6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

WHEAT is a new concept in decentralized finance, designed to tackle the notorious Wheat Syndicate, who are causing a global wheat scarcity.

Contract Source Code Verified (Exact Match)

Contract Name:
WheatToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-02-22
*/

// SPDX-License-Identifier: MIT

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/WHEAT.sol

pragma solidity ^0.8.0;

// Storage for a WHEAT token
contract Wheat {
    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/IWHEAT.sol

pragma solidity ^0.8.0;

abstract contract IWHEAT {
    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(
        uint256 epoch,
        uint256 prevWheatsScalingFactor,
        uint256 newWheatsScalingFactor
    );

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

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

// File: contracts/Wheat.sol

pragma solidity ^0.8.0;

contract WheatToken is ERC20PresetMinterRebaser, Ownable, IWHEAT {
    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 wheatsScalingFactor;

    mapping(address => uint256) internal _wheatBalances;

    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 = 3324324324357 * 10**18;
    uint256 private _totalSupply;

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

    constructor() ERC20PresetMinterRebaser("Wheat", "WHEAT") {
        wheatsScalingFactor = BASE;
        initSupply = _fragmentToWheat(INIT_SUPPLY);
        _totalSupply = INIT_SUPPLY;
        _wheatBalances[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 * wheatsScalingFactor
        // this is used to check if wheatsScalingFactor 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 wheatValue = _fragmentToWheat(amount);

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

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

        // add balance
        _wheatBalances[to] = _wheatBalances[to].add(wheatValue);

        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 wheatValue = _fragmentToWheat(amount);

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

        // decrease balance
        _wheatBalances[msg.sender] = _wheatBalances[msg.sender].sub(wheatValue);
        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 = _wheatToFragment(amount);

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

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

        // add balance
        _wheatBalances[to] = _wheatBalances[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
        _wheatBalances[msg.sender] = _wheatBalances[msg.sender].sub(value);

        // add to balance of receiver
        _wheatBalances[to] = _wheatBalances[to].add(value);
        emit Transfer(msg.sender, to, _wheatToFragment(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 wheats, so divide by current scaling factor

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

        // get amount in underlying
        uint256 wheatValue = _fragmentToWheat(value);

        // sub from balance of sender
        _wheatBalances[msg.sender] = _wheatBalances[msg.sender].sub(wheatValue);

        // add to balance of receiver
        _wheatBalances[to] = _wheatBalances[to].add(wheatValue);
        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 wheats
        uint256 wheatValue = _fragmentToWheat(value);

        // sub from from
        _wheatBalances[from] = _wheatBalances[from].sub(wheatValue);
        _wheatBalances[to] = _wheatBalances[to].add(wheatValue);
        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 _wheatToFragment(_wheatBalances[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 _wheatBalances[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, "WHEAT/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), "WHEAT/invalid-address-0");
        require(owner == ecrecover(digest, v, r, s), "WHEAT/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, wheatsScalingFactor, wheatsScalingFactor);
            return _totalSupply;
        }

        // for events
        uint256 prevWheatsScalingFactor = wheatsScalingFactor;

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

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

        emit Rebase(epoch, prevWheatsScalingFactor, wheatsScalingFactor);
        return _totalSupply;
    }

    function wheatToFragment(uint256 wheat) public view returns (uint256) {
        return _wheatToFragment(wheat);
    }

    function fragmentToWheat(uint256 value) public view returns (uint256) {
        return _fragmentToWheat(value);
    }

    function _wheatToFragment(uint256 wheat) internal view returns (uint256) {
        return wheat.mul(wheatsScalingFactor).div(internalDecimals);
    }

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

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

API
[{"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":"prevWheatsScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newWheatsScalingFactor","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":"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":"fragmentToWheat","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"},{"inputs":[{"internalType":"uint256","name":"wheat","type":"uint256"}],"name":"wheatToFragment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wheatsScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526c29f578a185b69b2a8a54f40000600e553480156200002257600080fd5b5060408051808201825260058082526415da19585d60da1b602080840191825284518086019095528285526415d211505560da1b908501528251929392849284926200006e92620003c5565b50805162000084906006906020840190620003c5565b506200009691506000905033620001b3565b620000c27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001b3565b620000ee7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7533620001b3565b50620000fc905033620001c3565b670de0b6b3a7640000600855600e54620001169062000215565b600b819055600e54600f5560096000620001386007546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600e54604051620001a591815260200190565b60405180910390a3620004f9565b620001bf82826200025c565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620002566008546200024269d3c21bcecceda1000000856200029f60201b620012e81790919060201c565b620002b460201b620012f41790919060201c565b92915050565b620002738282620002c260201b620013001760201c565b60008281526001602090815260409091206200029a9183906200138462000362821b17901c565b505050565b6000620002ad82846200048e565b9392505050565b6000620002ad82846200046b565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620001bf576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200031e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620002ad836001600160a01b0384166000818152600183016020526040812054620003bc5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000256565b50600062000256565b828054620003d390620004bc565b90600052602060002090601f016020900481019282620003f7576000855562000442565b82601f106200041257805160ff191683800117855562000442565b8280016001018555821562000442579182015b828111156200044257825182559160200191906001019062000425565b506200045092915062000454565b5090565b5b8082111562000450576000815560010162000455565b6000826200048957634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620004b757634e487b7160e01b600052601160045260246000fd5b500290565b600181811c90821680620004d157607f821691505b60208210811415620004f357634e487b7160e01b600052602260045260246000fd5b50919050565b61269180620005096000396000f3fe608060405234801561001057600080fd5b506004361061027f5760003560e01c8063715018a61161015c578063a217fddf116100ce578063d505accf11610087578063d505accf146105b6578063d5391393146105c9578063d547741f146105f0578063dd62ed3e14610603578063ec342ad01461063c578063f2fde38b1461064b57600080fd5b8063a217fddf14610559578063a457c2d714610561578063a9059cbb14610574578063c60917b614610587578063ca15c87314610590578063cea9d26f146105a357600080fd5b80638da5cb5b116101205780638da5cb5b146104ea5780639010d07c1461050f578063917505f41461052257806391d148541461053557806395d89b411461054857806397d63f931461055057600080fd5b8063715018a61461047557806379cc67901461047d5780637af548c1146104905780637ecebe00146104a357806383eb70e5146104c357600080fd5b8063336d2692116101f557806340c10f19116101b957806340c10f191461040557806342966c681461041857806351ad1a5c1461042b57806361ea57eb1461043e57806364dd48f51461045157806370a082311461046257600080fd5b8063336d26921461039a5780633644e515146103ad57806336568abe146103b657806339509351146103c95780633af9e669146103dc57600080fd5b806320606b701161024757806320606b70146102f257806323b872dd14610319578063248a9ca31461032c5780632f2ff15d1461034f57806330adf81f14610364578063313ce5671461038b57600080fd5b806301ffc9a71461028457806306fdde03146102ac578063095ea7b3146102c157806311d3e6c4146102d457806318160ddd146102ea575b600080fd5b610297610292366004612385565b61065e565b60405190151581526020015b60405180910390f35b6102b4610689565b6040516102a39190612479565b6102976102cf3660046122e0565b61071b565b6102dc610775565b6040519081526020016102a3565b600f546102dc565b6102dc7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b610297610327366004612231565b610784565b6102dc61033a366004612327565b60009081526020819052604090206001015490565b61036261035d366004612340565b6108b9565b005b6102dc7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b604051601281526020016102a3565b6102976103a83660046122e0565b6108e3565b6102dc600c5481565b6103626103c4366004612340565b6109a6565b6102976103d73660046122e0565b610a29565b6102dc6103ea3660046121e3565b6001600160a01b031660009081526009602052604090205490565b6102976104133660046122e0565b610a9c565b610362610426366004612327565b610b1f565b6102dc610439366004612327565b610b2b565b6102dc61044c366004612327565b610b36565b6102dc69d3c21bcecceda100000081565b6102dc6104703660046121e3565b610b41565b610362610b63565b61036261048b3660046122e0565b610b77565b6102dc61049e3660046123af565b610b8c565b6102dc6104b13660046121e3565b600d6020526000908152604090205481565b6102dc7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6007546001600160a01b03165b6040516001600160a01b0390911681526020016102a3565b6104f761051d366004612363565b610d28565b6102976105303660046122e0565b610d40565b610297610543366004612340565b610dba565b6102b4610de3565b6102dc600b5481565b6102dc600081565b61029761056f3660046122e0565b610df2565b6102976105823660046122e0565b610eba565b6102dc60085481565b6102dc61059e366004612327565b610f8c565b6102976105b1366004612231565b610fa3565b6103626105c436600461226d565b610fc2565b6102dc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6103626105fe366004612340565b61124d565b6102dc6106113660046121fe565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b6102dc670de0b6b3a764000081565b6103626106593660046121e3565b611272565b60006001600160e01b03198216635a05180f60e01b1480610683575061068382611399565b92915050565b6060600580546106989061255f565b80601f01602080910402602001604051908101604052809291908181526020018280546106c49061255f565b80156107115780601f106106e657610100808354040283529160200191610711565b820191906000526020600020905b8154815290600101906020018083116106f457829003601f168201915b5050505050905090565b336000818152600a602090815260408083206001600160a01b0387168085529252808320859055519192909160008051602061263c833981519152906107649086815260200190565b60405180910390a350600192915050565b600061077f6113ce565b905090565b6000826001600160a01b03811661079a57600080fd5b6001600160a01b0381163014156107b057600080fd5b6001600160a01b0385166000908152600a602090815260408083203384529091529020546107de90846113e0565b6001600160a01b0386166000908152600a6020908152604080832033845290915281209190915561080e846113ec565b6001600160a01b03871660009081526009602052604090205490915061083490826113e0565b6001600160a01b038088166000908152600960205260408082209390935590871681522054610863908261140a565b6001600160a01b03808716600081815260096020526040908190209390935591519088169060008051602061261c833981519152906108a59088815260200190565b60405180910390a350600195945050505050565b6000828152602081905260409020600101546108d481611416565b6108de8383611420565b505050565b6000826001600160a01b0381166108f957600080fd5b6001600160a01b03811630141561090f57600080fd5b3360009081526009602052604090205461092990846113e0565b33600090815260096020526040808220929092556001600160a01b03861681522054610955908461140a565b6001600160a01b0385166000818152600960205260409020919091553360008051602061261c83398151915261098a86611442565b6040519081526020015b60405180910390a35060019392505050565b6001600160a01b0381163314610a1b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b610a258282611467565b5050565b336000908152600a602090815260408083206001600160a01b0386168452909152812054610a57908361140a565b336000818152600a602090815260408083206001600160a01b0389168085529083529281902085905551938452909260008051602061263c8339815191529101610764565b6000610ac87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610dba565b610b0c5760405162461bcd60e51b81526020600482015260156024820152744d7573742068617665206d696e74657220726f6c6560581b6044820152606401610a12565b610b168383611489565b50600192915050565b610b28816115be565b50565b600061068382611442565b6000610683826113ec565b6001600160a01b03811660009081526009602052604081205461068390611442565b610b6b61167d565b610b7560006116d7565b565b610b82823383611729565b610a2582826117bb565b6000610bb87f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7533610dba565b610bfd5760405162461bcd60e51b81526020600482015260166024820152754d7573742068617665207265626173657220726f6c6560501b6044820152606401610a12565b82610c4e57600854604080518681526020810183905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a150600f54610d21565b60085482610c8657610c7e670de0b6b3a7640000610c78610c6f82886113e0565b600854906112e8565b906112f4565b600855610cca565b6000610ca1670de0b6b3a7640000610c78610c6f828961140a565b9050610cab6113ce565b811015610cbc576008819055610cc8565b610cc46113ce565b6008555b505b610cd5600b54611442565b600f55600854604080518781526020810184905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a15050600f545b9392505050565b6000828152600160205260408120610d2190836118dd565b6000610d6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610dba565b610db05760405162461bcd60e51b81526020600482015260156024820152744d7573742068617665206d696e74657220726f6c6560581b6044820152606401610a12565b610b1683836118e9565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546106989061255f565b336000908152600a602090815260408083206001600160a01b0386168452909152812054808310610e4657336000908152600a602090815260408083206001600160a01b0388168452909152812055610e75565b610e5081846113e0565b336000908152600a602090815260408083206001600160a01b03891684529091529020555b336000818152600a602090815260408083206001600160a01b0389168085529083529281902054905190815291929160008051602061263c8339815191529101610994565b6000826001600160a01b038116610ed057600080fd5b6001600160a01b038116301415610ee657600080fd5b6000610ef1846113ec565b33600090815260096020526040902054909150610f0e90826113e0565b33600090815260096020526040808220929092556001600160a01b03871681522054610f3a908261140a565b6001600160a01b03861660008181526009602052604090819020929092559051339060008051602061261c83398151915290610f799088815260200190565b60405180910390a3506001949350505050565b600081815260016020526040812061068390611a15565b6000610fad61167d565b610fb8848484611a1f565b5060019392505050565b834211156110095760405162461bcd60e51b815260206004820152601460248201527315d21150550bdc195c9b5a5d0b595e1c1a5c995960621b6044820152606401610a12565b600c546001600160a01b0388166000908152600d6020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b91908761105c8361259a565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e001604051602081830303815290604052805190602001206040516020016110d592919061190160f01b81526002810192909252602282015260420190565b60408051601f19818403018152919052805160209091012090506001600160a01b0388166111455760405162461bcd60e51b815260206004820152601760248201527f57484541542f696e76616c69642d616464726573732d300000000000000000006044820152606401610a12565b60408051600081526020810180835283905260ff861691810191909152606081018490526080810183905260019060a0016020604051602081039080840390855afa158015611198573d6000803e3d6000fd5b505050602060405103516001600160a01b0316886001600160a01b0316146111f95760405162461bcd60e51b815260206004820152601460248201527315d21150550bda5b9d985b1a590b5c195c9b5a5d60621b6044820152606401610a12565b6001600160a01b038881166000818152600a60209081526040808320948c16808452948252918290208a9055905189815260008051602061263c833981519152910160405180910390a35050505050505050565b60008281526020819052604090206001015461126881611416565b6108de8383611467565b61127a61167d565b6001600160a01b0381166112df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a12565b610b28816116d7565b6000610d2182846124e6565b6000610d2182846124c4565b61130a8282610dba565b610a25576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556113403390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610d21836001600160a01b038416611a71565b60006001600160e01b03198216637965db0b60e01b148061068357506301ffc9a760e01b6001600160e01b0319831614610683565b6000600b5460001961077f91906124c4565b6000610d218284612505565b60085460009061068390610c788469d3c21bcecceda10000006112e8565b6000610d2182846124ac565b610b288133611ac0565b61142a8282611300565b60008281526001602052604090206108de9082611384565b600061068369d3c21bcecceda1000000610c78600854856112e890919063ffffffff16565b6114718282611b19565b60008281526001602052604090206108de9082611b7e565b600f54611496908261140a565b600f5560006114a4826113ec565b600b549091506114b4908261140a565b600b556114bf6113ce565b60085411156115105760405162461bcd60e51b815260206004820152601a60248201527f6d6178207363616c696e6720666163746f7220746f6f206c6f770000000000006044820152606401610a12565b6001600160a01b038316600090815260096020526040902054611533908261140a565b6001600160a01b0384166000818152600960209081526040918290209390935580519182529181018490527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16040518281526001600160a01b0384169060009060008051602061261c833981519152906020015b60405180910390a3505050565b600f546115cb90826113e0565b600f5560006115d9826113ec565b600b549091506115e990826113e0565b600b553360009081526009602052604090205461160690826113e0565b336000818152600960209081526040918290209390935580519182529181018490527fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5910160405180910390a1604051828152600090339060008051602061261c8339815191529060200160405180910390a35050565b6007546001600160a01b03163314610b755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a12565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038381166000908152600a602090815260408083209386168352929052205460001981146117b557818110156117a85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a12565b6117b58484848403611b93565b50505050565b6001600160a01b03821661181b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a12565b6001600160a01b0382166000908152600260205260409020548181101561188f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a12565b6001600160a01b038316600081815260026020908152604080832086860390556004805487900390555185815291929160008051602061261c833981519152910160405180910390a3505050565b6000610d218383611c9d565b600b546118f6908261140a565b600b55600061190482611442565b600f54909150611914908261140a565b600f5561191f6113ce565b60085411156119705760405162461bcd60e51b815260206004820152601a60248201527f6d6178207363616c696e6720666163746f7220746f6f206c6f770000000000006044820152606401610a12565b6001600160a01b038316600090815260096020526040902054611993908361140a565b6001600160a01b0384166000818152600960209081526040918290209390935580519182529181018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16040518181526001600160a01b0384169060009060008051602061261c833981519152906020016115b1565b6000610683825490565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108de908490611cc7565b6000818152600183016020526040812054611ab857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610683565b506000610683565b611aca8282610dba565b610a2557611ad781611d99565b611ae2836020611dab565b604051602001611af3929190612404565b60408051601f198184030181529082905262461bcd60e51b8252610a1291600401612479565b611b238282610dba565b15610a25576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610d21836001600160a01b038416611f47565b6001600160a01b038316611bf55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a12565b6001600160a01b038216611c565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a12565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020859055905184815260008051602061263c83398151915291016115b1565b6000826000018281548110611cb457611cb46125e1565b9060005260206000200154905092915050565b6000611d1c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661203a9092919063ffffffff16565b8051909150156108de5780806020019051810190611d3a919061230a565b6108de5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a12565b60606106836001600160a01b03831660145b60606000611dba8360026124e6565b611dc59060026124ac565b67ffffffffffffffff811115611ddd57611ddd6125f7565b6040519080825280601f01601f191660200182016040528015611e07576020820181803683370190505b509050600360fc1b81600081518110611e2257611e226125e1565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e5157611e516125e1565b60200101906001600160f81b031916908160001a9053506000611e758460026124e6565b611e809060016124ac565b90505b6001811115611ef8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611eb457611eb46125e1565b1a60f81b828281518110611eca57611eca6125e1565b60200101906001600160f81b031916908160001a90535060049490941c93611ef181612548565b9050611e83565b508315610d215760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a12565b60008181526001830160205260408120548015612030576000611f6b600183612505565b8554909150600090611f7f90600190612505565b9050818114611fe4576000866000018281548110611f9f57611f9f6125e1565b9060005260206000200154905080876000018481548110611fc257611fc26125e1565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611ff557611ff56125cb565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610683565b6000915050610683565b60606120498484600085612051565b949350505050565b6060824710156120b25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a12565b600080866001600160a01b031685876040516120ce91906123e8565b60006040518083038185875af1925050503d806000811461210b576040519150601f19603f3d011682016040523d82523d6000602084013e612110565b606091505b50915091506121218783838761212c565b979650505050505050565b60608315612198578251612191576001600160a01b0385163b6121915760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a12565b5081612049565b61204983838151156121ad5781518083602001fd5b8060405162461bcd60e51b8152600401610a129190612479565b80356001600160a01b03811681146121de57600080fd5b919050565b6000602082840312156121f557600080fd5b610d21826121c7565b6000806040838503121561221157600080fd5b61221a836121c7565b9150612228602084016121c7565b90509250929050565b60008060006060848603121561224657600080fd5b61224f846121c7565b925061225d602085016121c7565b9150604084013590509250925092565b600080600080600080600060e0888a03121561228857600080fd5b612291886121c7565b965061229f602089016121c7565b95506040880135945060608801359350608088013560ff811681146122c357600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156122f357600080fd5b6122fc836121c7565b946020939093013593505050565b60006020828403121561231c57600080fd5b8151610d218161260d565b60006020828403121561233957600080fd5b5035919050565b6000806040838503121561235357600080fd5b82359150612228602084016121c7565b6000806040838503121561237657600080fd5b50508035926020909101359150565b60006020828403121561239757600080fd5b81356001600160e01b031981168114610d2157600080fd5b6000806000606084860312156123c457600080fd5b833592506020840135915060408401356123dd8161260d565b809150509250925092565b600082516123fa81846020870161251c565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161243c81601785016020880161251c565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161246d81602884016020880161251c565b01602801949350505050565b602081526000825180602084015261249881604085016020870161251c565b601f01601f19169190910160400192915050565b600082198211156124bf576124bf6125b5565b500190565b6000826124e157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612500576125006125b5565b500290565b600082821015612517576125176125b5565b500390565b60005b8381101561253757818101518382015260200161251f565b838111156117b55750506000910152565b600081612557576125576125b5565b506000190190565b600181811c9082168061257357607f821691505b6020821081141561259457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125ae576125ae6125b5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610b2857600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a2646970667358221220ffe269c724f33a6fb00ee682473749c285aa1cd52589609c668245921752983164736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061027f5760003560e01c8063715018a61161015c578063a217fddf116100ce578063d505accf11610087578063d505accf146105b6578063d5391393146105c9578063d547741f146105f0578063dd62ed3e14610603578063ec342ad01461063c578063f2fde38b1461064b57600080fd5b8063a217fddf14610559578063a457c2d714610561578063a9059cbb14610574578063c60917b614610587578063ca15c87314610590578063cea9d26f146105a357600080fd5b80638da5cb5b116101205780638da5cb5b146104ea5780639010d07c1461050f578063917505f41461052257806391d148541461053557806395d89b411461054857806397d63f931461055057600080fd5b8063715018a61461047557806379cc67901461047d5780637af548c1146104905780637ecebe00146104a357806383eb70e5146104c357600080fd5b8063336d2692116101f557806340c10f19116101b957806340c10f191461040557806342966c681461041857806351ad1a5c1461042b57806361ea57eb1461043e57806364dd48f51461045157806370a082311461046257600080fd5b8063336d26921461039a5780633644e515146103ad57806336568abe146103b657806339509351146103c95780633af9e669146103dc57600080fd5b806320606b701161024757806320606b70146102f257806323b872dd14610319578063248a9ca31461032c5780632f2ff15d1461034f57806330adf81f14610364578063313ce5671461038b57600080fd5b806301ffc9a71461028457806306fdde03146102ac578063095ea7b3146102c157806311d3e6c4146102d457806318160ddd146102ea575b600080fd5b610297610292366004612385565b61065e565b60405190151581526020015b60405180910390f35b6102b4610689565b6040516102a39190612479565b6102976102cf3660046122e0565b61071b565b6102dc610775565b6040519081526020016102a3565b600f546102dc565b6102dc7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b610297610327366004612231565b610784565b6102dc61033a366004612327565b60009081526020819052604090206001015490565b61036261035d366004612340565b6108b9565b005b6102dc7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b604051601281526020016102a3565b6102976103a83660046122e0565b6108e3565b6102dc600c5481565b6103626103c4366004612340565b6109a6565b6102976103d73660046122e0565b610a29565b6102dc6103ea3660046121e3565b6001600160a01b031660009081526009602052604090205490565b6102976104133660046122e0565b610a9c565b610362610426366004612327565b610b1f565b6102dc610439366004612327565b610b2b565b6102dc61044c366004612327565b610b36565b6102dc69d3c21bcecceda100000081565b6102dc6104703660046121e3565b610b41565b610362610b63565b61036261048b3660046122e0565b610b77565b6102dc61049e3660046123af565b610b8c565b6102dc6104b13660046121e3565b600d6020526000908152604090205481565b6102dc7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6007546001600160a01b03165b6040516001600160a01b0390911681526020016102a3565b6104f761051d366004612363565b610d28565b6102976105303660046122e0565b610d40565b610297610543366004612340565b610dba565b6102b4610de3565b6102dc600b5481565b6102dc600081565b61029761056f3660046122e0565b610df2565b6102976105823660046122e0565b610eba565b6102dc60085481565b6102dc61059e366004612327565b610f8c565b6102976105b1366004612231565b610fa3565b6103626105c436600461226d565b610fc2565b6102dc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6103626105fe366004612340565b61124d565b6102dc6106113660046121fe565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b6102dc670de0b6b3a764000081565b6103626106593660046121e3565b611272565b60006001600160e01b03198216635a05180f60e01b1480610683575061068382611399565b92915050565b6060600580546106989061255f565b80601f01602080910402602001604051908101604052809291908181526020018280546106c49061255f565b80156107115780601f106106e657610100808354040283529160200191610711565b820191906000526020600020905b8154815290600101906020018083116106f457829003601f168201915b5050505050905090565b336000818152600a602090815260408083206001600160a01b0387168085529252808320859055519192909160008051602061263c833981519152906107649086815260200190565b60405180910390a350600192915050565b600061077f6113ce565b905090565b6000826001600160a01b03811661079a57600080fd5b6001600160a01b0381163014156107b057600080fd5b6001600160a01b0385166000908152600a602090815260408083203384529091529020546107de90846113e0565b6001600160a01b0386166000908152600a6020908152604080832033845290915281209190915561080e846113ec565b6001600160a01b03871660009081526009602052604090205490915061083490826113e0565b6001600160a01b038088166000908152600960205260408082209390935590871681522054610863908261140a565b6001600160a01b03808716600081815260096020526040908190209390935591519088169060008051602061261c833981519152906108a59088815260200190565b60405180910390a350600195945050505050565b6000828152602081905260409020600101546108d481611416565b6108de8383611420565b505050565b6000826001600160a01b0381166108f957600080fd5b6001600160a01b03811630141561090f57600080fd5b3360009081526009602052604090205461092990846113e0565b33600090815260096020526040808220929092556001600160a01b03861681522054610955908461140a565b6001600160a01b0385166000818152600960205260409020919091553360008051602061261c83398151915261098a86611442565b6040519081526020015b60405180910390a35060019392505050565b6001600160a01b0381163314610a1b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b610a258282611467565b5050565b336000908152600a602090815260408083206001600160a01b0386168452909152812054610a57908361140a565b336000818152600a602090815260408083206001600160a01b0389168085529083529281902085905551938452909260008051602061263c8339815191529101610764565b6000610ac87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610dba565b610b0c5760405162461bcd60e51b81526020600482015260156024820152744d7573742068617665206d696e74657220726f6c6560581b6044820152606401610a12565b610b168383611489565b50600192915050565b610b28816115be565b50565b600061068382611442565b6000610683826113ec565b6001600160a01b03811660009081526009602052604081205461068390611442565b610b6b61167d565b610b7560006116d7565b565b610b82823383611729565b610a2582826117bb565b6000610bb87f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7533610dba565b610bfd5760405162461bcd60e51b81526020600482015260166024820152754d7573742068617665207265626173657220726f6c6560501b6044820152606401610a12565b82610c4e57600854604080518681526020810183905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a150600f54610d21565b60085482610c8657610c7e670de0b6b3a7640000610c78610c6f82886113e0565b600854906112e8565b906112f4565b600855610cca565b6000610ca1670de0b6b3a7640000610c78610c6f828961140a565b9050610cab6113ce565b811015610cbc576008819055610cc8565b610cc46113ce565b6008555b505b610cd5600b54611442565b600f55600854604080518781526020810184905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a15050600f545b9392505050565b6000828152600160205260408120610d2190836118dd565b6000610d6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610dba565b610db05760405162461bcd60e51b81526020600482015260156024820152744d7573742068617665206d696e74657220726f6c6560581b6044820152606401610a12565b610b1683836118e9565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546106989061255f565b336000908152600a602090815260408083206001600160a01b0386168452909152812054808310610e4657336000908152600a602090815260408083206001600160a01b0388168452909152812055610e75565b610e5081846113e0565b336000908152600a602090815260408083206001600160a01b03891684529091529020555b336000818152600a602090815260408083206001600160a01b0389168085529083529281902054905190815291929160008051602061263c8339815191529101610994565b6000826001600160a01b038116610ed057600080fd5b6001600160a01b038116301415610ee657600080fd5b6000610ef1846113ec565b33600090815260096020526040902054909150610f0e90826113e0565b33600090815260096020526040808220929092556001600160a01b03871681522054610f3a908261140a565b6001600160a01b03861660008181526009602052604090819020929092559051339060008051602061261c83398151915290610f799088815260200190565b60405180910390a3506001949350505050565b600081815260016020526040812061068390611a15565b6000610fad61167d565b610fb8848484611a1f565b5060019392505050565b834211156110095760405162461bcd60e51b815260206004820152601460248201527315d21150550bdc195c9b5a5d0b595e1c1a5c995960621b6044820152606401610a12565b600c546001600160a01b0388166000908152600d6020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b91908761105c8361259a565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e001604051602081830303815290604052805190602001206040516020016110d592919061190160f01b81526002810192909252602282015260420190565b60408051601f19818403018152919052805160209091012090506001600160a01b0388166111455760405162461bcd60e51b815260206004820152601760248201527f57484541542f696e76616c69642d616464726573732d300000000000000000006044820152606401610a12565b60408051600081526020810180835283905260ff861691810191909152606081018490526080810183905260019060a0016020604051602081039080840390855afa158015611198573d6000803e3d6000fd5b505050602060405103516001600160a01b0316886001600160a01b0316146111f95760405162461bcd60e51b815260206004820152601460248201527315d21150550bda5b9d985b1a590b5c195c9b5a5d60621b6044820152606401610a12565b6001600160a01b038881166000818152600a60209081526040808320948c16808452948252918290208a9055905189815260008051602061263c833981519152910160405180910390a35050505050505050565b60008281526020819052604090206001015461126881611416565b6108de8383611467565b61127a61167d565b6001600160a01b0381166112df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a12565b610b28816116d7565b6000610d2182846124e6565b6000610d2182846124c4565b61130a8282610dba565b610a25576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556113403390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610d21836001600160a01b038416611a71565b60006001600160e01b03198216637965db0b60e01b148061068357506301ffc9a760e01b6001600160e01b0319831614610683565b6000600b5460001961077f91906124c4565b6000610d218284612505565b60085460009061068390610c788469d3c21bcecceda10000006112e8565b6000610d2182846124ac565b610b288133611ac0565b61142a8282611300565b60008281526001602052604090206108de9082611384565b600061068369d3c21bcecceda1000000610c78600854856112e890919063ffffffff16565b6114718282611b19565b60008281526001602052604090206108de9082611b7e565b600f54611496908261140a565b600f5560006114a4826113ec565b600b549091506114b4908261140a565b600b556114bf6113ce565b60085411156115105760405162461bcd60e51b815260206004820152601a60248201527f6d6178207363616c696e6720666163746f7220746f6f206c6f770000000000006044820152606401610a12565b6001600160a01b038316600090815260096020526040902054611533908261140a565b6001600160a01b0384166000818152600960209081526040918290209390935580519182529181018490527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16040518281526001600160a01b0384169060009060008051602061261c833981519152906020015b60405180910390a3505050565b600f546115cb90826113e0565b600f5560006115d9826113ec565b600b549091506115e990826113e0565b600b553360009081526009602052604090205461160690826113e0565b336000818152600960209081526040918290209390935580519182529181018490527fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5910160405180910390a1604051828152600090339060008051602061261c8339815191529060200160405180910390a35050565b6007546001600160a01b03163314610b755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a12565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038381166000908152600a602090815260408083209386168352929052205460001981146117b557818110156117a85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a12565b6117b58484848403611b93565b50505050565b6001600160a01b03821661181b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a12565b6001600160a01b0382166000908152600260205260409020548181101561188f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a12565b6001600160a01b038316600081815260026020908152604080832086860390556004805487900390555185815291929160008051602061261c833981519152910160405180910390a3505050565b6000610d218383611c9d565b600b546118f6908261140a565b600b55600061190482611442565b600f54909150611914908261140a565b600f5561191f6113ce565b60085411156119705760405162461bcd60e51b815260206004820152601a60248201527f6d6178207363616c696e6720666163746f7220746f6f206c6f770000000000006044820152606401610a12565b6001600160a01b038316600090815260096020526040902054611993908361140a565b6001600160a01b0384166000818152600960209081526040918290209390935580519182529181018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16040518181526001600160a01b0384169060009060008051602061261c833981519152906020016115b1565b6000610683825490565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108de908490611cc7565b6000818152600183016020526040812054611ab857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610683565b506000610683565b611aca8282610dba565b610a2557611ad781611d99565b611ae2836020611dab565b604051602001611af3929190612404565b60408051601f198184030181529082905262461bcd60e51b8252610a1291600401612479565b611b238282610dba565b15610a25576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610d21836001600160a01b038416611f47565b6001600160a01b038316611bf55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a12565b6001600160a01b038216611c565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a12565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020859055905184815260008051602061263c83398151915291016115b1565b6000826000018281548110611cb457611cb46125e1565b9060005260206000200154905092915050565b6000611d1c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661203a9092919063ffffffff16565b8051909150156108de5780806020019051810190611d3a919061230a565b6108de5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a12565b60606106836001600160a01b03831660145b60606000611dba8360026124e6565b611dc59060026124ac565b67ffffffffffffffff811115611ddd57611ddd6125f7565b6040519080825280601f01601f191660200182016040528015611e07576020820181803683370190505b509050600360fc1b81600081518110611e2257611e226125e1565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e5157611e516125e1565b60200101906001600160f81b031916908160001a9053506000611e758460026124e6565b611e809060016124ac565b90505b6001811115611ef8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611eb457611eb46125e1565b1a60f81b828281518110611eca57611eca6125e1565b60200101906001600160f81b031916908160001a90535060049490941c93611ef181612548565b9050611e83565b508315610d215760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a12565b60008181526001830160205260408120548015612030576000611f6b600183612505565b8554909150600090611f7f90600190612505565b9050818114611fe4576000866000018281548110611f9f57611f9f6125e1565b9060005260206000200154905080876000018481548110611fc257611fc26125e1565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611ff557611ff56125cb565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610683565b6000915050610683565b60606120498484600085612051565b949350505050565b6060824710156120b25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a12565b600080866001600160a01b031685876040516120ce91906123e8565b60006040518083038185875af1925050503d806000811461210b576040519150601f19603f3d011682016040523d82523d6000602084013e612110565b606091505b50915091506121218783838761212c565b979650505050505050565b60608315612198578251612191576001600160a01b0385163b6121915760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a12565b5081612049565b61204983838151156121ad5781518083602001fd5b8060405162461bcd60e51b8152600401610a129190612479565b80356001600160a01b03811681146121de57600080fd5b919050565b6000602082840312156121f557600080fd5b610d21826121c7565b6000806040838503121561221157600080fd5b61221a836121c7565b9150612228602084016121c7565b90509250929050565b60008060006060848603121561224657600080fd5b61224f846121c7565b925061225d602085016121c7565b9150604084013590509250925092565b600080600080600080600060e0888a03121561228857600080fd5b612291886121c7565b965061229f602089016121c7565b95506040880135945060608801359350608088013560ff811681146122c357600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156122f357600080fd5b6122fc836121c7565b946020939093013593505050565b60006020828403121561231c57600080fd5b8151610d218161260d565b60006020828403121561233957600080fd5b5035919050565b6000806040838503121561235357600080fd5b82359150612228602084016121c7565b6000806040838503121561237657600080fd5b50508035926020909101359150565b60006020828403121561239757600080fd5b81356001600160e01b031981168114610d2157600080fd5b6000806000606084860312156123c457600080fd5b833592506020840135915060408401356123dd8161260d565b809150509250925092565b600082516123fa81846020870161251c565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161243c81601785016020880161251c565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161246d81602884016020880161251c565b01602801949350505050565b602081526000825180602084015261249881604085016020870161251c565b601f01601f19169190910160400192915050565b600082198211156124bf576124bf6125b5565b500190565b6000826124e157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612500576125006125b5565b500290565b600082821015612517576125176125b5565b500390565b60005b8381101561253757818101518382015260200161251f565b838111156117b55750506000910152565b600081612557576125576125b5565b506000190190565b600181811c9082168061257357607f821691505b6020821081141561259457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125ae576125ae6125b5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610b2857600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a2646970667358221220ffe269c724f33a6fb00ee682473749c285aa1cd52589609c668245921752983164736f6c63430008070033

Deployed Bytecode Sourcemap

97878:14843:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46078:290;;;;;;:::i;:::-;;:::i;:::-;;;5862:14:1;;5855:22;5837:41;;5825:2;5810:18;46078:290:0;;;;;;;;69681:100;;;:::i;:::-;;;;;;;:::i;107574:251::-;;;;;;:::i;:::-;;:::i;99997:105::-;;;:::i;:::-;;;6035:25:1;;;6023:2;6008:18;99997:105:0;5889:177:1;99815:100:0;99895:12;;99815:100;;99039:155;;99090:104;99039:155;;105252:623;;;;;;:::i;:::-;;:::i;41396:181::-;;;;;;:::i;:::-;41515:7;41547:12;;;;;;;;;;:22;;;;41396:181;41887:188;;;;;;:::i;:::-;;:::i;:::-;;98761:117;;98812:66;98761:117;;70643:93;;;70726:2;14904:36:1;;14892:2;14877:18;70643:93:0;14762:184:1;103507:441:0;;;;;;:::i;:::-;;:::i;98885:31::-;;;;;;43113:287;;;;;;:::i;:::-;;:::i;108198:422::-;;;;;;:::i;:::-;;:::i;106316:117::-;;;;;;:::i;:::-;-1:-1:-1;;;;;106406:19:0;106379:7;106406:19;;;:14;:19;;;;;;;106316:117;100544:205;;;;;;:::i;:::-;;:::i;101586:78::-;;;;;;:::i;:::-;;:::i;111879:119::-;;;;;;:::i;:::-;;:::i;112006:::-;;;;;;:::i;:::-;;:::i;98190:49::-;;98233:6;98190:49;;105996:134;;;;;;:::i;:::-;;:::i;50094:103::-;;;:::i;82278:164::-;;;;;;:::i;:::-;;:::i;110541:1330::-;;;;;;:::i;:::-;;:::i;98925:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;82704:64;;82743:25;82704:64;;49446:87;49519:6;;-1:-1:-1;;;;;49519:6:0;49446:87;;;-1:-1:-1;;;;;5374:32:1;;;5356:51;;5344:2;5329:18;49446:87:0;5210:203:1;46967::0;;;;;;:::i;:::-;;:::i;102328:223::-;;;;;;:::i;:::-;;:::i;39819:197::-;;;;;;:::i;:::-;;:::i;69900:104::-;;;:::i;98622:25::-;;;;;;38848:49;;38893:4;38848:49;;108882:612;;;;;;:::i;:::-;;:::i;104211:779::-;;;;;;:::i;:::-;;:::i;98436:34::-;;;;;;47344:192;;;;;;:::i;:::-;;:::i;112473:245::-;;;;;;:::i;:::-;;:::i;109539:994::-;;;;;;:::i;:::-;;:::i;82635:62::-;;82673:24;82635:62;;42368:190;;;;;;:::i;:::-;;:::i;106740:192::-;;;;;;:::i;:::-;-1:-1:-1;;;;;106890:25:0;;;106858:7;106890:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;106740:192;98308:37;;98339:6;98308:37;;50352:238;;;;;;:::i;:::-;;:::i;46078:290::-;46208:4;-1:-1:-1;;;;;;46250:57:0;;-1:-1:-1;;;46250:57:0;;:110;;;46324:36;46348:11;46324:23;:36::i;:::-;46230:130;46078:290;-1:-1:-1;;46078:290:0:o;69681:100::-;69735:13;69768:5;69761:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69681:100;:::o;107574:251::-;107715:10;107675:4;107697:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;107697:38:0;;;;;;;;;;:46;;;107759:36;107675:4;;107697:38;;-1:-1:-1;;;;;;;;;;;107759:36:0;;;107738:5;6035:25:1;;6023:2;6008:18;;5889:177;107759:36:0;;;;;;;;-1:-1:-1;107813:4:0;107574:251;;;;:::o;99997:105::-;100048:7;100075:19;:17;:19::i;:::-;100068:26;;99997:105;:::o;105252:623::-;105393:4;105380:2;-1:-1:-1;;;;;99354:18:0;;99346:27;;;;;;-1:-1:-1;;;;;99392:19:0;;99406:4;99392:19;;99384:28;;;;;;-1:-1:-1;;;;;105479:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;105517:10:::1;105479:59:::0;;;;;;;;:70:::1;::::0;105543:5;105479:63:::1;:70::i;:::-;-1:-1:-1::0;;;;;105441:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;105465:10:::1;105441:35:::0;;;;;;;:108;;;;105615:23:::1;105632:5:::0;105615:16:::1;:23::i;:::-;-1:-1:-1::0;;;;;105700:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;;105594:44;;-1:-1:-1;105700:36:0::1;::::0;105594:44;105700:24:::1;:36::i;:::-;-1:-1:-1::0;;;;;105677:20:0;;::::1;;::::0;;;:14:::1;:20;::::0;;;;;:59;;;;105768:18;;::::1;::::0;;;;:34:::1;::::0;105791:10;105768:22:::1;:34::i;:::-;-1:-1:-1::0;;;;;105747:18:0;;::::1;;::::0;;;:14:::1;:18;::::0;;;;;;:55;;;;105818:25;;;;::::1;::::0;-1:-1:-1;;;;;;;;;;;105818:25:0;::::1;::::0;105837:5;6035:25:1;;6023:2;6008:18;;5889:177;105818:25:0::1;;;;;;;;-1:-1:-1::0;105863:4:0::1;::::0;105252:623;-1:-1:-1;;;;;105252:623:0:o;41887:188::-;41515:7;41547:12;;;;;;;;;;:22;;;39339:16;39350:4;39339:10;:16::i;:::-;42042:25:::1;42053:4;42059:7;42042:10;:25::i;:::-;41887:188:::0;;;:::o;103507:441::-;103624:4;103602:2;-1:-1:-1;;;;;99354:18:0;;99346:27;;;;;;-1:-1:-1;;;;;99392:19:0;;99406:4;99392:19;;99384:28;;;;;;103729:10:::1;103714:26;::::0;;;:14:::1;:26;::::0;;;;;:37:::1;::::0;103745:5;103714:30:::1;:37::i;:::-;103700:10;103685:26;::::0;;;:14:::1;:26;::::0;;;;;:66;;;;-1:-1:-1;;;;;103824:18:0;::::1;::::0;;;;:29:::1;::::0;103847:5;103824:22:::1;:29::i;:::-;-1:-1:-1::0;;;;;103803:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:50;;;;103878:10:::1;-1:-1:-1::0;;;;;;;;;;;103894:23:0::1;103911:5:::0;103894:16:::1;:23::i;:::-;103869:49;::::0;6035:25:1;;;6023:2;6008:18;103869:49:0::1;;;;;;;;-1:-1:-1::0;103936:4:0::1;::::0;103507:441;-1:-1:-1;;;103507:441:0:o;43113:287::-;-1:-1:-1;;;;;43255:23:0;;36693:10;43255:23;43233:120;;;;-1:-1:-1;;;43233:120:0;;14042:2:1;43233:120:0;;;14024:21:1;14081:2;14061:18;;;14054:30;14120:34;14100:18;;;14093:62;-1:-1:-1;;;14171:18:1;;;14164:45;14226:19;;43233:120:0;;;;;;;;;43366:26;43378:4;43384:7;43366:11;:26::i;:::-;43113:287;;:::o;108198:422::-;108395:10;108314:4;108377:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;108377:62:0;;;;;;;;;;:78;;108444:10;108377:66;:78::i;:::-;108354:10;108336:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;108336:38:0;;;;;;;;;;;;:119;;;108471;6035:25:1;;;108336:38:0;;-1:-1:-1;;;;;;;;;;;108471:119:0;6008:18:1;108471:119:0;5889:177:1;100544:205:0;100604:4;100629:34;82673:24;36693:10;39819:197;:::i;100629:34::-;100621:68;;;;-1:-1:-1;;;100621:68:0;;9944:2:1;100621:68:0;;;9926:21:1;9983:2;9963:18;;;9956:30;-1:-1:-1;;;10002:18:1;;;9995:51;10063:18;;100621:68:0;9742:345:1;100621:68:0;100702:17;100708:2;100712:6;100702:5;:17::i;:::-;-1:-1:-1;100737:4:0;100544:205;;;;:::o;101586:78::-;101643:13;101649:6;101643:5;:13::i;:::-;101586:78;:::o;111879:119::-;111940:7;111967:23;111984:5;111967:16;:23::i;112006:119::-;112067:7;112094:23;112111:5;112094:16;:23::i;105996:134::-;-1:-1:-1;;;;;106102:19:0;;106058:7;106102:19;;;:14;:19;;;;;;106085:37;;:16;:37::i;50094:103::-;49332:13;:11;:13::i;:::-;50159:30:::1;50186:1;50159:18;:30::i;:::-;50094:103::o:0;82278:164::-;82355:46;82371:7;36693:10;82394:6;82355:15;:46::i;:::-;82412:22;82418:7;82427:6;82412:5;:22::i;110541:1330::-;110657:7;110685:35;82743:25;36693:10;39819:197;:::i;110685:35::-;110677:70;;;;-1:-1:-1;;;110677:70:0;;11050:2:1;110677:70:0;;;11032:21:1;11089:2;11069:18;;;11062:30;-1:-1:-1;;;11108:18:1;;;11101:52;11170:18;;110677:70:0;10848:346:1;110677:70:0;110786:15;110782:142;;110837:19;;110823:55;;;14640:25:1;;;14696:2;14681:18;;14674:34;;;14724:18;;;14717:34;;;;110823:55:0;;;;;;14628:2:1;110823:55:0;;;-1:-1:-1;110900:12:0;;110893:19;;110782:142;110993:19;;111030:8;111025:633;;111134:91;98339:6;111134:63;111176:20;98339:6;111185:10;111176:8;:20::i;:::-;111134:19;;;:41;:63::i;:::-;:85;;:91::i;:::-;111112:19;:113;111025:633;;;111315:24;111342:91;98339:6;111342:63;111384:20;98339:6;111393:10;111384:8;:20::i;111342:91::-;111315:118;;111471:19;:17;:19::i;:::-;111452:16;:38;111448:199;;;111511:19;:38;;;111448:199;;;111612:19;:17;:19::i;:::-;111590;:41;111448:199;111243:415;111025:633;111728:28;111745:10;;111728:16;:28::i;:::-;111713:12;:43;111813:19;;111774:59;;;14640:25:1;;;14696:2;14681:18;;14674:34;;;14724:18;;;14717:34;;;;111774:59:0;;;;;;14628:2:1;111774:59:0;;;-1:-1:-1;;111851:12:0;;110541:1330;;;;;;:::o;46967:203::-;47102:7;47134:18;;;:12;:18;;;;;:28;;47156:5;47134:21;:28::i;102328:223::-;102396:4;102421:34;82673:24;36693:10;39819:197;:::i;102421:34::-;102413:68;;;;-1:-1:-1;;;102413:68:0;;9944:2:1;102413:68:0;;;9926:21:1;9983:2;9963:18;;;9956:30;-1:-1:-1;;;10002:18:1;;;9995:51;10063:18;;102413:68:0;9742:345:1;102413:68:0;102494:27;102510:2;102514:6;102494:15;:27::i;39819:197::-;39950:4;39979:12;;;;;;;;;;;-1:-1:-1;;;;;39979:29:0;;;;;;;;;;;;;;;39819:197::o;69900:104::-;69956:13;69989:7;69982:14;;;;;:::i;108882:612::-;109062:10;109003:4;109044:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;109044:38:0;;;;;;;;;;109097:27;;;109093:237;;109159:10;109182:1;109141:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;109141:38:0;;;;;;;;;:42;109093:237;;;109257:61;:8;109288:15;109257:12;:61::i;:::-;109234:10;109216:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;109216:38:0;;;;;;;;;:102;109093:237;109368:10;109415:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;109345:119:0;;109415:38;;;;;;;;;;;109345:119;;6035:25:1;;;109345:119:0;;109368:10;-1:-1:-1;;;;;;;;;;;109345:119:0;6008:18:1;109345:119:0;5889:177:1;104211:779:0;104336:4;104314:2;-1:-1:-1;;;;;99354:18:0;;99346:27;;;;;;-1:-1:-1;;;;;99392:19:0;;99406:4;99392:19;;99384:28;;;;;;104637:18:::1;104658:23;104675:5;104658:16;:23::i;:::-;104777:10;104762:26;::::0;;;:14:::1;:26;::::0;;;;;104637:44;;-1:-1:-1;104762:42:0::1;::::0;104637:44;104762:30:::1;:42::i;:::-;104748:10;104733:26;::::0;;;:14:::1;:26;::::0;;;;;:71;;;;-1:-1:-1;;;;;104877:18:0;::::1;::::0;;;;:34:::1;::::0;104900:10;104877:22:::1;:34::i;:::-;-1:-1:-1::0;;;;;104856:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;;;:55;;;;104927:31;;104936:10:::1;::::0;-1:-1:-1;;;;;;;;;;;104927:31:0;::::1;::::0;104952:5;6035:25:1;;6023:2;6008:18;;5889:177;104927:31:0::1;;;;;;;;-1:-1:-1::0;104978:4:0::1;::::0;104211:779;-1:-1:-1;;;;104211:779:0:o;47344:192::-;47469:7;47501:18;;;:12;:18;;;;;:27;;:25;:27::i;112473:245::-;112598:4;49332:13;:11;:13::i;:::-;112639:49:::1;112669:5;112677:2;112681:6;112639:22;:49::i;:::-;-1:-1:-1::0;112706:4:0::1;112473:245:::0;;;;;:::o;109539:994::-;109766:8;109747:15;:27;;109739:60;;;;-1:-1:-1;;;109739:60:0;;12164:2:1;109739:60:0;;;12146:21:1;12203:2;12183:18;;;12176:30;-1:-1:-1;;;12222:18:1;;;12215:50;12282:18;;109739:60:0;11962:344:1;109739:60:0;109917:16;;-1:-1:-1;;;;;110161:13:0;;109812:14;110161:13;;;:6;:13;;;;;:15;;109812:14;;109917:16;98812:66;;110063:5;;110095:7;;110129:5;;110161:15;109812:14;110161:15;;;:::i;:::-;;;;-1:-1:-1;109984:250:0;;;;;;6358:25:1;;;;-1:-1:-1;;;;;6457:15:1;;;6437:18;;;6430:43;6509:15;;;;6489:18;;;6482:43;6541:18;;;6534:34;6584:19;;;6577:35;6628:19;;;6621:35;;;6330:19;;109984:250:0;;;;;;;;;;;;109952:301;;;;;;109853:415;;;;;;;;-1:-1:-1;;;4280:27:1;;4332:1;4323:11;;4316:27;;;;4368:2;4359:12;;4352:28;4405:2;4396:12;;4022:392;109853:415:0;;;;-1:-1:-1;;109853:415:0;;;;;;;;;109829:450;;109853:415;109829:450;;;;;-1:-1:-1;;;;;;110300:19:0;;110292:55;;;;-1:-1:-1;;;110292:55:0;;9234:2:1;110292:55:0;;;9216:21:1;9273:2;9253:18;;;9246:30;9312:25;9292:18;;;9285:53;9355:18;;110292:55:0;9032:347:1;110292:55:0;110375:26;;;;;;;;;;;;6894:25:1;;;6967:4;6955:17;;6935:18;;;6928:45;;;;6989:18;;;6982:34;;;7032:18;;;7025:34;;;110375:26:0;;6866:19:1;;110375:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;110366:35:0;:5;-1:-1:-1;;;;;110366:35:0;;110358:68;;;;-1:-1:-1;;;110358:68:0;;10701:2:1;110358:68:0;;;10683:21:1;10740:2;10720:18;;;10713:30;-1:-1:-1;;;10759:18:1;;;10752:50;10819:18;;110358:68:0;10499:344:1;110358:68:0;-1:-1:-1;;;;;110437:24:0;;;;;;;:17;:24;;;;;;;;:33;;;;;;;;;;;;;:41;;;110494:31;;6035:25:1;;;-1:-1:-1;;;;;;;;;;;110494:31:0;6008:18:1;110494:31:0;;;;;;;109728:805;109539:994;;;;;;;:::o;42368:190::-;41515:7;41547:12;;;;;;;;;;:22;;;39339:16;39350:4;39339:10;:16::i;:::-;42524:26:::1;42536:4;42542:7;42524:11;:26::i;50352:238::-:0;49332:13;:11;:13::i;:::-;-1:-1:-1;;;;;50455:22:0;::::1;50433:110;;;::::0;-1:-1:-1;;;50433:110:0;;8424:2:1;50433:110:0::1;::::0;::::1;8406:21:1::0;8463:2;8443:18;;;8436:30;8502:34;8482:18;;;8475:62;-1:-1:-1;;;8553:18:1;;;8546:36;8599:19;;50433:110:0::1;8222:402:1::0;50433:110:0::1;50554:28;50573:8;50554:18;:28::i;91911:98::-:0;91969:7;91996:5;92000:1;91996;:5;:::i;92310:98::-;92368:7;92395:5;92399:1;92395;:5;:::i;44779:238::-;44863:22;44871:4;44877:7;44863;:22::i;:::-;44858:152;;44902:6;:12;;;;;;;;;;;-1:-1:-1;;;;;44902:29:0;;;;;;;;;:36;;-1:-1:-1;;44902:36:0;44934:4;44902:36;;;44985:12;36693:10;;36613:98;44985:12;-1:-1:-1;;;;;44958:40:0;44976:7;-1:-1:-1;;;;;44958:40:0;44970:4;44958:40;;;;;;;;;;44779:238;;:::o;8571:175::-;8659:4;8688:50;8693:3;-1:-1:-1;;;;;8713:23:0;;8688:4;:50::i;39447:280::-;39577:4;-1:-1:-1;;;;;;39619:47:0;;-1:-1:-1;;;39619:47:0;;:100;;-1:-1:-1;;;;;;;;;;15666:40:0;;;39683:36;15507:207;100110:317;100162:7;100409:10;;-1:-1:-1;;100387:32:0;;;;:::i;91554:98::-;91612:7;91639:5;91643:1;91639;:5;:::i;112292:151::-;112415:19;;112356:7;;112383:52;;:27;:5;98233:6;112383:9;:27::i;91173:98::-;91231:7;91258:5;91262:1;91258;:5;:::i;40320:105::-;40387:30;40398:4;36693:10;40387;:30::i;47629:201::-;47749:31;47766:4;47772:7;47749:16;:31::i;:::-;47791:18;;;;:12;:18;;;;;:31;;47814:7;47791:22;:31::i;112133:151::-;112197:7;112224:52;98233:6;112224:30;112234:19;;112224:5;:9;;:30;;;;:::i;47924:206::-;48045:32;48063:4;48069:7;48045:17;:32::i;:::-;48088:18;;;;:12;:18;;;;;:34;;48114:7;48088:25;:34::i;100757:699::-;100877:12;;:24;;100894:6;100877:16;:24::i;:::-;100862:12;:39;100947:18;100968:24;100985:6;100968:16;:24::i;:::-;101050:10;;100947:45;;-1:-1:-1;101050:26:0;;100947:45;101050:14;:26::i;:::-;101037:10;:39;101201:19;:17;:19::i;:::-;101178;;:42;;101156:118;;;;-1:-1:-1;;;101156:118:0;;13687:2:1;101156:118:0;;;13669:21:1;13726:2;13706:18;;;13699:30;13765:28;13745:18;;;13738:56;13811:18;;101156:118:0;13485:350:1;101156:118:0;-1:-1:-1;;;;;101332:18:0;;;;;;:14;:18;;;;;;:34;;101355:10;101332:22;:34::i;:::-;-1:-1:-1;;;;;101311:18:0;;;;;;:14;:18;;;;;;;;;:55;;;;101384:16;;5592:51:1;;;5659:18;;;5652:34;;;101384:16:0;;5565:18:1;101384:16:0;;;;;;;101416:32;;6035:25:1;;;-1:-1:-1;;;;;101416:32:0;;;101433:1;;-1:-1:-1;;;;;;;;;;;101416:32:0;6023:2:1;6008:18;101416:32:0;;;;;;;;100818:638;100757:699;;:::o;101672:515::-;101771:12;;:24;;101788:6;101771:16;:24::i;:::-;101756:12;:39;101841:18;101862:24;101879:6;101862:16;:24::i;:::-;101944:10;;101841:45;;-1:-1:-1;101944:26:0;;101841:45;101944:14;:26::i;:::-;101931:10;:39;102056:10;102041:26;;;;:14;:26;;;;;;:42;;102072:10;102041:30;:42::i;:::-;102027:10;102012:26;;;;:14;:26;;;;;;;;;:71;;;;102099:24;;5592:51:1;;;5659:18;;;5652:34;;;102099:24:0;;5565:18:1;102099:24:0;;;;;;;102139:40;;6035:25:1;;;102168:1:0;;102148:10;;-1:-1:-1;;;;;;;;;;;102139:40:0;6023:2:1;6008:18;102139:40:0;;;;;;;101712:475;101672:515;:::o;49611:132::-;49519:6;;-1:-1:-1;;;;;49519:6:0;36693:10;49675:23;49667:68;;;;-1:-1:-1;;;49667:68:0;;11401:2:1;49667:68:0;;;11383:21:1;;;11420:18;;;11413:30;11479:34;11459:18;;;11452:62;11531:18;;49667:68:0;11199:356:1;50750:191:0;50843:6;;;-1:-1:-1;;;;;50860:17:0;;;-1:-1:-1;;;;;;50860:17:0;;;;;;;50893:40;;50843:6;;;50860:17;50843:6;;50893:40;;50824:16;;50893:40;50813:128;50750:191;:::o;79276:502::-;-1:-1:-1;;;;;106890:25:0;;;79411:24;106890:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;-1:-1:-1;;79478:37:0;;79474:297;;79578:6;79558:16;:26;;79532:117;;;;-1:-1:-1;;;79532:117:0;;9586:2:1;79532:117:0;;;9568:21:1;9625:2;9605:18;;;9598:30;9664:31;9644:18;;;9637:59;9713:18;;79532:117:0;9384:353:1;79532:117:0;79693:51;79702:5;79709:7;79737:6;79718:16;:25;79693:8;:51::i;:::-;79400:378;79276:502;;;:::o;77492:675::-;-1:-1:-1;;;;;77576:21:0;;77568:67;;;;-1:-1:-1;;;77568:67:0;;11762:2:1;77568:67:0;;;11744:21:1;11801:2;11781:18;;;11774:30;11840:34;11820:18;;;11813:62;-1:-1:-1;;;11891:18:1;;;11884:31;11932:19;;77568:67:0;11560:397:1;77568:67:0;-1:-1:-1;;;;;77735:18:0;;77710:22;77735:18;;;:9;:18;;;;;;77772:24;;;;77764:71;;;;-1:-1:-1;;;77764:71:0;;8021:2:1;77764:71:0;;;8003:21:1;8060:2;8040:18;;;8033:30;8099:34;8079:18;;;8072:62;-1:-1:-1;;;8150:18:1;;;8143:32;8192:19;;77764:71:0;7819:398:1;77764:71:0;-1:-1:-1;;;;;77871:18:0;;;;;;:9;:18;;;;;;;;77892:23;;;77871:44;;78010:12;:22;;;;;;;78061:37;6035:25:1;;;77871:18:0;;;-1:-1:-1;;;;;;;;;;;78061:37:0;6008:18:1;78061:37:0;;;;;;;41887:188;;;:::o;9945:190::-;10046:7;10102:22;10106:3;10118:5;10102:3;:22::i;102559:710::-;102677:10;;:22;;102692:6;102677:14;:22::i;:::-;102664:10;:35;102743:20;102766:24;102783:6;102766:16;:24::i;:::-;102851:12;;102743:47;;-1:-1:-1;102851:30:0;;102743:47;102851:16;:30::i;:::-;102836:12;:45;103006:19;:17;:19::i;:::-;102983;;:42;;102961:118;;;;-1:-1:-1;;;102961:118:0;;13687:2:1;102961:118:0;;;13669:21:1;13726:2;13706:18;;;13699:30;13765:28;13745:18;;;13738:56;13811:18;;102961:118:0;13485:350:1;102961:118:0;-1:-1:-1;;;;;103137:18:0;;;;;;:14;:18;;;;;;:30;;103160:6;103137:22;:30::i;:::-;-1:-1:-1;;;;;103116:18:0;;;;;;:14;:18;;;;;;;;;:51;;;;103185:22;;5592:51:1;;;5659:18;;;5652:34;;;103185:22:0;;5565:18:1;103185:22:0;;;;;;;103223:38;;6035:25:1;;;-1:-1:-1;;;;;103223:38:0;;;103240:1;;-1:-1:-1;;;;;;;;;;;103223:38:0;6023:2:1;6008:18;103223:38:0;5889:177:1;9474:117:0;9537:7;9564:19;9572:3;4522:18;;4439:109;83779:248;83950:58;;;-1:-1:-1;;;;;5610:32:1;;83950:58:0;;;5592:51:1;5659:18;;;;5652:34;;;83950:58:0;;;;;;;;;;5565:18:1;;;;83950:58:0;;;;;;;;-1:-1:-1;;;;;83950:58:0;-1:-1:-1;;;83950:58:0;;;83896:123;;83930:5;;83896:19;:123::i;2096:414::-;2159:4;4321:19;;;:12;;;:19;;;;;;2176:327;;-1:-1:-1;2219:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2402:18;;2380:19;;;:12;;;:19;;;;;;:40;;;;2435:11;;2176:327;-1:-1:-1;2486:5:0;2479:12;;40715:492;40804:22;40812:4;40818:7;40804;:22::i;:::-;40799:401;;40992:28;41012:7;40992:19;:28::i;:::-;41093:38;41121:4;41128:2;41093:19;:38::i;:::-;40897:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;40897:257:0;;;;;;;;;;-1:-1:-1;;;40843:345:0;;;;;;;:::i;45197:239::-;45281:22;45289:4;45295:7;45281;:22::i;:::-;45277:152;;;45352:5;45320:12;;;;;;;;;;;-1:-1:-1;;;;;45320:29:0;;;;;;;;;;:37;;-1:-1:-1;;45320:37:0;;;45377:40;36693:10;;45320:12;;45377:40;;45352:5;45377:40;45197:239;;:::o;8922:181::-;9013:4;9042:53;9050:3;-1:-1:-1;;;;;9070:23:0;;9042:7;:53::i;78605:380::-;-1:-1:-1;;;;;78741:19:0;;78733:68;;;;-1:-1:-1;;;78733:68:0;;12513:2:1;78733:68:0;;;12495:21:1;12552:2;12532:18;;;12525:30;12591:34;12571:18;;;12564:62;-1:-1:-1;;;12642:18:1;;;12635:34;12686:19;;78733:68:0;12311:400:1;78733:68:0;-1:-1:-1;;;;;78820:21:0;;78812:68;;;;-1:-1:-1;;;78812:68:0;;8831:2:1;78812:68:0;;;8813:21:1;8870:2;8850:18;;;8843:30;8909:34;8889:18;;;8882:62;-1:-1:-1;;;8960:18:1;;;8953:32;9002:19;;78812:68:0;8629:398:1;78812:68:0;-1:-1:-1;;;;;78893:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;78945:32;;6035:25:1;;;-1:-1:-1;;;;;;;;;;;78945:32:0;6008:18:1;78945:32:0;5889:177:1;4902:152:0;4996:7;5028:3;:11;;5040:5;5028:18;;;;;;;;:::i;:::-;;;;;;;;;5021:25;;4902:152;;;;:::o;87277:802::-;87701:23;87727:106;87769:4;87727:106;;;;;;;;;;;;;;;;;87735:5;-1:-1:-1;;;;;87727:27:0;;;:106;;;;;:::i;:::-;87848:17;;87701:132;;-1:-1:-1;87848:21:0;87844:228;;87963:10;87952:30;;;;;;;;;;;;:::i;:::-;87926:134;;;;-1:-1:-1;;;87926:134:0;;13276:2:1;87926:134:0;;;13258:21:1;13315:2;13295:18;;;13288:30;13354:34;13334:18;;;13327:62;-1:-1:-1;;;13405:18:1;;;13398:40;13455:19;;87926:134:0;13074:406:1;31158:151:0;31216:13;31249:52;-1:-1:-1;;;;;31261:22:0;;29281:2;30522:479;30624:13;30655:19;30687:10;30691:6;30687:1;:10;:::i;:::-;:14;;30700:1;30687:14;:::i;:::-;30677:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30677:25:0;;30655:47;;-1:-1:-1;;;30713:6:0;30720:1;30713:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;30713:15:0;;;;;;;;;-1:-1:-1;;;30739:6:0;30746:1;30739:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;30739:15:0;;;;;;;;-1:-1:-1;30770:9:0;30782:10;30786:6;30782:1;:10;:::i;:::-;:14;;30795:1;30782:14;:::i;:::-;30770:26;;30765:131;30802:1;30798;:5;30765:131;;;-1:-1:-1;;;30846:5:0;30854:3;30846:11;30837:21;;;;;;;:::i;:::-;;;;30825:6;30832:1;30825:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;30825:33:0;;;;;;;;-1:-1:-1;30883:1:0;30873:11;;;;;30805:3;;;:::i;:::-;;;30765:131;;;-1:-1:-1;30914:10:0;;30906:55;;;;-1:-1:-1;;;30906:55:0;;7660:2:1;30906:55:0;;;7642:21:1;;;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;7790:18;;30906:55:0;7458:356:1;2686:1420:0;2752:4;2891:19;;;:12;;;:19;;;;;;2927:15;;2923:1176;;3302:21;3326:14;3339:1;3326:10;:14;:::i;:::-;3375:18;;3302:38;;-1:-1:-1;3355:17:0;;3375:22;;3396:1;;3375:22;:::i;:::-;3355:42;;3431:13;3418:9;:26;3414:405;;3465:17;3485:3;:11;;3497:9;3485:22;;;;;;;;:::i;:::-;;;;;;;;;3465:42;;3639:9;3610:3;:11;;3622:13;3610:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3724:23;;;:12;;;:23;;;;;:36;;;3414:405;3900:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3995:3;:12;;:19;4008:5;3995:19;;;;;;;;;;;3988:26;;;4038:4;4031:11;;;;;;;2923:1176;4082:5;4075:12;;;;;55182:229;55319:12;55351:52;55373:6;55381:4;55387:1;55390:12;55351:21;:52::i;:::-;55344:59;55182:229;-1:-1:-1;;;;55182:229:0:o;56398:612::-;56568:12;56640:5;56615:21;:30;;56593:118;;;;-1:-1:-1;;;56593:118:0;;10294:2:1;56593:118:0;;;10276:21:1;10333:2;10313:18;;;10306:30;10372:34;10352:18;;;10345:62;-1:-1:-1;;;10423:18:1;;;10416:36;10469:19;;56593:118:0;10092:402:1;56593:118:0;56723:12;56737:23;56764:6;-1:-1:-1;;;;;56764:11:0;56783:5;56804:4;56764:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56722:97;;;;56850:152;56895:6;56920:7;56946:10;56975:12;56850:26;:152::i;:::-;56830:172;56398:612;-1:-1:-1;;;;;;;56398:612:0:o;59533:644::-;59718:12;59747:7;59743:427;;;59775:17;;59771:290;;-1:-1:-1;;;;;52527:19:0;;;59985:60;;;;-1:-1:-1;;;59985:60:0;;12918:2:1;59985:60:0;;;12900:21:1;12957:2;12937:18;;;12930:30;12996:31;12976:18;;;12969:59;13045:18;;59985:60:0;12716:353:1;59985:60:0;-1:-1:-1;60082:10:0;60075:17;;59743:427;60125:33;60133:10;60145:12;60903:17;;:21;60899:388;;61135:10;61129:17;61192:15;61179:10;61175:2;61171:19;61164:44;60899:388;61262:12;61255:20;;-1:-1:-1;;;61255:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:693::-;1092:6;1100;1108;1116;1124;1132;1140;1193:3;1181:9;1172:7;1168:23;1164:33;1161:53;;;1210:1;1207;1200:12;1161:53;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1417:2;1406:9;1402:18;1389:32;1379:42;;1471:3;1460:9;1456:19;1443:33;1516:4;1509:5;1505:16;1498:5;1495:27;1485:55;;1536:1;1533;1526:12;1485:55;981:693;;;;-1:-1:-1;981:693:1;;;;1559:5;1611:3;1596:19;;1583:33;;-1:-1:-1;1663:3:1;1648:19;;;1635:33;;981:693;-1:-1:-1;;981:693:1:o;1679:254::-;1747:6;1755;1808:2;1796:9;1787:7;1783:23;1779:32;1776:52;;;1824:1;1821;1814:12;1776:52;1847:29;1866:9;1847:29;:::i;:::-;1837:39;1923:2;1908:18;;;;1895:32;;-1:-1:-1;;;1679:254:1:o;1938:245::-;2005:6;2058:2;2046:9;2037:7;2033:23;2029:32;2026:52;;;2074:1;2071;2064:12;2026:52;2106:9;2100:16;2125:28;2147:5;2125:28;:::i;2188:180::-;2247:6;2300:2;2288:9;2279:7;2275:23;2271:32;2268:52;;;2316:1;2313;2306:12;2268:52;-1:-1:-1;2339:23:1;;2188:180;-1:-1:-1;2188:180:1:o;2373:254::-;2441:6;2449;2502:2;2490:9;2481:7;2477:23;2473:32;2470:52;;;2518:1;2515;2508:12;2470:52;2554:9;2541:23;2531:33;;2583:38;2617:2;2606:9;2602:18;2583:38;:::i;2632:248::-;2700:6;2708;2761:2;2749:9;2740:7;2736:23;2732:32;2729:52;;;2777:1;2774;2767:12;2729:52;-1:-1:-1;;2800:23:1;;;2870:2;2855:18;;;2842:32;;-1:-1:-1;2632:248:1:o;2885:286::-;2943:6;2996:2;2984:9;2975:7;2971:23;2967:32;2964:52;;;3012:1;3009;3002:12;2964:52;3038:23;;-1:-1:-1;;;;;;3090:32:1;;3080:43;;3070:71;;3137:1;3134;3127:12;3361:377;3435:6;3443;3451;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3556:9;3543:23;3533:33;;3613:2;3602:9;3598:18;3585:32;3575:42;;3667:2;3656:9;3652:18;3639:32;3680:28;3702:5;3680:28;:::i;:::-;3727:5;3717:15;;;3361:377;;;;;:::o;3743:274::-;3872:3;3910:6;3904:13;3926:53;3972:6;3967:3;3960:4;3952:6;3948:17;3926:53;:::i;:::-;3995:16;;;;;3743:274;-1:-1:-1;;3743:274:1:o;4419:786::-;4830:25;4825:3;4818:38;4800:3;4885:6;4879:13;4901:62;4956:6;4951:2;4946:3;4942:12;4935:4;4927:6;4923:17;4901:62;:::i;:::-;-1:-1:-1;;;5022:2:1;4982:16;;;5014:11;;;5007:40;5072:13;;5094:63;5072:13;5143:2;5135:11;;5128:4;5116:17;;5094:63;:::i;:::-;5177:17;5196:2;5173:26;;4419:786;-1:-1:-1;;;;4419:786:1:o;7070:383::-;7219:2;7208:9;7201:21;7182:4;7251:6;7245:13;7294:6;7289:2;7278:9;7274:18;7267:34;7310:66;7369:6;7364:2;7353:9;7349:18;7344:2;7336:6;7332:15;7310:66;:::i;:::-;7437:2;7416:15;-1:-1:-1;;7412:29:1;7397:45;;;;7444:2;7393:54;;7070:383;-1:-1:-1;;7070:383:1:o;14951:128::-;14991:3;15022:1;15018:6;15015:1;15012:13;15009:39;;;15028:18;;:::i;:::-;-1:-1:-1;15064:9:1;;14951:128::o;15084:217::-;15124:1;15150;15140:132;;15194:10;15189:3;15185:20;15182:1;15175:31;15229:4;15226:1;15219:15;15257:4;15254:1;15247:15;15140:132;-1:-1:-1;15286:9:1;;15084:217::o;15306:168::-;15346:7;15412:1;15408;15404:6;15400:14;15397:1;15394:21;15389:1;15382:9;15375:17;15371:45;15368:71;;;15419:18;;:::i;:::-;-1:-1:-1;15459:9:1;;15306:168::o;15479:125::-;15519:4;15547:1;15544;15541:8;15538:34;;;15552:18;;:::i;:::-;-1:-1:-1;15589:9:1;;15479:125::o;15609:258::-;15681:1;15691:113;15705:6;15702:1;15699:13;15691:113;;;15781:11;;;15775:18;15762:11;;;15755:39;15727:2;15720:10;15691:113;;;15822:6;15819:1;15816:13;15813:48;;;-1:-1:-1;;15857:1:1;15839:16;;15832:27;15609:258::o;15872:136::-;15911:3;15939:5;15929:39;;15948:18;;:::i;:::-;-1:-1:-1;;;15984:18:1;;15872:136::o;16013:380::-;16092:1;16088:12;;;;16135;;;16156:61;;16210:4;16202:6;16198:17;16188:27;;16156:61;16263:2;16255:6;16252:14;16232:18;16229:38;16226:161;;;16309:10;16304:3;16300:20;16297:1;16290:31;16344:4;16341:1;16334:15;16372:4;16369:1;16362:15;16226:161;;16013:380;;;:::o;16398:135::-;16437:3;-1:-1:-1;;16458:17:1;;16455:43;;;16478:18;;:::i;:::-;-1:-1:-1;16525:1:1;16514:13;;16398:135::o;16538:127::-;16599:10;16594:3;16590:20;16587:1;16580:31;16630:4;16627:1;16620:15;16654:4;16651:1;16644:15;16670:127;16731:10;16726:3;16722:20;16719:1;16712:31;16762:4;16759:1;16752:15;16786:4;16783:1;16776:15;16802:127;16863:10;16858:3;16854:20;16851:1;16844:31;16894:4;16891:1;16884:15;16918:4;16915:1;16908:15;16934:127;16995:10;16990:3;16986:20;16983:1;16976:31;17026:4;17023:1;17016:15;17050:4;17047:1;17040:15;17066:118;17152:5;17145:13;17138:21;17131:5;17128:32;17118:60;;17174:1;17171;17164:12

Swarm Source

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