ETH Price: $3,485.92 (+3.69%)
Gas: 1 Gwei

Token

CRYPTONINJA WORLD (CNW)
 

Overview

Max Total Supply

11,017 CNW

Holders

3,118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 CNW
0xb17dcb47afbd56d1395afbe684536796af1877c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

-CryptoNinja World- by STARTJPN

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CRYPTONINJAWORLD

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/utils/StorageSlot.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: solidity-bits/contracts/Popcount.sol


/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */

pragma solidity ^0.8.0;

library Popcount {
    uint256 private constant m1 = 0x5555555555555555555555555555555555555555555555555555555555555555;
    uint256 private constant m2 = 0x3333333333333333333333333333333333333333333333333333333333333333;
    uint256 private constant m4 = 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f;
    uint256 private constant h01 = 0x0101010101010101010101010101010101010101010101010101010101010101;

    function popcount256A(uint256 x) internal pure returns (uint256 count) {
        unchecked{
            for (count=0; x!=0; count++)
                x &= x - 1;
        }
    }

    function popcount256B(uint256 x) internal pure returns (uint256) {
        if (x == type(uint256).max) {
            return 256;
        }
        unchecked {
            x -= (x >> 1) & m1;             //put count of each 2 bits into those 2 bits
            x = (x & m2) + ((x >> 2) & m2); //put count of each 4 bits into those 4 bits 
            x = (x + (x >> 4)) & m4;        //put count of each 8 bits into those 8 bits 
            x = (x * h01) >> 248;  //returns left 8 bits of x + (x<<8) + (x<<16) + (x<<24) + ... 
        }
        return x;
    }
}
// File: solidity-bits/contracts/BitScan.sol


/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */

pragma solidity ^0.8.0;


library BitScan {
    uint256 constant private DEBRUIJN_256 = 0x818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff;
    bytes constant private LOOKUP_TABLE_256 = hex"0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8";

    /**
        @dev Isolate the least significant set bit.
     */ 
    function isolateLS1B256(uint256 bb) pure internal returns (uint256) {
        require(bb > 0);
        unchecked {
            return bb & (0 - bb);
        }
    } 

    /**
        @dev Isolate the most significant set bit.
     */ 
    function isolateMS1B256(uint256 bb) pure internal returns (uint256) {
        require(bb > 0);
        unchecked {
            bb |= bb >> 128;
            bb |= bb >> 64;
            bb |= bb >> 32;
            bb |= bb >> 16;
            bb |= bb >> 8;
            bb |= bb >> 4;
            bb |= bb >> 2;
            bb |= bb >> 1;
            
            return (bb >> 1) + 1;
        }
    } 

    /**
        @dev Find the index of the lest significant set bit. (trailing zero count)
     */ 
    function bitScanForward256(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return uint8(LOOKUP_TABLE_256[(isolateLS1B256(bb) * DEBRUIJN_256) >> 248]);
        }   
    }

    /**
        @dev Find the index of the most significant set bit.
     */ 
    function bitScanReverse256(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return 255 - uint8(LOOKUP_TABLE_256[((isolateMS1B256(bb) * DEBRUIJN_256) >> 248)]);
        }   
    }

    function log2(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return uint8(LOOKUP_TABLE_256[(isolateMS1B256(bb) * DEBRUIJN_256) >> 248]);
        } 
    }
}

// File: solidity-bits/contracts/BitMaps.sol


/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */
pragma solidity ^0.8.0;



/**
 * @dev This Library is a modified version of Openzeppelin's BitMaps library with extra features.
 *
 * 1. Functions of finding the index of the closest set bit from a given index are added.
 *    The indexing of each bucket is modifed to count from the MSB to the LSB instead of from the LSB to the MSB.
 *    The modification of indexing makes finding the closest previous set bit more efficient in gas usage.
 * 2. Setting and unsetting the bitmap consecutively.
 * 3. Accounting number of set bits within a given range.   
 *
*/

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
 * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 */

library BitMaps {
    using BitScan for uint256;
    uint256 private constant MASK_INDEX_ZERO = (1 << 255);
    uint256 private constant MASK_FULL = type(uint256).max;

    struct BitMap {
        mapping(uint256 => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(
        BitMap storage bitmap,
        uint256 index,
        bool value
    ) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }


    /**
     * @dev Consecutively sets `amount` of bits starting from the bit at `startIndex`.
     */    
    function setBatch(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                bitmap._data[bucket] |= MASK_FULL << (256 - amount) >> bucketStartIndex;
            } else {
                bitmap._data[bucket] |= MASK_FULL >> bucketStartIndex;
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    bitmap._data[bucket] = MASK_FULL;
                    amount -= 256;
                    bucket++;
                }

                bitmap._data[bucket] |= MASK_FULL << (256 - amount);
            }
        }
    }


    /**
     * @dev Consecutively unsets `amount` of bits starting from the bit at `startIndex`.
     */    
    function unsetBatch(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount) >> bucketStartIndex);
            } else {
                bitmap._data[bucket] &= ~(MASK_FULL >> bucketStartIndex);
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    bitmap._data[bucket] = 0;
                    amount -= 256;
                    bucket++;
                }

                bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount));
            }
        }
    }

    /**
     * @dev Returns number of set bits within a range.
     */
    function popcountA(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal view returns(uint256 count) {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                count +=  Popcount.popcount256A(
                    bitmap._data[bucket] & (MASK_FULL << (256 - amount) >> bucketStartIndex)
                );
            } else {
                count += Popcount.popcount256A(
                    bitmap._data[bucket] & (MASK_FULL >> bucketStartIndex)
                );
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    count += Popcount.popcount256A(bitmap._data[bucket]);
                    amount -= 256;
                    bucket++;
                }
                count += Popcount.popcount256A(
                    bitmap._data[bucket] & (MASK_FULL << (256 - amount))
                );
            }
        }
    }

    /**
     * @dev Returns number of set bits within a range.
     */
    function popcountB(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal view returns(uint256 count) {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                count +=  Popcount.popcount256B(
                    bitmap._data[bucket] & (MASK_FULL << (256 - amount) >> bucketStartIndex)
                );
            } else {
                count += Popcount.popcount256B(
                    bitmap._data[bucket] & (MASK_FULL >> bucketStartIndex)
                );
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    count += Popcount.popcount256B(bitmap._data[bucket]);
                    amount -= 256;
                    bucket++;
                }
                count += Popcount.popcount256B(
                    bitmap._data[bucket] & (MASK_FULL << (256 - amount))
                );
            }
        }
    }


    /**
     * @dev Find the closest index of the set bit before `index`.
     */
    function scanForward(BitMap storage bitmap, uint256 index) internal view returns (uint256 setBitIndex) {
        uint256 bucket = index >> 8;

        // index within the bucket
        uint256 bucketIndex = (index & 0xff);

        // load a bitboard from the bitmap.
        uint256 bb = bitmap._data[bucket];

        // offset the bitboard to scan from `bucketIndex`.
        bb = bb >> (0xff ^ bucketIndex); // bb >> (255 - bucketIndex)
        
        if(bb > 0) {
            unchecked {
                setBitIndex = (bucket << 8) | (bucketIndex -  bb.bitScanForward256());    
            }
        } else {
            while(true) {
                require(bucket > 0, "BitMaps: The set bit before the index doesn't exist.");
                unchecked {
                    bucket--;
                }
                // No offset. Always scan from the least significiant bit now.
                bb = bitmap._data[bucket];
                
                if(bb > 0) {
                    unchecked {
                        setBitIndex = (bucket << 8) | (255 -  bb.bitScanForward256());
                        break;
                    }
                } 
            }
        }
    }

    function getBucket(BitMap storage bitmap, uint256 bucket) internal view returns (uint256) {
        return bitmap._data[bucket];
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721psi/contracts/ERC721Psi.sol


/**
  ______ _____   _____ ______ ___  __ _  _  _ 
 |  ____|  __ \ / ____|____  |__ \/_ | || || |
 | |__  | |__) | |        / /   ) || | \| |/ |
 |  __| |  _  /| |       / /   / / | |\_   _/ 
 | |____| | \ \| |____  / /   / /_ | |  | |   
 |______|_|  \_\\_____|/_/   |____||_|  |_|   

 - github: https://github.com/estarriolvetch/ERC721Psi
 - npm: https://www.npmjs.com/package/erc721psi
                                          
 */

pragma solidity ^0.8.0;











contract ERC721Psi is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    using BitMaps for BitMaps.BitMap;

    BitMaps.BitMap private _batchHead;

    string private _name;
    string private _symbol;

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

    mapping(uint256 => address) private _tokenApprovals;
    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_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal pure virtual returns (uint256) {
        // It will become modifiable in the future versions
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        return _currentIndex - _startTokenId();
    }


    /**
     * @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 (uint) 
    {
        require(owner != address(0), "ERC721Psi: balance query for the zero address");

        uint count;
        for( uint i = _startTokenId(); i < _nextTokenId(); ++i ){
            if(_exists(i)){
                if( owner == ownerOf(i)){
                    ++count;
                }
            }
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        (address owner, ) = _ownerAndBatchHeadOf(tokenId);
        return owner;
    }

    function _ownerAndBatchHeadOf(uint256 tokenId) internal view returns (address owner, uint256 tokenIdBatchHead){
        require(_exists(tokenId), "ERC721Psi: owner query for nonexistent token");
        tokenIdBatchHead = _getBatchHead(tokenId);
        owner = _owners[tokenIdBatchHead];
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Psi: URI query for nonexistent token");

        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 overriden 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 = ownerOf(tokenId);
        require(to != owner, "ERC721Psi: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721Psi: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721Psi: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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),
            "ERC721Psi: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _nextTokenId() && _startTokenId() <= tokenId;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, "");
    }

    
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        uint256 nextTokenId = _nextTokenId();
        _mint(to, quantity);
        require(
            _checkOnERC721Received(address(0), to, nextTokenId, quantity, _data),
            "ERC721Psi: transfer to non ERC721Receiver implementer"
        );
    }


    function _mint(
        address to,
        uint256 quantity
    ) internal virtual {
        uint256 nextTokenId = _nextTokenId();
        
        require(quantity > 0, "ERC721Psi: quantity must be greater 0");
        require(to != address(0), "ERC721Psi: mint to the zero address");
        
        _beforeTokenTransfers(address(0), to, nextTokenId, quantity);
        _currentIndex += quantity;
        _owners[nextTokenId] = to;
        _batchHead.set(nextTokenId);
        _afterTokenTransfers(address(0), to, nextTokenId, quantity);
        
        // Emit events
        for(uint256 tokenId=nextTokenId; tokenId < nextTokenId + quantity; tokenId++){
            emit Transfer(address(0), to, 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 {
        (address owner, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf(tokenId);

        require(
            owner == from,
            "ERC721Psi: transfer of token that is not own"
        );
        require(to != address(0), "ERC721Psi: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);   

        uint256 subsequentTokenId = tokenId + 1;

        if(!_batchHead.get(subsequentTokenId) &&  
            subsequentTokenId < _nextTokenId()
        ) {
            _owners[subsequentTokenId] = from;
            _batchHead.set(subsequentTokenId);
        }

        _owners[tokenId] = to;
        if(tokenId != tokenIdBatchHead) {
            _batchHead.set(tokenId);
        }

        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    /**
     * @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 startTokenId uint256 the first ID of the tokens to be transferred
     * @param quantity uint256 amount of the tokens to be transfered.
     * @param _data bytes optional data to send along with the call
     * @return r bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity,
        bytes memory _data
    ) private returns (bool r) {
        if (to.isContract()) {
            r = true;
            for(uint256 tokenId = startTokenId; tokenId < startTokenId + quantity; tokenId++){
                try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                    r = r && retval == IERC721Receiver.onERC721Received.selector;
                } catch (bytes memory reason) {
                    if (reason.length == 0) {
                        revert("ERC721Psi: transfer to non ERC721Receiver implementer");
                    } else {
                        assembly {
                            revert(add(32, reason), mload(reason))
                        }
                    }
                }
            }
            return r;
        } else {
            return true;
        }
    }

    function _getBatchHead(uint256 tokenId) internal view returns (uint256 tokenIdBatchHead) {
        tokenIdBatchHead = _batchHead.scanForward(tokenId); 
    }


    function totalSupply() public virtual view returns (uint256) {
        return _totalMinted();
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * This function is compatiable with ERC721AQueryable.
     */
    function tokensOfOwner(address owner) external view virtual returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                if (_exists(i)) {
                    if (ownerOf(i) == owner) {
                        tokenIds[tokenIdsIdx++] = i;
                    }
                }
            }
            return tokenIds;   
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: erc721psi/contracts/extension/ERC721PsiBurnable.sol


/**
  ______ _____   _____ ______ ___  __ _  _  _ 
 |  ____|  __ \ / ____|____  |__ \/_ | || || |
 | |__  | |__) | |        / /   ) || | \| |/ |
 |  __| |  _  /| |       / /   / / | |\_   _/ 
 | |____| | \ \| |____  / /   / /_ | |  | |   
 |______|_|  \_\\_____|/_/   |____||_|  |_|   
                                              
                                            
 */
pragma solidity ^0.8.0;




abstract contract ERC721PsiBurnable is ERC721Psi {
    using BitMaps for BitMaps.BitMap;
    BitMaps.BitMap private _burnedToken;

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address from = ownerOf(tokenId);
        _beforeTokenTransfers(from, address(0), tokenId, 1);
        _burnedToken.set(tokenId);
        
        emit Transfer(from, address(0), tokenId);

        _afterTokenTransfers(from, address(0), tokenId, 1);
    }

    /**
     * @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 override virtual returns (bool){
        if(_burnedToken.get(tokenId)) {
            return false;
        } 
        return super._exists(tokenId);
    }

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

    /**
     * @dev Returns number of token burned.
     */
    function _burned() internal view returns (uint256 burned){
        uint256 startBucket = _startTokenId() >> 8;
        uint256 lastBucket = (_nextTokenId() >> 8) + 1;

        for(uint256 i=startBucket; i < lastBucket; i++) {
            uint256 bucket = _burnedToken.getBucket(i);
            burned += _popcount(bucket);
        }
    }

    /**
     * @dev Returns number of set bits.
     */
    function _popcount(uint256 x) private pure returns (uint256 count) {
        unchecked{
            for (count=0; x!=0; count++)
                x &= x - 1;
        }
    }
}
// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: EXO/NEW/EXO.sol

//SPDX-License-Identifier: MIT
pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}






pragma solidity ^0.8.7;


abstract contract MerkleProof {
    bytes32 internal _wlMerkleRoot;
    bytes32 internal _pbMerkleRoot;
    mapping(uint256 => bytes32) internal _alMerkleRoot;
    uint256 public phaseId;

    function _setWlMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _wlMerkleRoot = merkleRoot_;
    }
    function isWhitelisted(address address_, uint256 wlCount, bytes32[] memory proof_) public view returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(address_, wlCount));
        for (uint256 i = 0; i < proof_.length; i++) {
            _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf));
        }
        return _leaf == _wlMerkleRoot;
    }

    function _setAlMerkleRootWithId(uint256 _phaseId,bytes32 merkleRoot_) internal virtual {
        _alMerkleRoot[_phaseId] = merkleRoot_;
    }

    function _setAlMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _alMerkleRoot[phaseId] = merkleRoot_;
    }

    function isAllowlisted(address address_,uint256 _phaseId, bytes32[] memory proof_) public view returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(address_));
        for (uint256 i = 0; i < proof_.length; i++) {
            _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf));
        }
        return _leaf == _alMerkleRoot[_phaseId];
    }

    function _setPlMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _pbMerkleRoot = merkleRoot_;
    }

    function isPubliclisted(address address_, bytes32[] memory proof_) public view returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(address_));
        for (uint256 i = 0; i < proof_.length; i++) {
            _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf));
        }
        return _leaf == _pbMerkleRoot;
    }

}

pragma solidity ^0.8.9;
abstract contract Operable is Context {
    mapping(address => bool) _operators;
    modifier onlyOperator() {
        _checkOperatorRole(_msgSender());
        _;
    }
    function isOperator(address _operator) public view returns (bool) {
        return _operators[_operator];
    }
    function _grantOperatorRole(address _candidate) internal {
        require(
            !_operators[_candidate],
            string(
                abi.encodePacked(
                    "account ",
                    Strings.toHexString(uint160(_msgSender()), 20),
                    " is already has an operator role"
                )
            )
        );
        _operators[_candidate] = true;
    }
    function _revokeOperatorRole(address _candidate) internal {
        _checkOperatorRole(_candidate);
        delete _operators[_candidate];
    }
    function _checkOperatorRole(address _operator) internal view {
        require(
            _operators[_operator],
            string(
                abi.encodePacked(
                    "account ",
                    Strings.toHexString(uint160(_msgSender()), 20),
                    " is not an operator"
                )
            )
        );
    }
}

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);
    bool public operatorFilteringEnabled = true;

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}


pragma solidity ^0.8.13;
/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}





pragma solidity >=0.7.0 <0.9.0;

interface IContractAllowListProxy {
    function isAllowed(address _transferer, uint256 _level)
        external
        view
        returns (bool);
}

pragma solidity >=0.8.0;

/// @title IERC721RestrictApprove
/// @dev Approve抑制機能付きコントラクトのインターフェース
/// @author Lavulite

interface IERC721RestrictApprove {
    /**
     * @dev CALレベルが変更された場合のイベント
     */
    event CalLevelChanged(address indexed operator, uint256 indexed level);
    
    /**
     * @dev LocalContractAllowListnに追加された場合のイベント
     */
    event LocalCalAdded(address indexed operator, address indexed transferer);

    /**
     * @dev LocalContractAllowListnに削除された場合のイベント
     */
    event LocalCalRemoved(address indexed operator, address indexed transferer);

    /**
     * @dev CALを利用する場合のCALのレベルを設定する。レベルが高いほど、許可されるコントラクトの範囲が狭い。
     */
    function setCALLevel(uint256 level) external;

    /**
     * @dev CALのアドレスをセットする。
     */
    function setCAL(address calAddress) external;

    /**
     * @dev CALのリストに無い独自の許可アドレスを追加する場合、こちらにアドレスを記載する。
     */
    function addLocalContractAllowList(address transferer) external;

    /**
     * @dev CALのリストにある独自の許可アドレスを削除する場合、こちらにアドレスを記載する。
     */
    function removeLocalContractAllowList(address transferer) external;

    /**
     * @dev CALのリストにある独自の許可アドレスの一覧を取得する。
     */
    function getLocalContractAllowList() external view returns(address[] memory);

}

pragma solidity >=0.8.0;

/// @title AntiScam機能付きERC721A
/// @dev Readmeを見てください。

abstract contract ERC721RestrictApprove is ERC721PsiBurnable, IERC721RestrictApprove {
    using EnumerableSet for EnumerableSet.AddressSet;

    IContractAllowListProxy public CAL;
    EnumerableSet.AddressSet localAllowedAddresses;

    modifier onlyHolder(uint256 tokenId) {
        require(
            msg.sender == ownerOf(tokenId),
            "RestrictApprove: operation is only holder."
        );
        _;
    }

    /*//////////////////////////////////////////////////////////////
    変数
    //////////////////////////////////////////////////////////////*/
    bool public enableRestrict = true;

    // token lock
    mapping(uint256 => uint256) public tokenCALLevel;

    // wallet lock
    mapping(address => uint256) public walletCALLevel;

    // contract lock
    uint256 public CALLevel = 1;

    /*///////////////////////////////////////////////////////////////
    Approve抑制機能ロジック
    //////////////////////////////////////////////////////////////*/
    function _addLocalContractAllowList(address transferer)
        internal
        virtual
    {
        localAllowedAddresses.add(transferer);
        emit LocalCalAdded(msg.sender, transferer);
    }

    function _removeLocalContractAllowList(address transferer)
        internal
        virtual
    {
        localAllowedAddresses.remove(transferer);
        emit LocalCalRemoved(msg.sender, transferer);
    }

    function _getLocalContractAllowList()
        internal
        virtual
        view
        returns(address[] memory)
    {
        return localAllowedAddresses.values();
    }

    function _isLocalAllowed(address transferer)
        internal
        view
        virtual
        returns (bool)
    {
        return localAllowedAddresses.contains(transferer);
    }

    function _isAllowed(address transferer)
        internal
        view
        virtual
        returns (bool)
    {
        return _isAllowed(msg.sender, transferer);
    }

    function _isAllowed(uint256 tokenId, address transferer)
        internal
        view
        virtual
        returns (bool)
    {
        uint256 level = _getCALLevel(msg.sender, tokenId);
        return _isAllowed(transferer, level);
    }

    function _isAllowed(address holder, address transferer)
        internal
        view
        virtual
        returns (bool)
    {
        uint256 level = _getCALLevel(holder);
        return _isAllowed(transferer, level);
    }

    function _isAllowed(address transferer, uint256 level)
        internal
        view
        virtual
        returns (bool)
    {
        if (!enableRestrict) {
            return true;
        }

        return _isLocalAllowed(transferer) || CAL.isAllowed(transferer, level);
    }

    function _getCALLevel(address holder, uint256 tokenId)
        internal
        view
        virtual
        returns (uint256)
    {
        if (tokenCALLevel[tokenId] > 0) {
            return tokenCALLevel[tokenId];
        }

        return _getCALLevel(holder);
    }

    function _getCALLevel(address holder)
        internal
        view
        virtual
        returns (uint256)
    {
        if (walletCALLevel[holder] > 0) {
            return walletCALLevel[holder];
        }

        return CALLevel;
    }

    function _setCAL(address _cal) internal virtual {
        CAL = IContractAllowListProxy(_cal);
    }

    function _deleteTokenCALLevel(uint256 tokenId) internal virtual {
        delete tokenCALLevel[tokenId];
    }

    function setTokenCALLevel(uint256 tokenId, uint256 level)
        external
        virtual
        onlyHolder(tokenId)
    {
        tokenCALLevel[tokenId] = level;
    }

    function setWalletCALLevel(uint256 level)
        external
        virtual
    {
        walletCALLevel[msg.sender] = level;
    }

    /*///////////////////////////////////////////////////////////////
                              OVERRIDES
    //////////////////////////////////////////////////////////////*/

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        if (_isAllowed(owner, operator) == false) {
            return false;
        }
        return super.isApprovedForAll(owner, operator);
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(
            _isAllowed(operator) || approved == false,
            "RestrictApprove: Can not approve locked token"
        );
        super.setApprovalForAll(operator, approved);
    }

    function _beforeApprove(address to, uint256 tokenId)
        internal
        virtual
    {
        if (to != address(0)) {
            require(_isAllowed(tokenId, to), "RestrictApprove: The contract is not allowed.");
        }
    }

    function approve(address to, uint256 tokenId)
        public
        virtual
        override
    {
        _beforeApprove(to, tokenId);
        super.approve(to, tokenId);
    }

    function _afterTokenTransfers(
        address from,
        address, /*to*/
        uint256 startTokenId,
        uint256 /*quantity*/
    ) internal virtual override {
        // 転送やバーンにおいては、常にstartTokenIdは TokenIDそのものとなります。
        if (from != address(0)) {
            // CALレベルをデフォルトに戻す。
            _deleteTokenCALLevel(startTokenId);
        }
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC721RestrictApprove).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}


