ETH Price: $2,279.86 (+2.66%)

McFucklings (MFUCK)
 

Overview

TokenID

429

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Fucklings

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

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

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

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

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

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

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

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

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

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;





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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;




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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

    /**
     * @dev Hook that is called before consecutive token transfers.
     * Calling conditions are similar to {_beforeTokenTransfer}.
     *
     * The default implementation include balances updates that extensions such as {ERC721Consecutive} cannot perform
     * directly.
     */
    function _beforeConsecutiveTokenTransfer(
        address from,
        address to,
        uint256, /*first*/
        uint96 size
    ) internal virtual {
        if (from != address(0)) {
            _balances[from] -= size;
        }
        if (to != address(0)) {
            _balances[to] += size;
        }
    }

    /**
     * @dev Hook that is called after consecutive token transfers.
     * Calling conditions are similar to {_afterTokenTransfer}.
     */
    function _afterConsecutiveTokenTransfer(
        address, /*from*/
        address, /*to*/
        uint256, /*first*/
        uint96 /*size*/
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Hook that is called before any batch token transfer. For now this is limited
     * to batch minting by the {ERC721Consecutive} extension.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeConsecutiveTokenTransfer(
        address,
        address,
        uint256,
        uint96
    ) internal virtual override {
        revert("ERC721Enumerable: consecutive transfers not supported");
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: mint.sol



pragma solidity ^0.8.0;






contract Fucklings is
    Context,
    AccessControlEnumerable,
    ERC721Enumerable
{
    using Counters for Counters.Counter;

    address owner = 0xc9be9069F1fD43b82145Fa8709050D52d803E81a; //s
    address owner2 = 0xCCc652Df3C56a66eD7A7C9bE2d32825a7228A270; //c
    address owner3 = 0xfC4027a863B5eA46E9eF483741bAD36c853174cC; //p
    address multisig = 0x32d3Bbde7e95FD5FFb208C5FC068A4382664A3b8; //multisig

    uint256 private cost = 133700000000000000; //0.15 ETH default (changed to 0.1337)
    bool private paused;

    mapping (address => bool) private isOwner;

    Counters.Counter private _tokenIdTracker;
    Counters.Counter private _devMintTracker;

    string private _baseTokenURI;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE` to account that deploys the contract.
     * @dev grants owner role to relevant hardcoded addresses
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI
    ) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _tokenIdTracker.increment();
        _devMintTracker.increment();
        isOwner[owner] = true;
        isOwner[owner2] = true;
        isOwner[owner3] = true;
        isOwner[msg.sender] = true;
        paused = true; //starts paused
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }


    modifier onlyOwner {
      require(isOwner[msg.sender] == true);
      _;
   }

       /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     * 
     */

    function mint(uint nTokens) public virtual payable {
        nTokens = 1;
        require(paused == false);
        require(msg.value == cost, "Wrong amount of ETH!");
        require(_tokenIdTracker.current() < 1337, "Minted out!");

        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _mint(msg.sender, _tokenIdTracker.current());
        _tokenIdTracker.increment();
    }

    //Devmint function capped to 37, ignores paused state of contract
    function devMint() public onlyOwner {
        require(_devMintTracker.current() < 37);
        require(_tokenIdTracker.current() < 1300);
        for(uint i = 0; i < 37; i++){
            _mint(multisig, _tokenIdTracker.current());
            _tokenIdTracker.increment();
            _devMintTracker.increment();
        }
    }

    function changePrice(uint256 newPrice) public onlyOwner {
        cost = newPrice;
    }

    function togglePause() public onlyOwner {
        if(paused == true){
            paused = false;
        }else{
            paused = true;
        }
    }

    function maxSupply() public pure returns (uint256){
        return 1337;
    }
    
    function recoverEth() public onlyOwner {
        uint256 split = address(this).balance / 4; 
        payable(owner).transfer(split);
        payable(owner2).transfer(split);
        payable(owner3).transfer(split);
        payable(multisig).transfer(split);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function price() public view returns (uint256){
        return cost;
    }
    

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(AccessControlEnumerable, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"nTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverEth","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273c9be9069f1fd43b82145fa8709050d52d803e81a600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ccc652df3c56a66ed7a7c9be2d32825a7228a270600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fc4027a863b5ea46e9ef483741bad36c853174cc600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507332d3bbde7e95fd5ffb208c5fc068a4382664a3b8600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506701daff710e7840006010553480156200017157600080fd5b5060405162004fff38038062004fff8339818101604052810190620001979190620007fc565b82828160029080519060200190620001b1929190620006ce565b508060039080519060200190620001ca929190620006ce565b5050508060159080519060200190620001e5929190620006ce565b506200020a6000801b620001fe6200042260201b60201c565b6200042a60201b60201c565b6200022160136200044060201b620015301760201c565b6200023860146200044060201b620015301760201c565b600160126000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160006101000a81548160ff02191690831515021790555050505062000a39565b600033905090565b6200043c82826200045660201b60201c565b5050565b6001816000016000828254019250508190555050565b6200046d82826200049e60201b620015461760201c565b6200049981600160008581526020019081526020016000206200058f60201b620016261790919060201c565b505050565b620004b08282620005c760201b60201c565b6200058b57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005306200042260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620005bf836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200063160201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000620006458383620006ab60201b60201c565b620006a0578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620006a5565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620006dc906200094a565b90600052602060002090601f0160209004810192826200070057600085556200074c565b82601f106200071b57805160ff19168380011785556200074c565b828001600101855582156200074c579182015b828111156200074b5782518255916020019190600101906200072e565b5b5090506200075b91906200075f565b5090565b5b808211156200077a57600081600090555060010162000760565b5090565b6000620007956200078f84620008de565b620008b5565b905082815260208101848484011115620007b457620007b362000a19565b5b620007c184828562000914565b509392505050565b600082601f830112620007e157620007e062000a14565b5b8151620007f38482602086016200077e565b91505092915050565b60008060006060848603121562000818576200081762000a23565b5b600084015167ffffffffffffffff81111562000839576200083862000a1e565b5b6200084786828701620007c9565b935050602084015167ffffffffffffffff8111156200086b576200086a62000a1e565b5b6200087986828701620007c9565b925050604084015167ffffffffffffffff8111156200089d576200089c62000a1e565b5b620008ab86828701620007c9565b9150509250925092565b6000620008c1620008d4565b9050620008cf828262000980565b919050565b6000604051905090565b600067ffffffffffffffff821115620008fc57620008fb620009e5565b5b620009078262000a28565b9050602081019050919050565b60005b838110156200093457808201518184015260208101905062000917565b8381111562000944576000848401525b50505050565b600060028204905060018216806200096357607f821691505b602082108114156200097a5762000979620009b6565b5b50919050565b6200098b8262000a28565b810181811067ffffffffffffffff82111715620009ad57620009ac620009e5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6145b68062000a496000396000f3fe6080604052600436106101d85760003560e01c80639010d07c11610102578063b88d4fde11610095578063ca15c87311610064578063ca15c873146106bf578063d547741f146106fc578063d5abeb0114610725578063e985e9c514610750576101d8565b8063b88d4fde1461062b578063bcdb446b14610654578063c4ae31681461066b578063c87b56dd14610682576101d8565b8063a0712d68116100d1578063a0712d6814610592578063a217fddf146105ae578063a22cb465146105d9578063a2b40d1914610602576101d8565b80639010d07c146104c257806391d14854146104ff57806395d89b411461053c578063a035b1fe14610567576101d8565b80632f2ff15d1161017a5780634f6ccce7116101495780634f6ccce7146103f45780636352211e1461043157806370a082311461046e5780637c69e207146104ab576101d8565b80632f2ff15d1461033c5780632f745c591461036557806336568abe146103a257806342842e0e146103cb576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d6578063248a9ca3146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906134ac565b61078d565b6040516102119190613970565b60405180910390f35b34801561022657600080fd5b5061022f61079f565b60405161023c91906139a6565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190613506565b610831565b6040516102799190613909565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906133bf565b610877565b005b3480156102b757600080fd5b506102c061098f565b6040516102cd9190613be8565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906132a9565b61099c565b005b34801561030b57600080fd5b50610326600480360381019061032191906133ff565b6109fc565b604051610333919061398b565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e919061342c565b610a1b565b005b34801561037157600080fd5b5061038c600480360381019061038791906133bf565b610a3c565b6040516103999190613be8565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061342c565b610ae1565b005b3480156103d757600080fd5b506103f260048036038101906103ed91906132a9565b610b64565b005b34801561040057600080fd5b5061041b60048036038101906104169190613506565b610b84565b6040516104289190613be8565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190613506565b610bf5565b6040516104659190613909565b60405180910390f35b34801561047a57600080fd5b506104956004803603810190610490919061323c565b610c7c565b6040516104a29190613be8565b60405180910390f35b3480156104b757600080fd5b506104c0610d34565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061346c565b610e29565b6040516104f69190613909565b60405180910390f35b34801561050b57600080fd5b506105266004803603810190610521919061342c565b610e58565b6040516105339190613970565b60405180910390f35b34801561054857600080fd5b50610551610ec2565b60405161055e91906139a6565b60405180910390f35b34801561057357600080fd5b5061057c610f54565b6040516105899190613be8565b60405180910390f35b6105ac60048036038101906105a79190613506565b610f5e565b005b3480156105ba57600080fd5b506105c3611033565b6040516105d0919061398b565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061337f565b61103a565b005b34801561060e57600080fd5b5061062960048036038101906106249190613506565b611050565b005b34801561063757600080fd5b50610652600480360381019061064d91906132fc565b6110b7565b005b34801561066057600080fd5b50610669611119565b005b34801561067757600080fd5b5061068061132e565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613506565b6113e5565b6040516106b691906139a6565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906133ff565b61144d565b6040516106f39190613be8565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e919061342c565b611471565b005b34801561073157600080fd5b5061073a611492565b6040516107479190613be8565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613269565b61149c565b6040516107849190613970565b60405180910390f35b600061079882611656565b9050919050565b6060600280546107ae90613e9b565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90613e9b565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083c826116d0565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088282610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90613b48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091261171b565b73ffffffffffffffffffffffffffffffffffffffff16148061094157506109408161093b61171b565b61149c565b5b610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790613b68565b60405180910390fd5b61098a8383611723565b505050565b6000600a80549050905090565b6109ad6109a761171b565b826117dc565b6109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390613a08565b60405180910390fd5b6109f7838383611871565b505050565b6000806000838152602001908152602001600020600101549050919050565b610a24826109fc565b610a2d81611b67565b610a378383611b7b565b505050565b6000610a4783610c7c565b8210610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613a28565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ae961171b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90613bc8565b60405180910390fd5b610b608282611baf565b5050565b610b7f838383604051806020016040528060008152506110b7565b505050565b6000610b8e61098f565b8210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613b88565b60405180910390fd5b600a8281548110610be357610be2614003565b5b90600052602060002001549050919050565b600080610c0183611be3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613b28565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490613ae8565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d9157600080fd5b6025610d9d6014611c20565b10610da757600080fd5b610514610db46013611c20565b10610dbe57600080fd5b60005b6025811015610e2657610dff600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610dfa6013611c20565b611c2e565b610e096013611530565b610e136014611530565b8080610e1e90613efe565b915050610dc1565b50565b6000610e508260016000868152602001908152602001600020611e4890919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610ed190613e9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610efd90613e9b565b8015610f4a5780601f10610f1f57610100808354040283529160200191610f4a565b820191906000526020600020905b815481529060010190602001808311610f2d57829003601f168201915b5050505050905090565b6000601054905090565b6001905060001515601160009054906101000a900460ff16151514610f8257600080fd5b6010543414610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906139e8565b60405180910390fd5b610539610fd36013611c20565b10611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613ba8565b60405180910390fd5b611026336110216013611c20565b611c2e565b6110306013611530565b50565b6000801b81565b61104c61104561171b565b8383611e62565b5050565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110ad57600080fd5b8060108190555050565b6110c86110c261171b565b836117dc565b611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613a08565b60405180910390fd5b61111384848484611fcf565b50505050565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461117657600080fd5b60006004476111859190613cf2565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111ef573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611258573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c1573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561132a573d6000803e3d6000fd5b5050565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461138b57600080fd5b60011515601160009054906101000a900460ff16151514156113c7576000601160006101000a81548160ff0219169083151502179055506113e3565b6001601160006101000a81548160ff0219169083151502179055505b565b60606113f0826116d0565b60006113fa61202b565b9050600081511161141a5760405180602001604052806000815250611445565b80611424846120bd565b6040516020016114359291906138ab565b6040516020818303038152906040525b915050919050565b600061146a60016000848152602001908152602001600020612195565b9050919050565b61147a826109fc565b61148381611b67565b61148d8383611baf565b505050565b6000610539905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001816000016000828254019250508190555050565b6115508282610e58565b61162257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115c761171b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061164e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121aa565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116c957506116c88261221a565b5b9050919050565b6116d9816122fc565b611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90613b28565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661179683610bf5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117e883610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061182a5750611829818561149c565b5b8061186857508373ffffffffffffffffffffffffffffffffffffffff1661185084610831565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661189182610bf5565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613a68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90613aa8565b60405180910390fd5b61196283838361233d565b8273ffffffffffffffffffffffffffffffffffffffff1661198282610bf5565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613a68565b60405180910390fd5b6006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b6283838361234d565b505050565b611b7881611b7361171b565b612352565b50565b611b858282611546565b611baa816001600085815260200190815260200160002061162690919063ffffffff16565b505050565b611bb982826123d7565b611bde81600160008581526020019081526020016000206124b890919063ffffffff16565b505050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9590613b08565b60405180910390fd5b611ca7816122fc565b15611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde90613a88565b60405180910390fd5b611cf36000838361233d565b611cfc816122fc565b15611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390613a88565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e446000838361234d565b5050565b6000611e5783600001836124e8565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613ac8565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fc29190613970565b60405180910390a3505050565b611fda848484611871565b611fe684848484612513565b612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90613a48565b60405180910390fd5b50505050565b60606015805461203a90613e9b565b80601f016020809104026020016040519081016040528092919081815260200182805461206690613e9b565b80156120b35780601f10612088576101008083540402835291602001916120b3565b820191906000526020600020905b81548152906001019060200180831161209657829003601f168201915b5050505050905090565b6060600060016120cc846126aa565b01905060008167ffffffffffffffff8111156120eb576120ea614032565b5b6040519080825280601f01601f19166020018201604052801561211d5781602001600182028036833780820191505090505b509050600082602001820190505b60011561218a578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161217457612173613f76565b5b04945060008514156121855761218a565b61212b565b819350505050919050565b60006121a3826000016127fd565b9050919050565b60006121b6838361280e565b61220f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612214565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122e557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122f557506122f482612831565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661231e83611be3565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6123488383836128ab565b505050565b505050565b61235c8282610e58565b6123d357612369816129bf565b6123778360001c60206129ec565b6040516020016123889291906138cf565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca91906139a6565b60405180910390fd5b5050565b6123e18282610e58565b156124b457600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061245961171b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006124e0836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612c28565b905092915050565b6000826000018281548110612500576124ff614003565b5b9060005260206000200154905092915050565b60006125348473ffffffffffffffffffffffffffffffffffffffff16612d3c565b1561269d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261255d61171b565b8786866040518563ffffffff1660e01b815260040161257f9493929190613924565b602060405180830381600087803b15801561259957600080fd5b505af19250505080156125ca57506040513d601f19601f820116820180604052508101906125c791906134d9565b60015b61264d573d80600081146125fa576040519150601f19603f3d011682016040523d82523d6000602084013e6125ff565b606091505b50600081511415612645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263c90613a48565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126a2565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612708577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126fe576126fd613f76565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612745576d04ee2d6d415b85acef8100000000838161273b5761273a613f76565b5b0492506020810190505b662386f26fc10000831061277457662386f26fc10000838161276a57612769613f76565b5b0492506010810190505b6305f5e100831061279d576305f5e100838161279357612792613f76565b5b0492506008810190505b61271083106127c25761271083816127b8576127b7613f76565b5b0492506004810190505b606483106127e557606483816127db576127da613f76565b5b0492506002810190505b600a83106127f4576001810190505b80915050919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128a457506128a382612d5f565b5b9050919050565b6128b6838383612dd9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128f9576128f481612dde565b612938565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612937576129368382612e27565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561297b5761297681612f94565b6129ba565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129b9576129b88282613065565b5b5b505050565b60606129e58273ffffffffffffffffffffffffffffffffffffffff16601460ff166129ec565b9050919050565b6060600060028360026129ff9190613d23565b612a099190613c9c565b67ffffffffffffffff811115612a2257612a21614032565b5b6040519080825280601f01601f191660200182016040528015612a545781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612a8c57612a8b614003565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612af057612aef614003565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612b309190613d23565b612b3a9190613c9c565b90505b6001811115612bda577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612b7c57612b7b614003565b5b1a60f81b828281518110612b9357612b92614003565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612bd390613e71565b9050612b3d565b5060008414612c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c15906139c8565b60405180910390fd5b8091505092915050565b60008083600101600084815260200190815260200160002054905060008114612d30576000600182612c5a9190613d7d565b9050600060018660000180549050612c729190613d7d565b9050818114612ce1576000866000018281548110612c9357612c92614003565b5b9060005260206000200154905080876000018481548110612cb757612cb6614003565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612cf557612cf4613fd4565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612d36565b60009150505b92915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dd25750612dd1826130e4565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e3484610c7c565b612e3e9190613d7d565b9050600060096000848152602001908152602001600020549050818114612f23576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050612fa89190613d7d565b90506000600b60008481526020019081526020016000205490506000600a8381548110612fd857612fd7614003565b5b9060005260206000200154905080600a8381548110612ffa57612ff9614003565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061304957613048613fd4565b5b6001900381819060005260206000200160009055905550505050565b600061307083610c7c565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600061316161315c84613c28565b613c03565b90508281526020810184848401111561317d5761317c614066565b5b613188848285613e2f565b509392505050565b60008135905061319f8161450d565b92915050565b6000813590506131b481614524565b92915050565b6000813590506131c98161453b565b92915050565b6000813590506131de81614552565b92915050565b6000815190506131f381614552565b92915050565b600082601f83011261320e5761320d614061565b5b813561321e84826020860161314e565b91505092915050565b60008135905061323681614569565b92915050565b60006020828403121561325257613251614070565b5b600061326084828501613190565b91505092915050565b600080604083850312156132805761327f614070565b5b600061328e85828601613190565b925050602061329f85828601613190565b9150509250929050565b6000806000606084860312156132c2576132c1614070565b5b60006132d086828701613190565b93505060206132e186828701613190565b92505060406132f286828701613227565b9150509250925092565b6000806000806080858703121561331657613315614070565b5b600061332487828801613190565b945050602061333587828801613190565b935050604061334687828801613227565b925050606085013567ffffffffffffffff8111156133675761336661406b565b5b613373878288016131f9565b91505092959194509250565b6000806040838503121561339657613395614070565b5b60006133a485828601613190565b92505060206133b5858286016131a5565b9150509250929050565b600080604083850312156133d6576133d5614070565b5b60006133e485828601613190565b92505060206133f585828601613227565b9150509250929050565b60006020828403121561341557613414614070565b5b6000613423848285016131ba565b91505092915050565b6000806040838503121561344357613442614070565b5b6000613451858286016131ba565b925050602061346285828601613190565b9150509250929050565b6000806040838503121561348357613482614070565b5b6000613491858286016131ba565b92505060206134a285828601613227565b9150509250929050565b6000602082840312156134c2576134c1614070565b5b60006134d0848285016131cf565b91505092915050565b6000602082840312156134ef576134ee614070565b5b60006134fd848285016131e4565b91505092915050565b60006020828403121561351c5761351b614070565b5b600061352a84828501613227565b91505092915050565b61353c81613db1565b82525050565b61354b81613dc3565b82525050565b61355a81613dcf565b82525050565b600061356b82613c59565b6135758185613c6f565b9350613585818560208601613e3e565b61358e81614075565b840191505092915050565b60006135a482613c64565b6135ae8185613c80565b93506135be818560208601613e3e565b6135c781614075565b840191505092915050565b60006135dd82613c64565b6135e78185613c91565b93506135f7818560208601613e3e565b80840191505092915050565b6000613610602083613c80565b915061361b82614086565b602082019050919050565b6000613633601483613c80565b915061363e826140af565b602082019050919050565b6000613656602d83613c80565b9150613661826140d8565b604082019050919050565b6000613679602b83613c80565b915061368482614127565b604082019050919050565b600061369c603283613c80565b91506136a782614176565b604082019050919050565b60006136bf602583613c80565b91506136ca826141c5565b604082019050919050565b60006136e2601c83613c80565b91506136ed82614214565b602082019050919050565b6000613705602483613c80565b91506137108261423d565b604082019050919050565b6000613728601983613c80565b91506137338261428c565b602082019050919050565b600061374b602983613c80565b9150613756826142b5565b604082019050919050565b600061376e602083613c80565b915061377982614304565b602082019050919050565b6000613791601883613c80565b915061379c8261432d565b602082019050919050565b60006137b4602183613c80565b91506137bf82614356565b604082019050919050565b60006137d7603d83613c80565b91506137e2826143a5565b604082019050919050565b60006137fa602c83613c80565b9150613805826143f4565b604082019050919050565b600061381d601783613c91565b915061382882614443565b601782019050919050565b6000613840600b83613c80565b915061384b8261446c565b602082019050919050565b6000613863601183613c91565b915061386e82614495565b601182019050919050565b6000613886602f83613c80565b9150613891826144be565b604082019050919050565b6138a581613e25565b82525050565b60006138b782856135d2565b91506138c382846135d2565b91508190509392505050565b60006138da82613810565b91506138e682856135d2565b91506138f182613856565b91506138fd82846135d2565b91508190509392505050565b600060208201905061391e6000830184613533565b92915050565b60006080820190506139396000830187613533565b6139466020830186613533565b613953604083018561389c565b81810360608301526139658184613560565b905095945050505050565b60006020820190506139856000830184613542565b92915050565b60006020820190506139a06000830184613551565b92915050565b600060208201905081810360008301526139c08184613599565b905092915050565b600060208201905081810360008301526139e181613603565b9050919050565b60006020820190508181036000830152613a0181613626565b9050919050565b60006020820190508181036000830152613a2181613649565b9050919050565b60006020820190508181036000830152613a418161366c565b9050919050565b60006020820190508181036000830152613a618161368f565b9050919050565b60006020820190508181036000830152613a81816136b2565b9050919050565b60006020820190508181036000830152613aa1816136d5565b9050919050565b60006020820190508181036000830152613ac1816136f8565b9050919050565b60006020820190508181036000830152613ae18161371b565b9050919050565b60006020820190508181036000830152613b018161373e565b9050919050565b60006020820190508181036000830152613b2181613761565b9050919050565b60006020820190508181036000830152613b4181613784565b9050919050565b60006020820190508181036000830152613b61816137a7565b9050919050565b60006020820190508181036000830152613b81816137ca565b9050919050565b60006020820190508181036000830152613ba1816137ed565b9050919050565b60006020820190508181036000830152613bc181613833565b9050919050565b60006020820190508181036000830152613be181613879565b9050919050565b6000602082019050613bfd600083018461389c565b92915050565b6000613c0d613c1e565b9050613c198282613ecd565b919050565b6000604051905090565b600067ffffffffffffffff821115613c4357613c42614032565b5b613c4c82614075565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ca782613e25565b9150613cb283613e25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce757613ce6613f47565b5b828201905092915050565b6000613cfd82613e25565b9150613d0883613e25565b925082613d1857613d17613f76565b5b828204905092915050565b6000613d2e82613e25565b9150613d3983613e25565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d7257613d71613f47565b5b828202905092915050565b6000613d8882613e25565b9150613d9383613e25565b925082821015613da657613da5613f47565b5b828203905092915050565b6000613dbc82613e05565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e5c578082015181840152602081019050613e41565b83811115613e6b576000848401525b50505050565b6000613e7c82613e25565b91506000821415613e9057613e8f613f47565b5b600182039050919050565b60006002820490506001821680613eb357607f821691505b60208210811415613ec757613ec6613fa5565b5b50919050565b613ed682614075565b810181811067ffffffffffffffff82111715613ef557613ef4614032565b5b80604052505050565b6000613f0982613e25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3c57613f3b613f47565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f57726f6e6720616d6f756e74206f662045544821000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4d696e746564206f757421000000000000000000000000000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61451681613db1565b811461452157600080fd5b50565b61452d81613dc3565b811461453857600080fd5b50565b61454481613dcf565b811461454f57600080fd5b50565b61455b81613dd9565b811461456657600080fd5b50565b61457281613e25565b811461457d57600080fd5b5056fea2646970667358221220681336ac9567fe80fb37e8c00192bda893cf9f62eea6345b4922f34910462b3c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4d634675636b6c696e677300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d4655434b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d645942336d597541484c585070356a50447251543335587958476d68355a7467766f79356d4c74664a5a46482f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80639010d07c11610102578063b88d4fde11610095578063ca15c87311610064578063ca15c873146106bf578063d547741f146106fc578063d5abeb0114610725578063e985e9c514610750576101d8565b8063b88d4fde1461062b578063bcdb446b14610654578063c4ae31681461066b578063c87b56dd14610682576101d8565b8063a0712d68116100d1578063a0712d6814610592578063a217fddf146105ae578063a22cb465146105d9578063a2b40d1914610602576101d8565b80639010d07c146104c257806391d14854146104ff57806395d89b411461053c578063a035b1fe14610567576101d8565b80632f2ff15d1161017a5780634f6ccce7116101495780634f6ccce7146103f45780636352211e1461043157806370a082311461046e5780637c69e207146104ab576101d8565b80632f2ff15d1461033c5780632f745c591461036557806336568abe146103a257806342842e0e146103cb576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d6578063248a9ca3146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906134ac565b61078d565b6040516102119190613970565b60405180910390f35b34801561022657600080fd5b5061022f61079f565b60405161023c91906139a6565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190613506565b610831565b6040516102799190613909565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906133bf565b610877565b005b3480156102b757600080fd5b506102c061098f565b6040516102cd9190613be8565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906132a9565b61099c565b005b34801561030b57600080fd5b50610326600480360381019061032191906133ff565b6109fc565b604051610333919061398b565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e919061342c565b610a1b565b005b34801561037157600080fd5b5061038c600480360381019061038791906133bf565b610a3c565b6040516103999190613be8565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061342c565b610ae1565b005b3480156103d757600080fd5b506103f260048036038101906103ed91906132a9565b610b64565b005b34801561040057600080fd5b5061041b60048036038101906104169190613506565b610b84565b6040516104289190613be8565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190613506565b610bf5565b6040516104659190613909565b60405180910390f35b34801561047a57600080fd5b506104956004803603810190610490919061323c565b610c7c565b6040516104a29190613be8565b60405180910390f35b3480156104b757600080fd5b506104c0610d34565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061346c565b610e29565b6040516104f69190613909565b60405180910390f35b34801561050b57600080fd5b506105266004803603810190610521919061342c565b610e58565b6040516105339190613970565b60405180910390f35b34801561054857600080fd5b50610551610ec2565b60405161055e91906139a6565b60405180910390f35b34801561057357600080fd5b5061057c610f54565b6040516105899190613be8565b60405180910390f35b6105ac60048036038101906105a79190613506565b610f5e565b005b3480156105ba57600080fd5b506105c3611033565b6040516105d0919061398b565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061337f565b61103a565b005b34801561060e57600080fd5b5061062960048036038101906106249190613506565b611050565b005b34801561063757600080fd5b50610652600480360381019061064d91906132fc565b6110b7565b005b34801561066057600080fd5b50610669611119565b005b34801561067757600080fd5b5061068061132e565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613506565b6113e5565b6040516106b691906139a6565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906133ff565b61144d565b6040516106f39190613be8565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e919061342c565b611471565b005b34801561073157600080fd5b5061073a611492565b6040516107479190613be8565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613269565b61149c565b6040516107849190613970565b60405180910390f35b600061079882611656565b9050919050565b6060600280546107ae90613e9b565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90613e9b565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083c826116d0565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088282610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90613b48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091261171b565b73ffffffffffffffffffffffffffffffffffffffff16148061094157506109408161093b61171b565b61149c565b5b610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790613b68565b60405180910390fd5b61098a8383611723565b505050565b6000600a80549050905090565b6109ad6109a761171b565b826117dc565b6109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390613a08565b60405180910390fd5b6109f7838383611871565b505050565b6000806000838152602001908152602001600020600101549050919050565b610a24826109fc565b610a2d81611b67565b610a378383611b7b565b505050565b6000610a4783610c7c565b8210610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613a28565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ae961171b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90613bc8565b60405180910390fd5b610b608282611baf565b5050565b610b7f838383604051806020016040528060008152506110b7565b505050565b6000610b8e61098f565b8210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613b88565b60405180910390fd5b600a8281548110610be357610be2614003565b5b90600052602060002001549050919050565b600080610c0183611be3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613b28565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490613ae8565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d9157600080fd5b6025610d9d6014611c20565b10610da757600080fd5b610514610db46013611c20565b10610dbe57600080fd5b60005b6025811015610e2657610dff600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610dfa6013611c20565b611c2e565b610e096013611530565b610e136014611530565b8080610e1e90613efe565b915050610dc1565b50565b6000610e508260016000868152602001908152602001600020611e4890919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610ed190613e9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610efd90613e9b565b8015610f4a5780601f10610f1f57610100808354040283529160200191610f4a565b820191906000526020600020905b815481529060010190602001808311610f2d57829003601f168201915b5050505050905090565b6000601054905090565b6001905060001515601160009054906101000a900460ff16151514610f8257600080fd5b6010543414610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906139e8565b60405180910390fd5b610539610fd36013611c20565b10611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613ba8565b60405180910390fd5b611026336110216013611c20565b611c2e565b6110306013611530565b50565b6000801b81565b61104c61104561171b565b8383611e62565b5050565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110ad57600080fd5b8060108190555050565b6110c86110c261171b565b836117dc565b611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613a08565b60405180910390fd5b61111384848484611fcf565b50505050565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461117657600080fd5b60006004476111859190613cf2565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111ef573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611258573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c1573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561132a573d6000803e3d6000fd5b5050565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461138b57600080fd5b60011515601160009054906101000a900460ff16151514156113c7576000601160006101000a81548160ff0219169083151502179055506113e3565b6001601160006101000a81548160ff0219169083151502179055505b565b60606113f0826116d0565b60006113fa61202b565b9050600081511161141a5760405180602001604052806000815250611445565b80611424846120bd565b6040516020016114359291906138ab565b6040516020818303038152906040525b915050919050565b600061146a60016000848152602001908152602001600020612195565b9050919050565b61147a826109fc565b61148381611b67565b61148d8383611baf565b505050565b6000610539905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001816000016000828254019250508190555050565b6115508282610e58565b61162257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115c761171b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061164e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121aa565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116c957506116c88261221a565b5b9050919050565b6116d9816122fc565b611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90613b28565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661179683610bf5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117e883610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061182a5750611829818561149c565b5b8061186857508373ffffffffffffffffffffffffffffffffffffffff1661185084610831565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661189182610bf5565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613a68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90613aa8565b60405180910390fd5b61196283838361233d565b8273ffffffffffffffffffffffffffffffffffffffff1661198282610bf5565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613a68565b60405180910390fd5b6006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b6283838361234d565b505050565b611b7881611b7361171b565b612352565b50565b611b858282611546565b611baa816001600085815260200190815260200160002061162690919063ffffffff16565b505050565b611bb982826123d7565b611bde81600160008581526020019081526020016000206124b890919063ffffffff16565b505050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9590613b08565b60405180910390fd5b611ca7816122fc565b15611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde90613a88565b60405180910390fd5b611cf36000838361233d565b611cfc816122fc565b15611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390613a88565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e446000838361234d565b5050565b6000611e5783600001836124e8565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613ac8565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fc29190613970565b60405180910390a3505050565b611fda848484611871565b611fe684848484612513565b612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90613a48565b60405180910390fd5b50505050565b60606015805461203a90613e9b565b80601f016020809104026020016040519081016040528092919081815260200182805461206690613e9b565b80156120b35780601f10612088576101008083540402835291602001916120b3565b820191906000526020600020905b81548152906001019060200180831161209657829003601f168201915b5050505050905090565b6060600060016120cc846126aa565b01905060008167ffffffffffffffff8111156120eb576120ea614032565b5b6040519080825280601f01601f19166020018201604052801561211d5781602001600182028036833780820191505090505b509050600082602001820190505b60011561218a578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161217457612173613f76565b5b04945060008514156121855761218a565b61212b565b819350505050919050565b60006121a3826000016127fd565b9050919050565b60006121b6838361280e565b61220f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612214565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122e557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122f557506122f482612831565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661231e83611be3565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6123488383836128ab565b505050565b505050565b61235c8282610e58565b6123d357612369816129bf565b6123778360001c60206129ec565b6040516020016123889291906138cf565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca91906139a6565b60405180910390fd5b5050565b6123e18282610e58565b156124b457600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061245961171b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006124e0836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612c28565b905092915050565b6000826000018281548110612500576124ff614003565b5b9060005260206000200154905092915050565b60006125348473ffffffffffffffffffffffffffffffffffffffff16612d3c565b1561269d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261255d61171b565b8786866040518563ffffffff1660e01b815260040161257f9493929190613924565b602060405180830381600087803b15801561259957600080fd5b505af19250505080156125ca57506040513d601f19601f820116820180604052508101906125c791906134d9565b60015b61264d573d80600081146125fa576040519150601f19603f3d011682016040523d82523d6000602084013e6125ff565b606091505b50600081511415612645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263c90613a48565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126a2565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612708577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126fe576126fd613f76565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612745576d04ee2d6d415b85acef8100000000838161273b5761273a613f76565b5b0492506020810190505b662386f26fc10000831061277457662386f26fc10000838161276a57612769613f76565b5b0492506010810190505b6305f5e100831061279d576305f5e100838161279357612792613f76565b5b0492506008810190505b61271083106127c25761271083816127b8576127b7613f76565b5b0492506004810190505b606483106127e557606483816127db576127da613f76565b5b0492506002810190505b600a83106127f4576001810190505b80915050919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128a457506128a382612d5f565b5b9050919050565b6128b6838383612dd9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128f9576128f481612dde565b612938565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612937576129368382612e27565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561297b5761297681612f94565b6129ba565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129b9576129b88282613065565b5b5b505050565b60606129e58273ffffffffffffffffffffffffffffffffffffffff16601460ff166129ec565b9050919050565b6060600060028360026129ff9190613d23565b612a099190613c9c565b67ffffffffffffffff811115612a2257612a21614032565b5b6040519080825280601f01601f191660200182016040528015612a545781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612a8c57612a8b614003565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612af057612aef614003565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612b309190613d23565b612b3a9190613c9c565b90505b6001811115612bda577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612b7c57612b7b614003565b5b1a60f81b828281518110612b9357612b92614003565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612bd390613e71565b9050612b3d565b5060008414612c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c15906139c8565b60405180910390fd5b8091505092915050565b60008083600101600084815260200190815260200160002054905060008114612d30576000600182612c5a9190613d7d565b9050600060018660000180549050612c729190613d7d565b9050818114612ce1576000866000018281548110612c9357612c92614003565b5b9060005260206000200154905080876000018481548110612cb757612cb6614003565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612cf557612cf4613fd4565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612d36565b60009150505b92915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dd25750612dd1826130e4565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e3484610c7c565b612e3e9190613d7d565b9050600060096000848152602001908152602001600020549050818114612f23576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050612fa89190613d7d565b90506000600b60008481526020019081526020016000205490506000600a8381548110612fd857612fd7614003565b5b9060005260206000200154905080600a8381548110612ffa57612ff9614003565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061304957613048613fd4565b5b6001900381819060005260206000200160009055905550505050565b600061307083610c7c565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600061316161315c84613c28565b613c03565b90508281526020810184848401111561317d5761317c614066565b5b613188848285613e2f565b509392505050565b60008135905061319f8161450d565b92915050565b6000813590506131b481614524565b92915050565b6000813590506131c98161453b565b92915050565b6000813590506131de81614552565b92915050565b6000815190506131f381614552565b92915050565b600082601f83011261320e5761320d614061565b5b813561321e84826020860161314e565b91505092915050565b60008135905061323681614569565b92915050565b60006020828403121561325257613251614070565b5b600061326084828501613190565b91505092915050565b600080604083850312156132805761327f614070565b5b600061328e85828601613190565b925050602061329f85828601613190565b9150509250929050565b6000806000606084860312156132c2576132c1614070565b5b60006132d086828701613190565b93505060206132e186828701613190565b92505060406132f286828701613227565b9150509250925092565b6000806000806080858703121561331657613315614070565b5b600061332487828801613190565b945050602061333587828801613190565b935050604061334687828801613227565b925050606085013567ffffffffffffffff8111156133675761336661406b565b5b613373878288016131f9565b91505092959194509250565b6000806040838503121561339657613395614070565b5b60006133a485828601613190565b92505060206133b5858286016131a5565b9150509250929050565b600080604083850312156133d6576133d5614070565b5b60006133e485828601613190565b92505060206133f585828601613227565b9150509250929050565b60006020828403121561341557613414614070565b5b6000613423848285016131ba565b91505092915050565b6000806040838503121561344357613442614070565b5b6000613451858286016131ba565b925050602061346285828601613190565b9150509250929050565b6000806040838503121561348357613482614070565b5b6000613491858286016131ba565b92505060206134a285828601613227565b9150509250929050565b6000602082840312156134c2576134c1614070565b5b60006134d0848285016131cf565b91505092915050565b6000602082840312156134ef576134ee614070565b5b60006134fd848285016131e4565b91505092915050565b60006020828403121561351c5761351b614070565b5b600061352a84828501613227565b91505092915050565b61353c81613db1565b82525050565b61354b81613dc3565b82525050565b61355a81613dcf565b82525050565b600061356b82613c59565b6135758185613c6f565b9350613585818560208601613e3e565b61358e81614075565b840191505092915050565b60006135a482613c64565b6135ae8185613c80565b93506135be818560208601613e3e565b6135c781614075565b840191505092915050565b60006135dd82613c64565b6135e78185613c91565b93506135f7818560208601613e3e565b80840191505092915050565b6000613610602083613c80565b915061361b82614086565b602082019050919050565b6000613633601483613c80565b915061363e826140af565b602082019050919050565b6000613656602d83613c80565b9150613661826140d8565b604082019050919050565b6000613679602b83613c80565b915061368482614127565b604082019050919050565b600061369c603283613c80565b91506136a782614176565b604082019050919050565b60006136bf602583613c80565b91506136ca826141c5565b604082019050919050565b60006136e2601c83613c80565b91506136ed82614214565b602082019050919050565b6000613705602483613c80565b91506137108261423d565b604082019050919050565b6000613728601983613c80565b91506137338261428c565b602082019050919050565b600061374b602983613c80565b9150613756826142b5565b604082019050919050565b600061376e602083613c80565b915061377982614304565b602082019050919050565b6000613791601883613c80565b915061379c8261432d565b602082019050919050565b60006137b4602183613c80565b91506137bf82614356565b604082019050919050565b60006137d7603d83613c80565b91506137e2826143a5565b604082019050919050565b60006137fa602c83613c80565b9150613805826143f4565b604082019050919050565b600061381d601783613c91565b915061382882614443565b601782019050919050565b6000613840600b83613c80565b915061384b8261446c565b602082019050919050565b6000613863601183613c91565b915061386e82614495565b601182019050919050565b6000613886602f83613c80565b9150613891826144be565b604082019050919050565b6138a581613e25565b82525050565b60006138b782856135d2565b91506138c382846135d2565b91508190509392505050565b60006138da82613810565b91506138e682856135d2565b91506138f182613856565b91506138fd82846135d2565b91508190509392505050565b600060208201905061391e6000830184613533565b92915050565b60006080820190506139396000830187613533565b6139466020830186613533565b613953604083018561389c565b81810360608301526139658184613560565b905095945050505050565b60006020820190506139856000830184613542565b92915050565b60006020820190506139a06000830184613551565b92915050565b600060208201905081810360008301526139c08184613599565b905092915050565b600060208201905081810360008301526139e181613603565b9050919050565b60006020820190508181036000830152613a0181613626565b9050919050565b60006020820190508181036000830152613a2181613649565b9050919050565b60006020820190508181036000830152613a418161366c565b9050919050565b60006020820190508181036000830152613a618161368f565b9050919050565b60006020820190508181036000830152613a81816136b2565b9050919050565b60006020820190508181036000830152613aa1816136d5565b9050919050565b60006020820190508181036000830152613ac1816136f8565b9050919050565b60006020820190508181036000830152613ae18161371b565b9050919050565b60006020820190508181036000830152613b018161373e565b9050919050565b60006020820190508181036000830152613b2181613761565b9050919050565b60006020820190508181036000830152613b4181613784565b9050919050565b60006020820190508181036000830152613b61816137a7565b9050919050565b60006020820190508181036000830152613b81816137ca565b9050919050565b60006020820190508181036000830152613ba1816137ed565b9050919050565b60006020820190508181036000830152613bc181613833565b9050919050565b60006020820190508181036000830152613be181613879565b9050919050565b6000602082019050613bfd600083018461389c565b92915050565b6000613c0d613c1e565b9050613c198282613ecd565b919050565b6000604051905090565b600067ffffffffffffffff821115613c4357613c42614032565b5b613c4c82614075565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ca782613e25565b9150613cb283613e25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce757613ce6613f47565b5b828201905092915050565b6000613cfd82613e25565b9150613d0883613e25565b925082613d1857613d17613f76565b5b828204905092915050565b6000613d2e82613e25565b9150613d3983613e25565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d7257613d71613f47565b5b828202905092915050565b6000613d8882613e25565b9150613d9383613e25565b925082821015613da657613da5613f47565b5b828203905092915050565b6000613dbc82613e05565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e5c578082015181840152602081019050613e41565b83811115613e6b576000848401525b50505050565b6000613e7c82613e25565b91506000821415613e9057613e8f613f47565b5b600182039050919050565b60006002820490506001821680613eb357607f821691505b60208210811415613ec757613ec6613fa5565b5b50919050565b613ed682614075565b810181811067ffffffffffffffff82111715613ef557613ef4614032565b5b80604052505050565b6000613f0982613e25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3c57613f3b613f47565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f57726f6e6720616d6f756e74206f662045544821000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4d696e746564206f757421000000000000000000000000000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61451681613db1565b811461452157600080fd5b50565b61452d81613dc3565b811461453857600080fd5b50565b61454481613dcf565b811461454f57600080fd5b50565b61455b81613dd9565b811461456657600080fd5b50565b61457281613e25565b811461457d57600080fd5b5056fea2646970667358221220681336ac9567fe80fb37e8c00192bda893cf9f62eea6345b4922f34910462b3c64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4d634675636b6c696e677300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d4655434b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d645942336d597541484c585070356a50447251543335587958476d68355a7467766f79356d4c74664a5a46482f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): McFucklings
Arg [1] : symbol (string): MFUCK
Arg [2] : baseTokenURI (string): ipfs://QmdYB3mYuAHLXPp5jPDrQT35XyXGmh5Ztgvoy5mLtfJZFH/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4d634675636b6c696e6773000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4d4655434b000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d645942336d597541484c585070356a5044725154333558
Arg [9] : 7958476d68355a7467766f79356d4c74664a5a46482f00000000000000000000


Deployed Bytecode Sourcemap

91832:4196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95779:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68542:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70054:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69572:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85389:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70754:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52701:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53142:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85057:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54286:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71160:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85579:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68252:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67983:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94421:337;;;;;;;;;;;;;:::i;:::-;;57992:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51174:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68711:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95625:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93851:491;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50279:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70297:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94766:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71416:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95125:269;;;;;;;;;;;;;:::i;:::-;;94864:161;;;;;;;;;;;;;:::i;:::-;;68886:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58319:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53582:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95033:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70523:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95779:246;95952:4;95981:36;96005:11;95981:23;:36::i;:::-;95974:43;;95779:246;;;:::o;68542:100::-;68596:13;68629:5;68622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68542:100;:::o;70054:171::-;70130:7;70150:23;70165:7;70150:14;:23::i;:::-;70193:15;:24;70209:7;70193:24;;;;;;;;;;;;;;;;;;;;;70186:31;;70054:171;;;:::o;69572:416::-;69653:13;69669:23;69684:7;69669:14;:23::i;:::-;69653:39;;69717:5;69711:11;;:2;:11;;;;69703:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69811:5;69795:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;69820:37;69837:5;69844:12;:10;:12::i;:::-;69820:16;:37::i;:::-;69795:62;69773:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;69959:21;69968:2;69972:7;69959:8;:21::i;:::-;69642:346;69572:416;;:::o;85389:113::-;85450:7;85477:10;:17;;;;85470:24;;85389:113;:::o;70754:335::-;70949:41;70968:12;:10;:12::i;:::-;70982:7;70949:18;:41::i;:::-;70941:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;71053:28;71063:4;71069:2;71073:7;71053:9;:28::i;:::-;70754:335;;;:::o;52701:131::-;52775:7;52802:6;:12;52809:4;52802:12;;;;;;;;;;;:22;;;52795:29;;52701:131;;;:::o;53142:147::-;53225:18;53238:4;53225:12;:18::i;:::-;50770:16;50781:4;50770:10;:16::i;:::-;53256:25:::1;53267:4;53273:7;53256:10;:25::i;:::-;53142:147:::0;;;:::o;85057:256::-;85154:7;85190:23;85207:5;85190:16;:23::i;:::-;85182:5;:31;85174:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;85279:12;:19;85292:5;85279:19;;;;;;;;;;;;;;;:26;85299:5;85279:26;;;;;;;;;;;;85272:33;;85057:256;;;;:::o;54286:218::-;54393:12;:10;:12::i;:::-;54382:23;;:7;:23;;;54374:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;54470:26;54482:4;54488:7;54470:11;:26::i;:::-;54286:218;;:::o;71160:185::-;71298:39;71315:4;71321:2;71325:7;71298:39;;;;;;;;;;;;:16;:39::i;:::-;71160:185;;;:::o;85579:233::-;85654:7;85690:30;:28;:30::i;:::-;85682:5;:38;85674:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;85787:10;85798:5;85787:17;;;;;;;;:::i;:::-;;;;;;;;;;85780:24;;85579:233;;;:::o;68252:223::-;68324:7;68344:13;68360:17;68369:7;68360:8;:17::i;:::-;68344:33;;68413:1;68396:19;;:5;:19;;;;68388:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;68462:5;68455:12;;;68252:223;;;:::o;67983:207::-;68055:7;68100:1;68083:19;;:5;:19;;;;68075:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;68166:9;:16;68176:5;68166:16;;;;;;;;;;;;;;;;68159:23;;67983:207;;;:::o;94421:337::-;93515:4;93492:27;;:7;:19;93500:10;93492:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;93484:36;;;;;;94504:2:::1;94476:25;:15;:23;:25::i;:::-;:30;94468:39;;;::::0;::::1;;94554:4;94526:25;:15;:23;:25::i;:::-;:32;94518:41;;;::::0;::::1;;94574:6;94570:181;94590:2;94586:1;:6;94570:181;;;94613:42;94619:8;;;;;;;;;;;94629:25;:15;:23;:25::i;:::-;94613:5;:42::i;:::-;94670:27;:15;:25;:27::i;:::-;94712;:15;:25;:27::i;:::-;94594:3;;;;;:::i;:::-;;;;94570:181;;;;94421:337::o:0;57992:153::-;58082:7;58109:28;58131:5;58109:12;:18;58122:4;58109:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;58102:35;;57992:153;;;;:::o;51174:147::-;51260:4;51284:6;:12;51291:4;51284:12;;;;;;;;;;;:20;;:29;51305:7;51284:29;;;;;;;;;;;;;;;;;;;;;;;;;51277:36;;51174:147;;;;:::o;68711:104::-;68767:13;68800:7;68793:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68711:104;:::o;95625:76::-;95663:7;95689:4;;95682:11;;95625:76;:::o;93851:491::-;93923:1;93913:11;;93953:5;93943:15;;:6;;;;;;;;;;;:15;;;93935:24;;;;;;93991:4;;93978:9;:17;93970:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;94067:4;94039:25;:15;:23;:25::i;:::-;:32;94031:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;94252:44;94258:10;94270:25;:15;:23;:25::i;:::-;94252:5;:44::i;:::-;94307:27;:15;:25;:27::i;:::-;93851:491;:::o;50279:49::-;50324:4;50279:49;;;:::o;70297:155::-;70392:52;70411:12;:10;:12::i;:::-;70425:8;70435;70392:18;:52::i;:::-;70297:155;;:::o;94766:90::-;93515:4;93492:27;;:7;:19;93500:10;93492:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;93484:36;;;;;;94840:8:::1;94833:4;:15;;;;94766:90:::0;:::o;71416:322::-;71590:41;71609:12;:10;:12::i;:::-;71623:7;71590:18;:41::i;:::-;71582:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;71692:38;71706:4;71712:2;71716:7;71725:4;71692:13;:38::i;:::-;71416:322;;;;:::o;95125:269::-;93515:4;93492:27;;:7;:19;93500:10;93492:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;93484:36;;;;;;95175:13:::1;95215:1;95191:21;:25;;;;:::i;:::-;95175:41;;95236:5;;;;;;;;;;;95228:23;;:30;95252:5;95228:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;95277:6;;;;;;;;;;;95269:24;;:31;95294:5;95269:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;95319:6;;;;;;;;;;;95311:24;;:31;95336:5;95311:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;95361:8;;;;;;;;;;;95353:26;;:33;95380:5;95353:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;95164:230;95125:269::o:0;94864:161::-;93515:4;93492:27;;:7;:19;93500:10;93492:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;93484:36;;;;;;94928:4:::1;94918:14;;:6;;;;;;;;;;;:14;;;94915:103;;;94957:5;94948:6;;:14;;;;;;;;;;;;;;;;;;94915:103;;;95002:4;94993:6;;:13;;;;;;;;;;;;;;;;;;94915:103;94864:161::o:0;68886:281::-;68959:13;68985:23;69000:7;68985:14;:23::i;:::-;69021:21;69045:10;:8;:10::i;:::-;69021:34;;69097:1;69079:7;69073:21;:25;:86;;;;;;;;;;;;;;;;;69125:7;69134:18;:7;:16;:18::i;:::-;69108:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69073:86;69066:93;;;68886:281;;;:::o;58319:142::-;58399:7;58426:27;:12;:18;58439:4;58426:18;;;;;;;;;;;:25;:27::i;:::-;58419:34;;58319:142;;;:::o;53582:149::-;53666:18;53679:4;53666:12;:18::i;:::-;50770:16;50781:4;50770:10;:16::i;:::-;53697:26:::1;53709:4;53715:7;53697:11;:26::i;:::-;53582:149:::0;;;:::o;95033:80::-;95075:7;95101:4;95094:11;;95033:80;:::o;70523:164::-;70620:4;70644:18;:25;70663:5;70644:25;;;;;;;;;;;;;;;:35;70670:8;70644:35;;;;;;;;;;;;;;;;;;;;;;;;;70637:42;;70523:164;;;;:::o;1047:127::-;1154:1;1136:7;:14;;;:19;;;;;;;;;;;1047:127;:::o;55883:238::-;55967:22;55975:4;55981:7;55967;:22::i;:::-;55962:152;;56038:4;56006:6;:12;56013:4;56006:12;;;;;;;;;;;:20;;:29;56027:7;56006:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;56089:12;:10;:12::i;:::-;56062:40;;56080:7;56062:40;;56074:4;56062:40;;;;;;;;;;55962:152;55883:238;;:::o;10147:152::-;10217:4;10241:50;10246:3;:10;;10282:5;10266:23;;10258:32;;10241:4;:50::i;:::-;10234:57;;10147:152;;;;:::o;84749:224::-;84851:4;84890:35;84875:50;;;:11;:50;;;;:90;;;;84929:36;84953:11;84929:23;:36::i;:::-;84875:90;84868:97;;84749:224;;;:::o;79855:135::-;79937:16;79945:7;79937;:16::i;:::-;79929:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;79855:135;:::o;35394:98::-;35447:7;35474:10;35467:17;;35394:98;:::o;79134:174::-;79236:2;79209:15;:24;79225:7;79209:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;79292:7;79288:2;79254:46;;79263:23;79278:7;79263:14;:23::i;:::-;79254:46;;;;;;;;;;;;79134:174;;:::o;73771:264::-;73864:4;73881:13;73897:23;73912:7;73897:14;:23::i;:::-;73881:39;;73950:5;73939:16;;:7;:16;;;:52;;;;73959:32;73976:5;73983:7;73959:16;:32::i;:::-;73939:52;:87;;;;74019:7;73995:31;;:20;74007:7;73995:11;:20::i;:::-;:31;;;73939:87;73931:96;;;73771:264;;;;:::o;77758:1257::-;77917:4;77890:31;;:23;77905:7;77890:14;:23::i;:::-;:31;;;77882:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;77996:1;77982:16;;:2;:16;;;;77974:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;78052:39;78073:4;78079:2;78083:7;78052:20;:39::i;:::-;78221:4;78194:31;;:23;78209:7;78194:14;:23::i;:::-;:31;;;78186:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;78339:15;:24;78355:7;78339:24;;;;;;;;;;;;78332:31;;;;;;;;;;;78834:1;78815:9;:15;78825:4;78815:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;78867:1;78850:9;:13;78860:2;78850:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;78909:2;78890:7;:16;78898:7;78890:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;78948:7;78944:2;78929:27;;78938:4;78929:27;;;;;;;;;;;;78969:38;78989:4;78995:2;78999:7;78969:19;:38::i;:::-;77758:1257;;;:::o;51625:105::-;51692:30;51703:4;51709:12;:10;:12::i;:::-;51692:10;:30::i;:::-;51625:105;:::o;58554:169::-;58642:31;58659:4;58665:7;58642:16;:31::i;:::-;58684;58707:7;58684:12;:18;58697:4;58684:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;58554:169;;:::o;58817:174::-;58906:32;58924:4;58930:7;58906:17;:32::i;:::-;58949:34;58975:7;58949:12;:18;58962:4;58949:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;58817:174;;:::o;73046:117::-;73112:7;73139;:16;73147:7;73139:16;;;;;;;;;;;;;;;;;;;;;73132:23;;73046:117;;;:::o;925:114::-;990:7;1017;:14;;;1010:21;;925:114;;;:::o;75369:936::-;75463:1;75449:16;;:2;:16;;;;75441:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;75522:16;75530:7;75522;:16::i;:::-;75521:17;75513:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;75584:45;75613:1;75617:2;75621:7;75584:20;:45::i;:::-;75728:16;75736:7;75728;:16::i;:::-;75727:17;75719:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;76143:1;76126:9;:13;76136:2;76126:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;76187:2;76168:7;:16;76176:7;76168:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;76232:7;76228:2;76207:33;;76224:1;76207:33;;;;;;;;;;;;76253:44;76281:1;76285:2;76289:7;76253:19;:44::i;:::-;75369:936;;:::o;11443:158::-;11517:7;11568:22;11572:3;:10;;11584:5;11568:3;:22::i;:::-;11560:31;;11537:56;;11443:158;;;;:::o;79451:315::-;79606:8;79597:17;;:5;:17;;;;79589:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;79693:8;79655:18;:25;79674:5;79655:25;;;;;;;;;;;;;;;:35;79681:8;79655:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;79739:8;79717:41;;79732:5;79717:41;;;79749:8;79717:41;;;;;;:::i;:::-;;;;;;;;79451:315;;;:::o;72619:313::-;72775:28;72785:4;72791:2;72795:7;72775:9;:28::i;:::-;72822:47;72845:4;72851:2;72855:7;72864:4;72822:22;:47::i;:::-;72814:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;72619:313;;;;:::o;93332:114::-;93392:13;93425;93418:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93332:114;:::o;32768:716::-;32824:13;32875:14;32912:1;32892:17;32903:5;32892:10;:17::i;:::-;:21;32875:38;;32928:20;32962:6;32951:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32928:41;;32984:11;33113:6;33109:2;33105:15;33097:6;33093:28;33086:35;;33150:288;33157:4;33150:288;;;33182:5;;;;;;;;33324:8;33319:2;33312:5;33308:14;33303:30;33298:3;33290:44;33380:2;33371:11;;;;;;:::i;:::-;;;;;33414:1;33405:5;:10;33401:21;;;33417:5;;33401:21;33150:288;;;33459:6;33452:13;;;;;32768:716;;;:::o;10972:117::-;11035:7;11062:19;11070:3;:10;;11062:7;:19::i;:::-;11055:26;;10972:117;;;:::o;3878:414::-;3941:4;3963:21;3973:3;3978:5;3963:9;:21::i;:::-;3958:327;;4001:3;:11;;4018:5;4001:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4184:3;:11;;:18;;;;4162:3;:12;;:19;4175:5;4162:19;;;;;;;;;;;:40;;;;4224:4;4217:11;;;;3958:327;4268:5;4261:12;;3878:414;;;;;:::o;67614:305::-;67716:4;67768:25;67753:40;;;:11;:40;;;;:105;;;;67825:33;67810:48;;;:11;:48;;;;67753:105;:158;;;;67875:36;67899:11;67875:23;:36::i;:::-;67753:158;67733:178;;67614:305;;;:::o;73476:128::-;73541:4;73594:1;73565:31;;:17;73574:7;73565:8;:17::i;:::-;:31;;;;73558:38;;73476:128;;;:::o;95402:215::-;95564:45;95591:4;95597:2;95601:7;95564:26;:45::i;:::-;95402:215;;;:::o;82585:125::-;;;;:::o;52020:492::-;52109:22;52117:4;52123:7;52109;:22::i;:::-;52104:401;;52297:28;52317:7;52297:19;:28::i;:::-;52398:38;52426:4;52418:13;;52433:2;52398:19;:38::i;:::-;52202:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52148:345;;;;;;;;;;;:::i;:::-;;;;;;;;52104:401;52020:492;;:::o;56301:239::-;56385:22;56393:4;56399:7;56385;:22::i;:::-;56381:152;;;56456:5;56424:6;:12;56431:4;56424:12;;;;;;;;;;;:20;;:29;56445:7;56424:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;56508:12;:10;:12::i;:::-;56481:40;;56499:7;56481:40;;56493:4;56481:40;;;;;;;;;;56381:152;56301:239;;:::o;10475:158::-;10548:4;10572:53;10580:3;:10;;10616:5;10600:23;;10592:32;;10572:7;:53::i;:::-;10565:60;;10475:158;;;;:::o;6652:120::-;6719:7;6746:3;:11;;6758:5;6746:18;;;;;;;;:::i;:::-;;;;;;;;;;6739:25;;6652:120;;;;:::o;80554:853::-;80708:4;80729:15;:2;:13;;;:15::i;:::-;80725:675;;;80781:2;80765:36;;;80802:12;:10;:12::i;:::-;80816:4;80822:7;80831:4;80765:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;80761:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81023:1;81006:6;:13;:18;81002:328;;;81049:60;;;;;;;;;;:::i;:::-;;;;;;;;81002:328;81280:6;81274:13;81265:6;81261:2;81257:15;81250:38;80761:584;80897:41;;;80887:51;;;:6;:51;;;;80880:58;;;;;80725:675;81384:4;81377:11;;80554:853;;;;;;;:::o;29581:922::-;29634:7;29654:14;29671:1;29654:18;;29721:6;29712:5;:15;29708:102;;29757:6;29748:15;;;;;;:::i;:::-;;;;;29792:2;29782:12;;;;29708:102;29837:6;29828:5;:15;29824:102;;29873:6;29864:15;;;;;;:::i;:::-;;;;;29908:2;29898:12;;;;29824:102;29953:6;29944:5;:15;29940:102;;29989:6;29980:15;;;;;;:::i;:::-;;;;;30024:2;30014:12;;;;29940:102;30069:5;30060;:14;30056:99;;30104:5;30095:14;;;;;;:::i;:::-;;;;;30138:1;30128:11;;;;30056:99;30182:5;30173;:14;30169:99;;30217:5;30208:14;;;;;;:::i;:::-;;;;;30251:1;30241:11;;;;30169:99;30295:5;30286;:14;30282:99;;30330:5;30321:14;;;;;;:::i;:::-;;;;;30364:1;30354:11;;;;30282:99;30408:5;30399;:14;30395:66;;30444:1;30434:11;;;;30395:66;30489:6;30482:13;;;29581:922;;;:::o;6189:109::-;6245:7;6272:3;:11;;:18;;;;6265:25;;6189:109;;;:::o;5974:129::-;6047:4;6094:1;6071:3;:12;;:19;6084:5;6071:19;;;;;;;;;;;;:24;;6064:31;;5974:129;;;;:::o;57179:214::-;57264:4;57303:42;57288:57;;;:11;:57;;;;:97;;;;57349:36;57373:11;57349:23;:36::i;:::-;57288:97;57281:104;;57179:214;;;:::o;86408:589::-;86552:45;86579:4;86585:2;86589:7;86552:26;:45::i;:::-;86630:1;86614:18;;:4;:18;;;86610:187;;;86649:40;86681:7;86649:31;:40::i;:::-;86610:187;;;86719:2;86711:10;;:4;:10;;;86707:90;;86738:47;86771:4;86777:7;86738:32;:47::i;:::-;86707:90;86610:187;86825:1;86811:16;;:2;:16;;;86807:183;;;86844:45;86881:7;86844:36;:45::i;:::-;86807:183;;;86917:4;86911:10;;:2;:10;;;86907:83;;86938:40;86966:2;86970:7;86938:27;:40::i;:::-;86907:83;86807:183;86408:589;;;:::o;34504:151::-;34562:13;34595:52;34623:4;34607:22;;32659:2;34595:52;;:11;:52::i;:::-;34588:59;;34504:151;;;:::o;33900:447::-;33975:13;34001:19;34046:1;34037:6;34033:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;34023:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34001:47;;34059:15;:6;34066:1;34059:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;34085;:6;34092:1;34085:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;34116:9;34141:1;34132:6;34128:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;34116:26;;34111:131;34148:1;34144;:5;34111:131;;;34183:8;34200:3;34192:5;:11;34183:21;;;;;;;:::i;:::-;;;;;34171:6;34178:1;34171:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;34229:1;34219:11;;;;;34151:3;;;;:::i;:::-;;;34111:131;;;;34269:1;34260:5;:10;34252:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;34332:6;34318:21;;;33900:447;;;;:::o;4468:1420::-;4534:4;4652:18;4673:3;:12;;:19;4686:5;4673:19;;;;;;;;;;;;4652:40;;4723:1;4709:10;:15;4705:1176;;5084:21;5121:1;5108:10;:14;;;;:::i;:::-;5084:38;;5137:17;5178:1;5157:3;:11;;:18;;;;:22;;;;:::i;:::-;5137:42;;5213:13;5200:9;:26;5196:405;;5247:17;5267:3;:11;;5279:9;5267:22;;;;;;;;:::i;:::-;;;;;;;;;;5247:42;;5421:9;5392:3;:11;;5404:13;5392:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;5532:10;5506:3;:12;;:23;5519:9;5506:23;;;;;;;;;;;:36;;;;5228:373;5196:405;5682:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5777:3;:12;;:19;5790:5;5777:19;;;;;;;;;;;5770:26;;;5820:4;5813:11;;;;;;;4705:1176;5864:5;5857:12;;;4468:1420;;;;;:::o;36894:326::-;36954:4;37211:1;37189:7;:19;;;:23;37182:30;;36894:326;;;:::o;50878:204::-;50963:4;51002:32;50987:47;;;:11;:47;;;;:87;;;;51038:36;51062:11;51038:23;:36::i;:::-;50987:87;50980:94;;50878:204;;;:::o;82027:126::-;;;;:::o;88610:164::-;88714:10;:17;;;;88687:15;:24;88703:7;88687:24;;;;;;;;;;;:44;;;;88742:10;88758:7;88742:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88610:164;:::o;89401:988::-;89667:22;89717:1;89692:22;89709:4;89692:16;:22::i;:::-;:26;;;;:::i;:::-;89667:51;;89729:18;89750:17;:26;89768:7;89750:26;;;;;;;;;;;;89729:47;;89897:14;89883:10;:28;89879:328;;89928:19;89950:12;:18;89963:4;89950:18;;;;;;;;;;;;;;;:34;89969:14;89950:34;;;;;;;;;;;;89928:56;;90034:11;90001:12;:18;90014:4;90001:18;;;;;;;;;;;;;;;:30;90020:10;90001:30;;;;;;;;;;;:44;;;;90151:10;90118:17;:30;90136:11;90118:30;;;;;;;;;;;:43;;;;89913:294;89879:328;90303:17;:26;90321:7;90303:26;;;;;;;;;;;90296:33;;;90347:12;:18;90360:4;90347:18;;;;;;;;;;;;;;;:34;90366:14;90347:34;;;;;;;;;;;90340:41;;;89482:907;;89401:988;;:::o;90684:1079::-;90937:22;90982:1;90962:10;:17;;;;:21;;;;:::i;:::-;90937:46;;90994:18;91015:15;:24;91031:7;91015:24;;;;;;;;;;;;90994:45;;91366:19;91388:10;91399:14;91388:26;;;;;;;;:::i;:::-;;;;;;;;;;91366:48;;91452:11;91427:10;91438;91427:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;91563:10;91532:15;:28;91548:11;91532:28;;;;;;;;;;;:41;;;;91704:15;:24;91720:7;91704:24;;;;;;;;;;;91697:31;;;91739:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;90755:1008;;;90684:1079;:::o;88188:221::-;88273:14;88290:20;88307:2;88290:16;:20::i;:::-;88273:37;;88348:7;88321:12;:16;88334:2;88321:16;;;;;;;;;;;;;;;:24;88338:6;88321:24;;;;;;;;;;;:34;;;;88395:6;88366:17;:26;88384:7;88366:26;;;;;;;;;;;:35;;;;88262:147;88188:221;;:::o;48084:157::-;48169:4;48208:25;48193:40;;;:11;:40;;;;48186:47;;48084:157;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;707:139;;;;:::o;852:137::-;897:5;935:6;922:20;913:29;;951:32;977:5;951:32;:::i;:::-;852:137;;;;:::o;995:141::-;1051:5;1082:6;1076:13;1067:22;;1098:32;1124:5;1098:32;:::i;:::-;995:141;;;;:::o;1155:338::-;1210:5;1259:3;1252:4;1244:6;1240:17;1236:27;1226:122;;1267:79;;:::i;:::-;1226:122;1384:6;1371:20;1409:78;1483:3;1475:6;1468:4;1460:6;1456:17;1409:78;:::i;:::-;1400:87;;1216:277;1155:338;;;;:::o;1499:139::-;1545:5;1583:6;1570:20;1561:29;;1599:33;1626:5;1599:33;:::i;:::-;1499:139;;;;:::o;1644:329::-;1703:6;1752:2;1740:9;1731:7;1727:23;1723:32;1720:119;;;1758:79;;:::i;:::-;1720:119;1878:1;1903:53;1948:7;1939:6;1928:9;1924:22;1903:53;:::i;:::-;1893:63;;1849:117;1644:329;;;;:::o;1979:474::-;2047:6;2055;2104:2;2092:9;2083:7;2079:23;2075:32;2072:119;;;2110:79;;:::i;:::-;2072:119;2230:1;2255:53;2300:7;2291:6;2280:9;2276:22;2255:53;:::i;:::-;2245:63;;2201:117;2357:2;2383:53;2428:7;2419:6;2408:9;2404:22;2383:53;:::i;:::-;2373:63;;2328:118;1979:474;;;;;:::o;2459:619::-;2536:6;2544;2552;2601:2;2589:9;2580:7;2576:23;2572:32;2569:119;;;2607:79;;:::i;:::-;2569:119;2727:1;2752:53;2797:7;2788:6;2777:9;2773:22;2752:53;:::i;:::-;2742:63;;2698:117;2854:2;2880:53;2925:7;2916:6;2905:9;2901:22;2880:53;:::i;:::-;2870:63;;2825:118;2982:2;3008:53;3053:7;3044:6;3033:9;3029:22;3008:53;:::i;:::-;2998:63;;2953:118;2459:619;;;;;:::o;3084:943::-;3179:6;3187;3195;3203;3252:3;3240:9;3231:7;3227:23;3223:33;3220:120;;;3259:79;;:::i;:::-;3220:120;3379:1;3404:53;3449:7;3440:6;3429:9;3425:22;3404:53;:::i;:::-;3394:63;;3350:117;3506:2;3532:53;3577:7;3568:6;3557:9;3553:22;3532:53;:::i;:::-;3522:63;;3477:118;3634:2;3660:53;3705:7;3696:6;3685:9;3681:22;3660:53;:::i;:::-;3650:63;;3605:118;3790:2;3779:9;3775:18;3762:32;3821:18;3813:6;3810:30;3807:117;;;3843:79;;:::i;:::-;3807:117;3948:62;4002:7;3993:6;3982:9;3978:22;3948:62;:::i;:::-;3938:72;;3733:287;3084:943;;;;;;;:::o;4033:468::-;4098:6;4106;4155:2;4143:9;4134:7;4130:23;4126:32;4123:119;;;4161:79;;:::i;:::-;4123:119;4281:1;4306:53;4351:7;4342:6;4331:9;4327:22;4306:53;:::i;:::-;4296:63;;4252:117;4408:2;4434:50;4476:7;4467:6;4456:9;4452:22;4434:50;:::i;:::-;4424:60;;4379:115;4033:468;;;;;:::o;4507:474::-;4575:6;4583;4632:2;4620:9;4611:7;4607:23;4603:32;4600:119;;;4638:79;;:::i;:::-;4600:119;4758:1;4783:53;4828:7;4819:6;4808:9;4804:22;4783:53;:::i;:::-;4773:63;;4729:117;4885:2;4911:53;4956:7;4947:6;4936:9;4932:22;4911:53;:::i;:::-;4901:63;;4856:118;4507:474;;;;;:::o;4987:329::-;5046:6;5095:2;5083:9;5074:7;5070:23;5066:32;5063:119;;;5101:79;;:::i;:::-;5063:119;5221:1;5246:53;5291:7;5282:6;5271:9;5267:22;5246:53;:::i;:::-;5236:63;;5192:117;4987:329;;;;:::o;5322:474::-;5390:6;5398;5447:2;5435:9;5426:7;5422:23;5418:32;5415:119;;;5453:79;;:::i;:::-;5415:119;5573:1;5598:53;5643:7;5634:6;5623:9;5619:22;5598:53;:::i;:::-;5588:63;;5544:117;5700:2;5726:53;5771:7;5762:6;5751:9;5747:22;5726:53;:::i;:::-;5716:63;;5671:118;5322:474;;;;;:::o;5802:::-;5870:6;5878;5927:2;5915:9;5906:7;5902:23;5898:32;5895:119;;;5933:79;;:::i;:::-;5895:119;6053:1;6078:53;6123:7;6114:6;6103:9;6099:22;6078:53;:::i;:::-;6068:63;;6024:117;6180:2;6206:53;6251:7;6242:6;6231:9;6227:22;6206:53;:::i;:::-;6196:63;;6151:118;5802:474;;;;;:::o;6282:327::-;6340:6;6389:2;6377:9;6368:7;6364:23;6360:32;6357:119;;;6395:79;;:::i;:::-;6357:119;6515:1;6540:52;6584:7;6575:6;6564:9;6560:22;6540:52;:::i;:::-;6530:62;;6486:116;6282:327;;;;:::o;6615:349::-;6684:6;6733:2;6721:9;6712:7;6708:23;6704:32;6701:119;;;6739:79;;:::i;:::-;6701:119;6859:1;6884:63;6939:7;6930:6;6919:9;6915:22;6884:63;:::i;:::-;6874:73;;6830:127;6615:349;;;;:::o;6970:329::-;7029:6;7078:2;7066:9;7057:7;7053:23;7049:32;7046:119;;;7084:79;;:::i;:::-;7046:119;7204:1;7229:53;7274:7;7265:6;7254:9;7250:22;7229:53;:::i;:::-;7219:63;;7175:117;6970:329;;;;:::o;7305:118::-;7392:24;7410:5;7392:24;:::i;:::-;7387:3;7380:37;7305:118;;:::o;7429:109::-;7510:21;7525:5;7510:21;:::i;:::-;7505:3;7498:34;7429:109;;:::o;7544:118::-;7631:24;7649:5;7631:24;:::i;:::-;7626:3;7619:37;7544:118;;:::o;7668:360::-;7754:3;7782:38;7814:5;7782:38;:::i;:::-;7836:70;7899:6;7894:3;7836:70;:::i;:::-;7829:77;;7915:52;7960:6;7955:3;7948:4;7941:5;7937:16;7915:52;:::i;:::-;7992:29;8014:6;7992:29;:::i;:::-;7987:3;7983:39;7976:46;;7758:270;7668:360;;;;:::o;8034:364::-;8122:3;8150:39;8183:5;8150:39;:::i;:::-;8205:71;8269:6;8264:3;8205:71;:::i;:::-;8198:78;;8285:52;8330:6;8325:3;8318:4;8311:5;8307:16;8285:52;:::i;:::-;8362:29;8384:6;8362:29;:::i;:::-;8357:3;8353:39;8346:46;;8126:272;8034:364;;;;:::o;8404:377::-;8510:3;8538:39;8571:5;8538:39;:::i;:::-;8593:89;8675:6;8670:3;8593:89;:::i;:::-;8586:96;;8691:52;8736:6;8731:3;8724:4;8717:5;8713:16;8691:52;:::i;:::-;8768:6;8763:3;8759:16;8752:23;;8514:267;8404:377;;;;:::o;8787:366::-;8929:3;8950:67;9014:2;9009:3;8950:67;:::i;:::-;8943:74;;9026:93;9115:3;9026:93;:::i;:::-;9144:2;9139:3;9135:12;9128:19;;8787:366;;;:::o;9159:::-;9301:3;9322:67;9386:2;9381:3;9322:67;:::i;:::-;9315:74;;9398:93;9487:3;9398:93;:::i;:::-;9516:2;9511:3;9507:12;9500:19;;9159:366;;;:::o;9531:::-;9673:3;9694:67;9758:2;9753:3;9694:67;:::i;:::-;9687:74;;9770:93;9859:3;9770:93;:::i;:::-;9888:2;9883:3;9879:12;9872:19;;9531:366;;;:::o;9903:::-;10045:3;10066:67;10130:2;10125:3;10066:67;:::i;:::-;10059:74;;10142:93;10231:3;10142:93;:::i;:::-;10260:2;10255:3;10251:12;10244:19;;9903:366;;;:::o;10275:::-;10417:3;10438:67;10502:2;10497:3;10438:67;:::i;:::-;10431:74;;10514:93;10603:3;10514:93;:::i;:::-;10632:2;10627:3;10623:12;10616:19;;10275:366;;;:::o;10647:::-;10789:3;10810:67;10874:2;10869:3;10810:67;:::i;:::-;10803:74;;10886:93;10975:3;10886:93;:::i;:::-;11004:2;10999:3;10995:12;10988:19;;10647:366;;;:::o;11019:::-;11161:3;11182:67;11246:2;11241:3;11182:67;:::i;:::-;11175:74;;11258:93;11347:3;11258:93;:::i;:::-;11376:2;11371:3;11367:12;11360:19;;11019:366;;;:::o;11391:::-;11533:3;11554:67;11618:2;11613:3;11554:67;:::i;:::-;11547:74;;11630:93;11719:3;11630:93;:::i;:::-;11748:2;11743:3;11739:12;11732:19;;11391:366;;;:::o;11763:::-;11905:3;11926:67;11990:2;11985:3;11926:67;:::i;:::-;11919:74;;12002:93;12091:3;12002:93;:::i;:::-;12120:2;12115:3;12111:12;12104:19;;11763:366;;;:::o;12135:::-;12277:3;12298:67;12362:2;12357:3;12298:67;:::i;:::-;12291:74;;12374:93;12463:3;12374:93;:::i;:::-;12492:2;12487:3;12483:12;12476:19;;12135:366;;;:::o;12507:::-;12649:3;12670:67;12734:2;12729:3;12670:67;:::i;:::-;12663:74;;12746:93;12835:3;12746:93;:::i;:::-;12864:2;12859:3;12855:12;12848:19;;12507:366;;;:::o;12879:::-;13021:3;13042:67;13106:2;13101:3;13042:67;:::i;:::-;13035:74;;13118:93;13207:3;13118:93;:::i;:::-;13236:2;13231:3;13227:12;13220:19;;12879:366;;;:::o;13251:::-;13393:3;13414:67;13478:2;13473:3;13414:67;:::i;:::-;13407:74;;13490:93;13579:3;13490:93;:::i;:::-;13608:2;13603:3;13599:12;13592:19;;13251:366;;;:::o;13623:::-;13765:3;13786:67;13850:2;13845:3;13786:67;:::i;:::-;13779:74;;13862:93;13951:3;13862:93;:::i;:::-;13980:2;13975:3;13971:12;13964:19;;13623:366;;;:::o;13995:::-;14137:3;14158:67;14222:2;14217:3;14158:67;:::i;:::-;14151:74;;14234:93;14323:3;14234:93;:::i;:::-;14352:2;14347:3;14343:12;14336:19;;13995:366;;;:::o;14367:402::-;14527:3;14548:85;14630:2;14625:3;14548:85;:::i;:::-;14541:92;;14642:93;14731:3;14642:93;:::i;:::-;14760:2;14755:3;14751:12;14744:19;;14367:402;;;:::o;14775:366::-;14917:3;14938:67;15002:2;14997:3;14938:67;:::i;:::-;14931:74;;15014:93;15103:3;15014:93;:::i;:::-;15132:2;15127:3;15123:12;15116:19;;14775:366;;;:::o;15147:402::-;15307:3;15328:85;15410:2;15405:3;15328:85;:::i;:::-;15321:92;;15422:93;15511:3;15422:93;:::i;:::-;15540:2;15535:3;15531:12;15524:19;;15147:402;;;:::o;15555:366::-;15697:3;15718:67;15782:2;15777:3;15718:67;:::i;:::-;15711:74;;15794:93;15883:3;15794:93;:::i;:::-;15912:2;15907:3;15903:12;15896:19;;15555:366;;;:::o;15927:118::-;16014:24;16032:5;16014:24;:::i;:::-;16009:3;16002:37;15927:118;;:::o;16051:435::-;16231:3;16253:95;16344:3;16335:6;16253:95;:::i;:::-;16246:102;;16365:95;16456:3;16447:6;16365:95;:::i;:::-;16358:102;;16477:3;16470:10;;16051:435;;;;;:::o;16492:967::-;16874:3;16896:148;17040:3;16896:148;:::i;:::-;16889:155;;17061:95;17152:3;17143:6;17061:95;:::i;:::-;17054:102;;17173:148;17317:3;17173:148;:::i;:::-;17166:155;;17338:95;17429:3;17420:6;17338:95;:::i;:::-;17331:102;;17450:3;17443:10;;16492:967;;;;;:::o;17465:222::-;17558:4;17596:2;17585:9;17581:18;17573:26;;17609:71;17677:1;17666:9;17662:17;17653:6;17609:71;:::i;:::-;17465:222;;;;:::o;17693:640::-;17888:4;17926:3;17915:9;17911:19;17903:27;;17940:71;18008:1;17997:9;17993:17;17984:6;17940:71;:::i;:::-;18021:72;18089:2;18078:9;18074:18;18065:6;18021:72;:::i;:::-;18103;18171:2;18160:9;18156:18;18147:6;18103:72;:::i;:::-;18222:9;18216:4;18212:20;18207:2;18196:9;18192:18;18185:48;18250:76;18321:4;18312:6;18250:76;:::i;:::-;18242:84;;17693:640;;;;;;;:::o;18339:210::-;18426:4;18464:2;18453:9;18449:18;18441:26;;18477:65;18539:1;18528:9;18524:17;18515:6;18477:65;:::i;:::-;18339:210;;;;:::o;18555:222::-;18648:4;18686:2;18675:9;18671:18;18663:26;;18699:71;18767:1;18756:9;18752:17;18743:6;18699:71;:::i;:::-;18555:222;;;;:::o;18783:313::-;18896:4;18934:2;18923:9;18919:18;18911:26;;18983:9;18977:4;18973:20;18969:1;18958:9;18954:17;18947:47;19011:78;19084:4;19075:6;19011:78;:::i;:::-;19003:86;;18783:313;;;;:::o;19102:419::-;19268:4;19306:2;19295:9;19291:18;19283:26;;19355:9;19349:4;19345:20;19341:1;19330:9;19326:17;19319:47;19383:131;19509:4;19383:131;:::i;:::-;19375:139;;19102:419;;;:::o;19527:::-;19693:4;19731:2;19720:9;19716:18;19708:26;;19780:9;19774:4;19770:20;19766:1;19755:9;19751:17;19744:47;19808:131;19934:4;19808:131;:::i;:::-;19800:139;;19527:419;;;:::o;19952:::-;20118:4;20156:2;20145:9;20141:18;20133:26;;20205:9;20199:4;20195:20;20191:1;20180:9;20176:17;20169:47;20233:131;20359:4;20233:131;:::i;:::-;20225:139;;19952:419;;;:::o;20377:::-;20543:4;20581:2;20570:9;20566:18;20558:26;;20630:9;20624:4;20620:20;20616:1;20605:9;20601:17;20594:47;20658:131;20784:4;20658:131;:::i;:::-;20650:139;;20377:419;;;:::o;20802:::-;20968:4;21006:2;20995:9;20991:18;20983:26;;21055:9;21049:4;21045:20;21041:1;21030:9;21026:17;21019:47;21083:131;21209:4;21083:131;:::i;:::-;21075:139;;20802:419;;;:::o;21227:::-;21393:4;21431:2;21420:9;21416:18;21408:26;;21480:9;21474:4;21470:20;21466:1;21455:9;21451:17;21444:47;21508:131;21634:4;21508:131;:::i;:::-;21500:139;;21227:419;;;:::o;21652:::-;21818:4;21856:2;21845:9;21841:18;21833:26;;21905:9;21899:4;21895:20;21891:1;21880:9;21876:17;21869:47;21933:131;22059:4;21933:131;:::i;:::-;21925:139;;21652:419;;;:::o;22077:::-;22243:4;22281:2;22270:9;22266:18;22258:26;;22330:9;22324:4;22320:20;22316:1;22305:9;22301:17;22294:47;22358:131;22484:4;22358:131;:::i;:::-;22350:139;;22077:419;;;:::o;22502:::-;22668:4;22706:2;22695:9;22691:18;22683:26;;22755:9;22749:4;22745:20;22741:1;22730:9;22726:17;22719:47;22783:131;22909:4;22783:131;:::i;:::-;22775:139;;22502:419;;;:::o;22927:::-;23093:4;23131:2;23120:9;23116:18;23108:26;;23180:9;23174:4;23170:20;23166:1;23155:9;23151:17;23144:47;23208:131;23334:4;23208:131;:::i;:::-;23200:139;;22927:419;;;:::o;23352:::-;23518:4;23556:2;23545:9;23541:18;23533:26;;23605:9;23599:4;23595:20;23591:1;23580:9;23576:17;23569:47;23633:131;23759:4;23633:131;:::i;:::-;23625:139;;23352:419;;;:::o;23777:::-;23943:4;23981:2;23970:9;23966:18;23958:26;;24030:9;24024:4;24020:20;24016:1;24005:9;24001:17;23994:47;24058:131;24184:4;24058:131;:::i;:::-;24050:139;;23777:419;;;:::o;24202:::-;24368:4;24406:2;24395:9;24391:18;24383:26;;24455:9;24449:4;24445:20;24441:1;24430:9;24426:17;24419:47;24483:131;24609:4;24483:131;:::i;:::-;24475:139;;24202:419;;;:::o;24627:::-;24793:4;24831:2;24820:9;24816:18;24808:26;;24880:9;24874:4;24870:20;24866:1;24855:9;24851:17;24844:47;24908:131;25034:4;24908:131;:::i;:::-;24900:139;;24627:419;;;:::o;25052:::-;25218:4;25256:2;25245:9;25241:18;25233:26;;25305:9;25299:4;25295:20;25291:1;25280:9;25276:17;25269:47;25333:131;25459:4;25333:131;:::i;:::-;25325:139;;25052:419;;;:::o;25477:::-;25643:4;25681:2;25670:9;25666:18;25658:26;;25730:9;25724:4;25720:20;25716:1;25705:9;25701:17;25694:47;25758:131;25884:4;25758:131;:::i;:::-;25750:139;;25477:419;;;:::o;25902:::-;26068:4;26106:2;26095:9;26091:18;26083:26;;26155:9;26149:4;26145:20;26141:1;26130:9;26126:17;26119:47;26183:131;26309:4;26183:131;:::i;:::-;26175:139;;25902:419;;;:::o;26327:222::-;26420:4;26458:2;26447:9;26443:18;26435:26;;26471:71;26539:1;26528:9;26524:17;26515:6;26471:71;:::i;:::-;26327:222;;;;:::o;26555:129::-;26589:6;26616:20;;:::i;:::-;26606:30;;26645:33;26673:4;26665:6;26645:33;:::i;:::-;26555:129;;;:::o;26690:75::-;26723:6;26756:2;26750:9;26740:19;;26690:75;:::o;26771:307::-;26832:4;26922:18;26914:6;26911:30;26908:56;;;26944:18;;:::i;:::-;26908:56;26982:29;27004:6;26982:29;:::i;:::-;26974:37;;27066:4;27060;27056:15;27048:23;;26771:307;;;:::o;27084:98::-;27135:6;27169:5;27163:12;27153:22;;27084:98;;;:::o;27188:99::-;27240:6;27274:5;27268:12;27258:22;;27188:99;;;:::o;27293:168::-;27376:11;27410:6;27405:3;27398:19;27450:4;27445:3;27441:14;27426:29;;27293:168;;;;:::o;27467:169::-;27551:11;27585:6;27580:3;27573:19;27625:4;27620:3;27616:14;27601:29;;27467:169;;;;:::o;27642:148::-;27744:11;27781:3;27766:18;;27642:148;;;;:::o;27796:305::-;27836:3;27855:20;27873:1;27855:20;:::i;:::-;27850:25;;27889:20;27907:1;27889:20;:::i;:::-;27884:25;;28043:1;27975:66;27971:74;27968:1;27965:81;27962:107;;;28049:18;;:::i;:::-;27962:107;28093:1;28090;28086:9;28079:16;;27796:305;;;;:::o;28107:185::-;28147:1;28164:20;28182:1;28164:20;:::i;:::-;28159:25;;28198:20;28216:1;28198:20;:::i;:::-;28193:25;;28237:1;28227:35;;28242:18;;:::i;:::-;28227:35;28284:1;28281;28277:9;28272:14;;28107:185;;;;:::o;28298:348::-;28338:7;28361:20;28379:1;28361:20;:::i;:::-;28356:25;;28395:20;28413:1;28395:20;:::i;:::-;28390:25;;28583:1;28515:66;28511:74;28508:1;28505:81;28500:1;28493:9;28486:17;28482:105;28479:131;;;28590:18;;:::i;:::-;28479:131;28638:1;28635;28631:9;28620:20;;28298:348;;;;:::o;28652:191::-;28692:4;28712:20;28730:1;28712:20;:::i;:::-;28707:25;;28746:20;28764:1;28746:20;:::i;:::-;28741:25;;28785:1;28782;28779:8;28776:34;;;28790:18;;:::i;:::-;28776:34;28835:1;28832;28828:9;28820:17;;28652:191;;;;:::o;28849:96::-;28886:7;28915:24;28933:5;28915:24;:::i;:::-;28904:35;;28849:96;;;:::o;28951:90::-;28985:7;29028:5;29021:13;29014:21;29003:32;;28951:90;;;:::o;29047:77::-;29084:7;29113:5;29102:16;;29047:77;;;:::o;29130:149::-;29166:7;29206:66;29199:5;29195:78;29184:89;;29130:149;;;:::o;29285:126::-;29322:7;29362:42;29355:5;29351:54;29340:65;;29285:126;;;:::o;29417:77::-;29454:7;29483:5;29472:16;;29417:77;;;:::o;29500:154::-;29584:6;29579:3;29574;29561:30;29646:1;29637:6;29632:3;29628:16;29621:27;29500:154;;;:::o;29660:307::-;29728:1;29738:113;29752:6;29749:1;29746:13;29738:113;;;29837:1;29832:3;29828:11;29822:18;29818:1;29813:3;29809:11;29802:39;29774:2;29771:1;29767:10;29762:15;;29738:113;;;29869:6;29866:1;29863:13;29860:101;;;29949:1;29940:6;29935:3;29931:16;29924:27;29860:101;29709:258;29660:307;;;:::o;29973:171::-;30012:3;30035:24;30053:5;30035:24;:::i;:::-;30026:33;;30081:4;30074:5;30071:15;30068:41;;;30089:18;;:::i;:::-;30068:41;30136:1;30129:5;30125:13;30118:20;;29973:171;;;:::o;30150:320::-;30194:6;30231:1;30225:4;30221:12;30211:22;;30278:1;30272:4;30268:12;30299:18;30289:81;;30355:4;30347:6;30343:17;30333:27;;30289:81;30417:2;30409:6;30406:14;30386:18;30383:38;30380:84;;;30436:18;;:::i;:::-;30380:84;30201:269;30150:320;;;:::o;30476:281::-;30559:27;30581:4;30559:27;:::i;:::-;30551:6;30547:40;30689:6;30677:10;30674:22;30653:18;30641:10;30638:34;30635:62;30632:88;;;30700:18;;:::i;:::-;30632:88;30740:10;30736:2;30729:22;30519:238;30476:281;;:::o;30763:233::-;30802:3;30825:24;30843:5;30825:24;:::i;:::-;30816:33;;30871:66;30864:5;30861:77;30858:103;;;30941:18;;:::i;:::-;30858:103;30988:1;30981:5;30977:13;30970:20;;30763:233;;;:::o;31002:180::-;31050:77;31047:1;31040:88;31147:4;31144:1;31137:15;31171:4;31168:1;31161:15;31188:180;31236:77;31233:1;31226:88;31333:4;31330:1;31323:15;31357:4;31354:1;31347:15;31374:180;31422:77;31419:1;31412:88;31519:4;31516:1;31509:15;31543:4;31540:1;31533:15;31560:180;31608:77;31605:1;31598:88;31705:4;31702:1;31695:15;31729:4;31726:1;31719:15;31746:180;31794:77;31791:1;31784:88;31891:4;31888:1;31881:15;31915:4;31912:1;31905:15;31932:180;31980:77;31977:1;31970:88;32077:4;32074:1;32067:15;32101:4;32098:1;32091:15;32118:117;32227:1;32224;32217:12;32241:117;32350:1;32347;32340:12;32364:117;32473:1;32470;32463:12;32487:117;32596:1;32593;32586:12;32610:102;32651:6;32702:2;32698:7;32693:2;32686:5;32682:14;32678:28;32668:38;;32610:102;;;:::o;32718:182::-;32858:34;32854:1;32846:6;32842:14;32835:58;32718:182;:::o;32906:170::-;33046:22;33042:1;33034:6;33030:14;33023:46;32906:170;:::o;33082:232::-;33222:34;33218:1;33210:6;33206:14;33199:58;33291:15;33286:2;33278:6;33274:15;33267:40;33082:232;:::o;33320:230::-;33460:34;33456:1;33448:6;33444:14;33437:58;33529:13;33524:2;33516:6;33512:15;33505:38;33320:230;:::o;33556:237::-;33696:34;33692:1;33684:6;33680:14;33673:58;33765:20;33760:2;33752:6;33748:15;33741:45;33556:237;:::o;33799:224::-;33939:34;33935:1;33927:6;33923:14;33916:58;34008:7;34003:2;33995:6;33991:15;33984:32;33799:224;:::o;34029:178::-;34169:30;34165:1;34157:6;34153:14;34146:54;34029:178;:::o;34213:223::-;34353:34;34349:1;34341:6;34337:14;34330:58;34422:6;34417:2;34409:6;34405:15;34398:31;34213:223;:::o;34442:175::-;34582:27;34578:1;34570:6;34566:14;34559:51;34442:175;:::o;34623:228::-;34763:34;34759:1;34751:6;34747:14;34740:58;34832:11;34827:2;34819:6;34815:15;34808:36;34623:228;:::o;34857:182::-;34997:34;34993:1;34985:6;34981:14;34974:58;34857:182;:::o;35045:174::-;35185:26;35181:1;35173:6;35169:14;35162:50;35045:174;:::o;35225:220::-;35365:34;35361:1;35353:6;35349:14;35342:58;35434:3;35429:2;35421:6;35417:15;35410:28;35225:220;:::o;35451:248::-;35591:34;35587:1;35579:6;35575:14;35568:58;35660:31;35655:2;35647:6;35643:15;35636:56;35451:248;:::o;35705:231::-;35845:34;35841:1;35833:6;35829:14;35822:58;35914:14;35909:2;35901:6;35897:15;35890:39;35705:231;:::o;35942:173::-;36082:25;36078:1;36070:6;36066:14;36059:49;35942:173;:::o;36121:161::-;36261:13;36257:1;36249:6;36245:14;36238:37;36121:161;:::o;36288:167::-;36428:19;36424:1;36416:6;36412:14;36405:43;36288:167;:::o;36461:234::-;36601:34;36597:1;36589:6;36585:14;36578:58;36670:17;36665:2;36657:6;36653:15;36646:42;36461:234;:::o;36701:122::-;36774:24;36792:5;36774:24;:::i;:::-;36767:5;36764:35;36754:63;;36813:1;36810;36803:12;36754:63;36701:122;:::o;36829:116::-;36899:21;36914:5;36899:21;:::i;:::-;36892:5;36889:32;36879:60;;36935:1;36932;36925:12;36879:60;36829:116;:::o;36951:122::-;37024:24;37042:5;37024:24;:::i;:::-;37017:5;37014:35;37004:63;;37063:1;37060;37053:12;37004:63;36951:122;:::o;37079:120::-;37151:23;37168:5;37151:23;:::i;:::-;37144:5;37141:34;37131:62;;37189:1;37186;37179:12;37131:62;37079:120;:::o;37205:122::-;37278:24;37296:5;37278:24;:::i;:::-;37271:5;37268:35;37258:63;;37317:1;37314;37307:12;37258:63;37205:122;:::o

Swarm Source

ipfs://681336ac9567fe80fb37e8c00192bda893cf9f62eea6345b4922f34910462b3c
Loading...
Loading
Loading...
Loading
[ 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.