ETH Price: $2,577.11 (+2.98%)

Token

Baby Shark Universe Token (BSU)
 

Overview

Max Total Supply

850,000,000 BSU

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
909.579287 BSU

Value
$0.00
0x0edbd4922613d0eb20610980b9326d8ac8d3edb9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BabysharkUniverseToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-15
*/

/**
 *Submitted for verification at polygonscan.com on 2023-07-12
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, 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 << 3) < value ? 1 : 0);
        }
    }
}

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

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}



abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}



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


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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


/**
 * @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:
 *
 * ```solidity
 * 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}:
 *
 * ```solidity
 * 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. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
 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;
}

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




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

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



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

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

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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 {}
}

contract BabysharkUniverseToken is ERC20, Pausable, AccessControlEnumerable {
    event TokensBurned(address request, uint256 amount); 
    
    bytes32 private constant OWNER_ROLE = keccak256("OWNER_ROLE");

    constructor() ERC20("Baby Shark Universe Token", "BSU") {

        _setupRole(OWNER_ROLE, msg.sender);

        _setRoleAdmin(OWNER_ROLE, OWNER_ROLE);        

        _mint(msg.sender, 850000000 * 10**uint(decimals()));
    }

    function distributeTokens(
        address[] memory recipients,
        uint256[] memory amounts
    ) external onlyOwner {
        require(
            recipients.length == amounts.length,
            "Recipients and amounts arrays must have the same length"
        );

        for (uint256 i = 0; i < recipients.length; i++) {
            require(recipients[i] != address(0), "Recipient address must not be a zero address");
            _transfer(msg.sender, recipients[i], amounts[i]);
        }
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override {
        super._beforeTokenTransfer(from, to, amount);
    }

    function burn(uint256 _amount) external onlyOwner returns (bool) {
        require(_amount > 0, "Amount must be greater than 0");

        _burn(msg.sender, _amount);
        emit TokensBurned(msg.sender, _amount);
        return true;
    }

    modifier onlyOwner() {
        require(
            hasRole(OWNER_ROLE, msg.sender),
            "MyContract: caller is not an owner"
        );
        _;
    }

    function addOwner(address newOwner) public onlyOwner {
        grantRole(OWNER_ROLE, newOwner);
    }

    function removeOwner(address owner) public onlyOwner {
        revokeRole(OWNER_ROLE, owner);
    }

    function getOwners() public view returns (address[] memory) {
        uint256 count = getRoleMemberCount(OWNER_ROLE);
        address[] memory owners = new address[](count);

        for (uint256 i = 0; i < count; i++) {
            owners[i] = getRoleMember(OWNER_ROLE, i);
        }

        return owners;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"request","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensBurned","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"addOwner","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"distributeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"removeOwner","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":"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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b506040518060400160405280601981526020017f4261627920536861726b20556e69766572736520546f6b656e000000000000008152506040518060400160405280600381526020017f425355000000000000000000000000000000000000000000000000000000000081525081600390816200008e9190620008c3565b508060049081620000a09190620008c3565b5050505f60055f6101000a81548160ff021916908315150217905550620000ee7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336200016960201b60201c565b620001207fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e806200017f60201b60201c565b620001633362000135620001e060201b60201c565b60ff16600a62000146919062000b24565b6332a9f88062000157919062000b74565b620001e860201b60201c565b62000d10565b6200017b82826200034d60201b60201c565b5050565b5f62000191836200038960201b60201c565b90508160065f8581526020019081526020015f20600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002509062000c1c565b60405180910390fd5b6200026c5f8383620003a660201b60201c565b8060025f8282546200027f919062000c3c565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032e919062000c87565b60405180910390a3620003495f8383620003ce60201b60201c565b5050565b6200035f8282620003d360201b60201c565b620003848160075f8581526020019081526020015f20620004bf60201b90919060201c565b505050565b5f60065f8381526020019081526020015f20600101549050919050565b620003b6620004f460201b60201c565b620003c98383836200054960201b60201c565b505050565b505050565b620003e582826200054e60201b60201c565b620004bb57600160065f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000460620005b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b5f620004ec835f018373ffffffffffffffffffffffffffffffffffffffff165f1b620005b960201b60201c565b905092915050565b620005046200062a60201b60201c565b1562000547576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053e9062000cf0565b60405180910390fd5b565b505050565b5f60065f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f33905090565b5f620005cc83836200063f60201b60201c565b6200062057825f0182908060018154018082558091505060019003905f5260205f20015f9091909190915055825f0180549050836001015f8481526020019081526020015f20819055506001905062000624565b5f90505b92915050565b5f60055f9054906101000a900460ff16905090565b5f80836001015f8481526020019081526020015f20541415905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006db57607f821691505b602082108103620006f157620006f062000696565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000718565b62000761868362000718565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007ab620007a56200079f8462000779565b62000782565b62000779565b9050919050565b5f819050919050565b620007c6836200078b565b620007de620007d582620007b2565b84845462000724565b825550505050565b5f90565b620007f4620007e6565b62000801818484620007bb565b505050565b5b8181101562000828576200081c5f82620007ea565b60018101905062000807565b5050565b601f82111562000877576200084181620006f7565b6200084c8462000709565b810160208510156200085c578190505b620008746200086b8562000709565b83018262000806565b50505b505050565b5f82821c905092915050565b5f620008995f19846008026200087c565b1980831691505092915050565b5f620008b3838362000888565b9150826002028217905092915050565b620008ce826200065f565b67ffffffffffffffff811115620008ea57620008e962000669565b5b620008f68254620006c3565b620009038282856200082c565b5f60209050601f83116001811462000939575f841562000924578287015190505b620009308582620008a6565b8655506200099f565b601f1984166200094986620006f7565b5f5b8281101562000972578489015182556001820191506020850194506020810190506200094b565b868310156200099257848901516200098e601f89168262000888565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a315780860481111562000a095762000a08620009a7565b5b600185161562000a195780820291505b808102905062000a2985620009d4565b9450620009e9565b94509492505050565b5f8262000a4b576001905062000b1d565b8162000a5a575f905062000b1d565b816001811462000a73576002811462000a7e5762000ab4565b600191505062000b1d565b60ff84111562000a935762000a92620009a7565b5b8360020a91508482111562000aad5762000aac620009a7565b5b5062000b1d565b5060208310610133831016604e8410600b841016171562000aee5782820a90508381111562000ae85762000ae7620009a7565b5b62000b1d565b62000afd8484846001620009e0565b9250905081840481111562000b175762000b16620009a7565b5b81810290505b9392505050565b5f62000b308262000779565b915062000b3d8362000779565b925062000b6c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a3a565b905092915050565b5f62000b808262000779565b915062000b8d8362000779565b925082820262000b9d8162000779565b9150828204841483151762000bb75762000bb6620009a7565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c04601f8362000bbe565b915062000c118262000bce565b602082019050919050565b5f6020820190508181035f83015262000c358162000bf6565b9050919050565b5f62000c488262000779565b915062000c558362000779565b925082820190508082111562000c705762000c6f620009a7565b5b92915050565b62000c818162000779565b82525050565b5f60208201905062000c9c5f83018462000c76565b92915050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f62000cd860108362000bbe565b915062000ce58262000ca2565b602082019050919050565b5f6020820190508181035f83015262000d098162000cca565b9050919050565b6134e48062000d1e5f395ff3fe608060405234801561000f575f80fd5b50600436106101c2575f3560e01c80635c975abb116100f7578063a0e67e2b11610095578063a9059cbb1161006f578063a9059cbb14610518578063ca15c87314610548578063d547741f14610578578063dd62ed3e14610594576101c2565b8063a0e67e2b146104ac578063a217fddf146104ca578063a457c2d7146104e8576101c2565b80638456cb59116100d15780638456cb59146104245780639010d07c1461042e57806391d148541461045e57806395d89b411461048e576101c2565b80635c975abb146103ba5780637065cb48146103d857806370a08231146103f4576101c2565b80632f2ff15d11610164578063395093511161013e57806339509351146103345780633f4ba83a1461036457806342966c681461036e5780634bd09c2a1461039e576101c2565b80632f2ff15d146102de578063313ce567146102fa57806336568abe14610318576101c2565b8063173825d9116101a0578063173825d91461024457806318160ddd1461026057806323b872dd1461027e578063248a9ca3146102ae576101c2565b806301ffc9a7146101c657806306fdde03146101f6578063095ea7b314610214575b5f80fd5b6101e060048036038101906101db919061214d565b6105c4565b6040516101ed9190612192565b60405180910390f35b6101fe61063d565b60405161020b9190612235565b60405180910390f35b61022e600480360381019061022991906122e2565b6106cd565b60405161023b9190612192565b60405180910390f35b61025e60048036038101906102599190612320565b6106ef565b005b610268610785565b604051610275919061235a565b60405180910390f35b61029860048036038101906102939190612373565b61078e565b6040516102a59190612192565b60405180910390f35b6102c860048036038101906102c391906123f6565b6107bc565b6040516102d59190612430565b60405180910390f35b6102f860048036038101906102f39190612449565b6107d9565b005b6103026107fa565b60405161030f91906124a2565b60405180910390f35b610332600480360381019061032d9190612449565b610802565b005b61034e600480360381019061034991906122e2565b610885565b60405161035b9190612192565b60405180910390f35b61036c6108bb565b005b610388600480360381019061038391906124bb565b61092e565b6040516103959190612192565b60405180910390f35b6103b860048036038101906103b391906126e6565b610a26565b005b6103c2610bbd565b6040516103cf9190612192565b60405180910390f35b6103f260048036038101906103ed9190612320565b610bd2565b005b61040e60048036038101906104099190612320565b610c68565b60405161041b919061235a565b60405180910390f35b61042c610cad565b005b6104486004803603810190610443919061275c565b610d20565b60405161045591906127a9565b60405180910390f35b61047860048036038101906104739190612449565b610d4c565b6040516104859190612192565b60405180910390f35b610496610db0565b6040516104a39190612235565b60405180910390f35b6104b4610e40565b6040516104c19190612879565b60405180910390f35b6104d2610f57565b6040516104df9190612430565b60405180910390f35b61050260048036038101906104fd91906122e2565b610f5d565b60405161050f9190612192565b60405180910390f35b610532600480360381019061052d91906122e2565b610fd2565b60405161053f9190612192565b60405180910390f35b610562600480360381019061055d91906123f6565b610ff4565b60405161056f919061235a565b60405180910390f35b610592600480360381019061058d9190612449565b611015565b005b6105ae60048036038101906105a99190612899565b611036565b6040516105bb919061235a565b60405180910390f35b5f7f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106365750610635826110b8565b5b9050919050565b60606003805461064c90612904565b80601f016020809104026020016040519081016040528092919081815260200182805461067890612904565b80156106c35780601f1061069a576101008083540402835291602001916106c3565b820191905f5260205f20905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b5f806106d7611131565b90506106e4818585611138565b600191505092915050565b6107197fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f906129a4565b60405180910390fd5b6107827fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e82611015565b50565b5f600254905090565b5f80610798611131565b90506107a58582856112fb565b6107b0858585611386565b60019150509392505050565b5f60065f8381526020019081526020015f20600101549050919050565b6107e2826107bc565b6107eb816115f2565b6107f58383611606565b505050565b5f6012905090565b61080a611131565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e90612a32565b60405180910390fd5b6108818282611638565b5050565b5f8061088f611131565b90506108b08185856108a18589611036565b6108ab9190612a7d565b611138565b600191505092915050565b6108e57fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b906129a4565b60405180910390fd5b61092c61166a565b565b5f6109597fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f906129a4565b60405180910390fd5b5f82116109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190612afa565b60405180910390fd5b6109e433836116cb565b7ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb63383604051610a15929190612b18565b60405180910390a160019050919050565b610a507fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906129a4565b60405180910390fd5b8051825114610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90612baf565b60405180910390fd5b5f5b8251811015610bb8575f73ffffffffffffffffffffffffffffffffffffffff16838281518110610b0857610b07612bcd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d90612c6a565b60405180910390fd5b610ba533848381518110610b7d57610b7c612bcd565b5b6020026020010151848481518110610b9857610b97612bcd565b5b6020026020010151611386565b8080610bb090612c88565b915050610ad5565b505050565b5f60055f9054906101000a900460ff16905090565b610bfc7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906129a4565b60405180910390fd5b610c657fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e826107d9565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610cd77fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906129a4565b60405180910390fd5b610d1e61188e565b565b5f610d448260075f8681526020019081526020015f206118f090919063ffffffff16565b905092915050565b5f60065f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b606060048054610dbf90612904565b80601f0160208091040260200160405190810160405280929190818152602001828054610deb90612904565b8015610e365780601f10610e0d57610100808354040283529160200191610e36565b820191905f5260205f20905b815481529060010190602001808311610e1957829003601f168201915b5050505050905090565b60605f610e6c7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e610ff4565b90505f8167ffffffffffffffff811115610e8957610e886124ea565b5b604051908082528060200260200182016040528015610eb75781602001602082028036833780820191505090505b5090505f5b82811015610f4e57610eee7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e82610d20565b828281518110610f0157610f00612bcd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080610f4690612c88565b915050610ebc565b50809250505090565b5f801b81565b5f80610f67611131565b90505f610f748286611036565b905083811015610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090612d3f565b60405180910390fd5b610fc68286868403611138565b60019250505092915050565b5f80610fdc611131565b9050610fe9818585611386565b600191505092915050565b5f61100e60075f8481526020019081526020015f20611907565b9050919050565b61101e826107bc565b611027816115f2565b6110318383611638565b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061112a57506111298261191a565b5b9050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90612dcd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90612e5b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112ee919061235a565b60405180910390a3505050565b5f6113068484611036565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113805781811015611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990612ec3565b60405180910390fd5b61137f8484848403611138565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90612f51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990612fdf565b60405180910390fd5b61146d838383611983565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061306d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115d9919061235a565b60405180910390a36115ec84848461199b565b50505050565b611603816115fe611131565b6119a0565b50565b6116108282611a24565b6116338160075f8581526020019081526020015f20611aff90919063ffffffff16565b505050565b6116428282611b2c565b6116658160075f8581526020019081526020015f20611c0790919063ffffffff16565b505050565b611672611c34565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116b4611131565b6040516116c191906127a9565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611730906130fb565b60405180910390fd5b611744825f83611983565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90613189565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611876919061235a565b60405180910390a3611889835f8461199b565b505050565b611896611c7d565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118d9611131565b6040516118e691906127a9565b60405180910390a1565b5f6118fd835f0183611cc7565b5f1c905092915050565b5f611913825f01611cee565b9050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61198b611c7d565b611996838383611cfd565b505050565b505050565b6119aa8282610d4c565b611a20576119b781611d02565b6119c4835f1c6020611d2f565b6040516020016119d5929190613275565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a179190612235565b60405180910390fd5b5050565b611a2e8282610d4c565b611afb57600160065f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611aa0611131565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b5f611b24835f018373ffffffffffffffffffffffffffffffffffffffff165f1b611f64565b905092915050565b611b368282610d4c565b15611c03575f60065f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611ba8611131565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b5f611c2c835f018373ffffffffffffffffffffffffffffffffffffffff165f1b611fcb565b905092915050565b611c3c610bbd565b611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906132f8565b60405180910390fd5b565b611c85610bbd565b15611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90613360565b60405180910390fd5b565b5f825f018281548110611cdd57611cdc612bcd565b5b905f5260205f200154905092915050565b5f815f01805490509050919050565b505050565b6060611d288273ffffffffffffffffffffffffffffffffffffffff16601460ff16611d2f565b9050919050565b60605f6002836002611d41919061337e565b611d4b9190612a7d565b67ffffffffffffffff811115611d6457611d636124ea565b5b6040519080825280601f01601f191660200182016040528015611d965781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000815f81518110611dcd57611dcc612bcd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e3057611e2f612bcd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053505f6001846002611e6e919061337e565b611e789190612a7d565b90505b6001811115611f17577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611eba57611eb9612bcd565b5b1a60f81b828281518110611ed157611ed0612bcd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600485901c945080611f10906133bf565b9050611e7b565b505f8414611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613430565b60405180910390fd5b8091505092915050565b5f611f6f83836120c7565b611fc157825f0182908060018154018082558091505060019003905f5260205f20015f9091909190915055825f0180549050836001015f8481526020019081526020015f208190555060019050611fc5565b5f90505b92915050565b5f80836001015f8481526020019081526020015f205490505f81146120bc575f600182611ff8919061344e565b90505f6001865f018054905061200e919061344e565b9050818114612074575f865f01828154811061202d5761202c612bcd565b5b905f5260205f200154905080875f01848154811061204e5761204d612bcd565b5b905f5260205f20018190555083876001015f8381526020019081526020015f2081905550505b855f0180548061208757612086613481565b5b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506120c1565b5f9150505b92915050565b5f80836001015f8481526020019081526020015f20541415905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61212c816120f8565b8114612136575f80fd5b50565b5f8135905061214781612123565b92915050565b5f60208284031215612162576121616120f0565b5b5f61216f84828501612139565b91505092915050565b5f8115159050919050565b61218c81612178565b82525050565b5f6020820190506121a55f830184612183565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156121e25780820151818401526020810190506121c7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612207826121ab565b61221181856121b5565b93506122218185602086016121c5565b61222a816121ed565b840191505092915050565b5f6020820190508181035f83015261224d81846121fd565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61227e82612255565b9050919050565b61228e81612274565b8114612298575f80fd5b50565b5f813590506122a981612285565b92915050565b5f819050919050565b6122c1816122af565b81146122cb575f80fd5b50565b5f813590506122dc816122b8565b92915050565b5f80604083850312156122f8576122f76120f0565b5b5f6123058582860161229b565b9250506020612316858286016122ce565b9150509250929050565b5f60208284031215612335576123346120f0565b5b5f6123428482850161229b565b91505092915050565b612354816122af565b82525050565b5f60208201905061236d5f83018461234b565b92915050565b5f805f6060848603121561238a576123896120f0565b5b5f6123978682870161229b565b93505060206123a88682870161229b565b92505060406123b9868287016122ce565b9150509250925092565b5f819050919050565b6123d5816123c3565b81146123df575f80fd5b50565b5f813590506123f0816123cc565b92915050565b5f6020828403121561240b5761240a6120f0565b5b5f612418848285016123e2565b91505092915050565b61242a816123c3565b82525050565b5f6020820190506124435f830184612421565b92915050565b5f806040838503121561245f5761245e6120f0565b5b5f61246c858286016123e2565b925050602061247d8582860161229b565b9150509250929050565b5f60ff82169050919050565b61249c81612487565b82525050565b5f6020820190506124b55f830184612493565b92915050565b5f602082840312156124d0576124cf6120f0565b5b5f6124dd848285016122ce565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612520826121ed565b810181811067ffffffffffffffff8211171561253f5761253e6124ea565b5b80604052505050565b5f6125516120e7565b905061255d8282612517565b919050565b5f67ffffffffffffffff82111561257c5761257b6124ea565b5b602082029050602081019050919050565b5f80fd5b5f6125a361259e84612562565b612548565b905080838252602082019050602084028301858111156125c6576125c561258d565b5b835b818110156125ef57806125db888261229b565b8452602084019350506020810190506125c8565b5050509392505050565b5f82601f83011261260d5761260c6124e6565b5b813561261d848260208601612591565b91505092915050565b5f67ffffffffffffffff8211156126405761263f6124ea565b5b602082029050602081019050919050565b5f61266361265e84612626565b612548565b905080838252602082019050602084028301858111156126865761268561258d565b5b835b818110156126af578061269b88826122ce565b845260208401935050602081019050612688565b5050509392505050565b5f82601f8301126126cd576126cc6124e6565b5b81356126dd848260208601612651565b91505092915050565b5f80604083850312156126fc576126fb6120f0565b5b5f83013567ffffffffffffffff811115612719576127186120f4565b5b612725858286016125f9565b925050602083013567ffffffffffffffff811115612746576127456120f4565b5b612752858286016126b9565b9150509250929050565b5f8060408385031215612772576127716120f0565b5b5f61277f858286016123e2565b9250506020612790858286016122ce565b9150509250929050565b6127a381612274565b82525050565b5f6020820190506127bc5f83018461279a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6127f481612274565b82525050565b5f61280583836127eb565b60208301905092915050565b5f602082019050919050565b5f612827826127c2565b61283181856127cc565b935061283c836127dc565b805f5b8381101561286c57815161285388826127fa565b975061285e83612811565b92505060018101905061283f565b5085935050505092915050565b5f6020820190508181035f830152612891818461281d565b905092915050565b5f80604083850312156128af576128ae6120f0565b5b5f6128bc8582860161229b565b92505060206128cd8582860161229b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061291b57607f821691505b60208210810361292e5761292d6128d7565b5b50919050565b7f4d79436f6e74726163743a2063616c6c6572206973206e6f7420616e206f776e5f8201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b5f61298e6022836121b5565b915061299982612934565b604082019050919050565b5f6020820190508181035f8301526129bb81612982565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e63655f8201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b5f612a1c602f836121b5565b9150612a27826129c2565b604082019050919050565b5f6020820190508181035f830152612a4981612a10565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612a87826122af565b9150612a92836122af565b9250828201905080821115612aaa57612aa9612a50565b5b92915050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f612ae4601d836121b5565b9150612aef82612ab0565b602082019050919050565b5f6020820190508181035f830152612b1181612ad8565b9050919050565b5f604082019050612b2b5f83018561279a565b612b38602083018461234b565b9392505050565b7f526563697069656e747320616e6420616d6f756e747320617272617973206d755f8201527f73742068617665207468652073616d65206c656e677468000000000000000000602082015250565b5f612b996037836121b5565b9150612ba482612b3f565b604082019050919050565b5f6020820190508181035f830152612bc681612b8d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f526563697069656e742061646472657373206d757374206e6f742062652061205f8201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b5f612c54602c836121b5565b9150612c5f82612bfa565b604082019050919050565b5f6020820190508181035f830152612c8181612c48565b9050919050565b5f612c92826122af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612cc457612cc3612a50565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d296025836121b5565b9150612d3482612ccf565b604082019050919050565b5f6020820190508181035f830152612d5681612d1d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612db76024836121b5565b9150612dc282612d5d565b604082019050919050565b5f6020820190508181035f830152612de481612dab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e456022836121b5565b9150612e5082612deb565b604082019050919050565b5f6020820190508181035f830152612e7281612e39565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612ead601d836121b5565b9150612eb882612e79565b602082019050919050565b5f6020820190508181035f830152612eda81612ea1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612f3b6025836121b5565b9150612f4682612ee1565b604082019050919050565b5f6020820190508181035f830152612f6881612f2f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612fc96023836121b5565b9150612fd482612f6f565b604082019050919050565b5f6020820190508181035f830152612ff681612fbd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6130576026836121b5565b915061306282612ffd565b604082019050919050565b5f6020820190508181035f8301526130848161304b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130e56021836121b5565b91506130f08261308b565b604082019050919050565b5f6020820190508181035f830152613112816130d9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6131736022836121b5565b915061317e82613119565b604082019050919050565b5f6020820190508181035f8301526131a081613167565b9050919050565b5f81905092915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000005f82015250565b5f6131e56017836131a7565b91506131f0826131b1565b601782019050919050565b5f613205826121ab565b61320f81856131a7565b935061321f8185602086016121c5565b80840191505092915050565b7f206973206d697373696e6720726f6c65200000000000000000000000000000005f82015250565b5f61325f6011836131a7565b915061326a8261322b565b601182019050919050565b5f61327f826131d9565b915061328b82856131fb565b915061329682613253565b91506132a282846131fb565b91508190509392505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f6132e26014836121b5565b91506132ed826132ae565b602082019050919050565b5f6020820190508181035f83015261330f816132d6565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f61334a6010836121b5565b915061335582613316565b602082019050919050565b5f6020820190508181035f8301526133778161333e565b9050919050565b5f613388826122af565b9150613393836122af565b92508282026133a1816122af565b915082820484148315176133b8576133b7612a50565b5b5092915050565b5f6133c9826122af565b91505f82036133db576133da612a50565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e745f82015250565b5f61341a6020836121b5565b9150613425826133e6565b602082019050919050565b5f6020820190508181035f8301526134478161340e565b9050919050565b5f613458826122af565b9150613463836122af565b925082820390508181111561347b5761347a612a50565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212201f784c2013ec7d353ed1979af7a4b7e8a4f666da2aad9623f8da19455a1445bb64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101c2575f3560e01c80635c975abb116100f7578063a0e67e2b11610095578063a9059cbb1161006f578063a9059cbb14610518578063ca15c87314610548578063d547741f14610578578063dd62ed3e14610594576101c2565b8063a0e67e2b146104ac578063a217fddf146104ca578063a457c2d7146104e8576101c2565b80638456cb59116100d15780638456cb59146104245780639010d07c1461042e57806391d148541461045e57806395d89b411461048e576101c2565b80635c975abb146103ba5780637065cb48146103d857806370a08231146103f4576101c2565b80632f2ff15d11610164578063395093511161013e57806339509351146103345780633f4ba83a1461036457806342966c681461036e5780634bd09c2a1461039e576101c2565b80632f2ff15d146102de578063313ce567146102fa57806336568abe14610318576101c2565b8063173825d9116101a0578063173825d91461024457806318160ddd1461026057806323b872dd1461027e578063248a9ca3146102ae576101c2565b806301ffc9a7146101c657806306fdde03146101f6578063095ea7b314610214575b5f80fd5b6101e060048036038101906101db919061214d565b6105c4565b6040516101ed9190612192565b60405180910390f35b6101fe61063d565b60405161020b9190612235565b60405180910390f35b61022e600480360381019061022991906122e2565b6106cd565b60405161023b9190612192565b60405180910390f35b61025e60048036038101906102599190612320565b6106ef565b005b610268610785565b604051610275919061235a565b60405180910390f35b61029860048036038101906102939190612373565b61078e565b6040516102a59190612192565b60405180910390f35b6102c860048036038101906102c391906123f6565b6107bc565b6040516102d59190612430565b60405180910390f35b6102f860048036038101906102f39190612449565b6107d9565b005b6103026107fa565b60405161030f91906124a2565b60405180910390f35b610332600480360381019061032d9190612449565b610802565b005b61034e600480360381019061034991906122e2565b610885565b60405161035b9190612192565b60405180910390f35b61036c6108bb565b005b610388600480360381019061038391906124bb565b61092e565b6040516103959190612192565b60405180910390f35b6103b860048036038101906103b391906126e6565b610a26565b005b6103c2610bbd565b6040516103cf9190612192565b60405180910390f35b6103f260048036038101906103ed9190612320565b610bd2565b005b61040e60048036038101906104099190612320565b610c68565b60405161041b919061235a565b60405180910390f35b61042c610cad565b005b6104486004803603810190610443919061275c565b610d20565b60405161045591906127a9565b60405180910390f35b61047860048036038101906104739190612449565b610d4c565b6040516104859190612192565b60405180910390f35b610496610db0565b6040516104a39190612235565b60405180910390f35b6104b4610e40565b6040516104c19190612879565b60405180910390f35b6104d2610f57565b6040516104df9190612430565b60405180910390f35b61050260048036038101906104fd91906122e2565b610f5d565b60405161050f9190612192565b60405180910390f35b610532600480360381019061052d91906122e2565b610fd2565b60405161053f9190612192565b60405180910390f35b610562600480360381019061055d91906123f6565b610ff4565b60405161056f919061235a565b60405180910390f35b610592600480360381019061058d9190612449565b611015565b005b6105ae60048036038101906105a99190612899565b611036565b6040516105bb919061235a565b60405180910390f35b5f7f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106365750610635826110b8565b5b9050919050565b60606003805461064c90612904565b80601f016020809104026020016040519081016040528092919081815260200182805461067890612904565b80156106c35780601f1061069a576101008083540402835291602001916106c3565b820191905f5260205f20905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b5f806106d7611131565b90506106e4818585611138565b600191505092915050565b6107197fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f906129a4565b60405180910390fd5b6107827fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e82611015565b50565b5f600254905090565b5f80610798611131565b90506107a58582856112fb565b6107b0858585611386565b60019150509392505050565b5f60065f8381526020019081526020015f20600101549050919050565b6107e2826107bc565b6107eb816115f2565b6107f58383611606565b505050565b5f6012905090565b61080a611131565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e90612a32565b60405180910390fd5b6108818282611638565b5050565b5f8061088f611131565b90506108b08185856108a18589611036565b6108ab9190612a7d565b611138565b600191505092915050565b6108e57fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b906129a4565b60405180910390fd5b61092c61166a565b565b5f6109597fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f906129a4565b60405180910390fd5b5f82116109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190612afa565b60405180910390fd5b6109e433836116cb565b7ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb63383604051610a15929190612b18565b60405180910390a160019050919050565b610a507fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906129a4565b60405180910390fd5b8051825114610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90612baf565b60405180910390fd5b5f5b8251811015610bb8575f73ffffffffffffffffffffffffffffffffffffffff16838281518110610b0857610b07612bcd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d90612c6a565b60405180910390fd5b610ba533848381518110610b7d57610b7c612bcd565b5b6020026020010151848481518110610b9857610b97612bcd565b5b6020026020010151611386565b8080610bb090612c88565b915050610ad5565b505050565b5f60055f9054906101000a900460ff16905090565b610bfc7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906129a4565b60405180910390fd5b610c657fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e826107d9565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610cd77fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610d4c565b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906129a4565b60405180910390fd5b610d1e61188e565b565b5f610d448260075f8681526020019081526020015f206118f090919063ffffffff16565b905092915050565b5f60065f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b606060048054610dbf90612904565b80601f0160208091040260200160405190810160405280929190818152602001828054610deb90612904565b8015610e365780601f10610e0d57610100808354040283529160200191610e36565b820191905f5260205f20905b815481529060010190602001808311610e1957829003601f168201915b5050505050905090565b60605f610e6c7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e610ff4565b90505f8167ffffffffffffffff811115610e8957610e886124ea565b5b604051908082528060200260200182016040528015610eb75781602001602082028036833780820191505090505b5090505f5b82811015610f4e57610eee7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e82610d20565b828281518110610f0157610f00612bcd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080610f4690612c88565b915050610ebc565b50809250505090565b5f801b81565b5f80610f67611131565b90505f610f748286611036565b905083811015610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090612d3f565b60405180910390fd5b610fc68286868403611138565b60019250505092915050565b5f80610fdc611131565b9050610fe9818585611386565b600191505092915050565b5f61100e60075f8481526020019081526020015f20611907565b9050919050565b61101e826107bc565b611027816115f2565b6110318383611638565b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061112a57506111298261191a565b5b9050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90612dcd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90612e5b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112ee919061235a565b60405180910390a3505050565b5f6113068484611036565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113805781811015611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990612ec3565b60405180910390fd5b61137f8484848403611138565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90612f51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990612fdf565b60405180910390fd5b61146d838383611983565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061306d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115d9919061235a565b60405180910390a36115ec84848461199b565b50505050565b611603816115fe611131565b6119a0565b50565b6116108282611a24565b6116338160075f8581526020019081526020015f20611aff90919063ffffffff16565b505050565b6116428282611b2c565b6116658160075f8581526020019081526020015f20611c0790919063ffffffff16565b505050565b611672611c34565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116b4611131565b6040516116c191906127a9565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611730906130fb565b60405180910390fd5b611744825f83611983565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90613189565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611876919061235a565b60405180910390a3611889835f8461199b565b505050565b611896611c7d565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118d9611131565b6040516118e691906127a9565b60405180910390a1565b5f6118fd835f0183611cc7565b5f1c905092915050565b5f611913825f01611cee565b9050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61198b611c7d565b611996838383611cfd565b505050565b505050565b6119aa8282610d4c565b611a20576119b781611d02565b6119c4835f1c6020611d2f565b6040516020016119d5929190613275565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a179190612235565b60405180910390fd5b5050565b611a2e8282610d4c565b611afb57600160065f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611aa0611131565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b5f611b24835f018373ffffffffffffffffffffffffffffffffffffffff165f1b611f64565b905092915050565b611b368282610d4c565b15611c03575f60065f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611ba8611131565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b5f611c2c835f018373ffffffffffffffffffffffffffffffffffffffff165f1b611fcb565b905092915050565b611c3c610bbd565b611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906132f8565b60405180910390fd5b565b611c85610bbd565b15611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90613360565b60405180910390fd5b565b5f825f018281548110611cdd57611cdc612bcd565b5b905f5260205f200154905092915050565b5f815f01805490509050919050565b505050565b6060611d288273ffffffffffffffffffffffffffffffffffffffff16601460ff16611d2f565b9050919050565b60605f6002836002611d41919061337e565b611d4b9190612a7d565b67ffffffffffffffff811115611d6457611d636124ea565b5b6040519080825280601f01601f191660200182016040528015611d965781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000815f81518110611dcd57611dcc612bcd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e3057611e2f612bcd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053505f6001846002611e6e919061337e565b611e789190612a7d565b90505b6001811115611f17577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611eba57611eb9612bcd565b5b1a60f81b828281518110611ed157611ed0612bcd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600485901c945080611f10906133bf565b9050611e7b565b505f8414611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613430565b60405180910390fd5b8091505092915050565b5f611f6f83836120c7565b611fc157825f0182908060018154018082558091505060019003905f5260205f20015f9091909190915055825f0180549050836001015f8481526020019081526020015f208190555060019050611fc5565b5f90505b92915050565b5f80836001015f8481526020019081526020015f205490505f81146120bc575f600182611ff8919061344e565b90505f6001865f018054905061200e919061344e565b9050818114612074575f865f01828154811061202d5761202c612bcd565b5b905f5260205f200154905080875f01848154811061204e5761204d612bcd565b5b905f5260205f20018190555083876001015f8381526020019081526020015f2081905550505b855f0180548061208757612086613481565b5b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506120c1565b5f9150505b92915050565b5f80836001015f8481526020019081526020015f20541415905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61212c816120f8565b8114612136575f80fd5b50565b5f8135905061214781612123565b92915050565b5f60208284031215612162576121616120f0565b5b5f61216f84828501612139565b91505092915050565b5f8115159050919050565b61218c81612178565b82525050565b5f6020820190506121a55f830184612183565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156121e25780820151818401526020810190506121c7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612207826121ab565b61221181856121b5565b93506122218185602086016121c5565b61222a816121ed565b840191505092915050565b5f6020820190508181035f83015261224d81846121fd565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61227e82612255565b9050919050565b61228e81612274565b8114612298575f80fd5b50565b5f813590506122a981612285565b92915050565b5f819050919050565b6122c1816122af565b81146122cb575f80fd5b50565b5f813590506122dc816122b8565b92915050565b5f80604083850312156122f8576122f76120f0565b5b5f6123058582860161229b565b9250506020612316858286016122ce565b9150509250929050565b5f60208284031215612335576123346120f0565b5b5f6123428482850161229b565b91505092915050565b612354816122af565b82525050565b5f60208201905061236d5f83018461234b565b92915050565b5f805f6060848603121561238a576123896120f0565b5b5f6123978682870161229b565b93505060206123a88682870161229b565b92505060406123b9868287016122ce565b9150509250925092565b5f819050919050565b6123d5816123c3565b81146123df575f80fd5b50565b5f813590506123f0816123cc565b92915050565b5f6020828403121561240b5761240a6120f0565b5b5f612418848285016123e2565b91505092915050565b61242a816123c3565b82525050565b5f6020820190506124435f830184612421565b92915050565b5f806040838503121561245f5761245e6120f0565b5b5f61246c858286016123e2565b925050602061247d8582860161229b565b9150509250929050565b5f60ff82169050919050565b61249c81612487565b82525050565b5f6020820190506124b55f830184612493565b92915050565b5f602082840312156124d0576124cf6120f0565b5b5f6124dd848285016122ce565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612520826121ed565b810181811067ffffffffffffffff8211171561253f5761253e6124ea565b5b80604052505050565b5f6125516120e7565b905061255d8282612517565b919050565b5f67ffffffffffffffff82111561257c5761257b6124ea565b5b602082029050602081019050919050565b5f80fd5b5f6125a361259e84612562565b612548565b905080838252602082019050602084028301858111156125c6576125c561258d565b5b835b818110156125ef57806125db888261229b565b8452602084019350506020810190506125c8565b5050509392505050565b5f82601f83011261260d5761260c6124e6565b5b813561261d848260208601612591565b91505092915050565b5f67ffffffffffffffff8211156126405761263f6124ea565b5b602082029050602081019050919050565b5f61266361265e84612626565b612548565b905080838252602082019050602084028301858111156126865761268561258d565b5b835b818110156126af578061269b88826122ce565b845260208401935050602081019050612688565b5050509392505050565b5f82601f8301126126cd576126cc6124e6565b5b81356126dd848260208601612651565b91505092915050565b5f80604083850312156126fc576126fb6120f0565b5b5f83013567ffffffffffffffff811115612719576127186120f4565b5b612725858286016125f9565b925050602083013567ffffffffffffffff811115612746576127456120f4565b5b612752858286016126b9565b9150509250929050565b5f8060408385031215612772576127716120f0565b5b5f61277f858286016123e2565b9250506020612790858286016122ce565b9150509250929050565b6127a381612274565b82525050565b5f6020820190506127bc5f83018461279a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6127f481612274565b82525050565b5f61280583836127eb565b60208301905092915050565b5f602082019050919050565b5f612827826127c2565b61283181856127cc565b935061283c836127dc565b805f5b8381101561286c57815161285388826127fa565b975061285e83612811565b92505060018101905061283f565b5085935050505092915050565b5f6020820190508181035f830152612891818461281d565b905092915050565b5f80604083850312156128af576128ae6120f0565b5b5f6128bc8582860161229b565b92505060206128cd8582860161229b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061291b57607f821691505b60208210810361292e5761292d6128d7565b5b50919050565b7f4d79436f6e74726163743a2063616c6c6572206973206e6f7420616e206f776e5f8201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b5f61298e6022836121b5565b915061299982612934565b604082019050919050565b5f6020820190508181035f8301526129bb81612982565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e63655f8201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b5f612a1c602f836121b5565b9150612a27826129c2565b604082019050919050565b5f6020820190508181035f830152612a4981612a10565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612a87826122af565b9150612a92836122af565b9250828201905080821115612aaa57612aa9612a50565b5b92915050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f612ae4601d836121b5565b9150612aef82612ab0565b602082019050919050565b5f6020820190508181035f830152612b1181612ad8565b9050919050565b5f604082019050612b2b5f83018561279a565b612b38602083018461234b565b9392505050565b7f526563697069656e747320616e6420616d6f756e747320617272617973206d755f8201527f73742068617665207468652073616d65206c656e677468000000000000000000602082015250565b5f612b996037836121b5565b9150612ba482612b3f565b604082019050919050565b5f6020820190508181035f830152612bc681612b8d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f526563697069656e742061646472657373206d757374206e6f742062652061205f8201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b5f612c54602c836121b5565b9150612c5f82612bfa565b604082019050919050565b5f6020820190508181035f830152612c8181612c48565b9050919050565b5f612c92826122af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612cc457612cc3612a50565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d296025836121b5565b9150612d3482612ccf565b604082019050919050565b5f6020820190508181035f830152612d5681612d1d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612db76024836121b5565b9150612dc282612d5d565b604082019050919050565b5f6020820190508181035f830152612de481612dab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e456022836121b5565b9150612e5082612deb565b604082019050919050565b5f6020820190508181035f830152612e7281612e39565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612ead601d836121b5565b9150612eb882612e79565b602082019050919050565b5f6020820190508181035f830152612eda81612ea1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612f3b6025836121b5565b9150612f4682612ee1565b604082019050919050565b5f6020820190508181035f830152612f6881612f2f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612fc96023836121b5565b9150612fd482612f6f565b604082019050919050565b5f6020820190508181035f830152612ff681612fbd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6130576026836121b5565b915061306282612ffd565b604082019050919050565b5f6020820190508181035f8301526130848161304b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130e56021836121b5565b91506130f08261308b565b604082019050919050565b5f6020820190508181035f830152613112816130d9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6131736022836121b5565b915061317e82613119565b604082019050919050565b5f6020820190508181035f8301526131a081613167565b9050919050565b5f81905092915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000005f82015250565b5f6131e56017836131a7565b91506131f0826131b1565b601782019050919050565b5f613205826121ab565b61320f81856131a7565b935061321f8185602086016121c5565b80840191505092915050565b7f206973206d697373696e6720726f6c65200000000000000000000000000000005f82015250565b5f61325f6011836131a7565b915061326a8261322b565b601182019050919050565b5f61327f826131d9565b915061328b82856131fb565b915061329682613253565b91506132a282846131fb565b91508190509392505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f6132e26014836121b5565b91506132ed826132ae565b602082019050919050565b5f6020820190508181035f83015261330f816132d6565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f61334a6010836121b5565b915061335582613316565b602082019050919050565b5f6020820190508181035f8301526133778161333e565b9050919050565b5f613388826122af565b9150613393836122af565b92508282026133a1816122af565b915082820484148315176133b8576133b7612a50565b5b5092915050565b5f6133c9826122af565b91505f82036133db576133da612a50565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e745f82015250565b5f61341a6020836121b5565b9150613425826133e6565b602082019050919050565b5f6020820190508181035f8301526134478161340e565b9050919050565b5f613458826122af565b9150613463836122af565b925082820390508181111561347b5761347a612a50565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212201f784c2013ec7d353ed1979af7a4b7e8a4f666da2aad9623f8da19455a1445bb64736f6c63430008140033

Deployed Bytecode Sourcemap

60548:2282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44051:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49555:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51915:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62395:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50684:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52696:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38922:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39363:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50526:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40507:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53366:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61604:67;;;:::i;:::-;;61854:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61007:518;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15448:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62284:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50855:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61533:63;;;:::i;:::-;;44864:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37395:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49774:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62504:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36500:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54107:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51188:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45191:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39803:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51444:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44051:214;44136:4;44175:42;44160:57;;;:11;:57;;;;:97;;;;44221:36;44245:11;44221:23;:36::i;:::-;44160:97;44153:104;;44051:214;;;:::o;49555:100::-;49609:13;49642:5;49635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49555:100;:::o;51915:201::-;51998:4;52015:13;52031:12;:10;:12::i;:::-;52015:28;;52054:32;52063:5;52070:7;52079:6;52054:8;:32::i;:::-;52104:4;52097:11;;;51915:201;;;;:::o;62395:101::-;62163:31;60734:23;62183:10;62163:7;:31::i;:::-;62141:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;62459:29:::1;60734:23;62482:5;62459:10;:29::i;:::-;62395:101:::0;:::o;50684:108::-;50745:7;50772:12;;50765:19;;50684:108;:::o;52696:261::-;52793:4;52810:15;52828:12;:10;:12::i;:::-;52810:30;;52851:38;52867:4;52873:7;52882:6;52851:15;:38::i;:::-;52900:27;52910:4;52916:2;52920:6;52900:9;:27::i;:::-;52945:4;52938:11;;;52696:261;;;;;:::o;38922:131::-;38996:7;39023:6;:12;39030:4;39023:12;;;;;;;;;;;:22;;;39016:29;;38922:131;;;:::o;39363:147::-;39446:18;39459:4;39446:12;:18::i;:::-;36991:16;37002:4;36991:10;:16::i;:::-;39477:25:::1;39488:4;39494:7;39477:10;:25::i;:::-;39363:147:::0;;;:::o;50526:93::-;50584:5;50609:2;50602:9;;50526:93;:::o;40507:218::-;40614:12;:10;:12::i;:::-;40603:23;;:7;:23;;;40595:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;40691:26;40703:4;40709:7;40691:11;:26::i;:::-;40507:218;;:::o;53366:238::-;53454:4;53471:13;53487:12;:10;:12::i;:::-;53471:28;;53510:64;53519:5;53526:7;53563:10;53535:25;53545:5;53552:7;53535:9;:25::i;:::-;:38;;;;:::i;:::-;53510:8;:64::i;:::-;53592:4;53585:11;;;53366:238;;;;:::o;61604:67::-;62163:31;60734:23;62183:10;62163:7;:31::i;:::-;62141:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;61653:10:::1;:8;:10::i;:::-;61604:67::o:0;61854:247::-;61913:4;62163:31;60734:23;62183:10;62163:7;:31::i;:::-;62141:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;61948:1:::1;61938:7;:11;61930:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;61996:26;62002:10;62014:7;61996:5;:26::i;:::-;62038:33;62051:10;62063:7;62038:33;;;;;;;:::i;:::-;;;;;;;;62089:4;62082:11;;61854:247:::0;;;:::o;61007:518::-;62163:31;60734:23;62183:10;62163:7;:31::i;:::-;62141:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;61186:7:::1;:14;61165:10;:17;:35;61143:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;61301:9;61296:222;61320:10;:17;61316:1;:21;61296:222;;;61392:1;61367:27;;:10;61378:1;61367:13;;;;;;;;:::i;:::-;;;;;;;;:27;;::::0;61359:84:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;61458:48;61468:10;61480;61491:1;61480:13;;;;;;;;:::i;:::-;;;;;;;;61495:7;61503:1;61495:10;;;;;;;;:::i;:::-;;;;;;;;61458:9;:48::i;:::-;61339:3;;;;;:::i;:::-;;;;61296:222;;;;61007:518:::0;;:::o;15448:86::-;15495:4;15519:7;;;;;;;;;;;15512:14;;15448:86;:::o;62284:103::-;62163:31;60734:23;62183:10;62163:7;:31::i;:::-;62141:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;62348:31:::1;60734:23;62370:8;62348:9;:31::i;:::-;62284:103:::0;:::o;50855:127::-;50929:7;50956:9;:18;50966:7;50956:18;;;;;;;;;;;;;;;;50949:25;;50855:127;;;:::o;61533:63::-;62163:31;60734:23;62183:10;62163:7;:31::i;:::-;62141:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;61580:8:::1;:6;:8::i;:::-;61533:63::o:0;44864:153::-;44954:7;44981:28;45003:5;44981:12;:18;44994:4;44981:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;44974:35;;44864:153;;;;:::o;37395:147::-;37481:4;37505:6;:12;37512:4;37505:12;;;;;;;;;;;:20;;:29;37526:7;37505:29;;;;;;;;;;;;;;;;;;;;;;;;;37498:36;;37395:147;;;;:::o;49774:104::-;49830:13;49863:7;49856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49774:104;:::o;62504:323::-;62546:16;62575:13;62591:30;60734:23;62591:18;:30::i;:::-;62575:46;;62632:23;62672:5;62658:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62632:46;;62696:9;62691:103;62715:5;62711:1;:9;62691:103;;;62754:28;60734:23;62780:1;62754:13;:28::i;:::-;62742:6;62749:1;62742:9;;;;;;;;:::i;:::-;;;;;;;:40;;;;;;;;;;;62722:3;;;;;:::i;:::-;;;;62691:103;;;;62813:6;62806:13;;;;62504:323;:::o;36500:49::-;36545:4;36500:49;;;:::o;54107:436::-;54200:4;54217:13;54233:12;:10;:12::i;:::-;54217:28;;54256:24;54283:25;54293:5;54300:7;54283:9;:25::i;:::-;54256:52;;54347:15;54327:16;:35;;54319:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;54440:60;54449:5;54456:7;54484:15;54465:16;:34;54440:8;:60::i;:::-;54531:4;54524:11;;;;54107:436;;;;:::o;51188:193::-;51267:4;51284:13;51300:12;:10;:12::i;:::-;51284:28;;51323;51333:5;51340:2;51344:6;51323:9;:28::i;:::-;51369:4;51362:11;;;51188:193;;;;:::o;45191:142::-;45271:7;45298:27;:12;:18;45311:4;45298:18;;;;;;;;;;;:25;:27::i;:::-;45291:34;;45191:142;;;:::o;39803:149::-;39887:18;39900:4;39887:12;:18::i;:::-;36991:16;37002:4;36991:10;:16::i;:::-;39918:26:::1;39930:4;39936:7;39918:11;:26::i;:::-;39803:149:::0;;;:::o;51444:151::-;51533:7;51560:11;:18;51572:5;51560:18;;;;;;;;;;;;;;;:27;51579:7;51560:27;;;;;;;;;;;;;;;;51553:34;;51444:151;;;;:::o;37099:204::-;37184:4;37223:32;37208:47;;;:11;:47;;;;:87;;;;37259:36;37283:11;37259:23;:36::i;:::-;37208:87;37201:94;;37099:204;;;:::o;14174:98::-;14227:7;14254:10;14247:17;;14174:98;:::o;58100:346::-;58219:1;58202:19;;:5;:19;;;58194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58300:1;58281:21;;:7;:21;;;58273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58384:6;58354:11;:18;58366:5;58354:18;;;;;;;;;;;;;;;:27;58373:7;58354:27;;;;;;;;;;;;;;;:36;;;;58422:7;58406:32;;58415:5;58406:32;;;58431:6;58406:32;;;;;;:::i;:::-;;;;;;;;58100:346;;;:::o;58737:419::-;58838:24;58865:25;58875:5;58882:7;58865:9;:25::i;:::-;58838:52;;58925:17;58905:16;:37;58901:248;;58987:6;58967:16;:26;;58959:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59071:51;59080:5;59087:7;59115:6;59096:16;:25;59071:8;:51::i;:::-;58901:248;58827:329;58737:419;;;:::o;55013:806::-;55126:1;55110:18;;:4;:18;;;55102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55203:1;55189:16;;:2;:16;;;55181:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55258:38;55279:4;55285:2;55289:6;55258:20;:38::i;:::-;55309:19;55331:9;:15;55341:4;55331:15;;;;;;;;;;;;;;;;55309:37;;55380:6;55365:11;:21;;55357:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;55497:6;55483:11;:20;55465:9;:15;55475:4;55465:15;;;;;;;;;;;;;;;:38;;;;55700:6;55683:9;:13;55693:2;55683:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;55750:2;55735:26;;55744:4;55735:26;;;55754:6;55735:26;;;;;;:::i;:::-;;;;;;;;55774:37;55794:4;55800:2;55804:6;55774:19;:37::i;:::-;55091:728;55013:806;;;:::o;37846:105::-;37913:30;37924:4;37930:12;:10;:12::i;:::-;37913:10;:30::i;:::-;37846:105;:::o;45426:169::-;45514:31;45531:4;45537:7;45514:16;:31::i;:::-;45556;45579:7;45556:12;:18;45569:4;45556:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;45426:169;;:::o;45689:174::-;45778:32;45796:4;45802:7;45778:17;:32::i;:::-;45821:34;45847:7;45821:12;:18;45834:4;45821:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;45689:174;;:::o;16303:120::-;15312:16;:14;:16::i;:::-;16372:5:::1;16362:7;;:15;;;;;;;;;;;;;;;;;;16393:22;16402:12;:10;:12::i;:::-;16393:22;;;;;;:::i;:::-;;;;;;;;16303:120::o:0;56987:675::-;57090:1;57071:21;;:7;:21;;;57063:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;57143:49;57164:7;57181:1;57185:6;57143:20;:49::i;:::-;57205:22;57230:9;:18;57240:7;57230:18;;;;;;;;;;;;;;;;57205:43;;57285:6;57267:14;:24;;57259:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;57404:6;57387:14;:23;57366:9;:18;57376:7;57366:18;;;;;;;;;;;;;;;:44;;;;57521:6;57505:12;;:22;;;;;;;;;;;57582:1;57556:37;;57565:7;57556:37;;;57586:6;57556:37;;;;;;:::i;:::-;;;;;;;;57606:48;57626:7;57643:1;57647:6;57606:19;:48::i;:::-;57052:610;56987:675;;:::o;16044:118::-;15053:19;:17;:19::i;:::-;16114:4:::1;16104:7;;:14;;;;;;;;;;;;;;;;;;16134:20;16141:12;:10;:12::i;:::-;16134:20;;;;;;:::i;:::-;;;;;;;;16044:118::o:0;24908:158::-;24982:7;25033:22;25037:3;:10;;25049:5;25033:3;:22::i;:::-;25025:31;;25002:56;;24908:158;;;;:::o;24437:117::-;24500:7;24527:19;24535:3;:10;;24527:7;:19::i;:::-;24520:26;;24437:117;;;:::o;31611:157::-;31696:4;31735:25;31720:40;;;:11;:40;;;;31713:47;;31611:157;;;:::o;61679:167::-;15053:19;:17;:19::i;:::-;61794:44:::1;61821:4;61827:2;61831:6;61794:26;:44::i;:::-;61679:167:::0;;;:::o;60451:90::-;;;;:::o;38241:492::-;38330:22;38338:4;38344:7;38330;:22::i;:::-;38325:401;;38518:28;38538:7;38518:19;:28::i;:::-;38619:38;38647:4;38639:13;;38654:2;38619:19;:38::i;:::-;38423:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38369:345;;;;;;;;;;;:::i;:::-;;;;;;;;38325:401;38241:492;;:::o;42104:238::-;42188:22;42196:4;42202:7;42188;:22::i;:::-;42183:152;;42259:4;42227:6;:12;42234:4;42227:12;;;;;;;;;;;:20;;:29;42248:7;42227:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;42310:12;:10;:12::i;:::-;42283:40;;42301:7;42283:40;;42295:4;42283:40;;;;;;;;;;42183:152;42104:238;;:::o;23612:152::-;23682:4;23706:50;23711:3;:10;;23747:5;23731:23;;23723:32;;23706:4;:50::i;:::-;23699:57;;23612:152;;;;:::o;42522:239::-;42606:22;42614:4;42620:7;42606;:22::i;:::-;42602:152;;;42677:5;42645:6;:12;42652:4;42645:12;;;;;;;;;;;:20;;:29;42666:7;42645:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;42729:12;:10;:12::i;:::-;42702:40;;42720:7;42702:40;;42714:4;42702:40;;;;;;;;;;42602:152;42522:239;;:::o;23940:158::-;24013:4;24037:53;24045:3;:10;;24081:5;24065:23;;24057:32;;24037:7;:53::i;:::-;24030:60;;23940:158;;;;:::o;15792:108::-;15859:8;:6;:8::i;:::-;15851:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;15792:108::o;15607:::-;15678:8;:6;:8::i;:::-;15677:9;15669:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;15607:108::o;20117:120::-;20184:7;20211:3;:11;;20223:5;20211:18;;;;;;;;:::i;:::-;;;;;;;;;;20204:25;;20117:120;;;;:::o;19654:109::-;19710:7;19737:3;:11;;:18;;;;19730:25;;19654:109;;;:::o;59756:91::-;;;;:::o;30657:151::-;30715:13;30748:52;30776:4;30760:22;;28532:2;30748:52;;:11;:52::i;:::-;30741:59;;30657:151;;;:::o;30053:447::-;30128:13;30154:19;30199:1;30190:6;30186:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30176:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30154:47;;30212:15;:6;30219:1;30212:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;30238;:6;30245:1;30238:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;30269:9;30294:1;30285:6;30281:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30269:26;;30264:131;30301:1;30297;:5;30264:131;;;30336:8;30353:3;30345:5;:11;30336:21;;;;;;;:::i;:::-;;;;;30324:6;30331:1;30324:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;30382:1;30372:11;;;;;30304:3;;;;:::i;:::-;;;30264:131;;;;30422:1;30413:5;:10;30405:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;30485:6;30471:21;;;30053:447;;;;:::o;17343:414::-;17406:4;17428:21;17438:3;17443:5;17428:9;:21::i;:::-;17423:327;;17466:3;:11;;17483:5;17466:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17649:3;:11;;:18;;;;17627:3;:12;;:19;17640:5;17627:19;;;;;;;;;;;:40;;;;17689:4;17682:11;;;;17423:327;17733:5;17726:12;;17343:414;;;;;:::o;17933:1420::-;17999:4;18117:18;18138:3;:12;;:19;18151:5;18138:19;;;;;;;;;;;;18117:40;;18188:1;18174:10;:15;18170:1176;;18549:21;18586:1;18573:10;:14;;;;:::i;:::-;18549:38;;18602:17;18643:1;18622:3;:11;;:18;;;;:22;;;;:::i;:::-;18602:42;;18678:13;18665:9;:26;18661:405;;18712:17;18732:3;:11;;18744:9;18732:22;;;;;;;;:::i;:::-;;;;;;;;;;18712:42;;18886:9;18857:3;:11;;18869:13;18857:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;18997:10;18971:3;:12;;:23;18984:9;18971:23;;;;;;;;;;;:36;;;;18693:373;18661:405;19147:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19242:3;:12;;:19;19255:5;19242:19;;;;;;;;;;;19235:26;;;19285:4;19278:11;;;;;;;18170:1176;19329:5;19322:12;;;17933:1420;;;;;:::o;19439:129::-;19512:4;19559:1;19536:3;:12;;:19;19549:5;19536:19;;;;;;;;;;;;:24;;19529:31;;19439:129;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:329::-;4262:6;4311:2;4299:9;4290:7;4286:23;4282:32;4279:119;;;4317:79;;:::i;:::-;4279:119;4437:1;4462:53;4507:7;4498:6;4487:9;4483:22;4462:53;:::i;:::-;4452:63;;4408:117;4203:329;;;;:::o;4538:118::-;4625:24;4643:5;4625:24;:::i;:::-;4620:3;4613:37;4538:118;;:::o;4662:222::-;4755:4;4793:2;4782:9;4778:18;4770:26;;4806:71;4874:1;4863:9;4859:17;4850:6;4806:71;:::i;:::-;4662:222;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:77::-;5552:7;5581:5;5570:16;;5515:77;;;:::o;5598:122::-;5671:24;5689:5;5671:24;:::i;:::-;5664:5;5661:35;5651:63;;5710:1;5707;5700:12;5651:63;5598:122;:::o;5726:139::-;5772:5;5810:6;5797:20;5788:29;;5826:33;5853:5;5826:33;:::i;:::-;5726:139;;;;:::o;5871:329::-;5930:6;5979:2;5967:9;5958:7;5954:23;5950:32;5947:119;;;5985:79;;:::i;:::-;5947:119;6105:1;6130:53;6175:7;6166:6;6155:9;6151:22;6130:53;:::i;:::-;6120:63;;6076:117;5871:329;;;;:::o;6206:118::-;6293:24;6311:5;6293:24;:::i;:::-;6288:3;6281:37;6206:118;;:::o;6330:222::-;6423:4;6461:2;6450:9;6446:18;6438:26;;6474:71;6542:1;6531:9;6527:17;6518:6;6474:71;:::i;:::-;6330:222;;;;:::o;6558:474::-;6626:6;6634;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:53;7007:7;6998:6;6987:9;6983:22;6962:53;:::i;:::-;6952:63;;6907:118;6558:474;;;;;:::o;7038:86::-;7073:7;7113:4;7106:5;7102:16;7091:27;;7038:86;;;:::o;7130:112::-;7213:22;7229:5;7213:22;:::i;:::-;7208:3;7201:35;7130:112;;:::o;7248:214::-;7337:4;7375:2;7364:9;7360:18;7352:26;;7388:67;7452:1;7441:9;7437:17;7428:6;7388:67;:::i;:::-;7248:214;;;;:::o;7468:329::-;7527:6;7576:2;7564:9;7555:7;7551:23;7547:32;7544:119;;;7582:79;;:::i;:::-;7544:119;7702:1;7727:53;7772:7;7763:6;7752:9;7748:22;7727:53;:::i;:::-;7717:63;;7673:117;7468:329;;;;:::o;7803:117::-;7912:1;7909;7902:12;7926:180;7974:77;7971:1;7964:88;8071:4;8068:1;8061:15;8095:4;8092:1;8085:15;8112:281;8195:27;8217:4;8195:27;:::i;:::-;8187:6;8183:40;8325:6;8313:10;8310:22;8289:18;8277:10;8274:34;8271:62;8268:88;;;8336:18;;:::i;:::-;8268:88;8376:10;8372:2;8365:22;8155:238;8112:281;;:::o;8399:129::-;8433:6;8460:20;;:::i;:::-;8450:30;;8489:33;8517:4;8509:6;8489:33;:::i;:::-;8399:129;;;:::o;8534:311::-;8611:4;8701:18;8693:6;8690:30;8687:56;;;8723:18;;:::i;:::-;8687:56;8773:4;8765:6;8761:17;8753:25;;8833:4;8827;8823:15;8815:23;;8534:311;;;:::o;8851:117::-;8960:1;8957;8950:12;8991:710;9087:5;9112:81;9128:64;9185:6;9128:64;:::i;:::-;9112:81;:::i;:::-;9103:90;;9213:5;9242:6;9235:5;9228:21;9276:4;9269:5;9265:16;9258:23;;9329:4;9321:6;9317:17;9309:6;9305:30;9358:3;9350:6;9347:15;9344:122;;;9377:79;;:::i;:::-;9344:122;9492:6;9475:220;9509:6;9504:3;9501:15;9475:220;;;9584:3;9613:37;9646:3;9634:10;9613:37;:::i;:::-;9608:3;9601:50;9680:4;9675:3;9671:14;9664:21;;9551:144;9535:4;9530:3;9526:14;9519:21;;9475:220;;;9479:21;9093:608;;8991:710;;;;;:::o;9724:370::-;9795:5;9844:3;9837:4;9829:6;9825:17;9821:27;9811:122;;9852:79;;:::i;:::-;9811:122;9969:6;9956:20;9994:94;10084:3;10076:6;10069:4;10061:6;10057:17;9994:94;:::i;:::-;9985:103;;9801:293;9724:370;;;;:::o;10100:311::-;10177:4;10267:18;10259:6;10256:30;10253:56;;;10289:18;;:::i;:::-;10253:56;10339:4;10331:6;10327:17;10319:25;;10399:4;10393;10389:15;10381:23;;10100:311;;;:::o;10434:710::-;10530:5;10555:81;10571:64;10628:6;10571:64;:::i;:::-;10555:81;:::i;:::-;10546:90;;10656:5;10685:6;10678:5;10671:21;10719:4;10712:5;10708:16;10701:23;;10772:4;10764:6;10760:17;10752:6;10748:30;10801:3;10793:6;10790:15;10787:122;;;10820:79;;:::i;:::-;10787:122;10935:6;10918:220;10952:6;10947:3;10944:15;10918:220;;;11027:3;11056:37;11089:3;11077:10;11056:37;:::i;:::-;11051:3;11044:50;11123:4;11118:3;11114:14;11107:21;;10994:144;10978:4;10973:3;10969:14;10962:21;;10918:220;;;10922:21;10536:608;;10434:710;;;;;:::o;11167:370::-;11238:5;11287:3;11280:4;11272:6;11268:17;11264:27;11254:122;;11295:79;;:::i;:::-;11254:122;11412:6;11399:20;11437:94;11527:3;11519:6;11512:4;11504:6;11500:17;11437:94;:::i;:::-;11428:103;;11244:293;11167:370;;;;:::o;11543:894::-;11661:6;11669;11718:2;11706:9;11697:7;11693:23;11689:32;11686:119;;;11724:79;;:::i;:::-;11686:119;11872:1;11861:9;11857:17;11844:31;11902:18;11894:6;11891:30;11888:117;;;11924:79;;:::i;:::-;11888:117;12029:78;12099:7;12090:6;12079:9;12075:22;12029:78;:::i;:::-;12019:88;;11815:302;12184:2;12173:9;12169:18;12156:32;12215:18;12207:6;12204:30;12201:117;;;12237:79;;:::i;:::-;12201:117;12342:78;12412:7;12403:6;12392:9;12388:22;12342:78;:::i;:::-;12332:88;;12127:303;11543:894;;;;;:::o;12443:474::-;12511:6;12519;12568:2;12556:9;12547:7;12543:23;12539:32;12536:119;;;12574:79;;:::i;:::-;12536:119;12694:1;12719:53;12764:7;12755:6;12744:9;12740:22;12719:53;:::i;:::-;12709:63;;12665:117;12821:2;12847:53;12892:7;12883:6;12872:9;12868:22;12847:53;:::i;:::-;12837:63;;12792:118;12443:474;;;;;:::o;12923:118::-;13010:24;13028:5;13010:24;:::i;:::-;13005:3;12998:37;12923:118;;:::o;13047:222::-;13140:4;13178:2;13167:9;13163:18;13155:26;;13191:71;13259:1;13248:9;13244:17;13235:6;13191:71;:::i;:::-;13047:222;;;;:::o;13275:114::-;13342:6;13376:5;13370:12;13360:22;;13275:114;;;:::o;13395:184::-;13494:11;13528:6;13523:3;13516:19;13568:4;13563:3;13559:14;13544:29;;13395:184;;;;:::o;13585:132::-;13652:4;13675:3;13667:11;;13705:4;13700:3;13696:14;13688:22;;13585:132;;;:::o;13723:108::-;13800:24;13818:5;13800:24;:::i;:::-;13795:3;13788:37;13723:108;;:::o;13837:179::-;13906:10;13927:46;13969:3;13961:6;13927:46;:::i;:::-;14005:4;14000:3;13996:14;13982:28;;13837:179;;;;:::o;14022:113::-;14092:4;14124;14119:3;14115:14;14107:22;;14022:113;;;:::o;14171:732::-;14290:3;14319:54;14367:5;14319:54;:::i;:::-;14389:86;14468:6;14463:3;14389:86;:::i;:::-;14382:93;;14499:56;14549:5;14499:56;:::i;:::-;14578:7;14609:1;14594:284;14619:6;14616:1;14613:13;14594:284;;;14695:6;14689:13;14722:63;14781:3;14766:13;14722:63;:::i;:::-;14715:70;;14808:60;14861:6;14808:60;:::i;:::-;14798:70;;14654:224;14641:1;14638;14634:9;14629:14;;14594:284;;;14598:14;14894:3;14887:10;;14295:608;;;14171:732;;;;:::o;14909:373::-;15052:4;15090:2;15079:9;15075:18;15067:26;;15139:9;15133:4;15129:20;15125:1;15114:9;15110:17;15103:47;15167:108;15270:4;15261:6;15167:108;:::i;:::-;15159:116;;14909:373;;;;:::o;15288:474::-;15356:6;15364;15413:2;15401:9;15392:7;15388:23;15384:32;15381:119;;;15419:79;;:::i;:::-;15381:119;15539:1;15564:53;15609:7;15600:6;15589:9;15585:22;15564:53;:::i;:::-;15554:63;;15510:117;15666:2;15692:53;15737:7;15728:6;15717:9;15713:22;15692:53;:::i;:::-;15682:63;;15637:118;15288:474;;;;;:::o;15768:180::-;15816:77;15813:1;15806:88;15913:4;15910:1;15903:15;15937:4;15934:1;15927:15;15954:320;15998:6;16035:1;16029:4;16025:12;16015:22;;16082:1;16076:4;16072:12;16103:18;16093:81;;16159:4;16151:6;16147:17;16137:27;;16093:81;16221:2;16213:6;16210:14;16190:18;16187:38;16184:84;;16240:18;;:::i;:::-;16184:84;16005:269;15954:320;;;:::o;16280:221::-;16420:34;16416:1;16408:6;16404:14;16397:58;16489:4;16484:2;16476:6;16472:15;16465:29;16280:221;:::o;16507:366::-;16649:3;16670:67;16734:2;16729:3;16670:67;:::i;:::-;16663:74;;16746:93;16835:3;16746:93;:::i;:::-;16864:2;16859:3;16855:12;16848:19;;16507:366;;;:::o;16879:419::-;17045:4;17083:2;17072:9;17068:18;17060:26;;17132:9;17126:4;17122:20;17118:1;17107:9;17103:17;17096:47;17160:131;17286:4;17160:131;:::i;:::-;17152:139;;16879:419;;;:::o;17304:234::-;17444:34;17440:1;17432:6;17428:14;17421:58;17513:17;17508:2;17500:6;17496:15;17489:42;17304:234;:::o;17544:366::-;17686:3;17707:67;17771:2;17766:3;17707:67;:::i;:::-;17700:74;;17783:93;17872:3;17783:93;:::i;:::-;17901:2;17896:3;17892:12;17885:19;;17544:366;;;:::o;17916:419::-;18082:4;18120:2;18109:9;18105:18;18097:26;;18169:9;18163:4;18159:20;18155:1;18144:9;18140:17;18133:47;18197:131;18323:4;18197:131;:::i;:::-;18189:139;;17916:419;;;:::o;18341:180::-;18389:77;18386:1;18379:88;18486:4;18483:1;18476:15;18510:4;18507:1;18500:15;18527:191;18567:3;18586:20;18604:1;18586:20;:::i;:::-;18581:25;;18620:20;18638:1;18620:20;:::i;:::-;18615:25;;18663:1;18660;18656:9;18649:16;;18684:3;18681:1;18678:10;18675:36;;;18691:18;;:::i;:::-;18675:36;18527:191;;;;:::o;18724:179::-;18864:31;18860:1;18852:6;18848:14;18841:55;18724:179;:::o;18909:366::-;19051:3;19072:67;19136:2;19131:3;19072:67;:::i;:::-;19065:74;;19148:93;19237:3;19148:93;:::i;:::-;19266:2;19261:3;19257:12;19250:19;;18909:366;;;:::o;19281:419::-;19447:4;19485:2;19474:9;19470:18;19462:26;;19534:9;19528:4;19524:20;19520:1;19509:9;19505:17;19498:47;19562:131;19688:4;19562:131;:::i;:::-;19554:139;;19281:419;;;:::o;19706:332::-;19827:4;19865:2;19854:9;19850:18;19842:26;;19878:71;19946:1;19935:9;19931:17;19922:6;19878:71;:::i;:::-;19959:72;20027:2;20016:9;20012:18;20003:6;19959:72;:::i;:::-;19706:332;;;;;:::o;20044:242::-;20184:34;20180:1;20172:6;20168:14;20161:58;20253:25;20248:2;20240:6;20236:15;20229:50;20044:242;:::o;20292:366::-;20434:3;20455:67;20519:2;20514:3;20455:67;:::i;:::-;20448:74;;20531:93;20620:3;20531:93;:::i;:::-;20649:2;20644:3;20640:12;20633:19;;20292:366;;;:::o;20664:419::-;20830:4;20868:2;20857:9;20853:18;20845:26;;20917:9;20911:4;20907:20;20903:1;20892:9;20888:17;20881:47;20945:131;21071:4;20945:131;:::i;:::-;20937:139;;20664:419;;;:::o;21089:180::-;21137:77;21134:1;21127:88;21234:4;21231:1;21224:15;21258:4;21255:1;21248:15;21275:231;21415:34;21411:1;21403:6;21399:14;21392:58;21484:14;21479:2;21471:6;21467:15;21460:39;21275:231;:::o;21512:366::-;21654:3;21675:67;21739:2;21734:3;21675:67;:::i;:::-;21668:74;;21751:93;21840:3;21751:93;:::i;:::-;21869:2;21864:3;21860:12;21853:19;;21512:366;;;:::o;21884:419::-;22050:4;22088:2;22077:9;22073:18;22065:26;;22137:9;22131:4;22127:20;22123:1;22112:9;22108:17;22101:47;22165:131;22291:4;22165:131;:::i;:::-;22157:139;;21884:419;;;:::o;22309:233::-;22348:3;22371:24;22389:5;22371:24;:::i;:::-;22362:33;;22417:66;22410:5;22407:77;22404:103;;22487:18;;:::i;:::-;22404:103;22534:1;22527:5;22523:13;22516:20;;22309:233;;;:::o;22548:224::-;22688:34;22684:1;22676:6;22672:14;22665:58;22757:7;22752:2;22744:6;22740:15;22733:32;22548:224;:::o;22778:366::-;22920:3;22941:67;23005:2;23000:3;22941:67;:::i;:::-;22934:74;;23017:93;23106:3;23017:93;:::i;:::-;23135:2;23130:3;23126:12;23119:19;;22778:366;;;:::o;23150:419::-;23316:4;23354:2;23343:9;23339:18;23331:26;;23403:9;23397:4;23393:20;23389:1;23378:9;23374:17;23367:47;23431:131;23557:4;23431:131;:::i;:::-;23423:139;;23150:419;;;:::o;23575:223::-;23715:34;23711:1;23703:6;23699:14;23692:58;23784:6;23779:2;23771:6;23767:15;23760:31;23575:223;:::o;23804:366::-;23946:3;23967:67;24031:2;24026:3;23967:67;:::i;:::-;23960:74;;24043:93;24132:3;24043:93;:::i;:::-;24161:2;24156:3;24152:12;24145:19;;23804:366;;;:::o;24176:419::-;24342:4;24380:2;24369:9;24365:18;24357:26;;24429:9;24423:4;24419:20;24415:1;24404:9;24400:17;24393:47;24457:131;24583:4;24457:131;:::i;:::-;24449:139;;24176:419;;;:::o;24601:221::-;24741:34;24737:1;24729:6;24725:14;24718:58;24810:4;24805:2;24797:6;24793:15;24786:29;24601:221;:::o;24828:366::-;24970:3;24991:67;25055:2;25050:3;24991:67;:::i;:::-;24984:74;;25067:93;25156:3;25067:93;:::i;:::-;25185:2;25180:3;25176:12;25169:19;;24828:366;;;:::o;25200:419::-;25366:4;25404:2;25393:9;25389:18;25381:26;;25453:9;25447:4;25443:20;25439:1;25428:9;25424:17;25417:47;25481:131;25607:4;25481:131;:::i;:::-;25473:139;;25200:419;;;:::o;25625:179::-;25765:31;25761:1;25753:6;25749:14;25742:55;25625:179;:::o;25810:366::-;25952:3;25973:67;26037:2;26032:3;25973:67;:::i;:::-;25966:74;;26049:93;26138:3;26049:93;:::i;:::-;26167:2;26162:3;26158:12;26151:19;;25810:366;;;:::o;26182:419::-;26348:4;26386:2;26375:9;26371:18;26363:26;;26435:9;26429:4;26425:20;26421:1;26410:9;26406:17;26399:47;26463:131;26589:4;26463:131;:::i;:::-;26455:139;;26182:419;;;:::o;26607:224::-;26747:34;26743:1;26735:6;26731:14;26724:58;26816:7;26811:2;26803:6;26799:15;26792:32;26607:224;:::o;26837:366::-;26979:3;27000:67;27064:2;27059:3;27000:67;:::i;:::-;26993:74;;27076:93;27165:3;27076:93;:::i;:::-;27194:2;27189:3;27185:12;27178:19;;26837:366;;;:::o;27209:419::-;27375:4;27413:2;27402:9;27398:18;27390:26;;27462:9;27456:4;27452:20;27448:1;27437:9;27433:17;27426:47;27490:131;27616:4;27490:131;:::i;:::-;27482:139;;27209:419;;;:::o;27634:222::-;27774:34;27770:1;27762:6;27758:14;27751:58;27843:5;27838:2;27830:6;27826:15;27819:30;27634:222;:::o;27862:366::-;28004:3;28025:67;28089:2;28084:3;28025:67;:::i;:::-;28018:74;;28101:93;28190:3;28101:93;:::i;:::-;28219:2;28214:3;28210:12;28203:19;;27862:366;;;:::o;28234:419::-;28400:4;28438:2;28427:9;28423:18;28415:26;;28487:9;28481:4;28477:20;28473:1;28462:9;28458:17;28451:47;28515:131;28641:4;28515:131;:::i;:::-;28507:139;;28234:419;;;:::o;28659:225::-;28799:34;28795:1;28787:6;28783:14;28776:58;28868:8;28863:2;28855:6;28851:15;28844:33;28659:225;:::o;28890:366::-;29032:3;29053:67;29117:2;29112:3;29053:67;:::i;:::-;29046:74;;29129:93;29218:3;29129:93;:::i;:::-;29247:2;29242:3;29238:12;29231:19;;28890:366;;;:::o;29262:419::-;29428:4;29466:2;29455:9;29451:18;29443:26;;29515:9;29509:4;29505:20;29501:1;29490:9;29486:17;29479:47;29543:131;29669:4;29543:131;:::i;:::-;29535:139;;29262:419;;;:::o;29687:220::-;29827:34;29823:1;29815:6;29811:14;29804:58;29896:3;29891:2;29883:6;29879:15;29872:28;29687:220;:::o;29913:366::-;30055:3;30076:67;30140:2;30135:3;30076:67;:::i;:::-;30069:74;;30152:93;30241:3;30152:93;:::i;:::-;30270:2;30265:3;30261:12;30254:19;;29913:366;;;:::o;30285:419::-;30451:4;30489:2;30478:9;30474:18;30466:26;;30538:9;30532:4;30528:20;30524:1;30513:9;30509:17;30502:47;30566:131;30692:4;30566:131;:::i;:::-;30558:139;;30285:419;;;:::o;30710:221::-;30850:34;30846:1;30838:6;30834:14;30827:58;30919:4;30914:2;30906:6;30902:15;30895:29;30710:221;:::o;30937:366::-;31079:3;31100:67;31164:2;31159:3;31100:67;:::i;:::-;31093:74;;31176:93;31265:3;31176:93;:::i;:::-;31294:2;31289:3;31285:12;31278:19;;30937:366;;;:::o;31309:419::-;31475:4;31513:2;31502:9;31498:18;31490:26;;31562:9;31556:4;31552:20;31548:1;31537:9;31533:17;31526:47;31590:131;31716:4;31590:131;:::i;:::-;31582:139;;31309:419;;;:::o;31734:148::-;31836:11;31873:3;31858:18;;31734:148;;;;:::o;31888:173::-;32028:25;32024:1;32016:6;32012:14;32005:49;31888:173;:::o;32067:402::-;32227:3;32248:85;32330:2;32325:3;32248:85;:::i;:::-;32241:92;;32342:93;32431:3;32342:93;:::i;:::-;32460:2;32455:3;32451:12;32444:19;;32067:402;;;:::o;32475:390::-;32581:3;32609:39;32642:5;32609:39;:::i;:::-;32664:89;32746:6;32741:3;32664:89;:::i;:::-;32657:96;;32762:65;32820:6;32815:3;32808:4;32801:5;32797:16;32762:65;:::i;:::-;32852:6;32847:3;32843:16;32836:23;;32585:280;32475:390;;;;:::o;32871:167::-;33011:19;33007:1;32999:6;32995:14;32988:43;32871:167;:::o;33044:402::-;33204:3;33225:85;33307:2;33302:3;33225:85;:::i;:::-;33218:92;;33319:93;33408:3;33319:93;:::i;:::-;33437:2;33432:3;33428:12;33421:19;;33044:402;;;:::o;33452:967::-;33834:3;33856:148;34000:3;33856:148;:::i;:::-;33849:155;;34021:95;34112:3;34103:6;34021:95;:::i;:::-;34014:102;;34133:148;34277:3;34133:148;:::i;:::-;34126:155;;34298:95;34389:3;34380:6;34298:95;:::i;:::-;34291:102;;34410:3;34403:10;;33452:967;;;;;:::o;34425:170::-;34565:22;34561:1;34553:6;34549:14;34542:46;34425:170;:::o;34601:366::-;34743:3;34764:67;34828:2;34823:3;34764:67;:::i;:::-;34757:74;;34840:93;34929:3;34840:93;:::i;:::-;34958:2;34953:3;34949:12;34942:19;;34601:366;;;:::o;34973:419::-;35139:4;35177:2;35166:9;35162:18;35154:26;;35226:9;35220:4;35216:20;35212:1;35201:9;35197:17;35190:47;35254:131;35380:4;35254:131;:::i;:::-;35246:139;;34973:419;;;:::o;35398:166::-;35538:18;35534:1;35526:6;35522:14;35515:42;35398:166;:::o;35570:366::-;35712:3;35733:67;35797:2;35792:3;35733:67;:::i;:::-;35726:74;;35809:93;35898:3;35809:93;:::i;:::-;35927:2;35922:3;35918:12;35911:19;;35570:366;;;:::o;35942:419::-;36108:4;36146:2;36135:9;36131:18;36123:26;;36195:9;36189:4;36185:20;36181:1;36170:9;36166:17;36159:47;36223:131;36349:4;36223:131;:::i;:::-;36215:139;;35942:419;;;:::o;36367:410::-;36407:7;36430:20;36448:1;36430:20;:::i;:::-;36425:25;;36464:20;36482:1;36464:20;:::i;:::-;36459:25;;36519:1;36516;36512:9;36541:30;36559:11;36541:30;:::i;:::-;36530:41;;36720:1;36711:7;36707:15;36704:1;36701:22;36681:1;36674:9;36654:83;36631:139;;36750:18;;:::i;:::-;36631:139;36415:362;36367:410;;;;:::o;36783:171::-;36822:3;36845:24;36863:5;36845:24;:::i;:::-;36836:33;;36891:4;36884:5;36881:15;36878:41;;36899:18;;:::i;:::-;36878:41;36946:1;36939:5;36935:13;36928:20;;36783:171;;;:::o;36960:182::-;37100:34;37096:1;37088:6;37084:14;37077:58;36960:182;:::o;37148:366::-;37290:3;37311:67;37375:2;37370:3;37311:67;:::i;:::-;37304:74;;37387:93;37476:3;37387:93;:::i;:::-;37505:2;37500:3;37496:12;37489:19;;37148:366;;;:::o;37520:419::-;37686:4;37724:2;37713:9;37709:18;37701:26;;37773:9;37767:4;37763:20;37759:1;37748:9;37744:17;37737:47;37801:131;37927:4;37801:131;:::i;:::-;37793:139;;37520:419;;;:::o;37945:194::-;37985:4;38005:20;38023:1;38005:20;:::i;:::-;38000:25;;38039:20;38057:1;38039:20;:::i;:::-;38034:25;;38083:1;38080;38076:9;38068:17;;38107:1;38101:4;38098:11;38095:37;;;38112:18;;:::i;:::-;38095:37;37945:194;;;;:::o;38145:180::-;38193:77;38190:1;38183:88;38290:4;38287:1;38280:15;38314:4;38311:1;38304:15

Swarm Source

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