pragma solidity ^0.8.7;
/*

╭━━━┳━╮╱╭┳╮╭╮╭╮╭━━━┳━━━━┳━━━┳━━━┳━━━━╮╭┳━━━┳━╮╱╭╮
┃╭━╮┃┃╰╮┃┃┃┃┃┃┃┃╭━╮┃╭╮╭╮┃╭━╮┃╭━╮┃╭╮╭╮┃┃┃╭━╮┃┃╰╮┃┃
┃┃╱╰┫╭╮╰╯┃┃┃┃┃by╰━━╋╯┃┃╰┫┃╱┃┃╰━╯┣╯┃┃╰╯┃┃╰━╯┃╭╮╰╯┃
┃┃╱╭┫┃╰╮┃┃╰╯╰╯┃╰━━╮┃╱┃┃╱┃╰━╯┃╭╮╭╯╱┃┃╭╮┃┃╭━━┫┃╰╮┃┃
┃╰━╯┃┃╱┃┃┣╮╭╮╭╯┃╰━╯┃╱┃┃╱┃╭━╮┃┃┃╰╮╱┃┃┃╰╯┃┃╱╱┃┃╱┃┃┃
╰━━━┻╯╱╰━╯╰╯╰╯╱╰━━━╯╱╰╯╱╰╯╱╰┻╯╰━╯╱╰╯╰━━┻╯╱╱╰╯╱╰━╯
-CNW by STARTJPN-
*/
contract CRYPTONINJAWORLD is Ownable, ERC721RestrictApprove, ReentrancyGuard, MerkleProof, ERC2981, DefaultOperatorFilterer,Operable {
  //Project Settings
  uint256 public wlMintPrice = 0.001 ether;
  uint256 public alMintPrice = 0.001 ether;
  uint256 public psMintPrice = 0.002 ether;
  mapping(uint256 => uint256) public maxMintsPerAL;
  uint256 public maxMintsPerPS = 2;
  uint256 public maxMintsPerALOT = 1;
  uint256 public maxMintsPerPSOT = 1;
  uint256 public maxSupply = 22222;
  uint256 public mintable = 11111;
  uint256 public revealed = 0;
  uint256 public nowPhaseWl;
  uint256 public nowPhaseAl;
  uint256 public nowPhasePs;
  uint256 public maxReveal;
  uint256 public cntBlock;// = 604800;

  address public deployer;
  address internal _withdrawWallet;

  //URI
  string internal hiddenURI;
  string internal _baseTokenURI;
  string public _baseExtension = ".json";

  //flags
  bool public isWlSaleEnabled;
  bool public isAlSaleEnabled;
  bool public isPublicSaleEnabled;
  bool public isPublicSaleMPEnabled;
  bool internal hodlTimSys = false;

  //mint records.
  mapping(uint256 => mapping(address => uint256)) internal _wlMinted;
  mapping(uint256 => mapping(address => uint256)) internal _alMinted;
  mapping(uint256 => mapping(address => uint256)) internal _psMinted;
  mapping(uint256 => uint256) internal _updateAt;
  mapping(uint256 => int256) internal _lockTim;
  constructor (
    address _royaltyReceiver,
    uint96 _royaltyFraction
  ) ERC721Psi ("CRYPTONINJA WORLD","CNW") {
    deployer = msg.sender;
    _grantOperatorRole(deployer);
    _grantOperatorRole(_royaltyReceiver);
    _setDefaultRoyalty(_royaltyReceiver,_royaltyFraction);
    //CAL initialization
    setCALLevel(1);
    _setCAL(0xF2A78c73ffBAB6ECc3548Acc54B546ace279312E);//Ethereum mainnet proxy
    _addLocalContractAllowList(0x1E0049783F008A0085193E00003D00cd54003c71);//OpenSea
    _addLocalContractAllowList(0x4feE7B061C97C9c496b01DbcE9CDb10c02f0a0Be);//Rarible
    _addLocalContractAllowList(0x000000000000Ad05Ccc4F10045630fb830B95127);//BLUR
    operatorFilteringEnabled = false;
    maxMintsPerAL[0] = 1;
    maxMintsPerAL[1] = 1;
    maxMintsPerAL[2] = 2;
  }
  //start from 1.adjust.
  function _startTokenId() internal pure virtual override returns (uint256) {
        return 1;
  }
  //set Default Royalty._feeNumerator 500 = 5% Royalty
  function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOperator {
      _setDefaultRoyalty(_receiver, _feeNumerator);
  }
  //for ERC2981
  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721RestrictApprove, ERC2981) returns (bool) {
    return super.supportsInterface(interfaceId);
  }
  //for ERC2981 Opensea
  function contractURI() external view virtual returns (string memory) {
        return _formatContractURI();
  }
  //make contractURI
  function _formatContractURI() internal view returns (string memory) {
    (address receiver, uint256 royaltyFraction) = royaltyInfo(0,_feeDenominator());//tokenid=0
    return string(
      abi.encodePacked(
        "data:application/json;base64,",
        Base64.encode(
          bytes(
            abi.encodePacked(
                '{"seller_fee_basis_points":', Strings.toString(royaltyFraction),
                ', "fee_recipient":"', Strings.toHexString(uint256(uint160(receiver)), 20), '"}'
            )
          )
        )
      )
    );
  }
  function setDeployer(address _deployer) external virtual onlyOperator {
    deployer = _deployer;
  }
  //set maxSupply.only owner.
  function setMaxSupply(uint256 _maxSupply) external virtual onlyOperator {
    require(totalSupply() <= _maxSupply, "Lower than _currentIndex.");
    maxSupply = _maxSupply;
  }
  function setMintable(uint256 _mintable) external virtual onlyOperator {
    require(totalSupply() <= _mintable, "Lower than _currentIndex.");
    mintable = _mintable;
  }
    // GET phaseId.
  function getPhaseId() external view virtual returns (uint256){
    return phaseId;
  }
    // SET phaseId.
  function setPhaseId(uint256 _phaseId) external virtual onlyOperator {
    phaseId = _phaseId;
  }
    // SET phaseId.
  function setPhaseIdWithReset(uint256 _phaseId) external virtual onlyOperator {
    phaseId = _phaseId;
    nowPhaseAl += 1;
  }
  //now.phase
  function setNowPhase(uint256 _nowPhase) external virtual onlyOperator {
    nowPhaseWl = _nowPhase;
    nowPhaseAl = _nowPhase;
    nowPhasePs = _nowPhase;
  }
  function setNowPhaseWl(uint256 _nowPhaseWl) external virtual onlyOperator {
    nowPhaseWl = _nowPhaseWl;
  }
  function setNowPhaseAl(uint256 _nowPhaseAl) external virtual onlyOperator {
    nowPhaseAl = _nowPhaseAl;
  }
  function setNowPhasePs(uint256 _nowPhasePs) external virtual onlyOperator {
    nowPhasePs = _nowPhasePs;
  }
  // SET PRICES.
  //WL.Price
  function setWlPrice(uint256 newPrice) external virtual onlyOperator {
    wlMintPrice = newPrice;
  }
  //AL.Price
  function setAlPrice(uint256 newPrice) external virtual onlyOperator {
    alMintPrice = newPrice;
  }
  //PS.Price
  function setPsPrice(uint256 newPrice) external virtual onlyOperator {
    psMintPrice = newPrice;
  }
  //set reveal.only owner.
  function setReveal(uint256 newRevealNum) external virtual onlyOperator {
    revealed = newRevealNum;
  }
  //return _isRevealed()
  function _isRevealed(uint256 _tokenId) internal view virtual returns (bool){
    return _tokenId <= revealed;
  }
  // GET MINTED COUNT.
  function wlMinted(address _address) external view virtual returns (uint256){
    return _wlMinted[nowPhaseWl][_address];
  }
  function alMinted(address _address) external view virtual returns (uint256){
    return _alMinted[nowPhaseAl][_address];
  }
  function alIdMinted(uint256 _nowPhaseAl,address _address) external view virtual returns (uint256){
    return _alMinted[_nowPhaseAl][_address];
  }
  function psMinted(address _address) external view virtual returns (uint256){
    return _psMinted[nowPhasePs][_address];
  }
  // SET MAX MINTS.
  //get.AL.mxmints
  function getAlMaxMints() external view virtual returns (uint256){
    return maxMintsPerAL[phaseId];
  }
  //set.AL.mxmints
  function setAlMaxMints(uint256 _phaseId,uint256 _max) external virtual onlyOperator {
    maxMintsPerAL[_phaseId] = _max;
  }
  //PS.mxmints
  function setPsMaxMints(uint256 _max) external virtual onlyOperator {
    maxMintsPerPS = _max;
  }
  // SET SALES ENABLE.
  //WL.SaleEnable
  function setWhitelistSaleEnable(bool bool_) external virtual onlyOperator {
    isWlSaleEnabled = bool_;
  }
  //AL.SaleEnable
  function setAllowlistSaleEnable(bool bool_) external virtual onlyOperator {
    isAlSaleEnabled = bool_;
  }
  //PS.SaleEnable
  function setPublicSaleEnable(bool bool_) external virtual onlyOperator {
    isPublicSaleEnabled = bool_;
  }
  //PSMP.SaleEnable
  function setPublicSaleMPEnable(bool bool_) external virtual onlyOperator {
    isPublicSaleMPEnabled = bool_;
  }
  // SET MERKLE ROOT.
  function setMerkleRootWl(bytes32 merkleRoot_) external virtual onlyOperator {
    _setWlMerkleRoot(merkleRoot_);
  }
  function setMerkleRootAlWithId(uint256 _phaseId,bytes32 merkleRoot_) external virtual onlyOperator {
    _setAlMerkleRootWithId(_phaseId,merkleRoot_);
  }
  function setMerkleRootPl(bytes32 merkleRoot_) external virtual onlyOperator {
    _setPlMerkleRoot(merkleRoot_);
  }
  //set HiddenBaseURI.only owner.
  function setHiddenURI(string memory uri_) external virtual onlyOperator {
    hiddenURI = uri_;
  }
  //return _currentIndex
  function getCurrentIndex() external view virtual returns (uint256){
    return _nextTokenId() -1;
  }

  /** @dev set BaseURI at after reveal. only owner. */
  function setBaseURI(string memory uri_) external virtual onlyOperator {
    _baseTokenURI = uri_;
  }


  function setBaseExtension(string memory _newBaseExtension) external onlyOperator
  {
    _baseExtension = _newBaseExtension;
  }

  /** @dev BaseURI.internal. */
  function _currentBaseURI() internal view returns (string memory){
    return _baseTokenURI;
  }


  function getTokenTim(uint256 _tokenId) external view  virtual returns (uint256) {
    require(_exists(_tokenId), "URI query for nonexistent token");
      return _updateAt[_tokenId];
  }

  function getTokenTimId(uint256 _tokenId) internal view  virtual returns (int256) {
    require(_exists(_tokenId), "URI query for nonexistent token");
    int256 revealId = (int256(block.timestamp)-int256(_updateAt[_tokenId])) / int256(cntBlock);
    if (revealId >= int256(maxReveal)){
        revealId = int256(maxReveal);
    }
    return revealId;
  }
  /** @dev fixrevId. */
  function fixToken(uint256 _tokenId) external virtual {
    require(_exists(_tokenId), "URI query for nonexistent token");
    require(ownerOf(_tokenId) == msg.sender, "isnt owner token");
    if(_isRevealed(_tokenId)){
        if(hodlTimSys){
            int256 revealId = getTokenTimId(_tokenId);
            _lockTim[_tokenId] = revealId;
        }
    }
  }
  /** @dev unfixrevId. */
  function unfixToken(uint256 _tokenId) external virtual {
    require(_exists(_tokenId), "URI query for nonexistent token");
    require(ownerOf(_tokenId) == msg.sender, "isnt owner token");
    _lockTim[_tokenId] = 0;
  }
  // SET MAX Rev.
  function setmaxReveal(uint256 _max) external virtual onlyOwner {
    maxReveal = _max;
  }
  // SET Cntable.
  function setcntBlock(uint256 _cnt) external virtual onlyOwner {
    cntBlock = _cnt;
  }
  function _beforeTokenTransfers(address from,address to,uint256 startTokenId,uint256 quantity) internal override {
    _updateAt[startTokenId] = block.timestamp;
    uint256 updatedIndex = startTokenId;
    uint256 end = updatedIndex + quantity;
    do {
      _updateAt[updatedIndex++] = block.timestamp;
    } while (updatedIndex < end);
    super._beforeTokenTransfers(from, to, startTokenId, quantity);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "URI query for nonexistent token");
    if(_isRevealed(_tokenId)){
        if(_lockTim[_tokenId] > 0){
            return string(abi.encodePacked(_currentBaseURI(), Strings.toString(uint256(_lockTim[_tokenId])) ,"/", Strings.toString((_tokenId)), _baseExtension));
        }
        if(hodlTimSys){
            int256 revealId = getTokenTimId(_tokenId);
            return string(abi.encodePacked(_currentBaseURI(), Strings.toString(uint256(revealId)) ,"/", Strings.toString((_tokenId)), _baseExtension));
        }
        return string(abi.encodePacked(_currentBaseURI(), Strings.toString(_tokenId), _baseExtension));
    }
    return hiddenURI;
  }
  /** @dev owner mint.transfer to _address.only owner. */
  function ownerMint(uint256 _amount, address _address) external virtual onlyOperator { 
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");
    _safeMint(_address, _amount);
  }
  //WL mint.
  function whitelistMint(uint256 _amount, uint256 wlcount, bytes32[] memory proof_) external payable virtual nonReentrant {
    require(isWlSaleEnabled, "whitelistMint is Paused");
    require(isWhitelisted(msg.sender, wlcount, proof_), "You are not whitelisted!");
    require(wlcount > 0, "You have no WL!");
    require(wlcount >= _amount, "whitelistMint: Over max mints per wallet");
    require(wlcount >= _wlMinted[nowPhaseWl][msg.sender] + _amount, "You have no whitelistMint left");
    require(msg.value == wlMintPrice * _amount, "ETH value is not correct");
    require((_amount + totalSupply()) <= (mintable), "No more NFTs");
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");

    _wlMinted[nowPhaseWl][msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }
  
    //AL mint.
  function allowlistMint(uint256 _amount, bytes32[] memory proof_) external payable virtual nonReentrant {
    require(isAlSaleEnabled, "allowlistMint is Paused");
    require(isAllowlisted(msg.sender,phaseId, proof_), "You are not whitelisted!");
    require(maxMintsPerALOT >= _amount, "allowlistMint: Over max mints per one time");
    require(maxMintsPerAL[phaseId] >= _amount, "allowlistMint: Over max mints per wallet");
    require(maxMintsPerAL[phaseId] >= _alMinted[nowPhaseAl][msg.sender] + _amount, "You have no whitelistMint left");
    require(msg.value == alMintPrice * _amount, "ETH value is not correct");
    require((_amount + totalSupply()) <= (mintable), "No more NFTs");
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");
    _alMinted[nowPhaseAl][msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }

  //Public mint.
  function publicMint(uint256 _amount) external payable virtual nonReentrant {
    require(isPublicSaleEnabled, "publicMint is Paused");
    require(maxMintsPerPSOT >= _amount, "publicMint: Over max mints per one time");
    require(maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet");
    require(maxMintsPerPS >= _psMinted[nowPhasePs][msg.sender] + _amount, "You have no publicMint left");
    require(msg.value == psMintPrice * _amount, "ETH value is not correct");
    require((_amount + totalSupply()) <= (mintable), "No more NFTs");
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");
    _psMinted[nowPhasePs][msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }

  //Public mint.
  function publicMintMP(uint256 _amount, bytes32[] memory proof_) external payable virtual nonReentrant {
    require(isPublicSaleMPEnabled, "publicMint is Paused");
    require(isPubliclisted(msg.sender, proof_), "You are not whitelisted!");
    require(maxMintsPerPSOT >= _amount, "publicMint: Over max mints per one time");
    require(maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet");
    require(maxMintsPerPS >= _psMinted[nowPhasePs][msg.sender] + _amount, "You have no publicMint left");
    require(msg.value == psMintPrice * _amount, "ETH value is not correct");
    require((_amount + totalSupply()) <= (mintable), "No more NFTs");
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");
    _psMinted[nowPhasePs][msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }

  //burn
  function burn(uint256 tokenId) external virtual {
    _burn(tokenId);
  }

  /** @dev receive. */
  function receiveToDeb() external payable virtual nonReentrant {
      require(msg.value > 0, "ETH value is not correct");
  }
  /** @dev widraw ETH from this contract.only operator. */
  function withdraw() external payable virtual onlyOperator nonReentrant{
    uint256 _ethBalance = address(this).balance;
    bool os;
    if(_withdrawWallet != address(0)){//if _withdrawWallet has.
        (os, ) = payable(_withdrawWallet).call{value: (_ethBalance)}("");
    }else{
        (os, ) = payable(owner()).call{value: (_ethBalance)}("");
    }
    require(os, "Failed to withdraw Ether");
  }
  //return wallet owned tokenids.
  function walletOfOwner(address _address) external view virtual returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_address);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    //search from all tonkenid. so spend high gas values.attention.
    uint256 tokenindex = 0;
    for (uint256 i = _startTokenId(); i < (_nextTokenId() -1); i++) {
      if(_address == this.tryOwnerOf(i)) tokenIds[tokenindex++] = i;
    }
    return tokenIds;
  }

  //try catch vaersion ownerOf. support burned tokenid.
  function tryOwnerOf(uint256 tokenId) external view  virtual returns (address) {
    try this.ownerOf(tokenId) returns (address _address) {
      return(_address);
    } catch {
        return (address(0));//return 0x0 if error.
    }
  }
    //OPENSEA.OPERATORFilterer.START
    /**
     * @notice Set the state of the OpenSea operator filter
     * @param value Flag indicating if the operator filter should be applied to transfers and approvals
     */
    function setOperatorFilteringEnabled(bool value) external onlyOperator {
        operatorFilteringEnabled = value;
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
    //OPENSEA.OPERATORFilterer.END

    /*///////////////////////////////////////////////////////////////
                    OVERRIDES ERC721RestrictApprove
    //////////////////////////////////////////////////////////////*/
    function addLocalContractAllowList(address transferer)
        external
        override
        onlyOperator
    {
        _addLocalContractAllowList(transferer);
    }

    function removeLocalContractAllowList(address transferer)
        external
        override
        onlyOperator
    {
        _removeLocalContractAllowList(transferer);
    }

    function getLocalContractAllowList()
        external
        override
        view
        returns(address[] memory)
    {
        return _getLocalContractAllowList();
    }

    function setCALLevel(uint256 level) public override onlyOperator {
        CALLevel = level;
    }

    function setCAL(address calAddress) external override onlyOperator {
        _setCAL(calAddress);
    }

    /**
        @dev Operable.Role.ADD
     */
    function grantOperatorRole(address _candidate) external onlyOwner {
        _grantOperatorRole(_candidate);
    }
    /**
        @dev Operable.Role.REMOVE
     */
    function revokeOperatorRole(address _candidate) external onlyOwner {
        _revokeOperatorRole(_candidate);
    }
    
}
//CODE.BY.FRICKLIK

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"uint256","name":"level","type":"uint256"}],"name":"CalLevelChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"transferer","type":"address"}],"name":"LocalCalAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"transferer","type":"address"}],"name":"LocalCalRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"CAL","outputs":[{"internalType":"contract IContractAllowListProxy","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CALLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transferer","type":"address"}],"name":"addLocalContractAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nowPhaseAl","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"alIdMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"alMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cntBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableRestrict","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"fixToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAlMaxMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLocalContractAllowList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPhaseId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenTim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"grantOperatorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAlSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isAllowlisted","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":[{"internalType":"address","name":"_operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleMPEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isPubliclisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"wlCount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxMintsPerAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerALOT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPSOT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReveal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nowPhaseAl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nowPhasePs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nowPhaseWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"publicMintMP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"receiveToDeb","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"transferer","type":"address"}],"name":"removeLocalContractAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"revokeOperatorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setAlMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setAlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setAllowlistSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"calAddress","type":"address"}],"name":"setCAL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_deployer","type":"address"}],"name":"setDeployer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRootAlWithId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRootPl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRootWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintable","type":"uint256"}],"name":"setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nowPhase","type":"uint256"}],"name":"setNowPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nowPhaseAl","type":"uint256"}],"name":"setNowPhaseAl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nowPhasePs","type":"uint256"}],"name":"setNowPhasePs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nowPhaseWl","type":"uint256"}],"name":"setNowPhaseWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"}],"name":"setPhaseId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"}],"name":"setPhaseIdWithReset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setPsMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSaleMPEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRevealNum","type":"uint256"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setTokenCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setWalletCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cnt","type":"uint256"}],"name":"setcntBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setmaxReveal","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenCALLevel","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tryOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unfixToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletCALLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"wlcount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

600c8054600160ff199182168117909255600f829055601780549091168217905566038d7ea4c680006019819055601a5566071afd498d0000601b556002601d55601e819055601f556156ce602055612b67602155600060225560c06040526005608090815264173539b7b760d91b60a052602c906200008090826200098e565b50602d805460ff60201b191690553480156200009b57600080fd5b5060405162006b4838038062006b48833981016040819052620000be9162000a5a565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601181526020017010d496541513d3925392904815d3d49311607a1b81525060405180604001604052806003815260200162434e5760e81b815250620001356200012f620003ee60201b60201c565b620003f2565b60026200014383826200098e565b5060036200015282826200098e565b506001600555505060016010556daaeb6d7670e522a718067333cd4e3b15620002a4578015620001f257604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001d357600080fd5b505af1158015620001e8573d6000803e3d6000fd5b50505050620002a4565b6001600160a01b03821615620002435760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001b8565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200028a57600080fd5b505af11580156200029f573d6000803e3d6000fd5b505050505b5050602880546001600160a01b03191633908117909155620002c69062000442565b620002d18262000442565b620002dd8282620004f1565b620002e96001620005f2565b600980546001600160a01b03191673f2a78c73ffbab6ecc3548acc54b546ace279312e1790556200032e731e0049783f008a0085193e00003d00cd54003c7162000602565b6200034d734fee7b061c97c9c496b01dbce9cdb10c02f0a0be62000602565b620003666dad05ccc4f10045630fb830b9512762000602565b50506017805460ff19169055601c60205260017fb9c6de81004e18dedadca3e5eabaab449ca91dff6f58efc9461da635fe77f8498190557f6de76108811faf2f94afbe5ac6c98e8393206cd093932de1fbfd61bbeec43a0255600260008190527ff5b6e61a0c14f171ef1c86f003900ef0305e4159fff3317e4fb7c351f2050c875562000c32565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811660009081526018602052604090205460ff161562000481335b6001600160a01b031660146200065760201b6200357b1760201c565b60405160200162000493919062000ad5565b60405160208183030381529060405290620004cc5760405162461bcd60e51b8152600401620004c3919062000b2e565b60405180910390fd5b506001600160a01b03166000908152601860205260409020805460ff19166001179055565b6127106001600160601b0382161115620005615760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620004c3565b6001600160a01b038216620005b95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620004c3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601555565b620005fd3362000819565b600f55565b6200061d81600a6200088660201b620037161790919060201c565b506040516001600160a01b0382169033907fbd0af1fe0a2c1c7bb340c17a284a291138979c8eeb797e176dbd1c415199af3c90600090a350565b606060006200066883600262000b79565b6200067590600262000b93565b6001600160401b038111156200068f576200068f620008e9565b6040519080825280601f01601f191660200182016040528015620006ba576020820181803683370190505b509050600360fc1b81600081518110620006d857620006d862000ba9565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106200070a576200070a62000ba9565b60200101906001600160f81b031916908160001a90535060006200073084600262000b79565b6200073d90600162000b93565b90505b6001811115620007bf576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000775576200077562000ba9565b1a60f81b8282815181106200078e576200078e62000ba9565b60200101906001600160f81b031916908160001a90535060049490941c93620007b78162000bbf565b905062000740565b508315620008105760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620004c3565b90505b92915050565b6001600160a01b03811660009081526018602052604090205460ff16620008403362000465565b60405160200162000852919062000bd9565b60405160208183030381529060405290620008825760405162461bcd60e51b8152600401620004c3919062000b2e565b5050565b600062000810836001600160a01b0384166000818152600183016020526040812054620008e05750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000813565b50600062000813565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200091457607f821691505b6020821081036200093557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200098957600081815260208120601f850160051c81016020861015620009645750805b601f850160051c820191505b81811015620009855782815560010162000970565b5050505b505050565b81516001600160401b03811115620009aa57620009aa620008e9565b620009c281620009bb8454620008ff565b846200093b565b602080601f831160018114620009fa5760008415620009e15750858301515b600019600386901b1c1916600185901b17855562000985565b600085815260208120601f198616915b8281101562000a2b5788860151825594840194600190910190840162000a0a565b508582101562000a4a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000806040838503121562000a6e57600080fd5b82516001600160a01b038116811462000a8657600080fd5b60208401519092506001600160601b038116811462000aa457600080fd5b809150509250929050565b60005b8381101562000acc57818101518382015260200162000ab2565b50506000910152565b67030b1b1b7bab73a160c51b81526000825162000afa81600885016020870162000aaf565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b602081526000825180602084015262000b4f81604085016020870162000aaf565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000813576200081362000b63565b8082018082111562000813576200081362000b63565b634e487b7160e01b600052603260045260246000fd5b60008162000bd15762000bd162000b63565b506000190190565b67030b1b1b7bab73a160c51b81526000825162000bfe81600885016020870162000aaf565b7f206973206e6f7420616e206f70657261746f72000000000000000000000000006008939091019283015250601b01919050565b615f068062000c426000396000f3fe6080604052600436106106b75760003560e01c80637558be9e1161037a578063b9a2e655116101d1578063d5f3948811610102578063ea7baab1116100a0578063fb796e6c1161007a578063fb796e6c14611410578063fdf03cd51461142a578063fe8b456e1461144a578063ff7682121461146a57600080fd5b8063ea7baab1146113ba578063f2fde38b146113d0578063faf7a826146113f057600080fd5b8063df58a1b5116100dc578063df58a1b51461134f578063e0669c5514611365578063e8a3d48514611385578063e985e9c51461139a57600080fd5b8063d5f39488146112ef578063d78be71c1461130f578063da3ef23f1461132f57600080fd5b8063c87b56dd1161016f578063d4e45c1411610149578063d4e45c141461128e578063d52c57e0146112a3578063d5abeb01146112c3578063d5dcfbc6146112d957600080fd5b8063c87b56dd1461122e578063cd8d03211461124e578063d2de022f1461126e57600080fd5b8063c3e53683116101ab578063c3e53683146111bc578063c3faf724146111db578063c4be5b59146111fb578063c50c81861461120e57600080fd5b8063b9a2e6551461115c578063bbaac02f1461117c578063bf509b9d1461119c57600080fd5b806391e4bac8116102ab578063a35c23ad11610249578063b31391cb11610223578063b31391cb146110cb578063b435d236146110f8578063b7c0b8e81461111c578063b88d4fde1461113c57600080fd5b8063a35c23ad1461105e578063abb61da51461108b578063b219f7d7146110ab57600080fd5b806396214735116102855780639621473514610ff65780639da9778c14611016578063a22cb4651461101e578063a355fd291461103e57600080fd5b806391e4bac814610f7d578063942958f414610f9d57806395d89b4114610fe157600080fd5b8063830b3a64116103185780638c5668be116102f25780638c5668be14610edc5780638da5cb5b14610efc5780638dd07d0f14610f1a5780638e37326a14610f3a57600080fd5b8063830b3a6414610e86578063830f821114610ea65780638462151c14610ebc57600080fd5b80637bc9200e116103545780637bc9200e14610e1d5780637c3dc17314610e305780637fc69f5a14610e50578063813779ef14610e6657600080fd5b80637558be9e14610d995780637672287e14610db957806378a9238014610dd957600080fd5b80632ef370251161052e578063518302271161045f5780636fa0cf5f116103fd578063715018a6116103d7578063715018a614610d2e5780637254d90c14610d4357806372b44d7114610d5957806374dfc98214610d7957600080fd5b80636fa0cf5f14610cce578063709411d214610cee57806370a0823114610d0e57600080fd5b80635bc401a7116104395780635bc401a714610c355780636352211e14610c555780636d70f7ae14610c755780636f8b44b014610cae57600080fd5b80635183022714610be957806355f804b314610bff57806358303b1014610c1f57600080fd5b806342842e0e116104cc57806343e625fa116104a657806343e625fa14610b86578063449d0f1014610ba75780634bf365df14610bbd5780634f3db34614610bd357600080fd5b806342842e0e14610b1957806342966c6814610b39578063438b630014610b5957600080fd5b80633ccfd60b116105085780633ccfd60b14610ab95780634009920d14610ac157806341f4343414610ae157806342454db914610b0357600080fd5b80632ef3702514610a6657806330e7ed3514610a79578063396e8f5314610a9957600080fd5b80631a09cfe2116106085780632672c902116105a65780632a55205a116105805780632a55205a146109e85780632c4e9fc614610a275780632db1154414610a3d5780632e9901f414610a5057600080fd5b80632672c90214610993578063267fe989146109a857806327ac0c58146109c857600080fd5b806323945d49116105e257806323945d49146109065780632398f8431461092657806323b872dd14610953578063258bc0ef1461097357600080fd5b80631a09cfe21461087f5780631a8b83571461089557806321434421146108c257600080fd5b806307265389116106755780630d9005ae1161064f5780630d9005ae1461080d5780630f4345e21461083057806318160ddd14610850578063189f3de11461086557600080fd5b8063072653891461079b578063081812fc146107b5578063095ea7b3146107ed57600080fd5b80623f332f146106bc57806301ffc9a7146106e7578063025e332e1461071757806303c0f48c1461073957806304634d8d1461075957806306fdde0314610779575b600080fd5b3480156106c857600080fd5b506106d161148a565b6040516106de919061504b565b60405180910390f35b3480156106f357600080fd5b506107076107023660046150ae565b611499565b60405190151581526020016106de565b34801561072357600080fd5b506107376107323660046150e0565b6114aa565b005b34801561074557600080fd5b506107376107543660046150fd565b6114d4565b34801561076557600080fd5b50610737610774366004615116565b6114e2565b34801561078557600080fd5b5061078e6114f9565b6040516106de91906151ab565b3480156107a757600080fd5b50600c546107079060ff1681565b3480156107c157600080fd5b506107d56107d03660046150fd565b61158b565b6040516001600160a01b0390911681526020016106de565b3480156107f957600080fd5b506107376108083660046151be565b61161b565b34801561081957600080fd5b506108226116f4565b6040519081526020016106de565b34801561083c57600080fd5b5061073761084b3660046150fd565b61170b565b34801561085c57600080fd5b50610822611719565b34801561087157600080fd5b50602d546107079060ff1681565b34801561088b57600080fd5b50610822601d5481565b3480156108a157600080fd5b506108226108b03660046150fd565b601c6020526000908152604090205481565b3480156108ce57600080fd5b506108226108dd3660046150e0565b6024546000908152602f602090815260408083206001600160a01b039094168352929052205490565b34801561091257600080fd5b506107376109213660046150fd565b61172b565b34801561093257600080fd5b506108226109413660046150e0565b600e6020526000908152604090205481565b34801561095f57600080fd5b5061073761096e3660046151ea565b611743565b34801561097f57600080fd5b5061073761098e3660046150fd565b61182c565b34801561099f57600080fd5b5061078e61183e565b3480156109b457600080fd5b506107376109c33660046150fd565b6118cc565b3480156109d457600080fd5b506107376109e33660046150e0565b6118f7565b3480156109f457600080fd5b50610a08610a0336600461522b565b611908565b604080516001600160a01b0390931683526020830191909152016106de565b348015610a3357600080fd5b5061082260195481565b610737610a4b3660046150fd565b6119b4565b348015610a5c57600080fd5b50610822601e5481565b610737610a74366004615312565b611ba0565b348015610a8557600080fd5b50610737610a943660046150fd565b611db3565b348015610aa557600080fd5b506009546107d5906001600160a01b031681565b610737611dc1565b348015610acd57600080fd5b50602d546107079062010000900460ff1681565b348015610aed57600080fd5b506107d56daaeb6d7670e522a718067333cd4e81565b348015610b0f57600080fd5b50610822601b5481565b348015610b2557600080fd5b50610737610b343660046151ea565b611f01565b348015610b4557600080fd5b50610737610b543660046150fd565b611fdf565b348015610b6557600080fd5b50610b79610b743660046150e0565b611fe8565b6040516106de9190615358565b348015610b9257600080fd5b50602d54610707906301000000900460ff1681565b348015610bb357600080fd5b50610822601a5481565b348015610bc957600080fd5b5061082260215481565b348015610bdf57600080fd5b50610822600f5481565b348015610bf557600080fd5b5061082260225481565b348015610c0b57600080fd5b50610737610c1a3660046153e7565b61211d565b348015610c2b57600080fd5b5061082260145481565b348015610c4157600080fd5b50610707610c5036600461542f565b612132565b348015610c6157600080fd5b506107d5610c703660046150fd565b612251565b348015610c8157600080fd5b50610707610c903660046150e0565b6001600160a01b031660009081526018602052604090205460ff1690565b348015610cba57600080fd5b50610737610cc93660046150fd565b612265565b348015610cda57600080fd5b50610737610ce936600461522b565b6122c6565b348015610cfa57600080fd5b50610737610d093660046150fd565b6122e1565b348015610d1a57600080fd5b50610822610d293660046150e0565b61236a565b348015610d3a57600080fd5b50610737612439565b348015610d4f57600080fd5b5061082260275481565b348015610d6557600080fd5b50610737610d743660046150e0565b61244b565b348015610d8557600080fd5b50610822610d943660046150fd565b61245d565b348015610da557600080fd5b50610737610db43660046150fd565b612497565b348015610dc557600080fd5b50610737610dd4366004615476565b6124a4565b348015610de557600080fd5b50610822610df43660046150e0565b6023546000908152602e602090815260408083206001600160a01b039094168352929052205490565b610737610e2b366004615312565b6124c7565b348015610e3c57600080fd5b50610737610e4b36600461522b565b61276c565b348015610e5c57600080fd5b5061082260265481565b348015610e7257600080fd5b50610737610e813660046150fd565b6127fc565b348015610e9257600080fd5b506107d5610ea13660046150fd565b61280a565b348015610eb257600080fd5b5061082260235481565b348015610ec857600080fd5b50610b79610ed73660046150e0565b612876565b348015610ee857600080fd5b50610737610ef73660046150fd565b61293c565b348015610f0857600080fd5b506000546001600160a01b03166107d5565b348015610f2657600080fd5b50610737610f353660046150fd565b6129f6565b348015610f4657600080fd5b50610822610f55366004615493565b6000918252602f602090815260408084206001600160a01b0393909316845291905290205490565b348015610f8957600080fd5b50610737610f983660046150fd565b612a04565b348015610fa957600080fd5b50610822610fb83660046150e0565b60255460009081526030602090815260408083206001600160a01b039094168352929052205490565b348015610fed57600080fd5b5061078e612a65565b34801561100257600080fd5b506107376110113660046150e0565b612a74565b610737612a9f565b34801561102a57600080fd5b506107376110393660046154b8565b612ad1565b34801561104a57600080fd5b50610737611059366004615476565b612ba5565b34801561106a57600080fd5b506107376110793660046150fd565b336000908152600e6020526040902055565b34801561109757600080fd5b506107376110a6366004615476565b612bca565b3480156110b757600080fd5b506107376110c63660046150e0565b612bf1565b3480156110d757600080fd5b506108226110e63660046150fd565b600d6020526000908152604090205481565b34801561110457600080fd5b506014546000908152601c6020526040902054610822565b34801561112857600080fd5b50610737611137366004615476565b612c02565b34801561114857600080fd5b506107376111573660046154e6565b612c1e565b34801561116857600080fd5b5061073761117736600461522b565b612d0a565b34801561118857600080fd5b506107376111973660046153e7565b612d25565b3480156111a857600080fd5b506107376111b73660046150fd565b612d3a565b3480156111c857600080fd5b50602d5461070790610100900460ff1681565b3480156111e757600080fd5b506107376111f6366004615476565b612d48565b610737611209366004615565565b612d64565b34801561121a57600080fd5b506107376112293660046150fd565b612fd7565b34801561123a57600080fd5b5061078e6112493660046150fd565b612fe5565b34801561125a57600080fd5b506107376112693660046150fd565b6131a3565b34801561127a57600080fd5b506107076112893660046155b4565b6131b5565b34801561129a57600080fd5b50601454610822565b3480156112af57600080fd5b506107376112be366004615493565b6132e2565b3480156112cf57600080fd5b5061082260205481565b3480156112e557600080fd5b5061082260245481565b3480156112fb57600080fd5b506028546107d5906001600160a01b031681565b34801561131b57600080fd5b5061073761132a3660046150fd565b613328565b34801561133b57600080fd5b5061073761134a3660046153e7565b613336565b34801561135b57600080fd5b5061082260255481565b34801561137157600080fd5b506107376113803660046150fd565b61334b565b34801561139157600080fd5b5061078e613359565b3480156113a657600080fd5b506107076113b53660046155f6565b613363565b3480156113c657600080fd5b50610822601f5481565b3480156113dc57600080fd5b506107376113eb3660046150e0565b6133b1565b3480156113fc57600080fd5b5061070761140b3660046155b4565b613427565b34801561141c57600080fd5b506017546107079060ff1681565b34801561143657600080fd5b506107376114453660046150fd565b61354e565b34801561145657600080fd5b506107376114653660046150fd565b61355c565b34801561147657600080fd5b506107376114853660046150e0565b613569565b606061149461372b565b905090565b60006114a482613737565b92915050565b6114b33361375c565b600980546001600160a01b0319166001600160a01b03831617905550565b50565b6114dd3361375c565b602455565b6114eb3361375c565b6114f582826137ca565b5050565b60606002805461150890615624565b80601f016020809104026020016040519081016040528092919081815260200182805461153490615624565b80156115815780601f1061155657610100808354040283529160200191611581565b820191906000526020600020905b81548152906001019060200180831161156457829003601f168201915b5050505050905090565b6000611596826138c7565b6115ff5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1580159061163c575060175460ff165b156116e557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bd919061565e565b6116e557604051633b79c77360e21b81526001600160a01b03821660048201526024016115f6565b6116ef83836138fd565b505050565b6000600161170160055490565b6114949190615691565b6117143361375c565b600f55565b6000611723613911565b611701613973565b6117343361375c565b60238190556024819055602555565b826daaeb6d7670e522a718067333cd4e3b15801590611764575060175460ff165b1561181b57336001600160a01b0382160361178957611784848484613984565b611826565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fc919061565e565b61181b57604051633b79c77360e21b81523360048201526024016115f6565b611826848484613984565b50505050565b6118353361375c565b6114d181601155565b602c805461184b90615624565b80601f016020809104026020016040519081016040528092919081815260200182805461187790615624565b80156118c45780601f10611899576101008083540402835291602001916118c4565b820191906000526020600020905b8154815290600101906020018083116118a757829003601f168201915b505050505081565b6118d53361375c565b806014819055506001602460008282546118ef91906156a4565b909155505050565b6118ff6139b5565b6114d181613a0f565b60008281526016602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161197d5750604080518082019091526015546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061199c906001600160601b0316876156b7565b6119a691906156e4565b915196919550909350505050565b6119bc613a97565b602d5462010000900460ff16611a0b5760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b60448201526064016115f6565b80601f541015611a2d5760405162461bcd60e51b81526004016115f6906156f8565b80601d541015611a4f5760405162461bcd60e51b81526004016115f69061573f565b6025546000908152603060209081526040808320338452909152902054611a779082906156a4565b601d541015611ac85760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c656674000000000060448201526064016115f6565b80601b54611ad691906156b7565b3414611af45760405162461bcd60e51b81526004016115f690615784565b602154611aff611719565b611b0990836156a4565b1115611b275760405162461bcd60e51b81526004016115f6906157bb565b602054611b32611719565b611b3c90836156a4565b1115611b5a5760405162461bcd60e51b81526004016115f6906157bb565b602554600090815260306020908152604080832033845290915281208054839290611b869084906156a4565b90915550611b9690503382613af0565b6114d16001601055565b611ba8613a97565b602d546301000000900460ff16611bf85760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b60448201526064016115f6565b611c023382612132565b611c1e5760405162461bcd60e51b81526004016115f6906157e1565b81601f541015611c405760405162461bcd60e51b81526004016115f6906156f8565b81601d541015611c625760405162461bcd60e51b81526004016115f69061573f565b6025546000908152603060209081526040808320338452909152902054611c8a9083906156a4565b601d541015611cdb5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c656674000000000060448201526064016115f6565b81601b54611ce991906156b7565b3414611d075760405162461bcd60e51b81526004016115f690615784565b602154611d12611719565b611d1c90846156a4565b1115611d3a5760405162461bcd60e51b81526004016115f6906157bb565b602054611d45611719565b611d4f90846156a4565b1115611d6d5760405162461bcd60e51b81526004016115f6906157bb565b602554600090815260306020908152604080832033845290915281208054849290611d999084906156a4565b90915550611da990503383613af0565b6114f56001601055565b611dbc3361375c565b602555565b611dca3361375c565b611dd2613a97565b60295447906000906001600160a01b031615611e45576029546040516001600160a01b03909116908390600081818185875af1925050503d8060008114611e35576040519150601f19603f3d011682016040523d82523d6000602084013e611e3a565b606091505b505080915050611ea6565b6000546001600160a01b03166001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ea0565b606091505b50909150505b80611ef35760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016115f6565b5050611eff6001601055565b565b826daaeb6d7670e522a718067333cd4e3b15801590611f22575060175460ff165b15611fd457336001600160a01b03821603611f4257611784848484613b0a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611f91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb5919061565e565b611fd457604051633b79c77360e21b81523360048201526024016115f6565b611826848484613b0a565b6114d181613b25565b60606000611ff58361236a565b90506000816001600160401b038111156120115761201161524d565b60405190808252806020026020018201604052801561203a578160200160208202803683370190505b509050600060015b600161204d60055490565b6120579190615691565b811015612113576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa15801561209a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120be9190615818565b6001600160a01b0316866001600160a01b031603612101578083836120e281615835565b9450815181106120f4576120f461584e565b6020026020010181815250505b8061210b81615835565b915050612042565b5090949350505050565b6121263361375c565b602b6114f582826158aa565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015612245578381815181106121875761218761584e565b602002602001015182106121e5578381815181106121a7576121a761584e565b6020026020010151826040516020016121ca929190918252602082015260400190565b60405160208183030381529060405280519060200120612231565b818482815181106121f8576121f861584e565b602002602001015160405160200161221a929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061223d81615835565b91505061216c565b50601254149392505050565b60008061225d83613b91565b509392505050565b61226e3361375c565b80612277611719565b11156122c15760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b60448201526064016115f6565b602055565b6122cf3361375c565b60009182526013602052604090912055565b6122ea816138c7565b6123065760405162461bcd60e51b81526004016115f690615969565b3361231082612251565b6001600160a01b0316146123595760405162461bcd60e51b815260206004820152601060248201526f34b9b73a1037bbb732b9103a37b5b2b760811b60448201526064016115f6565b600090815260326020526040812055565b60006001600160a01b0382166123d85760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b60648201526084016115f6565b600060015b600554811015612432576123f0816138c7565b15612422576123fe81612251565b6001600160a01b0316846001600160a01b0316036124225761241f82615835565b91505b61242b81615835565b90506123dd565b5092915050565b6124416139b5565b611eff6000613c28565b6124543361375c565b6114d181613c78565b6000612468826138c7565b6124845760405162461bcd60e51b81526004016115f690615969565b5060009081526031602052604090205490565b61249f6139b5565b602655565b6124ad3361375c565b602d80549115156101000261ff0019909216919091179055565b6124cf613a97565b602d54610100900460ff166125265760405162461bcd60e51b815260206004820152601760248201527f616c6c6f776c6973744d696e742069732050617573656400000000000000000060448201526064016115f6565b61253333601454836131b5565b61254f5760405162461bcd60e51b81526004016115f6906157e1565b81601e5410156125b45760405162461bcd60e51b815260206004820152602a60248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e747320706560448201526972206f6e652074696d6560b01b60648201526084016115f6565b6014546000908152601c60205260409020548211156126265760405162461bcd60e51b815260206004820152602860248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b60648201526084016115f6565b6024546000908152602f6020908152604080832033845290915290205461264e9083906156a4565b6014546000908152601c602052604090205410156126ae5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c656674000060448201526064016115f6565b81601a546126bc91906156b7565b34146126da5760405162461bcd60e51b81526004016115f690615784565b6021546126e5611719565b6126ef90846156a4565b111561270d5760405162461bcd60e51b81526004016115f6906157bb565b602054612718611719565b61272290846156a4565b11156127405760405162461bcd60e51b81526004016115f6906157bb565b6024546000908152602f6020908152604080832033845290915281208054849290611d999084906156a4565b8161277681612251565b6001600160a01b0316336001600160a01b0316146127e95760405162461bcd60e51b815260206004820152602a60248201527f5265737472696374417070726f76653a206f7065726174696f6e206973206f6e604482015269363c903437b63232b91760b11b60648201526084016115f6565b506000918252600d602052604090912055565b6128053361375c565b601d55565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa925050508015612865575060408051601f3d908101601f1916820190925261286291810190615818565b60015b6114a457506000919050565b919050565b60606000806128848461236a565b90506000816001600160401b038111156128a0576128a061524d565b6040519080825280602002602001820160405280156128c9578160200160208202803683370190505b50905060015b828414612933576128df816138c7565b1561292b57856001600160a01b03166128f782612251565b6001600160a01b03160361292b578082858060010196508151811061291e5761291e61584e565b6020026020010181815250505b6001016128cf565b50949350505050565b612945816138c7565b6129615760405162461bcd60e51b81526004016115f690615969565b3361296b82612251565b6001600160a01b0316146129b45760405162461bcd60e51b815260206004820152601060248201526f34b9b73a1037bbb732b9103a37b5b2b760811b60448201526064016115f6565b6129c081602254101590565b156114d157602d54640100000000900460ff16156114d15760006129e382613cbd565b6000838152603260205260409020555050565b6129ff3361375c565b601955565b612a0d3361375c565b80612a16611719565b1115612a605760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b60448201526064016115f6565b602155565b60606003805461150890615624565b612a7d3361375c565b602880546001600160a01b0319166001600160a01b0392909216919091179055565b612aa7613a97565b60003411612ac75760405162461bcd60e51b81526004016115f690615784565b611eff6001601055565b816daaeb6d7670e522a718067333cd4e3b15801590612af2575060175460ff165b15612b9b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b73919061565e565b612b9b57604051633b79c77360e21b81526001600160a01b03821660048201526024016115f6565b6116ef8383613d22565b612bae3361375c565b602d8054911515620100000262ff000019909216919091179055565b612bd33361375c565b602d805491151563010000000263ff00000019909216919091179055565b612bf96139b5565b6114d181613da0565b612c0b3361375c565b6017805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b15801590612c3f575060175460ff165b15612cf757336001600160a01b03821603612c6557612c6085858585613dca565b612d03565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd8919061565e565b612cf757604051633b79c77360e21b81523360048201526024016115f6565b612d0385858585613dca565b5050505050565b612d133361375c565b6000918252601c602052604090912055565b612d2e3361375c565b602a6114f582826158aa565b612d433361375c565b601a55565b612d513361375c565b602d805460ff1916911515919091179055565b612d6c613a97565b602d5460ff16612dbe5760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e742069732050617573656400000000000000000060448201526064016115f6565b612dc9338383613427565b612de55760405162461bcd60e51b81526004016115f6906157e1565b60008211612e275760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b60448201526064016115f6565b82821015612e885760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b60648201526084016115f6565b6023546000908152602e60209081526040808320338452909152902054612eb09084906156a4565b821015612eff5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c656674000060448201526064016115f6565b82601954612f0d91906156b7565b3414612f2b5760405162461bcd60e51b81526004016115f690615784565b602154612f36611719565b612f4090856156a4565b1115612f5e5760405162461bcd60e51b81526004016115f6906157bb565b602054612f69611719565b612f7390856156a4565b1115612f915760405162461bcd60e51b81526004016115f6906157bb565b6023546000908152602e6020908152604080832033845290915281208054859290612fbd9084906156a4565b90915550612fcd90503384613af0565b6116ef6001601055565b612fe03361375c565b602255565b6060612ff0826138c7565b61300c5760405162461bcd60e51b81526004016115f690615969565b61301882602254101590565b156131115760008281526032602052604081205413156130865761303a613dfc565b60008381526032602052604090205461305290613e0b565b61305b84613e0b565b602c6040516020016130709493929190615a13565b6040516020818303038152906040529050919050565b602d54640100000000900460ff16156130ec5760006130a483613cbd565b90506130ae613dfc565b6130b782613e0b565b6130c085613e0b565b602c6040516020016130d59493929190615a13565b604051602081830303815290604052915050919050565b6130f4613dfc565b6130fd83613e0b565b602c60405160200161307093929190615a71565b602a805461311e90615624565b80601f016020809104026020016040519081016040528092919081815260200182805461314a90615624565b80156131975780601f1061316c57610100808354040283529160200191613197565b820191906000526020600020905b81548152906001019060200180831161317a57829003601f168201915b50505050509050919050565b6131ac3361375c565b6114d181601255565b6040516001600160601b0319606085901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156132c85783818151811061320a5761320a61584e565b602002602001015182106132685783818151811061322a5761322a61584e565b60200260200101518260405160200161324d929190918252602082015260400190565b604051602081830303815290604052805190602001206132b4565b8184828151811061327b5761327b61584e565b602002602001015160405160200161329d929190918252602082015260400190565b604051602081830303815290604052805190602001205b9150806132c081615835565b9150506131ef565b506000848152601360205260409020541490509392505050565b6132eb3361375c565b6020546132f6611719565b61330090846156a4565b111561331e5760405162461bcd60e51b81526004016115f6906157bb565b6114f58183613af0565b6133313361375c565b601b55565b61333f3361375c565b602c6114f582826158aa565b6133543361375c565b602355565b6060611494613e9d565b600061336f8383613f1d565b1515600003613380575060006114a4565b6001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff165b9392505050565b6133b96139b5565b6001600160a01b03811661341e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016115f6565b6114d181613c28565b6040516001600160601b0319606085901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015613541578381815181106134835761348361584e565b602002602001015182106134e1578381815181106134a3576134a361584e565b6020026020010151826040516020016134c6929190918252602082015260400190565b6040516020818303038152906040528051906020012061352d565b818482815181106134f4576134f461584e565b6020026020010151604051602001613516929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061353981615835565b915050613468565b5060115414949350505050565b6135573361375c565b601455565b6135646139b5565b602755565b6135723361375c565b6114d181613f3d565b6060600061358a8360026156b7565b6135959060026156a4565b6001600160401b038111156135ac576135ac61524d565b6040519080825280601f01601f1916602001820160405280156135d6576020820181803683370190505b509050600360fc1b816000815181106135f1576135f161584e565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106136205761362061584e565b60200101906001600160f81b031916908160001a90535060006136448460026156b7565b61364f9060016156a4565b90505b60018111156136c7576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106136835761368361584e565b1a60f81b8282815181106136995761369961584e565b60200101906001600160f81b031916908160001a90535060049490941c936136c081615aa3565b9050613652565b5083156133aa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016115f6565b60006133aa836001600160a01b038416613f82565b6060611494600a613fd1565b60006001600160e01b0319821663152a902d60e11b14806114a457506114a482613fde565b6001600160a01b03811660009081526018602052604090205460ff1661378d335b6001600160a01b0316601461357b565b60405160200161379d9190615aba565b604051602081830303815290604052906114f55760405162461bcd60e51b81526004016115f691906151ab565b6127106001600160601b03821611156138385760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016115f6565b6001600160a01b03821661388e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016115f6565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601555565b600881811c60009081526020919091526040812054600160ff1b60ff84161c16156138f457506000919050565b6114a482614003565b613907828261401f565b6114f5828261409a565b600554600090819081906139299060081c60016156a4565b9050815b8181101561396d5760008181526008602052604090205461394d816141ac565b61395790866156a4565b945050808061396590615835565b91505061392d565b50505090565b600060016005546114949190615691565b61398e33826141c6565b6139aa5760405162461bcd60e51b81526004016115f690615b07565b6116ef83838361428b565b6000546001600160a01b03163314611eff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016115f6565b6001600160a01b03811660009081526018602052604090205460ff1615613a353361377d565b604051602001613a459190615b5b565b60405160208183030381529060405290613a725760405162461bcd60e51b81526004016115f691906151ab565b506001600160a01b03166000908152601860205260409020805460ff19166001179055565b600260105403613ae95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016115f6565b6002601055565b6114f5828260405180602001604052806000815250614492565b6116ef83838360405180602001604052806000815250612c1e565b6000613b3082612251565b9050613b408160008460016144d3565b613b4b600883614522565b60405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a46114f581600084600161454e565b600080613b9d836138c7565b613bfe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016115f6565b613c0783614571565b6000818152600460205260409020546001600160a01b031694909350915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b613c83600a8261457e565b506040516001600160a01b0382169033907f3b01c97343869ca2757fcc37cdb8f71683b0a7aed858e3755f4529a1db85729290600090a350565b6000613cc8826138c7565b613ce45760405162461bcd60e51b81526004016115f690615969565b602754600083815260316020526040812054909190613d039042615bb2565b613d0d9190615bd2565b905060265481126114a4575060265492915050565b613d2b82614593565b80613d34575080155b613d965760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2043616e206e6f7420617070726f766560448201526c103637b1b5b2b2103a37b5b2b760991b60648201526084016115f6565b6114f5828261459f565b613da98161375c565b6001600160a01b03166000908152601860205260409020805460ff19169055565b613dd433836141c6565b613df05760405162461bcd60e51b81526004016115f690615b07565b61182684848484614663565b6060602b805461150890615624565b60606000613e188361467c565b60010190506000816001600160401b03811115613e3757613e3761524d565b6040519080825280601f01601f191660200182016040528015613e61576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613e6b57509392505050565b6060600080613eae81612710611908565b91509150613ef7613ebe82613e0b565b613ed2846001600160a01b0316601461357b565b604051602001613ee3929190615c00565b604051602081830303815290604052614754565b604051602001613f079190615c86565b6040516020818303038152906040529250505090565b600080613f29846148b8565b9050613f3583826148fa565b949350505050565b613f48600a82613716565b506040516001600160a01b0382169033907fbd0af1fe0a2c1c7bb340c17a284a291138979c8eeb797e176dbd1c415199af3c90600090a350565b6000818152600183016020526040812054613fc9575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556114a4565b5060006114a4565b606060006133aa83614993565b60006001600160e01b03198216630101c11560e71b14806114a457506114a4826149ee565b600061400e60055490565b821080156114a45750506001111590565b6001600160a01b038216156114f5576140388183614a3e565b6114f55760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2054686520636f6e747261637420697360448201526c103737ba1030b63637bbb2b21760991b60648201526084016115f6565b60006140a582612251565b9050806001600160a01b0316836001600160a01b0316036141145760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b60648201526084016115f6565b336001600160a01b038216148061413057506141308133613363565b6141a25760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c000000000060648201526084016115f6565b6116ef8383614a4b565b60005b8115612871576000198201909116906001016141af565b60006141d1826138c7565b6142355760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016115f6565b600061424083612251565b9050806001600160a01b0316846001600160a01b0316148061427b5750836001600160a01b03166142708461158b565b6001600160a01b0316145b80613f355750613f358185613363565b60008061429783613b91565b91509150846001600160a01b0316826001600160a01b0316146143115760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b60648201526084016115f6565b6001600160a01b0384166143775760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b60648201526084016115f6565b61438485858560016144d3565b61438f600084614a4b565b600061439c8460016156a4565b600881901c600090815260016020526040902054909150600160ff1b60ff83161c161580156143cc575060055481105b1561440357600081815260046020526040902080546001600160a01b0319166001600160a01b038816179055614403600182614522565b600084815260046020526040902080546001600160a01b0319166001600160a01b03871617905581841461443c5761443c600185614522565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461448a868686600161454e565b505050505050565b600061449d60055490565b90506144a98484614ab9565b6144b7600085838686614c46565b6118265760405162461bcd60e51b81526004016115f690615ccb565b600082815260316020526040812042905582906144f083836156a4565b90505b42603160008461450281615835565b95508152602001908152602001600020819055508082106144f35761448a565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b6001600160a01b03841615611826576000828152600d6020526040812055611826565b60006114a4600183614d7d565b60006133aa836001600160a01b038416614e75565b60006114a43383613f1d565b336001600160a01b038316036145f75760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c65720000000060448201526064016115f6565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61466e84848461428b565b6144b7848484600185614c46565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106146bb5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106146e7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061470557662386f26fc10000830492506010015b6305f5e100831061471d576305f5e100830492506008015b612710831061473157612710830492506004015b60648310614743576064830492506002015b600a83106114a45760010192915050565b6060815160000361477357505060408051602081019091526000815290565b6000604051806060016040528060408152602001615d9160409139905060006003845160026147a291906156a4565b6147ac91906156e4565b6147b79060046156b7565b905060006147c68260206156a4565b6001600160401b038111156147dd576147dd61524d565b6040519080825280601f01601f191660200182016040528015614807576020820181803683370190505b509050818152600183018586518101602084015b81831015614873576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161481b565b60038951066001811461488d576002811461489e576148aa565b613d3d60f01b6001198301526148aa565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b0381166000908152600e6020526040812054156148f257506001600160a01b03166000908152600e602052604090205490565b5050600f5490565b600c5460009060ff1661490f575060016114a4565b61491883614f68565b806133aa5750600954604051630f8350ed60e41b81526001600160a01b038581166004830152602482018590529091169063f8350ed090604401602060405180830381865afa15801561496f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133aa919061565e565b60608160000180548060200260200160405190810160405280929190818152602001828054801561319757602002820191906000526020600020905b8154815260200190600101908083116149cf5750505050509050919050565b60006001600160e01b031982166380ac58cd60e01b1480614a1f57506001600160e01b03198216635b5e139f60e01b145b806114a457506301ffc9a760e01b6001600160e01b03198316146114a4565b600080613f293385614f75565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190614a8082612251565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000614ac460055490565b905060008211614b245760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b60648201526084016115f6565b6001600160a01b038316614b865760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b60648201526084016115f6565b614b9360008483856144d3565b8160056000828254614ba591906156a4565b9091555050600081815260046020526040902080546001600160a01b0319166001600160a01b038516179055614bdc600182614522565b614be9600084838561454e565b805b614bf583836156a4565b8110156118265760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480614c3e81615835565b915050614beb565b60006001600160a01b0385163b15614d7057506001835b614c6784866156a4565b811015614d6a57604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290614ca09033908b9086908990600401615d20565b6020604051808303816000875af1925050508015614cdb575060408051601f3d908101601f19168201909252614cd891810190615d5d565b60015b614d38573d808015614d09576040519150601f19603f3d011682016040523d82523d6000602084013e614d0e565b606091505b508051600003614d305760405162461bcd60e51b81526004016115f690615ccb565b805181602001fd5b828015614d5557506001600160e01b03198116630a85bd0160e11b145b92505080614d6281615835565b915050614c5d565b50614d74565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c8015614dbf57614dad81614fa7565b60ff168203600884901b179350614e6c565b60008311614e2c5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b60648201526084016115f6565b506000199091016000818152602086905260409020549091908015614e6757614e5481614fa7565b60ff0360ff16600884901b179350614e6c565b614dbf565b50505092915050565b60008181526001830160205260408120548015614f5e576000614e99600183615691565b8554909150600090614ead90600190615691565b9050818114614f12576000866000018281548110614ecd57614ecd61584e565b9060005260206000200154905080876000018481548110614ef057614ef061584e565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080614f2357614f23615d7a565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506114a4565b60009150506114a4565b60006114a4600a83615011565b6000818152600d602052604081205415614f9e57506000818152600d60205260409020546114a4565b6133aa836148b8565b60006040518061012001604052806101008152602001615dd1610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff614ff085615033565b02901c815181106150035761500361584e565b016020015160f81c92915050565b6001600160a01b038116600090815260018301602052604081205415156133aa565b600080821161504157600080fd5b5060008190031690565b6020808252825182820181905260009190848201906040850190845b8181101561508c5783516001600160a01b031683529284019291840191600101615067565b50909695505050505050565b6001600160e01b0319811681146114d157600080fd5b6000602082840312156150c057600080fd5b81356133aa81615098565b6001600160a01b03811681146114d157600080fd5b6000602082840312156150f257600080fd5b81356133aa816150cb565b60006020828403121561510f57600080fd5b5035919050565b6000806040838503121561512957600080fd5b8235615134816150cb565b915060208301356001600160601b038116811461515057600080fd5b809150509250929050565b60005b8381101561517657818101518382015260200161515e565b50506000910152565b6000815180845261519781602086016020860161515b565b601f01601f19169290920160200192915050565b6020815260006133aa602083018461517f565b600080604083850312156151d157600080fd5b82356151dc816150cb565b946020939093013593505050565b6000806000606084860312156151ff57600080fd5b833561520a816150cb565b9250602084013561521a816150cb565b929592945050506040919091013590565b6000806040838503121561523e57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561528b5761528b61524d565b604052919050565b600082601f8301126152a457600080fd5b813560206001600160401b038211156152bf576152bf61524d565b8160051b6152ce828201615263565b92835284810182019282810190878511156152e857600080fd5b83870192505b84831015615307578235825291830191908301906152ee565b979650505050505050565b6000806040838503121561532557600080fd5b8235915060208301356001600160401b0381111561534257600080fd5b61534e85828601615293565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561508c57835183529284019291840191600101615374565b60006001600160401b038311156153a9576153a961524d565b6153bc601f8401601f1916602001615263565b90508281528383830111156153d057600080fd5b828260208301376000602084830101529392505050565b6000602082840312156153f957600080fd5b81356001600160401b0381111561540f57600080fd5b8201601f8101841361542057600080fd5b613f3584823560208401615390565b6000806040838503121561544257600080fd5b823561544d816150cb565b915060208301356001600160401b0381111561534257600080fd5b80151581146114d157600080fd5b60006020828403121561548857600080fd5b81356133aa81615468565b600080604083850312156154a657600080fd5b823591506020830135615150816150cb565b600080604083850312156154cb57600080fd5b82356154d6816150cb565b9150602083013561515081615468565b600080600080608085870312156154fc57600080fd5b8435615507816150cb565b93506020850135615517816150cb565b92506040850135915060608501356001600160401b0381111561553957600080fd5b8501601f8101871361554a57600080fd5b61555987823560208401615390565b91505092959194509250565b60008060006060848603121561557a57600080fd5b833592506020840135915060408401356001600160401b0381111561559e57600080fd5b6155aa86828701615293565b9150509250925092565b6000806000606084860312156155c957600080fd5b83356155d4816150cb565b92506020840135915060408401356001600160401b0381111561559e57600080fd5b6000806040838503121561560957600080fd5b8235615614816150cb565b91506020830135615150816150cb565b600181811c9082168061563857607f821691505b60208210810361565857634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561567057600080fd5b81516133aa81615468565b634e487b7160e01b600052601160045260246000fd5b818103818111156114a4576114a461567b565b808201808211156114a4576114a461567b565b80820281158282048414176114a4576114a461567b565b634e487b7160e01b600052601260045260246000fd5b6000826156f3576156f36156ce565b500490565b60208082526027908201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6040820152666e652074696d6560c81b606082015260800190565b60208082526025908201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604082015264185b1b195d60da1b606082015260800190565b60208082526018908201527f4554482076616c7565206973206e6f7420636f72726563740000000000000000604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526018908201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604082015260600190565b60006020828403121561582a57600080fd5b81516133aa816150cb565b6000600182016158475761584761567b565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156116ef57600081815260208120601f850160051c8101602086101561588b5750805b601f850160051c820191505b8181101561448a57828155600101615897565b81516001600160401b038111156158c3576158c361524d565b6158d7816158d18454615624565b84615864565b602080601f83116001811461590c57600084156158f45750858301515b600019600386901b1c1916600185901b17855561448a565b600085815260208120601f198616915b8281101561593b5788860151825594840194600190910190840161591c565b50858210156159595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b600081546159ad81615624565b600182811680156159c557600181146159da57615a09565b60ff1984168752821515830287019450615a09565b8560005260208060002060005b85811015615a005781548a8201529084019082016159e7565b50505082870194505b5050505092915050565b60008551615a25818460208a0161515b565b855190830190615a39818360208a0161515b565b602f60f81b91019081528451615a5681600184016020890161515b565b615a65600182840101866159a0565b98975050505050505050565b60008451615a8381846020890161515b565b845190830190615a9781836020890161515b565b615307818301866159a0565b600081615ab257615ab261567b565b506000190190565b67030b1b1b7bab73a160c51b815260008251615add81600885016020870161515b565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b67030b1b1b7bab73a160c51b815260008251615b7e81600885016020870161515b565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b81810360008312801583831316838312821617156124325761243261567b565b600082615be157615be16156ce565b600160ff1b821460001984141615615bfb57615bfb61567b565b500590565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a0000000000815260008351615c3881601b85016020880161515b565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b918401918201528351615c6b81602e84016020880161515b565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251615cbe81601d85016020870161515b565b91909101601d0192915050565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615d539083018461517f565b9695505050505050565b600060208284031215615d6f57600080fd5b81516133aa81615098565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a2646970667358221220dee37fb43b7635ffeff70e028141ec5f3530c86228eee6cc595dfb2752e411a164736f6c63430008110033000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f00000000000000000000000000000000000000000000000000000000000002ee

Deployed Bytecode

0x6080604052600436106106b75760003560e01c80637558be9e1161037a578063b9a2e655116101d1578063d5f3948811610102578063ea7baab1116100a0578063fb796e6c1161007a578063fb796e6c14611410578063fdf03cd51461142a578063fe8b456e1461144a578063ff7682121461146a57600080fd5b8063ea7baab1146113ba578063f2fde38b146113d0578063faf7a826146113f057600080fd5b8063df58a1b5116100dc578063df58a1b51461134f578063e0669c5514611365578063e8a3d48514611385578063e985e9c51461139a57600080fd5b8063d5f39488146112ef578063d78be71c1461130f578063da3ef23f1461132f57600080fd5b8063c87b56dd1161016f578063d4e45c1411610149578063d4e45c141461128e578063d52c57e0146112a3578063d5abeb01146112c3578063d5dcfbc6146112d957600080fd5b8063c87b56dd1461122e578063cd8d03211461124e578063d2de022f1461126e57600080fd5b8063c3e53683116101ab578063c3e53683146111bc578063c3faf724146111db578063c4be5b59146111fb578063c50c81861461120e57600080fd5b8063b9a2e6551461115c578063bbaac02f1461117c578063bf509b9d1461119c57600080fd5b806391e4bac8116102ab578063a35c23ad11610249578063b31391cb11610223578063b31391cb146110cb578063b435d236146110f8578063b7c0b8e81461111c578063b88d4fde1461113c57600080fd5b8063a35c23ad1461105e578063abb61da51461108b578063b219f7d7146110ab57600080fd5b806396214735116102855780639621473514610ff65780639da9778c14611016578063a22cb4651461101e578063a355fd291461103e57600080fd5b806391e4bac814610f7d578063942958f414610f9d57806395d89b4114610fe157600080fd5b8063830b3a64116103185780638c5668be116102f25780638c5668be14610edc5780638da5cb5b14610efc5780638dd07d0f14610f1a5780638e37326a14610f3a57600080fd5b8063830b3a6414610e86578063830f821114610ea65780638462151c14610ebc57600080fd5b80637bc9200e116103545780637bc9200e14610e1d5780637c3dc17314610e305780637fc69f5a14610e50578063813779ef14610e6657600080fd5b80637558be9e14610d995780637672287e14610db957806378a9238014610dd957600080fd5b80632ef370251161052e578063518302271161045f5780636fa0cf5f116103fd578063715018a6116103d7578063715018a614610d2e5780637254d90c14610d4357806372b44d7114610d5957806374dfc98214610d7957600080fd5b80636fa0cf5f14610cce578063709411d214610cee57806370a0823114610d0e57600080fd5b80635bc401a7116104395780635bc401a714610c355780636352211e14610c555780636d70f7ae14610c755780636f8b44b014610cae57600080fd5b80635183022714610be957806355f804b314610bff57806358303b1014610c1f57600080fd5b806342842e0e116104cc57806343e625fa116104a657806343e625fa14610b86578063449d0f1014610ba75780634bf365df14610bbd5780634f3db34614610bd357600080fd5b806342842e0e14610b1957806342966c6814610b39578063438b630014610b5957600080fd5b80633ccfd60b116105085780633ccfd60b14610ab95780634009920d14610ac157806341f4343414610ae157806342454db914610b0357600080fd5b80632ef3702514610a6657806330e7ed3514610a79578063396e8f5314610a9957600080fd5b80631a09cfe2116106085780632672c902116105a65780632a55205a116105805780632a55205a146109e85780632c4e9fc614610a275780632db1154414610a3d5780632e9901f414610a5057600080fd5b80632672c90214610993578063267fe989146109a857806327ac0c58146109c857600080fd5b806323945d49116105e257806323945d49146109065780632398f8431461092657806323b872dd14610953578063258bc0ef1461097357600080fd5b80631a09cfe21461087f5780631a8b83571461089557806321434421146108c257600080fd5b806307265389116106755780630d9005ae1161064f5780630d9005ae1461080d5780630f4345e21461083057806318160ddd14610850578063189f3de11461086557600080fd5b8063072653891461079b578063081812fc146107b5578063095ea7b3146107ed57600080fd5b80623f332f146106bc57806301ffc9a7146106e7578063025e332e1461071757806303c0f48c1461073957806304634d8d1461075957806306fdde0314610779575b600080fd5b3480156106c857600080fd5b506106d161148a565b6040516106de919061504b565b60405180910390f35b3480156106f357600080fd5b506107076107023660046150ae565b611499565b60405190151581526020016106de565b34801561072357600080fd5b506107376107323660046150e0565b6114aa565b005b34801561074557600080fd5b506107376107543660046150fd565b6114d4565b34801561076557600080fd5b50610737610774366004615116565b6114e2565b34801561078557600080fd5b5061078e6114f9565b6040516106de91906151ab565b3480156107a757600080fd5b50600c546107079060ff1681565b3480156107c157600080fd5b506107d56107d03660046150fd565b61158b565b6040516001600160a01b0390911681526020016106de565b3480156107f957600080fd5b506107376108083660046151be565b61161b565b34801561081957600080fd5b506108226116f4565b6040519081526020016106de565b34801561083c57600080fd5b5061073761084b3660046150fd565b61170b565b34801561085c57600080fd5b50610822611719565b34801561087157600080fd5b50602d546107079060ff1681565b34801561088b57600080fd5b50610822601d5481565b3480156108a157600080fd5b506108226108b03660046150fd565b601c6020526000908152604090205481565b3480156108ce57600080fd5b506108226108dd3660046150e0565b6024546000908152602f602090815260408083206001600160a01b039094168352929052205490565b34801561091257600080fd5b506107376109213660046150fd565b61172b565b34801561093257600080fd5b506108226109413660046150e0565b600e6020526000908152604090205481565b34801561095f57600080fd5b5061073761096e3660046151ea565b611743565b34801561097f57600080fd5b5061073761098e3660046150fd565b61182c565b34801561099f57600080fd5b5061078e61183e565b3480156109b457600080fd5b506107376109c33660046150fd565b6118cc565b3480156109d457600080fd5b506107376109e33660046150e0565b6118f7565b3480156109f457600080fd5b50610a08610a0336600461522b565b611908565b604080516001600160a01b0390931683526020830191909152016106de565b348015610a3357600080fd5b5061082260195481565b610737610a4b3660046150fd565b6119b4565b348015610a5c57600080fd5b50610822601e5481565b610737610a74366004615312565b611ba0565b348015610a8557600080fd5b50610737610a943660046150fd565b611db3565b348015610aa557600080fd5b506009546107d5906001600160a01b031681565b610737611dc1565b348015610acd57600080fd5b50602d546107079062010000900460ff1681565b348015610aed57600080fd5b506107d56daaeb6d7670e522a718067333cd4e81565b348015610b0f57600080fd5b50610822601b5481565b348015610b2557600080fd5b50610737610b343660046151ea565b611f01565b348015610b4557600080fd5b50610737610b543660046150fd565b611fdf565b348015610b6557600080fd5b50610b79610b743660046150e0565b611fe8565b6040516106de9190615358565b348015610b9257600080fd5b50602d54610707906301000000900460ff1681565b348015610bb357600080fd5b50610822601a5481565b348015610bc957600080fd5b5061082260215481565b348015610bdf57600080fd5b50610822600f5481565b348015610bf557600080fd5b5061082260225481565b348015610c0b57600080fd5b50610737610c1a3660046153e7565b61211d565b348015610c2b57600080fd5b5061082260145481565b348015610c4157600080fd5b50610707610c5036600461542f565b612132565b348015610c6157600080fd5b506107d5610c703660046150fd565b612251565b348015610c8157600080fd5b50610707610c903660046150e0565b6001600160a01b031660009081526018602052604090205460ff1690565b348015610cba57600080fd5b50610737610cc93660046150fd565b612265565b348015610cda57600080fd5b50610737610ce936600461522b565b6122c6565b348015610cfa57600080fd5b50610737610d093660046150fd565b6122e1565b348015610d1a57600080fd5b50610822610d293660046150e0565b61236a565b348015610d3a57600080fd5b50610737612439565b348015610d4f57600080fd5b5061082260275481565b348015610d6557600080fd5b50610737610d743660046150e0565b61244b565b348015610d8557600080fd5b50610822610d943660046150fd565b61245d565b348015610da557600080fd5b50610737610db43660046150fd565b612497565b348015610dc557600080fd5b50610737610dd4366004615476565b6124a4565b348015610de557600080fd5b50610822610df43660046150e0565b6023546000908152602e602090815260408083206001600160a01b039094168352929052205490565b610737610e2b366004615312565b6124c7565b348015610e3c57600080fd5b50610737610e4b36600461522b565b61276c565b348015610e5c57600080fd5b5061082260265481565b348015610e7257600080fd5b50610737610e813660046150fd565b6127fc565b348015610e9257600080fd5b506107d5610ea13660046150fd565b61280a565b348015610eb257600080fd5b5061082260235481565b348015610ec857600080fd5b50610b79610ed73660046150e0565b612876565b348015610ee857600080fd5b50610737610ef73660046150fd565b61293c565b348015610f0857600080fd5b506000546001600160a01b03166107d5565b348015610f2657600080fd5b50610737610f353660046150fd565b6129f6565b348015610f4657600080fd5b50610822610f55366004615493565b6000918252602f602090815260408084206001600160a01b0393909316845291905290205490565b348015610f8957600080fd5b50610737610f983660046150fd565b612a04565b348015610fa957600080fd5b50610822610fb83660046150e0565b60255460009081526030602090815260408083206001600160a01b039094168352929052205490565b348015610fed57600080fd5b5061078e612a65565b34801561100257600080fd5b506107376110113660046150e0565b612a74565b610737612a9f565b34801561102a57600080fd5b506107376110393660046154b8565b612ad1565b34801561104a57600080fd5b50610737611059366004615476565b612ba5565b34801561106a57600080fd5b506107376110793660046150fd565b336000908152600e6020526040902055565b34801561109757600080fd5b506107376110a6366004615476565b612bca565b3480156110b757600080fd5b506107376110c63660046150e0565b612bf1565b3480156110d757600080fd5b506108226110e63660046150fd565b600d6020526000908152604090205481565b34801561110457600080fd5b506014546000908152601c6020526040902054610822565b34801561112857600080fd5b50610737611137366004615476565b612c02565b34801561114857600080fd5b506107376111573660046154e6565b612c1e565b34801561116857600080fd5b5061073761117736600461522b565b612d0a565b34801561118857600080fd5b506107376111973660046153e7565b612d25565b3480156111a857600080fd5b506107376111b73660046150fd565b612d3a565b3480156111c857600080fd5b50602d5461070790610100900460ff1681565b3480156111e757600080fd5b506107376111f6366004615476565b612d48565b610737611209366004615565565b612d64565b34801561121a57600080fd5b506107376112293660046150fd565b612fd7565b34801561123a57600080fd5b5061078e6112493660046150fd565b612fe5565b34801561125a57600080fd5b506107376112693660046150fd565b6131a3565b34801561127a57600080fd5b506107076112893660046155b4565b6131b5565b34801561129a57600080fd5b50601454610822565b3480156112af57600080fd5b506107376112be366004615493565b6132e2565b3480156112cf57600080fd5b5061082260205481565b3480156112e557600080fd5b5061082260245481565b3480156112fb57600080fd5b506028546107d5906001600160a01b031681565b34801561131b57600080fd5b5061073761132a3660046150fd565b613328565b34801561133b57600080fd5b5061073761134a3660046153e7565b613336565b34801561135b57600080fd5b5061082260255481565b34801561137157600080fd5b506107376113803660046150fd565b61334b565b34801561139157600080fd5b5061078e613359565b3480156113a657600080fd5b506107076113b53660046155f6565b613363565b3480156113c657600080fd5b50610822601f5481565b3480156113dc57600080fd5b506107376113eb3660046150e0565b6133b1565b3480156113fc57600080fd5b5061070761140b3660046155b4565b613427565b34801561141c57600080fd5b506017546107079060ff1681565b34801561143657600080fd5b506107376114453660046150fd565b61354e565b34801561145657600080fd5b506107376114653660046150fd565b61355c565b34801561147657600080fd5b506107376114853660046150e0565b613569565b606061149461372b565b905090565b60006114a482613737565b92915050565b6114b33361375c565b600980546001600160a01b0319166001600160a01b03831617905550565b50565b6114dd3361375c565b602455565b6114eb3361375c565b6114f582826137ca565b5050565b60606002805461150890615624565b80601f016020809104026020016040519081016040528092919081815260200182805461153490615624565b80156115815780601f1061155657610100808354040283529160200191611581565b820191906000526020600020905b81548152906001019060200180831161156457829003601f168201915b5050505050905090565b6000611596826138c7565b6115ff5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1580159061163c575060175460ff165b156116e557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bd919061565e565b6116e557604051633b79c77360e21b81526001600160a01b03821660048201526024016115f6565b6116ef83836138fd565b505050565b6000600161170160055490565b6114949190615691565b6117143361375c565b600f55565b6000611723613911565b611701613973565b6117343361375c565b60238190556024819055602555565b826daaeb6d7670e522a718067333cd4e3b15801590611764575060175460ff165b1561181b57336001600160a01b0382160361178957611784848484613984565b611826565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fc919061565e565b61181b57604051633b79c77360e21b81523360048201526024016115f6565b611826848484613984565b50505050565b6118353361375c565b6114d181601155565b602c805461184b90615624565b80601f016020809104026020016040519081016040528092919081815260200182805461187790615624565b80156118c45780601f10611899576101008083540402835291602001916118c4565b820191906000526020600020905b8154815290600101906020018083116118a757829003601f168201915b505050505081565b6118d53361375c565b806014819055506001602460008282546118ef91906156a4565b909155505050565b6118ff6139b5565b6114d181613a0f565b60008281526016602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161197d5750604080518082019091526015546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061199c906001600160601b0316876156b7565b6119a691906156e4565b915196919550909350505050565b6119bc613a97565b602d5462010000900460ff16611a0b5760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b60448201526064016115f6565b80601f541015611a2d5760405162461bcd60e51b81526004016115f6906156f8565b80601d541015611a4f5760405162461bcd60e51b81526004016115f69061573f565b6025546000908152603060209081526040808320338452909152902054611a779082906156a4565b601d541015611ac85760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c656674000000000060448201526064016115f6565b80601b54611ad691906156b7565b3414611af45760405162461bcd60e51b81526004016115f690615784565b602154611aff611719565b611b0990836156a4565b1115611b275760405162461bcd60e51b81526004016115f6906157bb565b602054611b32611719565b611b3c90836156a4565b1115611b5a5760405162461bcd60e51b81526004016115f6906157bb565b602554600090815260306020908152604080832033845290915281208054839290611b869084906156a4565b90915550611b9690503382613af0565b6114d16001601055565b611ba8613a97565b602d546301000000900460ff16611bf85760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b60448201526064016115f6565b611c023382612132565b611c1e5760405162461bcd60e51b81526004016115f6906157e1565b81601f541015611c405760405162461bcd60e51b81526004016115f6906156f8565b81601d541015611c625760405162461bcd60e51b81526004016115f69061573f565b6025546000908152603060209081526040808320338452909152902054611c8a9083906156a4565b601d541015611cdb5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c656674000000000060448201526064016115f6565b81601b54611ce991906156b7565b3414611d075760405162461bcd60e51b81526004016115f690615784565b602154611d12611719565b611d1c90846156a4565b1115611d3a5760405162461bcd60e51b81526004016115f6906157bb565b602054611d45611719565b611d4f90846156a4565b1115611d6d5760405162461bcd60e51b81526004016115f6906157bb565b602554600090815260306020908152604080832033845290915281208054849290611d999084906156a4565b90915550611da990503383613af0565b6114f56001601055565b611dbc3361375c565b602555565b611dca3361375c565b611dd2613a97565b60295447906000906001600160a01b031615611e45576029546040516001600160a01b03909116908390600081818185875af1925050503d8060008114611e35576040519150601f19603f3d011682016040523d82523d6000602084013e611e3a565b606091505b505080915050611ea6565b6000546001600160a01b03166001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ea0565b606091505b50909150505b80611ef35760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016115f6565b5050611eff6001601055565b565b826daaeb6d7670e522a718067333cd4e3b15801590611f22575060175460ff165b15611fd457336001600160a01b03821603611f4257611784848484613b0a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611f91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb5919061565e565b611fd457604051633b79c77360e21b81523360048201526024016115f6565b611826848484613b0a565b6114d181613b25565b60606000611ff58361236a565b90506000816001600160401b038111156120115761201161524d565b60405190808252806020026020018201604052801561203a578160200160208202803683370190505b509050600060015b600161204d60055490565b6120579190615691565b811015612113576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa15801561209a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120be9190615818565b6001600160a01b0316866001600160a01b031603612101578083836120e281615835565b9450815181106120f4576120f461584e565b6020026020010181815250505b8061210b81615835565b915050612042565b5090949350505050565b6121263361375c565b602b6114f582826158aa565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015612245578381815181106121875761218761584e565b602002602001015182106121e5578381815181106121a7576121a761584e565b6020026020010151826040516020016121ca929190918252602082015260400190565b60405160208183030381529060405280519060200120612231565b818482815181106121f8576121f861584e565b602002602001015160405160200161221a929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061223d81615835565b91505061216c565b50601254149392505050565b60008061225d83613b91565b509392505050565b61226e3361375c565b80612277611719565b11156122c15760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b60448201526064016115f6565b602055565b6122cf3361375c565b60009182526013602052604090912055565b6122ea816138c7565b6123065760405162461bcd60e51b81526004016115f690615969565b3361231082612251565b6001600160a01b0316146123595760405162461bcd60e51b815260206004820152601060248201526f34b9b73a1037bbb732b9103a37b5b2b760811b60448201526064016115f6565b600090815260326020526040812055565b60006001600160a01b0382166123d85760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b60648201526084016115f6565b600060015b600554811015612432576123f0816138c7565b15612422576123fe81612251565b6001600160a01b0316846001600160a01b0316036124225761241f82615835565b91505b61242b81615835565b90506123dd565b5092915050565b6124416139b5565b611eff6000613c28565b6124543361375c565b6114d181613c78565b6000612468826138c7565b6124845760405162461bcd60e51b81526004016115f690615969565b5060009081526031602052604090205490565b61249f6139b5565b602655565b6124ad3361375c565b602d80549115156101000261ff0019909216919091179055565b6124cf613a97565b602d54610100900460ff166125265760405162461bcd60e51b815260206004820152601760248201527f616c6c6f776c6973744d696e742069732050617573656400000000000000000060448201526064016115f6565b61253333601454836131b5565b61254f5760405162461bcd60e51b81526004016115f6906157e1565b81601e5410156125b45760405162461bcd60e51b815260206004820152602a60248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e747320706560448201526972206f6e652074696d6560b01b60648201526084016115f6565b6014546000908152601c60205260409020548211156126265760405162461bcd60e51b815260206004820152602860248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b60648201526084016115f6565b6024546000908152602f6020908152604080832033845290915290205461264e9083906156a4565b6014546000908152601c602052604090205410156126ae5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c656674000060448201526064016115f6565b81601a546126bc91906156b7565b34146126da5760405162461bcd60e51b81526004016115f690615784565b6021546126e5611719565b6126ef90846156a4565b111561270d5760405162461bcd60e51b81526004016115f6906157bb565b602054612718611719565b61272290846156a4565b11156127405760405162461bcd60e51b81526004016115f6906157bb565b6024546000908152602f6020908152604080832033845290915281208054849290611d999084906156a4565b8161277681612251565b6001600160a01b0316336001600160a01b0316146127e95760405162461bcd60e51b815260206004820152602a60248201527f5265737472696374417070726f76653a206f7065726174696f6e206973206f6e604482015269363c903437b63232b91760b11b60648201526084016115f6565b506000918252600d602052604090912055565b6128053361375c565b601d55565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa925050508015612865575060408051601f3d908101601f1916820190925261286291810190615818565b60015b6114a457506000919050565b919050565b60606000806128848461236a565b90506000816001600160401b038111156128a0576128a061524d565b6040519080825280602002602001820160405280156128c9578160200160208202803683370190505b50905060015b828414612933576128df816138c7565b1561292b57856001600160a01b03166128f782612251565b6001600160a01b03160361292b578082858060010196508151811061291e5761291e61584e565b6020026020010181815250505b6001016128cf565b50949350505050565b612945816138c7565b6129615760405162461bcd60e51b81526004016115f690615969565b3361296b82612251565b6001600160a01b0316146129b45760405162461bcd60e51b815260206004820152601060248201526f34b9b73a1037bbb732b9103a37b5b2b760811b60448201526064016115f6565b6129c081602254101590565b156114d157602d54640100000000900460ff16156114d15760006129e382613cbd565b6000838152603260205260409020555050565b6129ff3361375c565b601955565b612a0d3361375c565b80612a16611719565b1115612a605760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b60448201526064016115f6565b602155565b60606003805461150890615624565b612a7d3361375c565b602880546001600160a01b0319166001600160a01b0392909216919091179055565b612aa7613a97565b60003411612ac75760405162461bcd60e51b81526004016115f690615784565b611eff6001601055565b816daaeb6d7670e522a718067333cd4e3b15801590612af2575060175460ff165b15612b9b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b73919061565e565b612b9b57604051633b79c77360e21b81526001600160a01b03821660048201526024016115f6565b6116ef8383613d22565b612bae3361375c565b602d8054911515620100000262ff000019909216919091179055565b612bd33361375c565b602d805491151563010000000263ff00000019909216919091179055565b612bf96139b5565b6114d181613da0565b612c0b3361375c565b6017805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b15801590612c3f575060175460ff165b15612cf757336001600160a01b03821603612c6557612c6085858585613dca565b612d03565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd8919061565e565b612cf757604051633b79c77360e21b81523360048201526024016115f6565b612d0385858585613dca565b5050505050565b612d133361375c565b6000918252601c602052604090912055565b612d2e3361375c565b602a6114f582826158aa565b612d433361375c565b601a55565b612d513361375c565b602d805460ff1916911515919091179055565b612d6c613a97565b602d5460ff16612dbe5760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e742069732050617573656400000000000000000060448201526064016115f6565b612dc9338383613427565b612de55760405162461bcd60e51b81526004016115f6906157e1565b60008211612e275760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b60448201526064016115f6565b82821015612e885760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b60648201526084016115f6565b6023546000908152602e60209081526040808320338452909152902054612eb09084906156a4565b821015612eff5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c656674000060448201526064016115f6565b82601954612f0d91906156b7565b3414612f2b5760405162461bcd60e51b81526004016115f690615784565b602154612f36611719565b612f4090856156a4565b1115612f5e5760405162461bcd60e51b81526004016115f6906157bb565b602054612f69611719565b612f7390856156a4565b1115612f915760405162461bcd60e51b81526004016115f6906157bb565b6023546000908152602e6020908152604080832033845290915281208054859290612fbd9084906156a4565b90915550612fcd90503384613af0565b6116ef6001601055565b612fe03361375c565b602255565b6060612ff0826138c7565b61300c5760405162461bcd60e51b81526004016115f690615969565b61301882602254101590565b156131115760008281526032602052604081205413156130865761303a613dfc565b60008381526032602052604090205461305290613e0b565b61305b84613e0b565b602c6040516020016130709493929190615a13565b6040516020818303038152906040529050919050565b602d54640100000000900460ff16156130ec5760006130a483613cbd565b90506130ae613dfc565b6130b782613e0b565b6130c085613e0b565b602c6040516020016130d59493929190615a13565b604051602081830303815290604052915050919050565b6130f4613dfc565b6130fd83613e0b565b602c60405160200161307093929190615a71565b602a805461311e90615624565b80601f016020809104026020016040519081016040528092919081815260200182805461314a90615624565b80156131975780601f1061316c57610100808354040283529160200191613197565b820191906000526020600020905b81548152906001019060200180831161317a57829003601f168201915b50505050509050919050565b6131ac3361375c565b6114d181601255565b6040516001600160601b0319606085901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156132c85783818151811061320a5761320a61584e565b602002602001015182106132685783818151811061322a5761322a61584e565b60200260200101518260405160200161324d929190918252602082015260400190565b604051602081830303815290604052805190602001206132b4565b8184828151811061327b5761327b61584e565b602002602001015160405160200161329d929190918252602082015260400190565b604051602081830303815290604052805190602001205b9150806132c081615835565b9150506131ef565b506000848152601360205260409020541490509392505050565b6132eb3361375c565b6020546132f6611719565b61330090846156a4565b111561331e5760405162461bcd60e51b81526004016115f6906157bb565b6114f58183613af0565b6133313361375c565b601b55565b61333f3361375c565b602c6114f582826158aa565b6133543361375c565b602355565b6060611494613e9d565b600061336f8383613f1d565b1515600003613380575060006114a4565b6001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff165b9392505050565b6133b96139b5565b6001600160a01b03811661341e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016115f6565b6114d181613c28565b6040516001600160601b0319606085901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015613541578381815181106134835761348361584e565b602002602001015182106134e1578381815181106134a3576134a361584e565b6020026020010151826040516020016134c6929190918252602082015260400190565b6040516020818303038152906040528051906020012061352d565b818482815181106134f4576134f461584e565b6020026020010151604051602001613516929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061353981615835565b915050613468565b5060115414949350505050565b6135573361375c565b601455565b6135646139b5565b602755565b6135723361375c565b6114d181613f3d565b6060600061358a8360026156b7565b6135959060026156a4565b6001600160401b038111156135ac576135ac61524d565b6040519080825280601f01601f1916602001820160405280156135d6576020820181803683370190505b509050600360fc1b816000815181106135f1576135f161584e565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106136205761362061584e565b60200101906001600160f81b031916908160001a90535060006136448460026156b7565b61364f9060016156a4565b90505b60018111156136c7576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106136835761368361584e565b1a60f81b8282815181106136995761369961584e565b60200101906001600160f81b031916908160001a90535060049490941c936136c081615aa3565b9050613652565b5083156133aa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016115f6565b60006133aa836001600160a01b038416613f82565b6060611494600a613fd1565b60006001600160e01b0319821663152a902d60e11b14806114a457506114a482613fde565b6001600160a01b03811660009081526018602052604090205460ff1661378d335b6001600160a01b0316601461357b565b60405160200161379d9190615aba565b604051602081830303815290604052906114f55760405162461bcd60e51b81526004016115f691906151ab565b6127106001600160601b03821611156138385760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016115f6565b6001600160a01b03821661388e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016115f6565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601555565b600881811c60009081526020919091526040812054600160ff1b60ff84161c16156138f457506000919050565b6114a482614003565b613907828261401f565b6114f5828261409a565b600554600090819081906139299060081c60016156a4565b9050815b8181101561396d5760008181526008602052604090205461394d816141ac565b61395790866156a4565b945050808061396590615835565b91505061392d565b50505090565b600060016005546114949190615691565b61398e33826141c6565b6139aa5760405162461bcd60e51b81526004016115f690615b07565b6116ef83838361428b565b6000546001600160a01b03163314611eff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016115f6565b6001600160a01b03811660009081526018602052604090205460ff1615613a353361377d565b604051602001613a459190615b5b565b60405160208183030381529060405290613a725760405162461bcd60e51b81526004016115f691906151ab565b506001600160a01b03166000908152601860205260409020805460ff19166001179055565b600260105403613ae95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016115f6565b6002601055565b6114f5828260405180602001604052806000815250614492565b6116ef83838360405180602001604052806000815250612c1e565b6000613b3082612251565b9050613b408160008460016144d3565b613b4b600883614522565b60405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a46114f581600084600161454e565b600080613b9d836138c7565b613bfe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016115f6565b613c0783614571565b6000818152600460205260409020546001600160a01b031694909350915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b613c83600a8261457e565b506040516001600160a01b0382169033907f3b01c97343869ca2757fcc37cdb8f71683b0a7aed858e3755f4529a1db85729290600090a350565b6000613cc8826138c7565b613ce45760405162461bcd60e51b81526004016115f690615969565b602754600083815260316020526040812054909190613d039042615bb2565b613d0d9190615bd2565b905060265481126114a4575060265492915050565b613d2b82614593565b80613d34575080155b613d965760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2043616e206e6f7420617070726f766560448201526c103637b1b5b2b2103a37b5b2b760991b60648201526084016115f6565b6114f5828261459f565b613da98161375c565b6001600160a01b03166000908152601860205260409020805460ff19169055565b613dd433836141c6565b613df05760405162461bcd60e51b81526004016115f690615b07565b61182684848484614663565b6060602b805461150890615624565b60606000613e188361467c565b60010190506000816001600160401b03811115613e3757613e3761524d565b6040519080825280601f01601f191660200182016040528015613e61576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613e6b57509392505050565b6060600080613eae81612710611908565b91509150613ef7613ebe82613e0b565b613ed2846001600160a01b0316601461357b565b604051602001613ee3929190615c00565b604051602081830303815290604052614754565b604051602001613f079190615c86565b6040516020818303038152906040529250505090565b600080613f29846148b8565b9050613f3583826148fa565b949350505050565b613f48600a82613716565b506040516001600160a01b0382169033907fbd0af1fe0a2c1c7bb340c17a284a291138979c8eeb797e176dbd1c415199af3c90600090a350565b6000818152600183016020526040812054613fc9575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556114a4565b5060006114a4565b606060006133aa83614993565b60006001600160e01b03198216630101c11560e71b14806114a457506114a4826149ee565b600061400e60055490565b821080156114a45750506001111590565b6001600160a01b038216156114f5576140388183614a3e565b6114f55760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2054686520636f6e747261637420697360448201526c103737ba1030b63637bbb2b21760991b60648201526084016115f6565b60006140a582612251565b9050806001600160a01b0316836001600160a01b0316036141145760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b60648201526084016115f6565b336001600160a01b038216148061413057506141308133613363565b6141a25760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c000000000060648201526084016115f6565b6116ef8383614a4b565b60005b8115612871576000198201909116906001016141af565b60006141d1826138c7565b6142355760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016115f6565b600061424083612251565b9050806001600160a01b0316846001600160a01b0316148061427b5750836001600160a01b03166142708461158b565b6001600160a01b0316145b80613f355750613f358185613363565b60008061429783613b91565b91509150846001600160a01b0316826001600160a01b0316146143115760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b60648201526084016115f6565b6001600160a01b0384166143775760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b60648201526084016115f6565b61438485858560016144d3565b61438f600084614a4b565b600061439c8460016156a4565b600881901c600090815260016020526040902054909150600160ff1b60ff83161c161580156143cc575060055481105b1561440357600081815260046020526040902080546001600160a01b0319166001600160a01b038816179055614403600182614522565b600084815260046020526040902080546001600160a01b0319166001600160a01b03871617905581841461443c5761443c600185614522565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461448a868686600161454e565b505050505050565b600061449d60055490565b90506144a98484614ab9565b6144b7600085838686614c46565b6118265760405162461bcd60e51b81526004016115f690615ccb565b600082815260316020526040812042905582906144f083836156a4565b90505b42603160008461450281615835565b95508152602001908152602001600020819055508082106144f35761448a565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b6001600160a01b03841615611826576000828152600d6020526040812055611826565b60006114a4600183614d7d565b60006133aa836001600160a01b038416614e75565b60006114a43383613f1d565b336001600160a01b038316036145f75760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c65720000000060448201526064016115f6565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61466e84848461428b565b6144b7848484600185614c46565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106146bb5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106146e7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061470557662386f26fc10000830492506010015b6305f5e100831061471d576305f5e100830492506008015b612710831061473157612710830492506004015b60648310614743576064830492506002015b600a83106114a45760010192915050565b6060815160000361477357505060408051602081019091526000815290565b6000604051806060016040528060408152602001615d9160409139905060006003845160026147a291906156a4565b6147ac91906156e4565b6147b79060046156b7565b905060006147c68260206156a4565b6001600160401b038111156147dd576147dd61524d565b6040519080825280601f01601f191660200182016040528015614807576020820181803683370190505b509050818152600183018586518101602084015b81831015614873576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161481b565b60038951066001811461488d576002811461489e576148aa565b613d3d60f01b6001198301526148aa565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b0381166000908152600e6020526040812054156148f257506001600160a01b03166000908152600e602052604090205490565b5050600f5490565b600c5460009060ff1661490f575060016114a4565b61491883614f68565b806133aa5750600954604051630f8350ed60e41b81526001600160a01b038581166004830152602482018590529091169063f8350ed090604401602060405180830381865afa15801561496f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133aa919061565e565b60608160000180548060200260200160405190810160405280929190818152602001828054801561319757602002820191906000526020600020905b8154815260200190600101908083116149cf5750505050509050919050565b60006001600160e01b031982166380ac58cd60e01b1480614a1f57506001600160e01b03198216635b5e139f60e01b145b806114a457506301ffc9a760e01b6001600160e01b03198316146114a4565b600080613f293385614f75565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190614a8082612251565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000614ac460055490565b905060008211614b245760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b60648201526084016115f6565b6001600160a01b038316614b865760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b60648201526084016115f6565b614b9360008483856144d3565b8160056000828254614ba591906156a4565b9091555050600081815260046020526040902080546001600160a01b0319166001600160a01b038516179055614bdc600182614522565b614be9600084838561454e565b805b614bf583836156a4565b8110156118265760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480614c3e81615835565b915050614beb565b60006001600160a01b0385163b15614d7057506001835b614c6784866156a4565b811015614d6a57604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290614ca09033908b9086908990600401615d20565b6020604051808303816000875af1925050508015614cdb575060408051601f3d908101601f19168201909252614cd891810190615d5d565b60015b614d38573d808015614d09576040519150601f19603f3d011682016040523d82523d6000602084013e614d0e565b606091505b508051600003614d305760405162461bcd60e51b81526004016115f690615ccb565b805181602001fd5b828015614d5557506001600160e01b03198116630a85bd0160e11b145b92505080614d6281615835565b915050614c5d565b50614d74565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c8015614dbf57614dad81614fa7565b60ff168203600884901b179350614e6c565b60008311614e2c5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b60648201526084016115f6565b506000199091016000818152602086905260409020549091908015614e6757614e5481614fa7565b60ff0360ff16600884901b179350614e6c565b614dbf565b50505092915050565b60008181526001830160205260408120548015614f5e576000614e99600183615691565b8554909150600090614ead90600190615691565b9050818114614f12576000866000018281548110614ecd57614ecd61584e565b9060005260206000200154905080876000018481548110614ef057614ef061584e565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080614f2357614f23615d7a565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506114a4565b60009150506114a4565b60006114a4600a83615011565b6000818152600d602052604081205415614f9e57506000818152600d60205260409020546114a4565b6133aa836148b8565b60006040518061012001604052806101008152602001615dd1610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff614ff085615033565b02901c815181106150035761500361584e565b016020015160f81c92915050565b6001600160a01b038116600090815260018301602052604081205415156133aa565b600080821161504157600080fd5b5060008190031690565b6020808252825182820181905260009190848201906040850190845b8181101561508c5783516001600160a01b031683529284019291840191600101615067565b50909695505050505050565b6001600160e01b0319811681146114d157600080fd5b6000602082840312156150c057600080fd5b81356133aa81615098565b6001600160a01b03811681146114d157600080fd5b6000602082840312156150f257600080fd5b81356133aa816150cb565b60006020828403121561510f57600080fd5b5035919050565b6000806040838503121561512957600080fd5b8235615134816150cb565b915060208301356001600160601b038116811461515057600080fd5b809150509250929050565b60005b8381101561517657818101518382015260200161515e565b50506000910152565b6000815180845261519781602086016020860161515b565b601f01601f19169290920160200192915050565b6020815260006133aa602083018461517f565b600080604083850312156151d157600080fd5b82356151dc816150cb565b946020939093013593505050565b6000806000606084860312156151ff57600080fd5b833561520a816150cb565b9250602084013561521a816150cb565b929592945050506040919091013590565b6000806040838503121561523e57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561528b5761528b61524d565b604052919050565b600082601f8301126152a457600080fd5b813560206001600160401b038211156152bf576152bf61524d565b8160051b6152ce828201615263565b92835284810182019282810190878511156152e857600080fd5b83870192505b84831015615307578235825291830191908301906152ee565b979650505050505050565b6000806040838503121561532557600080fd5b8235915060208301356001600160401b0381111561534257600080fd5b61534e85828601615293565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561508c57835183529284019291840191600101615374565b60006001600160401b038311156153a9576153a961524d565b6153bc601f8401601f1916602001615263565b90508281528383830111156153d057600080fd5b828260208301376000602084830101529392505050565b6000602082840312156153f957600080fd5b81356001600160401b0381111561540f57600080fd5b8201601f8101841361542057600080fd5b613f3584823560208401615390565b6000806040838503121561544257600080fd5b823561544d816150cb565b915060208301356001600160401b0381111561534257600080fd5b80151581146114d157600080fd5b60006020828403121561548857600080fd5b81356133aa81615468565b600080604083850312156154a657600080fd5b823591506020830135615150816150cb565b600080604083850312156154cb57600080fd5b82356154d6816150cb565b9150602083013561515081615468565b600080600080608085870312156154fc57600080fd5b8435615507816150cb565b93506020850135615517816150cb565b92506040850135915060608501356001600160401b0381111561553957600080fd5b8501601f8101871361554a57600080fd5b61555987823560208401615390565b91505092959194509250565b60008060006060848603121561557a57600080fd5b833592506020840135915060408401356001600160401b0381111561559e57600080fd5b6155aa86828701615293565b9150509250925092565b6000806000606084860312156155c957600080fd5b83356155d4816150cb565b92506020840135915060408401356001600160401b0381111561559e57600080fd5b6000806040838503121561560957600080fd5b8235615614816150cb565b91506020830135615150816150cb565b600181811c9082168061563857607f821691505b60208210810361565857634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561567057600080fd5b81516133aa81615468565b634e487b7160e01b600052601160045260246000fd5b818103818111156114a4576114a461567b565b808201808211156114a4576114a461567b565b80820281158282048414176114a4576114a461567b565b634e487b7160e01b600052601260045260246000fd5b6000826156f3576156f36156ce565b500490565b60208082526027908201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6040820152666e652074696d6560c81b606082015260800190565b60208082526025908201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604082015264185b1b195d60da1b606082015260800190565b60208082526018908201527f4554482076616c7565206973206e6f7420636f72726563740000000000000000604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526018908201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604082015260600190565b60006020828403121561582a57600080fd5b81516133aa816150cb565b6000600182016158475761584761567b565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156116ef57600081815260208120601f850160051c8101602086101561588b5750805b601f850160051c820191505b8181101561448a57828155600101615897565b81516001600160401b038111156158c3576158c361524d565b6158d7816158d18454615624565b84615864565b602080601f83116001811461590c57600084156158f45750858301515b600019600386901b1c1916600185901b17855561448a565b600085815260208120601f198616915b8281101561593b5788860151825594840194600190910190840161591c565b50858210156159595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b600081546159ad81615624565b600182811680156159c557600181146159da57615a09565b60ff1984168752821515830287019450615a09565b8560005260208060002060005b85811015615a005781548a8201529084019082016159e7565b50505082870194505b5050505092915050565b60008551615a25818460208a0161515b565b855190830190615a39818360208a0161515b565b602f60f81b91019081528451615a5681600184016020890161515b565b615a65600182840101866159a0565b98975050505050505050565b60008451615a8381846020890161515b565b845190830190615a9781836020890161515b565b615307818301866159a0565b600081615ab257615ab261567b565b506000190190565b67030b1b1b7bab73a160c51b815260008251615add81600885016020870161515b565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b67030b1b1b7bab73a160c51b815260008251615b7e81600885016020870161515b565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b81810360008312801583831316838312821617156124325761243261567b565b600082615be157615be16156ce565b600160ff1b821460001984141615615bfb57615bfb61567b565b500590565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a0000000000815260008351615c3881601b85016020880161515b565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b918401918201528351615c6b81602e84016020880161515b565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251615cbe81601d85016020870161515b565b91909101601d0192915050565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615d539083018461517f565b9695505050505050565b600060208284031215615d6f57600080fd5b81516133aa81615098565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a2646970667358221220dee37fb43b7635ffeff70e028141ec5f3530c86228eee6cc595dfb2752e411a164736f6c63430008110033

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

000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f00000000000000000000000000000000000000000000000000000000000002ee

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0xB4250F715995683c6EA5BC7c5e2CDF9b1601ba3f
Arg [1] : _royaltyFraction (uint96): 750

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f
Arg [1] : 00000000000000000000000000000000000000000000000000000000000002ee


Deployed Bytecode Sourcemap

116778:18720:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134738:181;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119372:179;;;;;;;;;;-1:-1:-1;119372:179:0;;;;;:::i;:::-;;:::i;:::-;;;1228:14:1;;1221:22;1203:41;;1191:2;1176:18;119372:179:0;1063:187:1;135035:105:0;;;;;;;;;;-1:-1:-1;135035:105:0;;;;;:::i;:::-;;:::i;:::-;;121478:111;;;;;;;;;;-1:-1:-1;121478:111:0;;;;;:::i;:::-;;:::i;119194:157::-;;;;;;;;;;-1:-1:-1;119194:157:0;;;;;:::i;:::-;;:::i;75342:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;110457:33::-;;;;;;;;;;-1:-1:-1;110457:33:0;;;;;;;;76897:311;;;;;;;;;;-1:-1:-1;76897:311:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3188:32:1;;;3170:51;;3158:2;3143:18;76897:311:0;3024:203:1;133385:157:0;;;;;;;;;;-1:-1:-1;133385:157:0;;;;;:::i;:::-;;:::i;124519:103::-;;;;;;;;;;;;;:::i;:::-;;;3698:25:1;;;3686:2;3671:18;124519:103:0;3552:177:1;134927:100:0;;;;;;;;;;-1:-1:-1;134927:100:0;;;;;:::i;:::-;;:::i;90469:122::-;;;;;;;;;;;;;:::i;117703:27::-;;;;;;;;;;-1:-1:-1;117703:27:0;;;;;;;;117126:32;;;;;;;;;;;;;;;;117073:48;;;;;;;;;;-1:-1:-1;117073:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;122527:126;;;;;;;;;;-1:-1:-1;122527:126:0;;;;;:::i;:::-;122626:10;;122594:7;122616:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;122616:31:0;;;;;;;;;;;122527:126;121196:163;;;;;;;;;;-1:-1:-1;121196:163:0;;;;;:::i;:::-;;:::i;110595:49::-;;;;;;;;;;-1:-1:-1;110595:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;133550:163;;;;;;;;;;-1:-1:-1;133550:163:0;;;;;:::i;:::-;;:::i;123949:118::-;;;;;;;;;;-1:-1:-1;123949:118:0;;;;;:::i;:::-;;:::i;117647:38::-;;;;;;;;;;;;;:::i;121047:130::-;;;;;;;;;;-1:-1:-1;121047:130:0;;;;;:::i;:::-;;:::i;135198:115::-;;;;;;;;;;-1:-1:-1;135198:115:0;;;;;:::i;:::-;;:::i;68246:442::-;;;;;;;;;;-1:-1:-1;68246:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4825:32:1;;;4807:51;;4889:2;4874:18;;4867:34;;;;4780:18;68246:442:0;4633:274:1;116938:40:0;;;;;;;;;;;;;;;;129718:722;;;;;;:::i;:::-;;:::i;117163:34::-;;;;;;;;;;;;;;;;130464:829;;;;;;:::i;:::-;;:::i;121593:111::-;;;;;;;;;;-1:-1:-1;121593:111:0;;;;;:::i;:::-;;:::i;110011:34::-;;;;;;;;;;-1:-1:-1;110011:34:0;;;;-1:-1:-1;;;;;110011:34:0;;;131605:412;;;:::i;117767:31::-;;;;;;;;;;-1:-1:-1;117767:31:0;;;;;;;;;;;105112:143;;;;;;;;;;;;105212:42;105112:143;;117028:40;;;;;;;;;;;;;;;;133721:171;;;;;;;;;;-1:-1:-1;133721:171:0;;;;;:::i;:::-;;:::i;131309:75::-;;;;;;;;;;-1:-1:-1;131309:75:0;;;;;:::i;:::-;;:::i;132056:481::-;;;;;;;;;;-1:-1:-1;132056:481:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;117803:33::-;;;;;;;;;;-1:-1:-1;117803:33:0;;;;;;;;;;;116983:40;;;;;;;;;;;;;;;;117278:31;;;;;;;;;;;;;;;;110675:27;;;;;;;;;;;;;;;;117314;;;;;;;;;;;;;;;;124684:103;;;;;;;;;;-1:-1:-1;124684:103:0;;;;;:::i;:::-;;:::i;99146:22::-;;;;;;;;;;;;;;;;100572:408;;;;;;;;;;-1:-1:-1;100572:408:0;;;;;:::i;:::-;;:::i;74747:222::-;;;;;;;;;;-1:-1:-1;74747:222:0;;;;;:::i;:::-;;:::i;101194:113::-;;;;;;;;;;-1:-1:-1;101194:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;101278:21:0;101254:4;101278:21;;;:10;:21;;;;;;;;;101194:113;120428:179;;;;;;;;;;-1:-1:-1;120428:179:0;;;;;:::i;:::-;;:::i;124071:156::-;;;;;;;;;;-1:-1:-1;124071:156:0;;;;;:::i;:::-;;:::i;126055:225::-;;;;;;;;;;-1:-1:-1;126055:225:0;;;;;:::i;:::-;;:::i;74195:490::-;;;;;;;;;;-1:-1:-1;74195:490:0;;;;;:::i;:::-;;:::i;93140:103::-;;;;;;;;;;;;;:::i;117465:23::-;;;;;;;;;;;;;;;;134549:181;;;;;;;;;;-1:-1:-1;134549:181:0;;;;;:::i;:::-;;:::i;125070:189::-;;;;;;;;;;-1:-1:-1;125070:189:0;;;;;:::i;:::-;;:::i;126303:92::-;;;;;;;;;;-1:-1:-1;126303:92:0;;;;;:::i;:::-;;:::i;123538:110::-;;;;;;;;;;-1:-1:-1;123538:110:0;;;;;:::i;:::-;;:::i;122397:126::-;;;;;;;;;;-1:-1:-1;122397:126:0;;;;;:::i;:::-;122496:10;;122464:7;122486:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;122486:31:0;;;;;;;;;;;122397:126;128833:861;;;;;;:::i;:::-;;:::i;113483:176::-;;;;;;;;;;-1:-1:-1;113483:176:0;;;;;:::i;:::-;;:::i;117436:24::-;;;;;;;;;;;;;;;;123258:100;;;;;;;;;;-1:-1:-1;123258:100:0;;;;;:::i;:::-;;:::i;132600:243::-;;;;;;;;;;-1:-1:-1;132600:243:0;;;;;:::i;:::-;;:::i;117346:25::-;;;;;;;;;;;;;;;;86878:601;;;;;;;;;;-1:-1:-1;86878:601:0;;;;;:::i;:::-;;:::i;125655:369::-;;;;;;;;;;-1:-1:-1;125655:369:0;;;;;:::i;:::-;;:::i;92492:87::-;;;;;;;;;;-1:-1:-1;92538:7:0;92565:6;-1:-1:-1;;;;;92565:6:0;92492:87;;121740:103;;;;;;;;;;-1:-1:-1;121740:103:0;;;;;:::i;:::-;;:::i;122657:149::-;;;;;;;;;;-1:-1:-1;122657:149:0;;;;;:::i;:::-;122746:7;122768:22;;;:9;:22;;;;;;;;-1:-1:-1;;;;;122768:32:0;;;;;;;;;;;;;122657:149;120611:174;;;;;;;;;;-1:-1:-1;120611:174:0;;;;;:::i;:::-;;:::i;122810:126::-;;;;;;;;;;-1:-1:-1;122810:126:0;;;;;:::i;:::-;122909:10;;122877:7;122899:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;122899:31:0;;;;;;;;;;;122810:126;75511:104;;;;;;;;;;;;;:::i;120290:103::-;;;;;;;;;;-1:-1:-1;120290:103:0;;;;;:::i;:::-;;:::i;131414:127::-;;;:::i;133201:176::-;;;;;;;;;;-1:-1:-1;133201:176:0;;;;;:::i;:::-;;:::i;123671:111::-;;;;;;;;;;-1:-1:-1;123671:111:0;;;;;:::i;:::-;;:::i;113667:135::-;;;;;;;;;;-1:-1:-1;113667:135:0;;;;;:::i;:::-;113775:10;113760:26;;;;:14;:26;;;;;:34;113667:135;123807:115;;;;;;;;;;-1:-1:-1;123807:115:0;;;;;:::i;:::-;;:::i;135372:117::-;;;;;;;;;;-1:-1:-1;135372:117:0;;;;;:::i;:::-;;:::i;110518:48::-;;;;;;;;;;-1:-1:-1;110518:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;122981:106;;;;;;;;;;-1:-1:-1;123073:7:0;;123037;123059:22;;;:13;:22;;;;;;122981:106;;133071:122;;;;;;;;;;-1:-1:-1;133071:122:0;;;;;:::i;:::-;;:::i;133900:228::-;;;;;;;;;;-1:-1:-1;133900:228:0;;;;;:::i;:::-;;:::i;123111:127::-;;;;;;;;;;-1:-1:-1;123111:127:0;;;;;:::i;:::-;;:::i;124388:101::-;;;;;;;;;;-1:-1:-1;124388:101:0;;;;;:::i;:::-;;:::i;121861:103::-;;;;;;;;;;-1:-1:-1;121861:103:0;;;;;:::i;:::-;;:::i;117735:27::-;;;;;;;;;;-1:-1:-1;117735:27:0;;;;;;;;;;;123405:110;;;;;;;;;;-1:-1:-1;123405:110:0;;;;;:::i;:::-;;:::i;128000:809::-;;;;;;:::i;:::-;;:::i;122117:107::-;;;;;;;;;;-1:-1:-1;122117:107:0;;;;;:::i;:::-;;:::i;126935:786::-;;;;;;;;;;-1:-1:-1;126935:786:0;;;;;:::i;:::-;;:::i;124231:118::-;;;;;;;;;;-1:-1:-1;124231:118:0;;;;;:::i;:::-;;:::i;100012:434::-;;;;;;;;;;-1:-1:-1;100012:434:0;;;;;:::i;:::-;;:::i;120810:88::-;;;;;;;;;;-1:-1:-1;120885:7:0;;120810:88;;127784:198;;;;;;;;;;-1:-1:-1;127784:198:0;;;;;:::i;:::-;;:::i;117241:32::-;;;;;;;;;;;;;;;;117376:25;;;;;;;;;;;;;;;;117507:23;;;;;;;;;;-1:-1:-1;117507:23:0;;;;-1:-1:-1;;;;;117507:23:0;;;121982:103;;;;;;;;;;-1:-1:-1;121982:103:0;;;;;:::i;:::-;;:::i;124795:131::-;;;;;;;;;;-1:-1:-1;124795:131:0;;;;;:::i;:::-;;:::i;117406:25::-;;;;;;;;;;;;;;;;121363:111;;;;;;;;;;-1:-1:-1;121363:111:0;;;;;:::i;:::-;;:::i;119580:113::-;;;;;;;;;;;;;:::i;113994:309::-;;;;;;;;;;-1:-1:-1;113994:309:0;;;;;:::i;:::-;;:::i;117202:34::-;;;;;;;;;;;;;;;;93398:201;;;;;;;;;;-1:-1:-1;93398:201:0;;;;;:::i;:::-;;:::i;99293:433::-;;;;;;;;;;-1:-1:-1;99293:433:0;;;;;:::i;:::-;;:::i;105060:43::-;;;;;;;;;;-1:-1:-1;105060:43:0;;;;;;;;120923:99;;;;;;;;;;-1:-1:-1;120923:99:0;;;;;:::i;:::-;;:::i;126418:90::-;;;;;;;;;;-1:-1:-1;126418:90:0;;;;;:::i;:::-;;:::i;134366:175::-;;;;;;;;;;-1:-1:-1;134366:175:0;;;;;:::i;:::-;;:::i;134738:181::-;134842:16;134883:28;:26;:28::i;:::-;134876:35;;134738:181;:::o;119372:179::-;119489:4;119509:36;119533:11;119509:23;:36::i;:::-;119502:43;119372:179;-1:-1:-1;;119372:179:0:o;135035:105::-;101136:32;71502:10;101136:18;:32::i;:::-;113312:3;:35;;-1:-1:-1;;;;;;113312:35:0;-1:-1:-1;;;;;113312:35:0;;;;;135035:105;:::o;135113:19::-:1;135035:105:::0;:::o;121478:111::-;101136:32;71502:10;101136:18;:32::i;:::-;121559:10:::1;:24:::0;121478:111::o;119194:157::-;101136:32;71502:10;101136:18;:32::i;:::-;119301:44:::1;119320:9;119331:13;119301:18;:44::i;:::-;119194:157:::0;;:::o;75342:100::-;75396:13;75429:5;75422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75342:100;:::o;76897:311::-;77018:7;77065:16;77073:7;77065;:16::i;:::-;77043:113;;;;-1:-1:-1;;;77043:113:0;;13089:2:1;77043:113:0;;;13071:21:1;13128:2;13108:18;;;13101:30;13167:34;13147:18;;;13140:62;-1:-1:-1;;;13218:18:1;;;13211:45;13273:19;;77043:113:0;;;;;;;;;-1:-1:-1;77176:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;77176:24:0;;76897:311::o;133385:157::-;133481:8;105212:42;107134:45;:49;;;;:77;;-1:-1:-1;107187:24:0;;;;107134:77;107130:253;;;107233:67;;-1:-1:-1;;;107233:67:0;;107284:4;107233:67;;;13515:34:1;-1:-1:-1;;;;;13585:15:1;;13565:18;;;13558:43;105212:42:0;;107233;;13450:18:1;;107233:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;107228:144;;107328:28;;-1:-1:-1;;;107328:28:0;;-1:-1:-1;;;;;3188:32:1;;107328:28:0;;;3170:51:1;3143:18;;107328:28:0;3024:203:1;107228:144:0;133502:32:::1;133516:8;133526:7;133502:13;:32::i;:::-;133385:157:::0;;;:::o;124519:103::-;124577:7;124615:1;124599:14;73462:13;;;73380:103;124599:14;:17;;;;:::i;134927:100::-;101136:32;71502:10;101136:18;:32::i;:::-;135003:8:::1;:16:::0;134927:100::o;90469:122::-;90530:7;90574:9;:7;:9::i;:::-;90557:14;:12;:14::i;121196:163::-;101136:32;71502:10;101136:18;:32::i;:::-;121273:10:::1;:22:::0;;;121302:10:::1;:22:::0;;;121331:10:::1;:22:::0;121196:163::o;133550:::-;133651:4;105212:42;106360:45;:49;;;;:77;;-1:-1:-1;106413:24:0;;;;106360:77;106356:567;;;106677:10;-1:-1:-1;;;;;106669:18:0;;;106665:85;;133668:37:::1;133687:4;133693:2;133697:7;133668:18;:37::i;:::-;106728:7:::0;;106665:85;106769:69;;-1:-1:-1;;;106769:69:0;;106820:4;106769:69;;;13515:34:1;106827:10:0;13565:18:1;;;13558:43;105212:42:0;;106769;;13450:18:1;;106769:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106764:148;;106866:30;;-1:-1:-1;;;106866:30:0;;106885:10;106866:30;;;3170:51:1;3143:18;;106866:30:0;3024:203:1;106764:148:0;133668:37:::1;133687:4;133693:2;133697:7;133668:18;:37::i;:::-;133550:163:::0;;;;:::o;123949:118::-;101136:32;71502:10;101136:18;:32::i;:::-;124032:29:::1;124049:11;99252:13:::0;:27;99177:110;117647:38;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;121047:130::-;101136:32;71502:10;101136:18;:32::i;:::-;121141:8:::1;121131:7;:18;;;;121170:1;121156:10;;:15;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;121047:130:0:o;135198:115::-;92378:13;:11;:13::i;:::-;135275:30:::1;135294:10;135275:18;:30::i;68246:442::-:0;68343:7;68401:27;;;:17;:27;;;;;;;;68372:56;;;;;;;;;-1:-1:-1;;;;;68372:56:0;;;;;-1:-1:-1;;;68372:56:0;;;-1:-1:-1;;;;;68372:56:0;;;;;;;;68343:7;;68441:92;;-1:-1:-1;68492:29:0;;;;;;;;;68502:19;68492:29;-1:-1:-1;;;;;68492:29:0;;;;-1:-1:-1;;;68492:29:0;;-1:-1:-1;;;;;68492:29:0;;;;;68441:92;68583:23;;;;68545:21;;69054:5;;68570:36;;-1:-1:-1;;;;;68570:36:0;:10;:36;:::i;:::-;68569:58;;;;:::i;:::-;68648:16;;;;;-1:-1:-1;68246:442:0;;-1:-1:-1;;;;68246:442:0:o;129718:722::-;57228:21;:19;:21::i;:::-;129808:19:::1;::::0;;;::::1;;;129800:52;;;::::0;-1:-1:-1;;;129800:52:0;;14889:2:1;129800:52:0::1;::::0;::::1;14871:21:1::0;14928:2;14908:18;;;14901:30;-1:-1:-1;;;14947:18:1;;;14940:50;15007:18;;129800:52:0::1;14687:344:1::0;129800:52:0::1;129886:7;129867:15;;:26;;129859:78;;;;-1:-1:-1::0;;;129859:78:0::1;;;;;;;:::i;:::-;129969:7;129952:13;;:24;;129944:74;;;;-1:-1:-1::0;;;129944:74:0::1;;;;;;;:::i;:::-;130060:10;::::0;130050:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;130072:10:::1;130050:33:::0;;;;;;;;:43:::1;::::0;130086:7;;130050:43:::1;:::i;:::-;130033:13;;:60;;130025:100;;;::::0;-1:-1:-1;;;130025:100:0;;16052:2:1;130025:100:0::1;::::0;::::1;16034:21:1::0;16091:2;16071:18;;;16064:30;16130:29;16110:18;;;16103:57;16177:18;;130025:100:0::1;15850:351:1::0;130025:100:0::1;130167:7;130153:11;;:21;;;;:::i;:::-;130140:9;:34;130132:71;;;;-1:-1:-1::0;;;130132:71:0::1;;;;;;;:::i;:::-;130248:8;;130229:13;:11;:13::i;:::-;130219:23;::::0;:7;:23:::1;:::i;:::-;130218:39;;130210:64;;;;-1:-1:-1::0;;;130210:64:0::1;;;;;;;:::i;:::-;130319:9;;130300:13;:11;:13::i;:::-;130290:23;::::0;:7;:23:::1;:::i;:::-;130289:40;;130281:65;;;;-1:-1:-1::0;;;130281:65:0::1;;;;;;;:::i;:::-;130363:10;::::0;130353:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;130375:10:::1;130353:33:::0;;;;;;;:44;;130390:7;;130353:21;:44:::1;::::0;130390:7;;130353:44:::1;:::i;:::-;::::0;;;-1:-1:-1;130404:30:0::1;::::0;-1:-1:-1;130414:10:0::1;130426:7:::0;130404:9:::1;:30::i;:::-;57272:20:::0;56666:1;57792:7;:22;57609:213;130464:829;57228:21;:19;:21::i;:::-;130581::::1;::::0;;;::::1;;;130573:54;;;::::0;-1:-1:-1;;;130573:54:0;;14889:2:1;130573:54:0::1;::::0;::::1;14871:21:1::0;14928:2;14908:18;;;14901:30;-1:-1:-1;;;14947:18:1;;;14940:50;15007:18;;130573:54:0::1;14687:344:1::0;130573:54:0::1;130642:34;130657:10;130669:6;130642:14;:34::i;:::-;130634:71;;;;-1:-1:-1::0;;;130634:71:0::1;;;;;;;:::i;:::-;130739:7;130720:15;;:26;;130712:78;;;;-1:-1:-1::0;;;130712:78:0::1;;;;;;;:::i;:::-;130822:7;130805:13;;:24;;130797:74;;;;-1:-1:-1::0;;;130797:74:0::1;;;;;;;:::i;:::-;130913:10;::::0;130903:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;130925:10:::1;130903:33:::0;;;;;;;;:43:::1;::::0;130939:7;;130903:43:::1;:::i;:::-;130886:13;;:60;;130878:100;;;::::0;-1:-1:-1;;;130878:100:0;;16052:2:1;130878:100:0::1;::::0;::::1;16034:21:1::0;16091:2;16071:18;;;16064:30;16130:29;16110:18;;;16103:57;16177:18;;130878:100:0::1;15850:351:1::0;130878:100:0::1;131020:7;131006:11;;:21;;;;:::i;:::-;130993:9;:34;130985:71;;;;-1:-1:-1::0;;;130985:71:0::1;;;;;;;:::i;:::-;131101:8;;131082:13;:11;:13::i;:::-;131072:23;::::0;:7;:23:::1;:::i;:::-;131071:39;;131063:64;;;;-1:-1:-1::0;;;131063:64:0::1;;;;;;;:::i;:::-;131172:9;;131153:13;:11;:13::i;:::-;131143:23;::::0;:7;:23:::1;:::i;:::-;131142:40;;131134:65;;;;-1:-1:-1::0;;;131134:65:0::1;;;;;;;:::i;:::-;131216:10;::::0;131206:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;131228:10:::1;131206:33:::0;;;;;;;:44;;131243:7;;131206:21;:44:::1;::::0;131243:7;;131206:44:::1;:::i;:::-;::::0;;;-1:-1:-1;131257:30:0::1;::::0;-1:-1:-1;131267:10:0::1;131279:7:::0;131257:9:::1;:30::i;:::-;57272:20:::0;56666:1;57792:7;:22;57609:213;121593:111;101136:32;71502:10;101136:18;:32::i;:::-;121674:10:::1;:24:::0;121593:111::o;131605:412::-;101136:32;71502:10;101136:18;:32::i;:::-;57228:21:::1;:19;:21::i;:::-;131749:15:::2;::::0;131704:21:::2;::::0;131682:19:::2;::::0;-1:-1:-1;;;;;131749:15:0::2;:29:::0;131746:220:::2;;131832:15;::::0;131824:55:::2;::::0;-1:-1:-1;;;;;131832:15:0;;::::2;::::0;131862:11;;131824:55:::2;::::0;;;131862:11;131832:15;131824:55:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131815:64;;;;;131746:220;;;92538:7:::0;92565:6;-1:-1:-1;;;;;92565:6:0;-1:-1:-1;;;;;131911:21:0::2;131941:11;131911:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;131902:56:0;;-1:-1:-1;;131746:220:0::2;131980:2;131972:39;;;::::0;-1:-1:-1;;;131972:39:0;;17665:2:1;131972:39:0::2;::::0;::::2;17647:21:1::0;17704:2;17684:18;;;17677:30;17743:26;17723:18;;;17716:54;17787:18;;131972:39:0::2;17463:348:1::0;131972:39:0::2;131675:342;;57272:20:::1;56666:1:::0;57792:7;:22;57609:213;57272:20:::1;131605:412::o:0;133721:171::-;133826:4;105212:42;106360:45;:49;;;;:77;;-1:-1:-1;106413:24:0;;;;106360:77;106356:567;;;106677:10;-1:-1:-1;;;;;106669:18:0;;;106665:85;;133843:41:::1;133866:4;133872:2;133876:7;133843:22;:41::i;106665:85::-:0;106769:69;;-1:-1:-1;;;106769:69:0;;106820:4;106769:69;;;13515:34:1;106827:10:0;13565:18:1;;;13558:43;105212:42:0;;106769;;13450:18:1;;106769:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106764:148;;106866:30;;-1:-1:-1;;;106866:30:0;;106885:10;106866:30;;;3170:51:1;3143:18;;106866:30:0;3024:203:1;106764:148:0;133843:41:::1;133866:4;133872:2;133876:7;133843:22;:41::i;131309:75::-:0;131364:14;131370:7;131364:5;:14::i;132056:481::-;132128:16;132153:23;132179:19;132189:8;132179:9;:19::i;:::-;132153:45;;132205:25;132247:15;-1:-1:-1;;;;;132233:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;132233:30:0;-1:-1:-1;132205:58:0;-1:-1:-1;132339:18:0;119127:1;132368:142;132423:1;132407:14;73462:13;;;73380:103;132407:14;:17;;;;:::i;:::-;132402:1;:23;132368:142;;;132456:18;;-1:-1:-1;;;132456:18:0;;;;;3698:25:1;;;132456:4:0;;:15;;3671:18:1;;132456::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;132444:30:0;:8;-1:-1:-1;;;;;132444:30:0;;132441:61;;132501:1;132476:8;132485:12;;;;:::i;:::-;;;132476:22;;;;;;;;:::i;:::-;;;;;;:26;;;;;132441:61;132427:3;;;;:::i;:::-;;;;132368:142;;;-1:-1:-1;132523:8:0;;132056:481;-1:-1:-1;;;;132056:481:0:o;124684:103::-;101136:32;71502:10;101136:18;:32::i;:::-;124761:13:::1;:20;124777:4:::0;124761:13;:20:::1;:::i;100572:408::-:0;100703:26;;-1:-1:-1;;;;;;20697:2:1;20693:15;;;20689:53;100703:26:0;;;20677:66:1;100660:4:0;;;;20759:12:1;;100703:26:0;;;;;;;;;;;;100693:37;;;;;;100677:53;;100746:9;100741:192;100765:6;:13;100761:1;:17;100741:192;;;100816:6;100823:1;100816:9;;;;;;;;:::i;:::-;;;;;;;100808:5;:17;:113;;100903:6;100910:1;100903:9;;;;;;;;:::i;:::-;;;;;;;100914:5;100886:34;;;;;;;;20939:19:1;;;20983:2;20974:12;;20967:28;21020:2;21011:12;;20782:247;100886:34:0;;;;;;;;;;;;;100876:45;;;;;;100808:113;;;100855:5;100862:6;100869:1;100862:9;;;;;;;;:::i;:::-;;;;;;;100838:34;;;;;;;;20939:19:1;;;20983:2;20974:12;;20967:28;21020:2;21011:12;;20782:247;100838:34:0;;;;;;;;;;;;;100828:45;;;;;;100808:113;100800:121;-1:-1:-1;100780:3:0;;;;:::i;:::-;;;;100741:192;;;-1:-1:-1;100959:13:0;;100950:22;;100572:408;-1:-1:-1;;;100572:408:0:o;74747:222::-;74864:7;74890:13;74909:29;74930:7;74909:20;:29::i;:::-;-1:-1:-1;74889:49:0;74747:222;-1:-1:-1;;;74747:222:0:o;120428:179::-;101136:32;71502:10;101136:18;:32::i;:::-;120532:10:::1;120515:13;:11;:13::i;:::-;:27;;120507:65;;;::::0;-1:-1:-1;;;120507:65:0;;21236:2:1;120507:65:0::1;::::0;::::1;21218:21:1::0;21275:2;21255:18;;;21248:30;-1:-1:-1;;;21294:18:1;;;21287:55;21359:18;;120507:65:0::1;21034:349:1::0;120507:65:0::1;120579:9;:22:::0;120428:179::o;124071:156::-;101136:32;71502:10;101136:18;:32::i;:::-;99832:23;;;;:13;:23;;;;;;:37;119194:157::o;126055:225::-;126125:17;126133:8;126125:7;:17::i;:::-;126117:61;;;;-1:-1:-1;;;126117:61:0;;;;;;;:::i;:::-;126214:10;126193:17;126201:8;126193:7;:17::i;:::-;-1:-1:-1;;;;;126193:31:0;;126185:60;;;;-1:-1:-1;;;126185:60:0;;21950:2:1;126185:60:0;;;21932:21:1;21989:2;21969:18;;;21962:30;-1:-1:-1;;;22008:18:1;;;22001:46;22064:18;;126185:60:0;21748:340:1;126185:60:0;126273:1;126252:18;;;:8;:18;;;;;:22;126055:225::o;74195:490::-;74317:4;-1:-1:-1;;;;;74348:19:0;;74340:77;;;;-1:-1:-1;;;74340:77:0;;22295:2:1;74340:77:0;;;22277:21:1;22334:2;22314:18;;;22307:30;22373:34;22353:18;;;22346:62;-1:-1:-1;;;22424:18:1;;;22417:43;22477:19;;74340:77:0;22093:409:1;74340:77:0;74430:10;119127:1;74451:204;73462:13;;74482:1;:18;74451:204;;;74525:10;74533:1;74525:7;:10::i;:::-;74522:122;;;74568:10;74576:1;74568:7;:10::i;:::-;-1:-1:-1;;;;;74559:19:0;:5;-1:-1:-1;;;;;74559:19:0;;74555:74;;74602:7;;;:::i;:::-;;;74555:74;74502:3;;;:::i;:::-;;;74451:204;;;-1:-1:-1;74672:5:0;74195:490;-1:-1:-1;;74195:490:0:o;93140:103::-;92378:13;:11;:13::i;:::-;93205:30:::1;93232:1;93205:18;:30::i;134549:181::-:0;101136:32;71502:10;101136:18;:32::i;:::-;134681:41:::1;134711:10;134681:29;:41::i;125070:189::-:0;125141:7;125165:17;125173:8;125165:7;:17::i;:::-;125157:61;;;;-1:-1:-1;;;125157:61:0;;;;;;;:::i;:::-;-1:-1:-1;125234:19:0;;;;:9;:19;;;;;;;125070:189::o;126303:92::-;92378:13;:11;:13::i;:::-;126373:9:::1;:16:::0;126303:92::o;123538:110::-;101136:32;71502:10;101136:18;:32::i;:::-;123619:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;123619:23:0;;::::1;::::0;;;::::1;::::0;;123538:110::o;128833:861::-;57228:21;:19;:21::i;:::-;128951:15:::1;::::0;::::1;::::0;::::1;;;128943:51;;;::::0;-1:-1:-1;;;128943:51:0;;22709:2:1;128943:51:0::1;::::0;::::1;22691:21:1::0;22748:2;22728:18;;;22721:30;22787:25;22767:18;;;22760:53;22830:18;;128943:51:0::1;22507:347:1::0;128943:51:0::1;129009:41;129023:10;129034:7;;129043:6;129009:13;:41::i;:::-;129001:78;;;;-1:-1:-1::0;;;129001:78:0::1;;;;;;;:::i;:::-;129113:7;129094:15;;:26;;129086:81;;;::::0;-1:-1:-1;;;129086:81:0;;23061:2:1;129086:81:0::1;::::0;::::1;23043:21:1::0;23100:2;23080:18;;;23073:30;23139:34;23119:18;;;23112:62;-1:-1:-1;;;23190:18:1;;;23183:40;23240:19;;129086:81:0::1;22859:406:1::0;129086:81:0::1;129196:7;::::0;129182:22:::1;::::0;;;:13:::1;:22;::::0;;;;;:33;-1:-1:-1;129182:33:0::1;129174:86;;;::::0;-1:-1:-1;;;129174:86:0;;23472:2:1;129174:86:0::1;::::0;::::1;23454:21:1::0;23511:2;23491:18;;;23484:30;23550:34;23530:18;;;23523:62;-1:-1:-1;;;23601:18:1;;;23594:38;23649:19;;129174:86:0::1;23270:404:1::0;129174:86:0::1;129311:10;::::0;129301:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;129323:10:::1;129301:33:::0;;;;;;;;:43:::1;::::0;129337:7;;129301:43:::1;:::i;:::-;129289:7;::::0;129275:22:::1;::::0;;;:13:::1;:22;::::0;;;;;:69:::1;;129267:112;;;::::0;-1:-1:-1;;;129267:112:0;;23881:2:1;129267:112:0::1;::::0;::::1;23863:21:1::0;23920:2;23900:18;;;23893:30;23959:32;23939:18;;;23932:60;24009:18;;129267:112:0::1;23679:354:1::0;129267:112:0::1;129421:7;129407:11;;:21;;;;:::i;:::-;129394:9;:34;129386:71;;;;-1:-1:-1::0;;;129386:71:0::1;;;;;;;:::i;:::-;129502:8;;129483:13;:11;:13::i;:::-;129473:23;::::0;:7;:23:::1;:::i;:::-;129472:39;;129464:64;;;;-1:-1:-1::0;;;129464:64:0::1;;;;;;;:::i;:::-;129573:9;;129554:13;:11;:13::i;:::-;129544:23;::::0;:7;:23:::1;:::i;:::-;129543:40;;129535:65;;;;-1:-1:-1::0;;;129535:65:0::1;;;;;;;:::i;:::-;129617:10;::::0;129607:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;129629:10:::1;129607:33:::0;;;;;;;:44;;129644:7;;129607:21;:44:::1;::::0;129644:7;;129607:44:::1;:::i;113483:176::-:0;113596:7;110191:16;110199:7;110191;:16::i;:::-;-1:-1:-1;;;;;110177:30:0;:10;-1:-1:-1;;;;;110177:30:0;;110155:122;;;;-1:-1:-1;;;110155:122:0;;24240:2:1;110155:122:0;;;24222:21:1;24279:2;24259:18;;;24252:30;24318:34;24298:18;;;24291:62;-1:-1:-1;;;24369:18:1;;;24362:40;24419:19;;110155:122:0;24038:406:1;110155:122:0;-1:-1:-1;113621:22:0::1;::::0;;;:13:::1;:22;::::0;;;;;:30;113483:176::o;123258:100::-;101136:32;71502:10;101136:18;:32::i;:::-;123332:13:::1;:20:::0;123258:100::o;132600:243::-;132689:21;;-1:-1:-1;;;132689:21:0;;;;;3698:25:1;;;132669:7:0;;132689:4;;:12;;3671:18:1;;132689:21:0;;;;;;;;;;;;;;;;;;-1:-1:-1;132689:21:0;;;;;;;;-1:-1:-1;;132689:21:0;;;;;;;;;;;;:::i;:::-;;;132685:153;;-1:-1:-1;132805:1:0;;132600:243;-1:-1:-1;132600:243:0:o;132685:153::-;132600:243;;;:::o;86878:601::-;86947:16;87001:19;87035:22;87060:16;87070:5;87060:9;:16::i;:::-;87035:41;;87091:25;87133:14;-1:-1:-1;;;;;87119:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87119:29:0;-1:-1:-1;87091:57:0;-1:-1:-1;119127:1:0;87163:265;87212:14;87197:11;:29;87163:265;;87256:10;87264:1;87256:7;:10::i;:::-;87252:161;;;87309:5;-1:-1:-1;;;;;87295:19:0;:10;87303:1;87295:7;:10::i;:::-;-1:-1:-1;;;;;87295:19:0;;87291:103;;87369:1;87343:8;87352:13;;;;;;87343:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;87291:103;87228:3;;87163:265;;;-1:-1:-1;87449:8:0;86878:601;-1:-1:-1;;;;86878:601:0:o;125655:369::-;125723:17;125731:8;125723:7;:17::i;:::-;125715:61;;;;-1:-1:-1;;;125715:61:0;;;;;;;:::i;:::-;125812:10;125791:17;125799:8;125791:7;:17::i;:::-;-1:-1:-1;;;;;125791:31:0;;125783:60;;;;-1:-1:-1;;;125783:60:0;;21950:2:1;125783:60:0;;;21932:21:1;21989:2;21969:18;;;21962:30;-1:-1:-1;;;22008:18:1;;;22001:46;22064:18;;125783:60:0;21748:340:1;125783:60:0;125853:21;125865:8;122355;;-1:-1:-1;122343:20:0;;122254:115;125853:21;125850:169;;;125889:10;;;;;;;125886:126;;;125915:15;125933:23;125947:8;125933:13;:23::i;:::-;125971:18;;;;:8;:18;;;;;:29;-1:-1:-1;125655:369:0;:::o;121740:103::-;101136:32;71502:10;101136:18;:32::i;:::-;121815:11:::1;:22:::0;121740:103::o;120611:174::-;101136:32;71502:10;101136:18;:32::i;:::-;120713:9:::1;120696:13;:11;:13::i;:::-;:26;;120688:64;;;::::0;-1:-1:-1;;;120688:64:0;;21236:2:1;120688:64:0::1;::::0;::::1;21218:21:1::0;21275:2;21255:18;;;21248:30;-1:-1:-1;;;21294:18:1;;;21287:55;21359:18;;120688:64:0::1;21034:349:1::0;120688:64:0::1;120759:8;:20:::0;120611:174::o;75511:104::-;75567:13;75600:7;75593:14;;;;;:::i;120290:103::-;101136:32;71502:10;101136:18;:32::i;:::-;120367:8:::1;:20:::0;;-1:-1:-1;;;;;;120367:20:0::1;-1:-1:-1::0;;;;;120367:20:0;;;::::1;::::0;;;::::1;::::0;;120290:103::o;131414:127::-;57228:21;:19;:21::i;:::-;131505:1:::1;131493:9;:13;131485:50;;;;-1:-1:-1::0;;;131485:50:0::1;;;;;;;:::i;:::-;57272:20:::0;56666:1;57792:7;:22;57609:213;133201:176;133305:8;105212:42;107134:45;:49;;;;:77;;-1:-1:-1;107187:24:0;;;;107134:77;107130:253;;;107233:67;;-1:-1:-1;;;107233:67:0;;107284:4;107233:67;;;13515:34:1;-1:-1:-1;;;;;13585:15:1;;13565:18;;;13558:43;105212:42:0;;107233;;13450:18:1;;107233:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;107228:144;;107328:28;;-1:-1:-1;;;107328:28:0;;-1:-1:-1;;;;;3188:32:1;;107328:28:0;;;3170:51:1;3143:18;;107328:28:0;3024:203:1;107228:144:0;133326:43:::1;133350:8;133360;133326:23;:43::i;123671:111::-:0;101136:32;71502:10;101136:18;:32::i;:::-;123749:19:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;123749:27:0;;::::1;::::0;;;::::1;::::0;;123671:111::o;123807:115::-;101136:32;71502:10;101136:18;:32::i;:::-;123887:21:::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;123887:29:0;;::::1;::::0;;;::::1;::::0;;123807:115::o;135372:117::-;92378:13;:11;:13::i;:::-;135450:31:::1;135470:10;135450:19;:31::i;133071:122::-:0;101136:32;71502:10;101136:18;:32::i;:::-;133153:24:::1;:32:::0;;-1:-1:-1;;133153:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;133071:122::o;133900:228::-;134051:4;105212:42;106360:45;:49;;;;:77;;-1:-1:-1;106413:24:0;;;;106360:77;106356:567;;;106677:10;-1:-1:-1;;;;;106669:18:0;;;106665:85;;134073:47:::1;134096:4;134102:2;134106:7;134115:4;134073:22;:47::i;:::-;106728:7:::0;;106665:85;106769:69;;-1:-1:-1;;;106769:69:0;;106820:4;106769:69;;;13515:34:1;106827:10:0;13565:18:1;;;13558:43;105212:42:0;;106769;;13450:18:1;;106769:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106764:148;;106866:30;;-1:-1:-1;;;106866:30:0;;106885:10;106866:30;;;3170:51:1;3143:18;;106866:30:0;3024:203:1;106764:148:0;134073:47:::1;134096:4;134102:2;134106:7;134115:4;134073:22;:47::i;:::-;133900:228:::0;;;;;:::o;123111:127::-;101136:32;71502:10;101136:18;:32::i;:::-;123202:23:::1;::::0;;;:13:::1;:23;::::0;;;;;:30;123111:127::o;124388:101::-;101136:32;71502:10;101136:18;:32::i;:::-;124467:9:::1;:16;124479:4:::0;124467:9;:16:::1;:::i;121861:103::-:0;101136:32;71502:10;101136:18;:32::i;:::-;121936:11:::1;:22:::0;121861:103::o;123405:110::-;101136:32;71502:10;101136:18;:32::i;:::-;123486:15:::1;:23:::0;;-1:-1:-1;;123486:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;123405:110::o;128000:809::-;57228:21;:19;:21::i;:::-;128135:15:::1;::::0;::::1;;128127:51;;;::::0;-1:-1:-1;;;128127:51:0;;24651:2:1;128127:51:0::1;::::0;::::1;24633:21:1::0;24690:2;24670:18;;;24663:30;24729:25;24709:18;;;24702:53;24772:18;;128127:51:0::1;24449:347:1::0;128127:51:0::1;128193:42;128207:10;128219:7;128228:6;128193:13;:42::i;:::-;128185:79;;;;-1:-1:-1::0;;;128185:79:0::1;;;;;;;:::i;:::-;128289:1;128279:7;:11;128271:39;;;::::0;-1:-1:-1;;;128271:39:0;;25003:2:1;128271:39:0::1;::::0;::::1;24985:21:1::0;25042:2;25022:18;;;25015:30;-1:-1:-1;;;25061:18:1;;;25054:45;25116:18;;128271:39:0::1;24801:339:1::0;128271:39:0::1;128336:7;128325;:18;;128317:71;;;::::0;-1:-1:-1;;;128317:71:0;;25347:2:1;128317:71:0::1;::::0;::::1;25329:21:1::0;25386:2;25366:18;;;25359:30;25425:34;25405:18;;;25398:62;-1:-1:-1;;;25476:18:1;;;25469:38;25524:19;;128317:71:0::1;25145:404:1::0;128317:71:0::1;128424:10;::::0;128414:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;128436:10:::1;128414:33:::0;;;;;;;;:43:::1;::::0;128450:7;;128414:43:::1;:::i;:::-;128403:7;:54;;128395:97;;;::::0;-1:-1:-1;;;128395:97:0;;23881:2:1;128395:97:0::1;::::0;::::1;23863:21:1::0;23920:2;23900:18;;;23893:30;23959:32;23939:18;;;23932:60;24009:18;;128395:97:0::1;23679:354:1::0;128395:97:0::1;128534:7;128520:11;;:21;;;;:::i;:::-;128507:9;:34;128499:71;;;;-1:-1:-1::0;;;128499:71:0::1;;;;;;;:::i;:::-;128615:8;;128596:13;:11;:13::i;:::-;128586:23;::::0;:7;:23:::1;:::i;:::-;128585:39;;128577:64;;;;-1:-1:-1::0;;;128577:64:0::1;;;;;;;:::i;:::-;128686:9;;128667:13;:11;:13::i;:::-;128657:23;::::0;:7;:23:::1;:::i;:::-;128656:40;;128648:65;;;;-1:-1:-1::0;;;128648:65:0::1;;;;;;;:::i;:::-;128732:10;::::0;128722:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;128744:10:::1;128722:33:::0;;;;;;;:44;;128759:7;;128722:21;:44:::1;::::0;128759:7;;128722:44:::1;:::i;:::-;::::0;;;-1:-1:-1;128773:30:0::1;::::0;-1:-1:-1;128783:10:0::1;128795:7:::0;128773:9:::1;:30::i;:::-;57272:20:::0;56666:1;57792:7;:22;57609:213;122117:107;101136:32;71502:10;101136:18;:32::i;:::-;122195:8:::1;:23:::0;122117:107::o;126935:786::-;127009:13;127039:17;127047:8;127039:7;:17::i;:::-;127031:61;;;;-1:-1:-1;;;127031:61:0;;;;;;;:::i;:::-;127102:21;127114:8;122355;;-1:-1:-1;122343:20:0;;122254:115;127102:21;127099:594;;;127159:1;127138:18;;;:8;:18;;;;;;:22;127135:201;;;127207:17;:15;:17::i;:::-;127251:18;;;;:8;:18;;;;;;127226:45;;:16;:45::i;:::-;127278:28;127296:8;127278:16;:28::i;:::-;127308:14;127190:133;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;127176:148;;126935:786;;;:::o;127135:201::-;127349:10;;;;;;;127346:235;;;127375:15;127393:23;127407:8;127393:13;:23::i;:::-;127375:41;;127462:17;:15;:17::i;:::-;127481:35;127506:8;127481:16;:35::i;:::-;127523:28;127541:8;127523:16;:28::i;:::-;127553:14;127445:123;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;127431:138;;;126935:786;;;:::o;127346:235::-;127622:17;:15;:17::i;:::-;127641:26;127658:8;127641:16;:26::i;:::-;127669:14;127605:79;;;;;;;;;;:::i;127099:594::-;127706:9;127699:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126935:786;;;:::o;124231:118::-;101136:32;71502:10;101136:18;:32::i;:::-;124314:29:::1;124331:11;100529:13:::0;:27;100454:110;100012:434;100159:26;;-1:-1:-1;;;;;;20697:2:1;20693:15;;;20689:53;100159:26:0;;;20677:66:1;100116:4:0;;;;20759:12:1;;100159:26:0;;;;;;;;;;;;100149:37;;;;;;100133:53;;100202:9;100197:192;100221:6;:13;100217:1;:17;100197:192;;;100272:6;100279:1;100272:9;;;;;;;;:::i;:::-;;;;;;;100264:5;:17;:113;;100359:6;100366:1;100359:9;;;;;;;;:::i;:::-;;;;;;;100370:5;100342:34;;;;;;;;20939:19:1;;;20983:2;20974:12;;20967:28;21020:2;21011:12;;20782:247;100342:34:0;;;;;;;;;;;;;100332:45;;;;;;100264:113;;;100311:5;100318:6;100325:1;100318:9;;;;;;;;:::i;:::-;;;;;;;100294:34;;;;;;;;20939:19:1;;;20983:2;20974:12;;20967:28;21020:2;21011:12;;20782:247;100294:34:0;;;;;;;;;;;;;100284:45;;;;;;100264:113;100256:121;-1:-1:-1;100236:3:0;;;;:::i;:::-;;;;100197:192;;;-1:-1:-1;100415:23:0;;;;:13;:23;;;;;;100406:32;;-1:-1:-1;100012:434:0;;;;;:::o;127784:198::-;101136:32;71502:10;101136:18;:32::i;:::-;127914:9:::1;;127895:13;:11;:13::i;:::-;127885:23;::::0;:7;:23:::1;:::i;:::-;127884:40;;127876:65;;;;-1:-1:-1::0;;;127876:65:0::1;;;;;;;:::i;:::-;127948:28;127958:8;127968:7;127948:9;:28::i;121982:103::-:0;101136:32;71502:10;101136:18;:32::i;:::-;122057:11:::1;:22:::0;121982:103::o;124795:131::-;101136:32;71502:10;101136:18;:32::i;:::-;124886:14:::1;:34;124903:17:::0;124886:14;:34:::1;:::i;121363:111::-:0;101136:32;71502:10;101136:18;:32::i;:::-;121444:10:::1;:24:::0;121363:111::o;119580:113::-;119634:13;119667:20;:18;:20::i;113994:309::-;114136:4;114162:27;114173:5;114180:8;114162:10;:27::i;:::-;:36;;114193:5;114162:36;114158:81;;-1:-1:-1;114222:5:0;114215:12;;114158:81;-1:-1:-1;;;;;77852:25:0;;;77823:4;77852:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;114256:39;114249:46;113994:309;-1:-1:-1;;;113994:309:0:o;93398:201::-;92378:13;:11;:13::i;:::-;-1:-1:-1;;;;;93487:22:0;::::1;93479:73;;;::::0;-1:-1:-1;;;93479:73:0;;27996:2:1;93479:73:0::1;::::0;::::1;27978:21:1::0;28035:2;28015:18;;;28008:30;28074:34;28054:18;;;28047:62;-1:-1:-1;;;28125:18:1;;;28118:36;28171:19;;93479:73:0::1;27794:402:1::0;93479:73:0::1;93563:28;93582:8;93563:18;:28::i;99293:433::-:0;99440:35;;-1:-1:-1;;;;;;28378:2:1;28374:15;;;28370:53;99440:35:0;;;28358:66:1;28440:12;;;28433:28;;;99397:4:0;;;;28477:12:1;;99440:35:0;;;;;;;;;;;;99430:46;;;;;;99414:62;;99492:9;99487:192;99511:6;:13;99507:1;:17;99487:192;;;99562:6;99569:1;99562:9;;;;;;;;:::i;:::-;;;;;;;99554:5;:17;:113;;99649:6;99656:1;99649:9;;;;;;;;:::i;:::-;;;;;;;99660:5;99632:34;;;;;;;;20939:19:1;;;20983:2;20974:12;;20967:28;21020:2;21011:12;;20782:247;99632:34:0;;;;;;;;;;;;;99622:45;;;;;;99554:113;;;99601:5;99608:6;99615:1;99608:9;;;;;;;;:::i;:::-;;;;;;;99584:34;;;;;;;;20939:19:1;;;20983:2;20974:12;;20967:28;21020:2;21011:12;;20782:247;99584:34:0;;;;;;;;;;;;;99574:45;;;;;;99554:113;99546:121;-1:-1:-1;99526:3:0;;;;:::i;:::-;;;;99487:192;;;-1:-1:-1;99705:13:0;;99696:22;;99293:433;-1:-1:-1;;;;99293:433:0:o;120923:99::-;101136:32;71502:10;101136:18;:32::i;:::-;120998:7:::1;:18:::0;120923:99::o;126418:90::-;92378:13;:11;:13::i;:::-;126487:8:::1;:15:::0;126418:90::o;134366:175::-;101136:32;71502:10;101136:18;:32::i;:::-;134495:38:::1;134522:10;134495:26;:38::i;40022:447::-:0;40097:13;40123:19;40155:10;40159:6;40155:1;:10;:::i;:::-;:14;;40168:1;40155:14;:::i;:::-;-1:-1:-1;;;;;40145:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40145:25:0;;40123:47;;-1:-1:-1;;;40181:6:0;40188:1;40181:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;40181:15:0;;;;;;;;;-1:-1:-1;;;40207:6:0;40214:1;40207:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;40207:15:0;;;;;;;;-1:-1:-1;40238:9:0;40250:10;40254:6;40250:1;:10;:::i;:::-;:14;;40263:1;40250:14;:::i;:::-;40238:26;;40233:131;40270:1;40266;:5;40233:131;;;-1:-1:-1;;;40314:5:0;40322:3;40314:11;40305:21;;;;;;;:::i;:::-;;;;40293:6;40300:1;40293:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;40293:33:0;;;;;;;;-1:-1:-1;40351:1:0;40341:11;;;;;40273:3;;;:::i;:::-;;;40233:131;;;-1:-1:-1;40382:10:0;;40374:55;;;;-1:-1:-1;;;40374:55:0;;28843:2:1;40374:55:0;;;28825:21:1;;;28862:18;;;28855:30;28921:34;28901:18;;;28894:62;28973:18;;40374:55:0;28641:356:1;8576:152:0;8646:4;8670:50;8675:3;-1:-1:-1;;;;;8695:23:0;;8670:4;:50::i;111323:183::-;111427:16;111468:30;:21;:28;:30::i;67976:215::-;68078:4;-1:-1:-1;;;;;;68102:41:0;;-1:-1:-1;;;68102:41:0;;:81;;;68147:36;68171:11;68147:23;:36::i;101893:370::-;-1:-1:-1;;;;;101987:21:0;;;;;;:10;:21;;;;;;;;102120:46;71502:10;102148:12;-1:-1:-1;;;;;102120:46:0;102163:2;102120:19;:46::i;:::-;102048:181;;;;;;;;:::i;:::-;;;;;;;;;;;;;101965:290;;;;;-1:-1:-1;;;101965:290:0;;;;;;;;:::i;69338:332::-;69054:5;-1:-1:-1;;;;;69441:33:0;;;;69433:88;;;;-1:-1:-1;;;69433:88:0;;29820:2:1;69433:88:0;;;29802:21:1;29859:2;29839:18;;;29832:30;29898:34;29878:18;;;29871:62;-1:-1:-1;;;29949:18:1;;;29942:40;29999:19;;69433:88:0;29618:406:1;69433:88:0;-1:-1:-1;;;;;69540:22:0;;69532:60;;;;-1:-1:-1;;;69532:60:0;;30231:2:1;69532:60:0;;;30213:21:1;30270:2;30250:18;;;30243:30;30309:27;30289:18;;;30282:55;30354:18;;69532:60:0;30029:349:1;69532:60:0;69627:35;;;;;;;;;-1:-1:-1;;;;;69627:35:0;;;;;;-1:-1:-1;;;;;69627:35:0;;;;;;;;;;-1:-1:-1;;;69605:57:0;;;;:19;:57;69338:332::o;90186:207::-;90279:12;48214:10;;;90260:4;48301:20;;;;;;;;;;;;-1:-1:-1;;;48278:4:0;48270:12;;48250:33;48301:27;:32;90276:69;;-1:-1:-1;90328:5:0;;90186:207;-1:-1:-1;90186:207:0:o;90276:69::-;90363:22;90377:7;90363:13;:22::i;114893:185::-;115006:27;115021:2;115025:7;115006:14;:27::i;:::-;115044:26;115058:2;115062:7;115044:13;:26::i;90662:346::-;73462:13;;90704:14;;;;;;90804:25;;90771:1;90805:19;90828:1;90804:25;:::i;:::-;90783:46;-1:-1:-1;90856:11:0;90842:159;90873:10;90869:1;:14;90842:159;;;90905:14;54848:20;;;90922:12;54848:20;;;;;;90972:17;54848:20;90972:9;:17::i;:::-;90962:27;;;;:::i;:::-;;;90890:111;90885:3;;;;;:::i;:::-;;;;90842:159;;;;90719:289;;90662:346;:::o;73581:121::-;73636:7;119127:1;73663:13;;:31;;;;:::i;77962:379::-;78171:41;71502:10;78204:7;78171:18;:41::i;:::-;78149:143;;;;-1:-1:-1;;;78149:143:0;;;;;;;:::i;:::-;78305:28;78315:4;78321:2;78325:7;78305:9;:28::i;92657:132::-;92538:7;92565:6;-1:-1:-1;;;;;92565:6:0;71502:10;92721:23;92713:68;;;;-1:-1:-1;;;92713:68:0;;31006:2:1;92713:68:0;;;30988:21:1;;;31025:18;;;31018:30;31084:34;31064:18;;;31057:62;31136:18;;92713:68:0;30804:356:1;101313:421:0;-1:-1:-1;;;;;101404:22:0;;;;;;:10;:22;;;;;;;;101403:23;101538:46;71502:10;101566:12;71422:98;101538:46;101466:194;;;;;;;;:::i;:::-;;;;;;;;;;;;;101381:305;;;;;-1:-1:-1;;;101381:305:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;101697:22:0;;;;;:10;:22;;;;;:29;;-1:-1:-1;;101697:29:0;101722:4;101697:29;;;101313:421::o;57308:293::-;56710:1;57442:7;;:19;57434:63;;;;-1:-1:-1;;;57434:63:0;;31996:2:1;57434:63:0;;;31978:21:1;32035:2;32015:18;;;32008:30;32074:33;32054:18;;;32047:61;32125:18;;57434:63:0;31794:355:1;57434:63:0;56710:1;57575:7;:18;57308:293::o;81659:112::-;81736:27;81746:2;81750:8;81736:27;;;;;;;;;;;;:9;:27::i;78412:185::-;78550:39;78567:4;78573:2;78577:7;78550:39;;;;;;;;;;;;:16;:39::i;89552:321::-;89612:12;89627:16;89635:7;89627;:16::i;:::-;89612:31;;89654:51;89676:4;89690:1;89694:7;89703:1;89654:21;:51::i;:::-;89716:25;:12;89733:7;89716:16;:25::i;:::-;89767:35;;89794:7;;89790:1;;-1:-1:-1;;;;;89767:35:0;;;;;89790:1;;89767:35;89815:50;89836:4;89850:1;89854:7;89863:1;89815:20;:50::i;74977:298::-;75047:13;75062:24;75106:16;75114:7;75106;:16::i;:::-;75098:73;;;;-1:-1:-1;;;75098:73:0;;32356:2:1;75098:73:0;;;32338:21:1;32395:2;32375:18;;;32368:30;32434:34;32414:18;;;32407:62;-1:-1:-1;;;32485:18:1;;;32478:42;32537:19;;75098:73:0;32154:408:1;75098:73:0;75201:22;75215:7;75201:13;:22::i;:::-;75242:25;;;;:7;:25;;;;;;-1:-1:-1;;;;;75242:25:0;;75182:41;;-1:-1:-1;74977:298:0;-1:-1:-1;;74977:298:0:o;93759:191::-;93833:16;93852:6;;-1:-1:-1;;;;;93869:17:0;;;-1:-1:-1;;;;;;93869:17:0;;;;;;93902:40;;93852:6;;;;;;;93902:40;;93833:16;93902:40;93822:128;93759:191;:::o;111102:213::-;111212:40;:21;111241:10;111212:28;:40::i;:::-;-1:-1:-1;111268:39:0;;-1:-1:-1;;;;;111268:39:0;;;111284:10;;111268:39;;;;;111102:213;:::o;125265:361::-;125338:6;125361:17;125369:8;125361:7;:17::i;:::-;125353:61;;;;-1:-1:-1;;;125353:61:0;;;;;;;:::i;:::-;125502:8;;125421:15;125471:19;;;:9;:19;;;;;;125421:15;;125502:8;125440:51;;125447:15;125440:51;:::i;:::-;125439:72;;;;:::i;:::-;125421:90;;125541:9;;125522:8;:29;125518:81;;-1:-1:-1;125581:9:0;;125612:8;125265:361;-1:-1:-1;;125265:361:0:o;114311:325::-;114460:20;114471:8;114460:10;:20::i;:::-;:41;;;-1:-1:-1;114484:17:0;;114460:41;114438:136;;;;-1:-1:-1;;;114438:136:0;;33172:2:1;114438:136:0;;;33154:21:1;33211:2;33191:18;;;33184:30;33250:34;33230:18;;;33223:62;-1:-1:-1;;;33301:18:1;;;33294:43;33354:19;;114438:136:0;32970:409:1;114438:136:0;114585:43;114609:8;114619;114585:23;:43::i;101740:147::-;101809:30;101828:10;101809:18;:30::i;:::-;-1:-1:-1;;;;;101857:22:0;;;;;:10;:22;;;;;101850:29;;-1:-1:-1;;101850:29:0;;;101740:147::o;78668:368::-;78857:41;71502:10;78890:7;78857:18;:41::i;:::-;78835:143;;;;-1:-1:-1;;;78835:143:0;;;;;;;:::i;:::-;78989:39;79003:4;79009:2;79013:7;79022:5;78989:13;:39::i;124965:97::-;125015:13;125043;125036:20;;;;;:::i;38890:716::-;38946:13;38997:14;39014:17;39025:5;39014:10;:17::i;:::-;39034:1;39014:21;38997:38;;39050:20;39084:6;-1:-1:-1;;;;;39073:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39073:18:0;-1:-1:-1;39050:41:0;-1:-1:-1;39215:28:0;;;39231:2;39215:28;39272:288;-1:-1:-1;;39304:5:0;-1:-1:-1;;;39441:2:0;39430:14;;39425:30;39304:5;39412:44;39502:2;39493:11;;;-1:-1:-1;39523:21:0;39272:288;39523:21;-1:-1:-1;39581:6:0;38890:716;-1:-1:-1;;;38890:716:0:o;119719:567::-;119772:13;119795:16;;119840:32;119795:16;69054:5;119840:11;:32::i;:::-;119794:78;;;;119981:283;120093:33;120110:15;120093:16;:33::i;:::-;120168:51;120204:8;-1:-1:-1;;;;;120188:26:0;120216:2;120168:19;:51::i;:::-;120027:213;;;;;;;;;:::i;:::-;;;;;;;;;;;;;119981:13;:283::i;:::-;119912:361;;;;;;;;:::i;:::-;;;;;;;;;;;;;119890:390;;;;119719:567;:::o;112157:236::-;112280:4;112302:13;112318:20;112331:6;112318:12;:20::i;:::-;112302:36;;112356:29;112367:10;112379:5;112356:10;:29::i;:::-;112349:36;112157:236;-1:-1:-1;;;;112157:236:0:o;110889:205::-;110996:37;:21;111022:10;110996:25;:37::i;:::-;-1:-1:-1;111049:37:0;;-1:-1:-1;;;;;111049:37:0;;;111063:10;;111049:37;;;;;110889:205;:::o;2307:414::-;2370:4;4500:19;;;:12;;;:19;;;;;;2387:327;;-1:-1:-1;2430:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2613:18;;2591:19;;;:12;;;:19;;;;;;:40;;;;2646:11;;2387:327;-1:-1:-1;2697:5:0;2690:12;;10580:310;10643:16;10672:22;10697:19;10705:3;10697:7;:19::i;115537:288::-;115667:4;-1:-1:-1;;;;;;115709:55:0;;-1:-1:-1;;;115709:55:0;;:108;;;115781:36;115805:11;115781:23;:36::i;80530:151::-;80595:4;80629:14;73462:13;;;73380:103;80629:14;80619:7;:24;:54;;;;-1:-1:-1;;119127:1:0;80647:26;;;80530:151::o;114644:241::-;-1:-1:-1;;;;;114752:16:0;;;114748:130;;114793:23;114804:7;114813:2;114793:10;:23::i;:::-;114785:81;;;;-1:-1:-1;;;114785:81:0;;35107:2:1;114785:81:0;;;35089:21:1;35146:2;35126:18;;;35119:30;35185:34;35165:18;;;35158:62;-1:-1:-1;;;35236:18:1;;;35229:43;35289:19;;114785:81:0;34905:409:1;76421:410:0;76502:13;76518:16;76526:7;76518;:16::i;:::-;76502:32;;76559:5;-1:-1:-1;;;;;76553:11:0;:2;-1:-1:-1;;;;;76553:11:0;;76545:60;;;;-1:-1:-1;;;76545:60:0;;35521:2:1;76545:60:0;;;35503:21:1;35560:2;35540:18;;;35533:30;35599:34;35579:18;;;35572:62;-1:-1:-1;;;35650:18:1;;;35643:34;35694:19;;76545:60:0;35319:400:1;76545:60:0;71502:10;-1:-1:-1;;;;;76640:21:0;;;;:62;;-1:-1:-1;76665:37:0;76682:5;71502:10;113994:309;:::i;76665:37::-;76618:171;;;;-1:-1:-1;;;76618:171:0;;35926:2:1;76618:171:0;;;35908:21:1;35965:2;35945:18;;;35938:30;36004:34;35984:18;;;35977:62;36075:29;36055:18;;;36048:57;36122:19;;76618:171:0;35724:423:1;76618:171:0;76802:21;76811:2;76815:7;76802:8;:21::i;91075:177::-;91127:13;91177:56;91191:4;;91177:56;;-1:-1:-1;;91228:5:0;;91223:10;;;;91232:1;91197:7;91177:56;;80848:448;80977:4;81021:16;81029:7;81021;:16::i;:::-;80999:113;;;;-1:-1:-1;;;80999:113:0;;36354:2:1;80999:113:0;;;36336:21:1;36393:2;36373:18;;;36366:30;36432:34;36412:18;;;36405:62;-1:-1:-1;;;36483:18:1;;;36476:45;36538:19;;80999:113:0;36152:411:1;80999:113:0;81123:13;81139:16;81147:7;81139;:16::i;:::-;81123:32;;81185:5;-1:-1:-1;;;;;81174:16:0;:7;-1:-1:-1;;;;;81174:16:0;;:64;;;;81231:7;-1:-1:-1;;;;;81207:31:0;:20;81219:7;81207:11;:20::i;:::-;-1:-1:-1;;;;;81207:31:0;;81174:64;:113;;;;81255:32;81272:5;81279:7;81255:16;:32::i;83269:1057::-;83394:13;83409:24;83437:29;83458:7;83437:20;:29::i;:::-;83393:73;;;;83510:4;-1:-1:-1;;;;;83501:13:0;:5;-1:-1:-1;;;;;83501:13:0;;83479:107;;;;-1:-1:-1;;;83479:107:0;;36770:2:1;83479:107:0;;;36752:21:1;36809:2;36789:18;;;36782:30;36848:34;36828:18;;;36821:62;-1:-1:-1;;;36899:18:1;;;36892:42;36951:19;;83479:107:0;36568:408:1;83479:107:0;-1:-1:-1;;;;;83605:16:0;;83597:68;;;;-1:-1:-1;;;83597:68:0;;37183:2:1;83597:68:0;;;37165:21:1;37222:2;37202:18;;;37195:30;37261:34;37241:18;;;37234:62;-1:-1:-1;;;37312:18:1;;;37305:37;37359:19;;83597:68:0;36981:403:1;83597:68:0;83678:43;83700:4;83706:2;83710:7;83719:1;83678:21;:43::i;:::-;83786:29;83803:1;83807:7;83786:8;:29::i;:::-;83831:25;83859:11;:7;83869:1;83859:11;:::i;:::-;48223:1;48214:10;;;48180:4;48301:20;;;83887:10;48301:20;;;;;;48214:10;;-1:-1:-1;;;;48278:4:0;48270:12;;48250:33;48301:27;:32;;;83886:87;;-1:-1:-1;73462:13:0;;83939:17;:34;83886:87;83883:210;;;84000:26;;;;:7;:26;;;;;:33;;-1:-1:-1;;;;;;84000:33:0;-1:-1:-1;;;;;84000:33:0;;;;;84048;-1:-1:-1;84000:26:0;84048:14;:33::i;:::-;84105:16;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;84105:21:0;-1:-1:-1;;;;;84105:21:0;;;;;84140:27;;;84137:82;;84184:23;:10;84199:7;84184:14;:23::i;:::-;84255:7;84251:2;-1:-1:-1;;;;;84236:27:0;84245:4;-1:-1:-1;;;;;84236:27:0;;;;;;;;;;;84276:42;84297:4;84303:2;84307:7;84316:1;84276:20;:42::i;:::-;83382:944;;;83269:1057;;;:::o;81785:387::-;81916:19;81938:14;73462:13;;;73380:103;81938:14;81916:36;;81963:19;81969:2;81973:8;81963:5;:19::i;:::-;82015:68;82046:1;82050:2;82054:11;82067:8;82077:5;82015:22;:68::i;:::-;81993:171;;;;-1:-1:-1;;;81993:171:0;;;;;;;:::i;126512:417::-;126631:23;;;;:9;:23;;;;;126657:15;126631:41;;126641:12;;126735:23;126750:8;126641:12;126735:23;:::i;:::-;126721:37;;126765:91;126805:15;126777:9;:25;126787:14;;;;:::i;:::-;;;126777:25;;;;;;;;;;;:43;;;;126851:3;126836:12;:18;126765:91;;126862:61;133550:163;48727:204;48824:1;48815:10;;;48798:14;48895:20;;;;;;;;;;;;:28;;-1:-1:-1;;;48879:4:0;48871:12;;;48851:33;;;;48895:28;;;;;48727:204::o;115086:443::-;-1:-1:-1;;;;;115382:18:0;;;115378:144;;113445:22;;;;:13;:22;;;;;113438:29;115476:34;113363:112;86312:159;86375:24;86431:31;:10;86454:7;86431:22;:31::i;8904:158::-;8977:4;9001:53;9009:3;-1:-1:-1;;;;;9029:23:0;;9001:7;:53::i;111713:178::-;111820:4;111849:34;111860:10;111872;111849;:34::i;77280:330::-;71502:10;-1:-1:-1;;;;;77415:24:0;;;77407:65;;;;-1:-1:-1;;;77407:65:0;;38013:2:1;77407:65:0;;;37995:21:1;38052:2;38032:18;;;38025:30;38091;38071:18;;;38064:58;38139:18;;77407:65:0;37811:352:1;77407:65:0;71502:10;77485:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;77485:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;77485:53:0;;;;;;;;;;77554:48;;1203:41:1;;;77485:42:0;;71502:10;77554:48;;1176:18:1;77554:48:0;;;;;;;77280:330;;:::o;79918:357::-;80075:28;80085:4;80091:2;80095:7;80075:9;:28::i;:::-;80136:50;80159:4;80165:2;80169:7;80178:1;80180:5;80136:22;:50::i;35756:922::-;35809:7;;-1:-1:-1;;;35887:15:0;;35883:102;;-1:-1:-1;;;35923:15:0;;;-1:-1:-1;35967:2:0;35957:12;35883:102;36012:6;36003:5;:15;35999:102;;36048:6;36039:15;;;-1:-1:-1;36083:2:0;36073:12;35999:102;36128:6;36119:5;:15;36115:102;;36164:6;36155:15;;;-1:-1:-1;36199:2:0;36189:12;36115:102;36244:5;36235;:14;36231:99;;36279:5;36270:14;;;-1:-1:-1;36313:1:0;36303:11;36231:99;36357:5;36348;:14;36344:99;;36392:5;36383:14;;;-1:-1:-1;36426:1:0;36416:11;36344:99;36470:5;36461;:14;36457:99;;36505:5;36496:14;;;-1:-1:-1;36539:1:0;36529:11;36457:99;36583:5;36574;:14;36570:66;;36619:1;36609:11;36664:6;35756:922;-1:-1:-1;;35756:922:0:o;94773:1912::-;94831:13;94861:4;:11;94876:1;94861:16;94857:31;;-1:-1:-1;;94879:9:0;;;;;;;;;-1:-1:-1;94879:9:0;;;94773:1912::o;94857:31::-;94940:19;94962:12;;;;;;;;;;;;;;;;;94940:34;;95026:18;95072:1;95053:4;:11;95067:1;95053:15;;;;:::i;:::-;95052:21;;;;:::i;:::-;95047:27;;:1;:27;:::i;:::-;95026:48;-1:-1:-1;95157:20:0;95191:15;95026:48;95204:2;95191:15;:::i;:::-;-1:-1:-1;;;;;95180:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;95180:27:0;;95157:50;;95304:10;95296:6;95289:26;95399:1;95392:5;95388:13;95458:4;95509;95503:11;95494:7;95490:25;95605:2;95597:6;95593:15;95678:754;95697:6;95688:7;95685:19;95678:754;;;95797:1;95788:7;95784:15;95773:26;;95836:7;95830:14;95962:4;95954:5;95950:2;95946:14;95942:25;95932:8;95928:40;95922:47;95911:9;95903:67;96016:1;96005:9;96001:17;95988:30;;96095:4;96087:5;96083:2;96079:14;96075:25;96065:8;96061:40;96055:47;96044:9;96036:67;96149:1;96138:9;96134:17;96121:30;;96228:4;96220:5;96217:1;96212:14;96208:25;96198:8;96194:40;96188:47;96177:9;96169:67;96282:1;96271:9;96267:17;96254:30;;96361:4;96353:5;96341:25;96331:8;96327:40;96321:47;96310:9;96302:67;-1:-1:-1;96415:1:0;96400:17;95678:754;;;96505:1;96498:4;96492:11;96488:19;96526:1;96521:54;;;;96594:1;96589:52;;;;96481:160;;96521:54;-1:-1:-1;;;;;96537:17:0;;96530:43;96521:54;;96589:52;-1:-1:-1;;;;;96605:17:0;;96598:41;96481:160;-1:-1:-1;96671:6:0;;94773:1912;-1:-1:-1;;;;;;;;94773:1912:0:o;112992:253::-;-1:-1:-1;;;;;113126:22:0;;113097:7;113126:22;;;:14;:22;;;;;;:26;113122:88;;-1:-1:-1;;;;;;113176:22:0;;;;;:14;:22;;;;;;;112992:253::o;113122:88::-;-1:-1:-1;;113229:8:0;;;112992:253::o;112401:293::-;112550:14;;112523:4;;112550:14;;112545:59;;-1:-1:-1;112588:4:0;112581:11;;112545:59;112623:27;112639:10;112623:15;:27::i;:::-;:63;;;-1:-1:-1;112654:3:0;;:32;;-1:-1:-1;;;112654:32:0;;-1:-1:-1;;;;;4825:32:1;;;112654::0;;;4807:51:1;4874:18;;;4867:34;;;112654:3:0;;;;:13;;4780:18:1;;112654:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5751:111::-;5807:16;5843:3;:11;;5836:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5751:111;;;:::o;73776:355::-;73923:4;-1:-1:-1;;;;;;73965:40:0;;-1:-1:-1;;;73965:40:0;;:105;;-1:-1:-1;;;;;;;74022:48:0;;-1:-1:-1;;;74022:48:0;73965:105;:158;;;-1:-1:-1;;;;;;;;;;65637:40:0;;;74087:36;65528:157;111899:250;112023:4;112045:13;112061:33;112074:10;112086:7;112061:12;:33::i;84444:167::-;84519:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;84519:29:0;-1:-1:-1;;;;;84519:29:0;;;;;;;;:24;;84573:16;84519:24;84573:7;:16::i;:::-;-1:-1:-1;;;;;84564:39:0;;;;;;;;;;;84444:167;;:::o;82182:748::-;82280:19;82302:14;73462:13;;;73380:103;82302:14;82280:36;;82356:1;82345:8;:12;82337:62;;;;-1:-1:-1;;;82337:62:0;;38370:2:1;82337:62:0;;;38352:21:1;38409:2;38389:18;;;38382:30;38448:34;38428:18;;;38421:62;-1:-1:-1;;;38499:18:1;;;38492:35;38544:19;;82337:62:0;38168:401:1;82337:62:0;-1:-1:-1;;;;;82418:16:0;;82410:64;;;;-1:-1:-1;;;82410:64:0;;38776:2:1;82410:64:0;;;38758:21:1;38815:2;38795:18;;;38788:30;38854:34;38834:18;;;38827:62;-1:-1:-1;;;38905:18:1;;;38898:33;38948:19;;82410:64:0;38574:399:1;82410:64:0;82495:60;82525:1;82529:2;82533:11;82546:8;82495:21;:60::i;:::-;82583:8;82566:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;82602:20:0;;;;:7;:20;;;;;:25;;-1:-1:-1;;;;;;82602:25:0;-1:-1:-1;;;;;82602:25:0;;;;;82638:27;-1:-1:-1;82602:20:0;82638:14;:27::i;:::-;82676:59;82705:1;82709:2;82713:11;82726:8;82676:20;:59::i;:::-;82800:11;82780:142;82823:22;82837:8;82823:11;:22;:::i;:::-;82813:7;:32;82780:142;;;82877:33;;82902:7;;-1:-1:-1;;;;;82877:33:0;;;82894:1;;82877:33;;82894:1;;82877:33;82847:9;;;;:::i;:::-;;;;82780:142;;85265:1039;85452:6;-1:-1:-1;;;;;85475:13:0;;17685:19;:23;85471:826;;-1:-1:-1;85511:4:0;85552:12;85530:689;85576:23;85591:8;85576:12;:23;:::i;:::-;85566:7;:33;85530:689;;;85634:72;;-1:-1:-1;;;85634:72:0;;-1:-1:-1;;;;;85634:36:0;;;;;:72;;71502:10;;85685:4;;85691:7;;85700:5;;85634:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;85634:72:0;;;;;;;;-1:-1:-1;;85634:72:0;;;;;;;;;;;;:::i;:::-;;;85630:574;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85890:6;:13;85907:1;85890:18;85886:299;;85937:63;;-1:-1:-1;;;85937:63:0;;;;;;;:::i;85886:299::-;86127:6;86121:13;86112:6;86108:2;86104:15;86097:38;85630:574;85758:1;:56;;;;-1:-1:-1;;;;;;;85763:51:0;;-1:-1:-1;;;85763:51:0;85758:56;85754:60;;85707:127;85601:9;;;;:::i;:::-;;;;85530:689;;;;86233:8;;85471:826;-1:-1:-1;86281:4:0;85471:826;85265:1039;;;;;;;:::o;53498:1234::-;53638:1;53629:10;;;53580:19;53795:20;;;;;;;;;;;53580:19;;53629:10;53719:4;53711:12;;;;53900:18;;;53893:26;53972:6;;53969:756;;54070:22;:2;:20;:22::i;:::-;54055:37;;:11;:37;54049:1;54039:6;:11;;54038:55;54024:69;;53969:756;;;54193:1;54184:6;:10;54176:75;;;;-1:-1:-1;;;54176:75:0;;39928:2:1;54176:75:0;;;39910:21:1;39967:2;39947:18;;;39940:30;40006:34;39986:18;;;39979:62;-1:-1:-1;;;40057:18:1;;;40050:50;40117:19;;54176:75:0;39726:416:1;54176:75:0;-1:-1:-1;;;54303:8:0;;;54434:12;:20;;;;;;;;;;;54303:8;;-1:-1:-1;54494:6:0;;54491:207;;54600:22;:2;:20;:22::i;:::-;54593:3;:29;54576:47;;54587:1;54577:6;:11;;54576:47;54562:61;;54650:5;;54491:207;54145:569;;;53601:1131;;;53498:1234;;;;:::o;2897:1420::-;2963:4;3102:19;;;:12;;;:19;;;;;;3138:15;;3134:1176;;3513:21;3537:14;3550:1;3537:10;:14;:::i;:::-;3586:18;;3513:38;;-1:-1:-1;3566:17:0;;3586:22;;3607:1;;3586:22;:::i;:::-;3566:42;;3642:13;3629:9;:26;3625:405;;3676:17;3696:3;:11;;3708:9;3696:22;;;;;;;;:::i;:::-;;;;;;;;;3676:42;;3850:9;3821:3;:11;;3833:13;3821:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3935:23;;;:12;;;:23;;;;;:36;;;3625:405;4111:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4206:3;:12;;:19;4219:5;4206:19;;;;;;;;;;;4199:26;;;4249:4;4242:11;;;;;;;3134:1176;4293:5;4286:12;;;;;111514:191;111626:4;111655:42;:21;111686:10;111655:30;:42::i;112702:282::-;112824:7;112853:22;;;:13;:22;;;;;;:26;112849:88;;-1:-1:-1;112903:22:0;;;;:13;:22;;;;;;112896:29;;112849:88;112956:20;112969:6;112956:12;:20::i;45697:201::-;45759:5;45815:16;;;;;;;;;;;;;;;;;45871:3;44213:64;45833:18;45848:2;45833:14;:18::i;:::-;:33;45832:42;;45815:60;;;;;;;;:::i;:::-;;;;;;;;45697:201;-1:-1:-1;;45697:201:0:o;9148:167::-;-1:-1:-1;;;;;9282:23:0;;9228:4;4500:19;;;:12;;;:19;;;;;;:24;;9252:55;4403:129;44924:169;44983:7;45016:1;45011:2;:6;45003:15;;;;;;-1:-1:-1;45067:1:0;:6;;;45061:13;;44924:169::o;14:658:1:-;185:2;237:21;;;307:13;;210:18;;;329:22;;;156:4;;185:2;408:15;;;;382:2;367:18;;;156:4;451:195;465:6;462:1;459:13;451:195;;;530:13;;-1:-1:-1;;;;;526:39:1;514:52;;621:15;;;;586:12;;;;562:1;480:9;451:195;;;-1:-1:-1;663:3:1;;14:658;-1:-1:-1;;;;;;14:658:1:o;677:131::-;-1:-1:-1;;;;;;751:32:1;;741:43;;731:71;;798:1;795;788:12;813:245;871:6;924:2;912:9;903:7;899:23;895:32;892:52;;;940:1;937;930:12;892:52;979:9;966:23;998:30;1022:5;998:30;:::i;1255:131::-;-1:-1:-1;;;;;1330:31:1;;1320:42;;1310:70;;1376:1;1373;1366:12;1391:247;1450:6;1503:2;1491:9;1482:7;1478:23;1474:32;1471:52;;;1519:1;1516;1509:12;1471:52;1558:9;1545:23;1577:31;1602:5;1577:31;:::i;1643:180::-;1702:6;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;-1:-1:-1;1794:23:1;;1643:180;-1:-1:-1;1643:180:1:o;1828:435::-;1895:6;1903;1956:2;1944:9;1935:7;1931:23;1927:32;1924:52;;;1972:1;1969;1962:12;1924:52;2011:9;1998:23;2030:31;2055:5;2030:31;:::i;:::-;2080:5;-1:-1:-1;2137:2:1;2122:18;;2109:32;-1:-1:-1;;;;;2172:40:1;;2160:53;;2150:81;;2227:1;2224;2217:12;2150:81;2250:7;2240:17;;;1828:435;;;;;:::o;2268:250::-;2353:1;2363:113;2377:6;2374:1;2371:13;2363:113;;;2453:11;;;2447:18;2434:11;;;2427:39;2399:2;2392:10;2363:113;;;-1:-1:-1;;2510:1:1;2492:16;;2485:27;2268:250::o;2523:271::-;2565:3;2603:5;2597:12;2630:6;2625:3;2618:19;2646:76;2715:6;2708:4;2703:3;2699:14;2692:4;2685:5;2681:16;2646:76;:::i;:::-;2776:2;2755:15;-1:-1:-1;;2751:29:1;2742:39;;;;2783:4;2738:50;;2523:271;-1:-1:-1;;2523:271:1:o;2799:220::-;2948:2;2937:9;2930:21;2911:4;2968:45;3009:2;2998:9;2994:18;2986:6;2968:45;:::i;3232:315::-;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3416:9;3403:23;3435:31;3460:5;3435:31;:::i;:::-;3485:5;3537:2;3522:18;;;;3509:32;;-1:-1:-1;;;3232:315:1:o;3734:456::-;3811:6;3819;3827;3880:2;3868:9;3859:7;3855:23;3851:32;3848:52;;;3896:1;3893;3886:12;3848:52;3935:9;3922:23;3954:31;3979:5;3954:31;:::i;:::-;4004:5;-1:-1:-1;4061:2:1;4046:18;;4033:32;4074:33;4033:32;4074:33;:::i;:::-;3734:456;;4126:7;;-1:-1:-1;;;4180:2:1;4165:18;;;;4152:32;;3734:456::o;4380:248::-;4448:6;4456;4509:2;4497:9;4488:7;4484:23;4480:32;4477:52;;;4525:1;4522;4515:12;4477:52;-1:-1:-1;;4548:23:1;;;4618:2;4603:18;;;4590:32;;-1:-1:-1;4380:248:1:o;4912:127::-;4973:10;4968:3;4964:20;4961:1;4954:31;5004:4;5001:1;4994:15;5028:4;5025:1;5018:15;5044:275;5115:2;5109:9;5180:2;5161:13;;-1:-1:-1;;5157:27:1;5145:40;;-1:-1:-1;;;;;5200:34:1;;5236:22;;;5197:62;5194:88;;;5262:18;;:::i;:::-;5298:2;5291:22;5044:275;;-1:-1:-1;5044:275:1:o;5324:712::-;5378:5;5431:3;5424:4;5416:6;5412:17;5408:27;5398:55;;5449:1;5446;5439:12;5398:55;5485:6;5472:20;5511:4;-1:-1:-1;;;;;5530:2:1;5527:26;5524:52;;;5556:18;;:::i;:::-;5602:2;5599:1;5595:10;5625:28;5649:2;5645;5641:11;5625:28;:::i;:::-;5687:15;;;5757;;;5753:24;;;5718:12;;;;5789:15;;;5786:35;;;5817:1;5814;5807:12;5786:35;5853:2;5845:6;5841:15;5830:26;;5865:142;5881:6;5876:3;5873:15;5865:142;;;5947:17;;5935:30;;5898:12;;;;5985;;;;5865:142;;;6025:5;5324:712;-1:-1:-1;;;;;;;5324:712:1:o;6041:416::-;6134:6;6142;6195:2;6183:9;6174:7;6170:23;6166:32;6163:52;;;6211:1;6208;6201:12;6163:52;6247:9;6234:23;6224:33;;6308:2;6297:9;6293:18;6280:32;-1:-1:-1;;;;;6327:6:1;6324:30;6321:50;;;6367:1;6364;6357:12;6321:50;6390:61;6443:7;6434:6;6423:9;6419:22;6390:61;:::i;:::-;6380:71;;;6041:416;;;;;:::o;6942:632::-;7113:2;7165:21;;;7235:13;;7138:18;;;7257:22;;;7084:4;;7113:2;7336:15;;;;7310:2;7295:18;;;7084:4;7379:169;7393:6;7390:1;7387:13;7379:169;;;7454:13;;7442:26;;7523:15;;;;7488:12;;;;7415:1;7408:9;7379:169;;7579:407;7644:5;-1:-1:-1;;;;;7670:6:1;7667:30;7664:56;;;7700:18;;:::i;:::-;7738:57;7783:2;7762:15;;-1:-1:-1;;7758:29:1;7789:4;7754:40;7738:57;:::i;:::-;7729:66;;7818:6;7811:5;7804:21;7858:3;7849:6;7844:3;7840:16;7837:25;7834:45;;;7875:1;7872;7865:12;7834:45;7924:6;7919:3;7912:4;7905:5;7901:16;7888:43;7978:1;7971:4;7962:6;7955:5;7951:18;7947:29;7940:40;7579:407;;;;;:::o;7991:451::-;8060:6;8113:2;8101:9;8092:7;8088:23;8084:32;8081:52;;;8129:1;8126;8119:12;8081:52;8169:9;8156:23;-1:-1:-1;;;;;8194:6:1;8191:30;8188:50;;;8234:1;8231;8224:12;8188:50;8257:22;;8310:4;8302:13;;8298:27;-1:-1:-1;8288:55:1;;8339:1;8336;8329:12;8288:55;8362:74;8428:7;8423:2;8410:16;8405:2;8401;8397:11;8362:74;:::i;8447:483::-;8540:6;8548;8601:2;8589:9;8580:7;8576:23;8572:32;8569:52;;;8617:1;8614;8607:12;8569:52;8656:9;8643:23;8675:31;8700:5;8675:31;:::i;:::-;8725:5;-1:-1:-1;8781:2:1;8766:18;;8753:32;-1:-1:-1;;;;;8797:30:1;;8794:50;;;8840:1;8837;8830:12;9188:118;9274:5;9267:13;9260:21;9253:5;9250:32;9240:60;;9296:1;9293;9286:12;9311:241;9367:6;9420:2;9408:9;9399:7;9395:23;9391:32;9388:52;;;9436:1;9433;9426:12;9388:52;9475:9;9462:23;9494:28;9516:5;9494:28;:::i;9557:315::-;9625:6;9633;9686:2;9674:9;9665:7;9661:23;9657:32;9654:52;;;9702:1;9699;9692:12;9654:52;9738:9;9725:23;9715:33;;9798:2;9787:9;9783:18;9770:32;9811:31;9836:5;9811:31;:::i;9877:382::-;9942:6;9950;10003:2;9991:9;9982:7;9978:23;9974:32;9971:52;;;10019:1;10016;10009:12;9971:52;10058:9;10045:23;10077:31;10102:5;10077:31;:::i;:::-;10127:5;-1:-1:-1;10184:2:1;10169:18;;10156:32;10197:30;10156:32;10197:30;:::i;10264:795::-;10359:6;10367;10375;10383;10436:3;10424:9;10415:7;10411:23;10407:33;10404:53;;;10453:1;10450;10443:12;10404:53;10492:9;10479:23;10511:31;10536:5;10511:31;:::i;:::-;10561:5;-1:-1:-1;10618:2:1;10603:18;;10590:32;10631:33;10590:32;10631:33;:::i;:::-;10683:7;-1:-1:-1;10737:2:1;10722:18;;10709:32;;-1:-1:-1;10792:2:1;10777:18;;10764:32;-1:-1:-1;;;;;10808:30:1;;10805:50;;;10851:1;10848;10841:12;10805:50;10874:22;;10927:4;10919:13;;10915:27;-1:-1:-1;10905:55:1;;10956:1;10953;10946:12;10905:55;10979:74;11045:7;11040:2;11027:16;11022:2;11018;11014:11;10979:74;:::i;:::-;10969:84;;;10264:795;;;;;;;:::o;11064:484::-;11166:6;11174;11182;11235:2;11223:9;11214:7;11210:23;11206:32;11203:52;;;11251:1;11248;11241:12;11203:52;11287:9;11274:23;11264:33;;11344:2;11333:9;11329:18;11316:32;11306:42;;11399:2;11388:9;11384:18;11371:32;-1:-1:-1;;;;;11418:6:1;11415:30;11412:50;;;11458:1;11455;11448:12;11412:50;11481:61;11534:7;11525:6;11514:9;11510:22;11481:61;:::i;:::-;11471:71;;;11064:484;;;;;:::o;11553:551::-;11655:6;11663;11671;11724:2;11712:9;11703:7;11699:23;11695:32;11692:52;;;11740:1;11737;11730:12;11692:52;11779:9;11766:23;11798:31;11823:5;11798:31;:::i;:::-;11848:5;-1:-1:-1;11900:2:1;11885:18;;11872:32;;-1:-1:-1;11955:2:1;11940:18;;11927:32;-1:-1:-1;;;;;11971:30:1;;11968:50;;;12014:1;12011;12004:12;12109:388;12177:6;12185;12238:2;12226:9;12217:7;12213:23;12209:32;12206:52;;;12254:1;12251;12244:12;12206:52;12293:9;12280:23;12312:31;12337:5;12312:31;:::i;:::-;12362:5;-1:-1:-1;12419:2:1;12404:18;;12391:32;12432:33;12391:32;12432:33;:::i;12502:380::-;12581:1;12577:12;;;;12624;;;12645:61;;12699:4;12691:6;12687:17;12677:27;;12645:61;12752:2;12744:6;12741:14;12721:18;12718:38;12715:161;;12798:10;12793:3;12789:20;12786:1;12779:31;12833:4;12830:1;12823:15;12861:4;12858:1;12851:15;12715:161;;12502:380;;;:::o;13612:245::-;13679:6;13732:2;13720:9;13711:7;13707:23;13703:32;13700:52;;;13748:1;13745;13738:12;13700:52;13780:9;13774:16;13799:28;13821:5;13799:28;:::i;13862:127::-;13923:10;13918:3;13914:20;13911:1;13904:31;13954:4;13951:1;13944:15;13978:4;13975:1;13968:15;13994:128;14061:9;;;14082:11;;;14079:37;;;14096:18;;:::i;14127:125::-;14192:9;;;14213:10;;;14210:36;;;14226:18;;:::i;14257:168::-;14330:9;;;14361;;14378:15;;;14372:22;;14358:37;14348:71;;14399:18;;:::i;14430:127::-;14491:10;14486:3;14482:20;14479:1;14472:31;14522:4;14519:1;14512:15;14546:4;14543:1;14536:15;14562:120;14602:1;14628;14618:35;;14633:18;;:::i;:::-;-1:-1:-1;14667:9:1;;14562:120::o;15036:403::-;15238:2;15220:21;;;15277:2;15257:18;;;15250:30;15316:34;15311:2;15296:18;;15289:62;-1:-1:-1;;;15382:2:1;15367:18;;15360:37;15429:3;15414:19;;15036:403::o;15444:401::-;15646:2;15628:21;;;15685:2;15665:18;;;15658:30;15724:34;15719:2;15704:18;;15697:62;-1:-1:-1;;;15790:2:1;15775:18;;15768:35;15835:3;15820:19;;15444:401::o;16206:348::-;16408:2;16390:21;;;16447:2;16427:18;;;16420:30;16486:26;16481:2;16466:18;;16459:54;16545:2;16530:18;;16206:348::o;16559:336::-;16761:2;16743:21;;;16800:2;16780:18;;;16773:30;-1:-1:-1;;;16834:2:1;16819:18;;16812:42;16886:2;16871:18;;16559:336::o;16900:348::-;17102:2;17084:21;;;17141:2;17121:18;;;17114:30;17180:26;17175:2;17160:18;;17153:54;17239:2;17224:18;;16900:348::o;17816:251::-;17886:6;17939:2;17927:9;17918:7;17914:23;17910:32;17907:52;;;17955:1;17952;17945:12;17907:52;17987:9;17981:16;18006:31;18031:5;18006:31;:::i;18072:135::-;18111:3;18132:17;;;18129:43;;18152:18;;:::i;:::-;-1:-1:-1;18199:1:1;18188:13;;18072:135::o;18212:127::-;18273:10;18268:3;18264:20;18261:1;18254:31;18304:4;18301:1;18294:15;18328:4;18325:1;18318:15;18470:545;18572:2;18567:3;18564:11;18561:448;;;18608:1;18633:5;18629:2;18622:17;18678:4;18674:2;18664:19;18748:2;18736:10;18732:19;18729:1;18725:27;18719:4;18715:38;18784:4;18772:10;18769:20;18766:47;;;-1:-1:-1;18807:4:1;18766:47;18862:2;18857:3;18853:12;18850:1;18846:20;18840:4;18836:31;18826:41;;18917:82;18935:2;18928:5;18925:13;18917:82;;;18980:17;;;18961:1;18950:13;18917:82;;19191:1352;19317:3;19311:10;-1:-1:-1;;;;;19336:6:1;19333:30;19330:56;;;19366:18;;:::i;:::-;19395:97;19485:6;19445:38;19477:4;19471:11;19445:38;:::i;:::-;19439:4;19395:97;:::i;:::-;19547:4;;19611:2;19600:14;;19628:1;19623:663;;;;20330:1;20347:6;20344:89;;;-1:-1:-1;20399:19:1;;;20393:26;20344:89;-1:-1:-1;;19148:1:1;19144:11;;;19140:24;19136:29;19126:40;19172:1;19168:11;;;19123:57;20446:81;;19593:944;;19623:663;18417:1;18410:14;;;18454:4;18441:18;;-1:-1:-1;;19659:20:1;;;19777:236;19791:7;19788:1;19785:14;19777:236;;;19880:19;;;19874:26;19859:42;;19972:27;;;;19940:1;19928:14;;;;19807:19;;19777:236;;;19781:3;20041:6;20032:7;20029:19;20026:201;;;20102:19;;;20096:26;-1:-1:-1;;20185:1:1;20181:14;;;20197:3;20177:24;20173:37;20169:42;20154:58;20139:74;;20026:201;-1:-1:-1;;;;;20273:1:1;20257:14;;;20253:22;20240:36;;-1:-1:-1;19191:1352:1:o;21388:355::-;21590:2;21572:21;;;21629:2;21609:18;;;21602:30;21668:33;21663:2;21648:18;;21641:61;21734:2;21719:18;;21388:355::o;25554:722::-;25604:3;25645:5;25639:12;25674:36;25700:9;25674:36;:::i;:::-;25729:1;25746:18;;;25773:133;;;;25920:1;25915:355;;;;25739:531;;25773:133;-1:-1:-1;;25806:24:1;;25794:37;;25879:14;;25872:22;25860:35;;25851:45;;;-1:-1:-1;25773:133:1;;25915:355;25946:5;25943:1;25936:16;25975:4;26020:2;26017:1;26007:16;26045:1;26059:165;26073:6;26070:1;26067:13;26059:165;;;26151:14;;26138:11;;;26131:35;26194:16;;;;26088:10;;26059:165;;;26063:3;;;26253:6;26248:3;26244:16;26237:23;;25739:531;;;;;25554:722;;;;:::o;26281:927::-;26654:3;26692:6;26686:13;26708:66;26767:6;26762:3;26755:4;26747:6;26743:17;26708:66;:::i;:::-;26837:13;;26796:16;;;;26859:70;26837:13;26796:16;26906:4;26894:17;;26859:70;:::i;:::-;-1:-1:-1;;;26951:20:1;;26980:18;;;27023:13;;27045:78;27023:13;27110:1;27099:13;;27092:4;27080:17;;27045:78;:::i;:::-;27139:63;27199:1;27188:8;27181:5;27177:20;27173:28;27165:6;27139:63;:::i;:::-;27132:70;26281:927;-1:-1:-1;;;;;;;;26281:927:1:o;27213:576::-;27437:3;27475:6;27469:13;27491:66;27550:6;27545:3;27538:4;27530:6;27526:17;27491:66;:::i;:::-;27620:13;;27579:16;;;;27642:70;27620:13;27579:16;27689:4;27677:17;;27642:70;:::i;:::-;27728:55;27773:8;27766:5;27762:20;27754:6;27728:55;:::i;28500:136::-;28539:3;28567:5;28557:39;;28576:18;;:::i;:::-;-1:-1:-1;;;28612:18:1;;28500:136::o;29002:611::-;-1:-1:-1;;;29360:3:1;29353:23;29335:3;29405:6;29399:13;29421:74;29488:6;29484:1;29479:3;29475:11;29468:4;29460:6;29456:17;29421:74;:::i;:::-;-1:-1:-1;;;29554:1:1;29514:16;;;;29546:10;;;29539:41;-1:-1:-1;29604:2:1;29596:11;;29002:611;-1:-1:-1;29002:611:1:o;30383:416::-;30585:2;30567:21;;;30624:2;30604:18;;;30597:30;30663:34;30658:2;30643:18;;30636:62;-1:-1:-1;;;30729:2:1;30714:18;;30707:50;30789:3;30774:19;;30383:416::o;31165:624::-;-1:-1:-1;;;31523:3:1;31516:23;31498:3;31568:6;31562:13;31584:74;31651:6;31647:1;31642:3;31638:11;31631:4;31623:6;31619:17;31584:74;:::i;:::-;31721:34;31717:1;31677:16;;;;31709:10;;;31702:54;-1:-1:-1;31780:2:1;31772:11;;31165:624;-1:-1:-1;31165:624:1:o;32567:200::-;32633:9;;;32606:4;32661:9;;32689:10;;32701:12;;;32685:29;32724:12;;;32716:21;;32682:56;32679:82;;;32741:18;;:::i;32772:193::-;32811:1;32837;32827:35;;32842:18;;:::i;:::-;-1:-1:-1;;;32878:18:1;;-1:-1:-1;;32898:13:1;;32874:38;32871:64;;;32915:18;;:::i;:::-;-1:-1:-1;32949:10:1;;32772:193::o;33384:1050::-;33896:66;33891:3;33884:79;33866:3;33992:6;33986:13;34008:75;34076:6;34071:2;34066:3;34062:12;34055:4;34047:6;34043:17;34008:75;:::i;:::-;-1:-1:-1;;;34142:2:1;34102:16;;;34134:11;;;34127:71;34223:13;;34245:76;34223:13;34307:2;34299:11;;34292:4;34280:17;;34245:76;:::i;:::-;-1:-1:-1;;;34381:2:1;34340:17;;;;34373:11;;;34366:35;34425:2;34417:11;;33384:1050;-1:-1:-1;;;;33384:1050:1:o;34439:461::-;34701:31;34696:3;34689:44;34671:3;34762:6;34756:13;34778:75;34846:6;34841:2;34836:3;34832:12;34825:4;34817:6;34813:17;34778:75;:::i;:::-;34873:16;;;;34891:2;34869:25;;34439:461;-1:-1:-1;;34439:461:1:o;37389:417::-;37591:2;37573:21;;;37630:2;37610:18;;;37603:30;37669:34;37664:2;37649:18;;37642:62;-1:-1:-1;;;37735:2:1;37720:18;;37713:51;37796:3;37781:19;;37389:417::o;38978:489::-;-1:-1:-1;;;;;39247:15:1;;;39229:34;;39299:15;;39294:2;39279:18;;39272:43;39346:2;39331:18;;39324:34;;;39394:3;39389:2;39374:18;;39367:31;;;39172:4;;39415:46;;39441:19;;39433:6;39415:46;:::i;:::-;39407:54;38978:489;-1:-1:-1;;;;;;38978:489:1:o;39472:249::-;39541:6;39594:2;39582:9;39573:7;39569:23;39565:32;39562:52;;;39610:1;39607;39600:12;39562:52;39642:9;39636:16;39661:30;39685:5;39661:30;:::i;40147:127::-;40208:10;40203:3;40199:20;40196:1;40189:31;40239:4;40236:1;40229:15;40263:4;40260:1;40253:15

Swarm Source

ipfs://dee37fb43b7635ffeff70e028141ec5f3530c86228eee6cc595dfb2752e411a1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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