ETH Price: $3,320.53 (+1.53%)
Gas: 10 Gwei

Token

LAND Reservation SBT (LNDR)
 

Overview

Max Total Supply

1,000 LNDR

Holders

523

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*あいみょんすきだよ.eth
Balance
1 LNDR
0x7f522989A221fD02fC60Cc32faAE4400c496729d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ALNDR

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-06-09
*/

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

// 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 _alMerkleRoot;
    bytes32 internal _pbMerkleRoot;
    mapping(uint256 => bytes32) internal _wlMerkleRoot;
    uint256 public phaseId;

    function _setWlMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _wlMerkleRoot[phaseId] = merkleRoot_;
    }

    function _setWlMerkleRootWithId(uint256 _phaseId,bytes32 merkleRoot_) internal virtual {
        _wlMerkleRoot[_phaseId] = merkleRoot_;
    }
    function isWhitelisted(address address_, uint256 _phaseId, 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[_phaseId];
    }




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

    function isAllowlisted(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 == _alMerkleRoot;
    }


    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.8.7;
/*
╭━━━╮╭╮╱╱╱╱╱╭╮╭╮╱╱╱╱╱╱╱╱╱╱╭╮
┃╭━╮┣╯╰╮╱╱╱╭╯╰┫┃╱╱╱╱╱╱╱╱╱╱┃┃
┃╰━━╋╮╭╋━━┳┻╮╭┫┃╱╱╭━━┳━╮╭━╯┃
╰━━╮┃┃┃┃╭╮┃╭┫┃┃┃╱╭┫╭╮┃╭╮┫╭╮┃
┃╰━╯┃┃╰┫╭╮┃┃┃╰┫╰━╯┃╭╮┃┃┃┃╰╯┃
╰━━━╯╰━┻╯╰┻╯╰━┻━━━┻╯╰┻╯╰┻━━╯
╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭╮
┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭╯╰╮
┃╰━╯┣━━┳━━┳━━┳━┳╮╭┳━┻╮╭╋┳━━┳━╮
┃╭╮╭┫┃━┫━━┫┃━┫╭┫╰╯┃╭╮┃┃┣┫╭╮┃╭╮╮
┃┃┃╰┫┃━╋━━┃┃━┫┃╰╮╭┫╭╮┃╰┫┃╰╯┃┃┃┃
╰╯╰━┻━━┻━━┻━━┻╯╱╰╯╰╯╰┻━┻┻━━┻╯╰╯
╭━━━╮╭━━╮╱╭━━━━╮
┃╭━╮┃┃╭╮┃╱┃╭╮╭╮┃
┃╰━━╮┃╰╯╰╮╰╯┃┃╰╯
╰━━╮┃┃╭━╮┃╱╱┃┃
┃╰━╯┃┃╰━╯┃╱╱┃┃
╰━━━╯╰━━━╯╱╱╰╯
//LAND Reservation SBT-
*/
contract ALNDR is Ownable, ERC721PsiBurnable, ReentrancyGuard, MerkleProof, ERC2981, DefaultOperatorFilterer,Operable {
  //Project Settings
  uint256 public wlMintPrice = 0.1 ether;
  uint256 public alMintPrice = 0.1 ether;
  uint256 public psMintPrice = 0.1 ether;
  uint256 public maxMintsPerWL = 1;
  uint256 public maxMintsPerAL = 1;
  uint256 public maxMintsPerPS = 1;
  uint256 public maxMintsPerWLOT = 1;
  uint256 public maxMintsPerALOT = 1;
  uint256 public maxMintsPerPSOT = 1;
  uint256 public maxSupply;
  uint256 public mintable = 1000;
  uint256 public revealed = 0;
  uint256 public nowPhaseWl;
  uint256 public nowPhaseAl;
  uint256 public nowPhasePs;

  address public deployer;
  address internal _withdrawWallet;
  address internal _aa;
  address internal _bb;
  address internal _cc;
  address internal _dd;
  address internal _ee;
  address internal _ff;

  uint256 internal _aaPerc;
  uint256 internal _bbPerc;
  uint256 internal _ccPerc;
  uint256 internal _ddPerc;
  uint256 internal _eePerc;
  uint256 internal _ffPerc;

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

  //flags
  mapping(uint256 => bool) public isWlSaleEnabled;
  bool public isAlSaleEnabled;
  bool public isPublicSaleEnabled;
  bool public isPublicSaleMPEnabled;
  bool public sbtFlag = true;
  bool internal lockBurn = true;
  //mint records.
  mapping(uint256 => mapping(address => uint256)) internal _wlMinted;
  mapping(uint256 => mapping(address => uint256)) internal _alMinted;
  mapping(uint256 => mapping(address => uint256)) internal _psMinted;
  mapping(address => bool) bondedAddress;

  constructor (
    address _founder
  ) ERC721Psi ("LAND Reservation SBT","LNDR") {
    deployer = msg.sender;
    _grantOperatorRole(msg.sender);
    _grantOperatorRole(_founder);
    _withdrawWallet = _founder;
    _wlMerkleRoot[0] = 0x93913cd5385c3edccaf0ec6ce76a475b134880fb711a1825c8ef12651ce2b410;
    _wlMerkleRoot[1] = 0x5dc17beb5247ca0e306fb0af1fd9fbc6103b322eaf9c922f2716f346e5ddfa57;

  }
  //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(ERC721Psi, 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), '"}'
            )
          )
        )
      )
    );
  }
  /**
    @dev set aa's wallet and fraction.withdraw to this wallet.only operator.
    */
  function setWallet__aa(address _owner,uint256 _perc) external virtual onlyOperator {
    _aa = _owner;
    _aaPerc = _perc;
  }

  /**
    @dev set bb's wallet and fraction.withdraw to this wallet.only operator.
    */
  function setWallet__bb(address _owner,uint256 _perc) external virtual onlyOperator {
    _bb = _owner;
    _bbPerc = _perc;
  }

  /**
    @dev set cc's wallet and fraction.withdraw to this wallet.only operator.
    */
  function setWallet__cc(address _owner,uint256 _perc) external virtual onlyOperator {
    _cc = _owner;
    _ccPerc = _perc;
  }

  /**
    @dev set dd's wallet and fraction.withdraw to this wallet.only operator.
    */
  function setWallet__dd(address _owner,uint256 _perc) external virtual onlyOperator {
    _dd = _owner;
    _ddPerc = _perc;
  }

  /**
    @dev set ee's wallet and fraction.withdraw to this wallet.only operator.
    */
  function setWallet__ee(address _owner,uint256 _perc) external virtual onlyOperator {
    _ee = _owner;
    _eePerc = _perc;
  }

  /**
    @dev set ff's wallet and fraction.withdraw to this wallet.only operator.
    */
  function setWallet__ff(address _owner,uint256 _perc) external virtual onlyOperator {
    _ff = _owner;
    _ffPerc = _perc;
  }


  function setDeployer(address _deployer) external virtual onlyOperator {
    deployer = _deployer;
  }
  function locked(address to) external view returns (bool) {
    return bondedAddress[to];
  }

  function bound(address to, bool flag) public onlyOperator {
      bondedAddress[to] = flag;
  }

  //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;
  }
  //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 psMinted(address _address) external view virtual returns (uint256){
    return _psMinted[nowPhasePs][_address];
  }

  // GET MINTED COUNT FROM Phase.
  function wlMinted(address _address,uint256 _phaseNum) external view virtual returns (uint256){
    return _wlMinted[_phaseNum][_address];
  }
  function alMinted(address _address,uint256 _phaseNum) external view virtual returns (uint256){
    return _alMinted[_phaseNum][_address];
  }
  function psMinted(address _address,uint256 _phaseNum) external view virtual returns (uint256){
    return _psMinted[_phaseNum][_address];
  }

  // SET MAX MINTS.
  //WL.mxmints
  function setWlMaxMints(uint256 _max) external virtual onlyOperator {
    maxMintsPerWL = _max;
  }
  //AL.mxmints
  function setAlMaxMints(uint256 _max) external virtual onlyOperator {
    maxMintsPerAL = _max;
  }
  //PS.mxmints
  function setPsMaxMints(uint256 _max) external virtual onlyOperator {
    maxMintsPerPS = _max;
  }

  // SET SALES ENABLE.
  //WL.SaleEnable
  function setWhitelistSaleEnable(uint256 _phaseId,bool bool_) external virtual onlyOperator {
    isWlSaleEnabled[_phaseId] = 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_;
  }
  //sbtFlag
  function setSbtFlag(bool bool_) external virtual onlyOperator {
    sbtFlag = bool_;
  }

  // SET MERKLE ROOT.
  function setMerkleRootWl(bytes32 merkleRoot_) external virtual onlyOperator {
    _setWlMerkleRoot(merkleRoot_);
  }
  function setMerkleRootWlWithId(uint256 _phaseId,bytes32 merkleRoot_) external virtual onlyOperator {
    _setWlMerkleRootWithId(_phaseId,merkleRoot_);
  }

  function setMerkleRootAl(bytes32 merkleRoot_) external virtual onlyOperator {
    _setAlMerkleRoot(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;
  }

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

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


  
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "URI query for nonexistent token");
    if(_isRevealed(_tokenId)){
        return string(abi.encodePacked(_currentBaseURI(), Strings.toString(_tokenId), _baseExtension));
    }
    return hiddenURI;
  }


  //owner mint.transfer to _address.only owner.
  function ownerMint(uint256 _amount, address _address) external virtual onlyOperator { 
    require((_amount + totalSupply()) <= (maxSupply) || maxSupply == 0, "No more NFTs");
    _safeMint(_address, _amount);
  }


  //WL mint.
  function whitelistMint(uint256 _phaseId,uint256 _amount, uint256 wlcount, bytes32[] memory proof_) external payable virtual nonReentrant {
    require(isWlSaleEnabled[_phaseId], "whitelistMint is Paused");
    require(isWhitelisted(msg.sender,_phaseId, 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[_phaseId][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");
    _wlMinted[_phaseId][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, proof_), "You are not whitelisted!");
    require(maxMintsPerALOT >= _amount, "allowlistMint: Over max mints per one time");
    require(maxMintsPerAL >= _amount, "allowlistMint: Over max mints per wallet");
    require(maxMintsPerAL >= _alMinted[nowPhaseAl][msg.sender] + _amount, "You have no whitelistMint left");
    require(msg.value == alMintPrice * _amount, "ETH value is not correct");
    require((_amount + totalSupply()) <= (mintable) || mintable == 0, "No more NFTs");
    require((_amount + totalSupply()) <= (maxSupply) || maxSupply == 0, "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) || mintable == 0, "No more NFTs");
    require((_amount + totalSupply()) <= (maxSupply) || maxSupply == 0, "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) || mintable == 0, "No more NFTs");
    require((_amount + totalSupply()) <= (maxSupply) || maxSupply == 0, "No more NFTs");
    _psMinted[nowPhasePs][msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }

    //burn
    function burn(uint256 tokenId) external virtual {
        require(ownerOf(tokenId) == msg.sender, "isnt owner token");
        require(lockBurn == false, "not allow");
        _burn(tokenId);
    }
    //LB.SaleEnable
    function setLockBurn(bool bool_) external virtual onlyOperator {
        lockBurn = bool_;
    }
  //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{
    require((_aa != address(0) && _aaPerc != 0) || _aa == address(0),"please set withdraw Address_aa and percentage.");
    require((_bb != address(0) && _bbPerc != 0) || _bb == address(0),"please set withdraw Address_bb and percentage.");
    require((_cc != address(0) && _ccPerc != 0) || _cc == address(0),"please set withdraw Address_cc and percentage.");
    require((_dd != address(0) && _ddPerc != 0) || _dd == address(0),"please set withdraw Address_dd and percentage.");
    require((_ee != address(0) && _eePerc != 0) || _ee == address(0),"please set withdraw Address_ee and percentage.");
    require((_ff != address(0) && _ffPerc != 0) || _ff == address(0),"please set withdraw Address_ff and percentage.");

    uint256 _ethBalance = address(this).balance;
    bool os;
    if(_aa != address(0)){//if _aa has.
        (os, ) = payable(_aa).call{value: (_ethBalance * _aaPerc/10000)}("");
        require(os, "Failed to withdraw_aa Ether");
    }
    if(_bb != address(0)){//if _bb has.
        (os, ) = payable(_bb).call{value: (_ethBalance * _bbPerc/10000)}("");
        require(os, "Failed to withdraw_bb Ether");
    }
    if(_cc != address(0)){//if _cc has.
        (os, ) = payable(_cc).call{value: (_ethBalance * _ccPerc/10000)}("");
        require(os, "Failed to withdraw_cc Ether");
    }
    if(_dd != address(0)){//if _dd has.
        (os, ) = payable(_dd).call{value: (_ethBalance * _ddPerc/10000)}("");
        require(os, "Failed to withdraw_dd Ether");
    }
    if(_ee != address(0)){//if _ee has.
        (os, ) = payable(_ee).call{value: (_ethBalance * _eePerc/10000)}("");
        require(os, "Failed to withdraw_ee Ether");
    }
    if(_ff != address(0)){//if _ff has.
        (os, ) = payable(_ff).call{value: (_ethBalance * _ffPerc/10000)}("");
        require(os, "Failed to withdraw_ff Ether");
    }

    _ethBalance = address(this).balance;
    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) {
        require(
            operator == owner() || bondedAddress[operator] == true || sbtFlag == false,
            'Cannot approve, transferring not allowed'
        );
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        require(
            operator == owner() || bondedAddress[operator] == true || sbtFlag == false,
            'Cannot approve, transferring not allowed'
        );
        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);
    }
    //OPENSEA.OPERATORFilterer.END

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


  function _beforeTokenTransfers(address from,address to,uint256 startTokenId,uint256 quantity) internal override {
    if(from != address(0)){
        require(
            from == owner() || bondedAddress[from] == true || sbtFlag == false,
            'Send NFT not allowed'
        );
    }
    super._beforeTokenTransfers(from, to, startTokenId, quantity);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_founder","type":"address"}],"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":"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":"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":[],"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":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_phaseNum","type":"uint256"}],"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":"address","name":"to","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"bound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"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":[{"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":"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":"_phaseId","type":"uint256"},{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isWlSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"maxMintsPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWLOT","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"},{"internalType":"uint256","name":"_phaseNum","type":"uint256"}],"name":"psMinted","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":[],"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":[],"name":"sbtFlag","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_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":"bool","name":"bool_","type":"bool"}],"name":"setLockBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRootAl","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":"_phaseId","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRootWlWithId","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":"_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":"bool","name":"bool_","type":"bool"}],"name":"setSbtFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_perc","type":"uint256"}],"name":"setWallet__aa","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_perc","type":"uint256"}],"name":"setWallet__bb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_perc","type":"uint256"}],"name":"setWallet__cc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_perc","type":"uint256"}],"name":"setWallet__dd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_perc","type":"uint256"}],"name":"setWallet__ee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_perc","type":"uint256"}],"name":"setWallet__ff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setWlMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice","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":"_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":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"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"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_phaseNum","type":"uint256"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6010805460ff1916600190811790915567016345785d8a00006012819055601381905560145560158190556016819055601781905560188190556019819055601a556103e8601c556000601d5560c06040526005608090815264173539b7b760d91b60a052603190620000739082620006f8565b506033805464ffff00000019166401010000001790553480156200009657600080fd5b50604051620068f5380380620068f5833981016040819052620000b991620007c4565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601481526020017f4c414e44205265736572766174696f6e20534254000000000000000000000000815250604051806040016040528060048152602001632627222960e11b8152506200013d620001376200038f60201b60201c565b62000393565b60026200014b8382620006f8565b5060036200015a8282620006f8565b506001600555505060016009556daaeb6d7670e522a718067333cd4e3b15620002ac578015620001fa57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001db57600080fd5b505af1158015620001f0573d6000803e3d6000fd5b50505050620002ac565b6001600160a01b038216156200024b5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001c0565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200029257600080fd5b505af1158015620002a7573d6000803e3d6000fd5b505050505b5050602180546001600160a01b03191633908117909155620002ce90620003e3565b620002d981620003e3565b602280546001600160a01b0319166001600160a01b0392909216919091179055600c6020527f93913cd5385c3edccaf0ec6ce76a475b134880fb711a1825c8ef12651ce2b4107f13649b2456f1b42fef0f0040b3aaeabcd21a76a0f3f5defd4f583839455116e85560016000527f5dc17beb5247ca0e306fb0af1fd9fbc6103b322eaf9c922f2716f346e5ddfa577fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5c5562000919565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811660009081526011602052604090205460ff161562000421336001600160a01b031660146200049160201b62003c511760201c565b60405160200162000433919062000815565b604051602081830303815290604052906200046c5760405162461bcd60e51b81526004016200046391906200086e565b60405180910390fd5b506001600160a01b03166000908152601160205260409020805460ff19166001179055565b60606000620004a2836002620008b9565b620004af906002620008d3565b6001600160401b03811115620004c957620004c962000653565b6040519080825280601f01601f191660200182016040528015620004f4576020820181803683370190505b509050600360fc1b81600081518110620005125762000512620008e9565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620005445762000544620008e9565b60200101906001600160f81b031916908160001a90535060006200056a846002620008b9565b62000577906001620008d3565b90505b6001811115620005f9576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110620005af57620005af620008e9565b1a60f81b828281518110620005c857620005c8620008e9565b60200101906001600160f81b031916908160001a90535060049490941c93620005f181620008ff565b90506200057a565b5083156200064a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000463565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200067e57607f821691505b6020821081036200069f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006f357600081815260208120601f850160051c81016020861015620006ce5750805b601f850160051c820191505b81811015620006ef57828155600101620006da565b5050505b505050565b81516001600160401b0381111562000714576200071462000653565b6200072c8162000725845462000669565b84620006a5565b602080601f8311600181146200076457600084156200074b5750858301515b600019600386901b1c1916600185901b178555620006ef565b600085815260208120601f198616915b82811015620007955788860151825594840194600190910190840162000774565b5085821015620007b45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007d757600080fd5b81516001600160a01b03811681146200064a57600080fd5b60005b838110156200080c578181015183820152602001620007f2565b50506000910152565b67030b1b1b7bab73a160c51b8152600082516200083a816008850160208701620007ef565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b60208152600082518060208401526200088f816040850160208701620007ef565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200064d576200064d620008a3565b808201808211156200064d576200064d620008a3565b634e487b7160e01b600052603260045260246000fd5b600081620009115762000911620008a3565b506000190190565b615fcc80620009296000396000f3fe6080604052600436106106165760003560e01c80636d70f7ae11610329578063b7c0b8e8116101b6578063d5dcfbc611610102578063e4848292116100a0578063ea7baab11161007a578063ea7baab114611320578063f1e9770b14611336578063f2fde38b14611356578063fb796e6c1461137657600080fd5b8063e4848292146112a2578063e8a3d485146112c2578063e985e9c5146112d757600080fd5b8063da3ef23f116100dc578063da3ef23f14611239578063df58a1b514611259578063df7253961461126f578063e0669c551461128257600080fd5b8063d5dcfbc6146111e3578063d5f39488146111f9578063d78be71c1461121957600080fd5b8063c50c81861161016f578063ccf6c68811610149578063ccf6c6881461114b578063cd8d03211461118d578063d52c57e0146111ad578063d5abeb01146111cd57600080fd5b8063c50c8186146110d2578063c87b56dd146110f2578063cbf9fe5f1461111257600080fd5b8063b7c0b8e814611008578063b88d4fde14611028578063ba05e11514611048578063bbaac02f14611078578063bf509b9d14611098578063c3e53683146110b857600080fd5b80638da5cb5b11610275578063962c167b1161022e578063a22cb46511610208578063a22cb46514610f88578063a355fd2914610fa8578063abb61da514610fc8578063b219f7d714610fe857600080fd5b8063962c167b14610f4a5780639970cc2914610f6a5780639da9778c14610f8057600080fd5b80638da5cb5b14610e745780638dd07d0f14610e9257806391e4bac814610eb2578063942958f414610ed257806395d89b4114610f155780639621473514610f2a57600080fd5b806378a92380116102e2578063830b3a64116102bc578063830b3a6414610dfe578063830f821114610e1e5780638462151c14610e345780638bec504014610e5457600080fd5b806378a9238014610d875780637bc9200e14610dcb578063813779ef14610dde57600080fd5b80636d70f7ae14610cb95780636f8b44b014610cf257806370a0823114610d12578063715018a614610d32578063719eaef814610d475780637672287e14610d6757600080fd5b806330e7ed35116104a757806343b50551116103f357806356f5d89d116103ac57806358303b101161038657806358303b1014610c435780635bc401a714610c595780636352211e14610c79578063689e637d14610c9957600080fd5b806356f5d89d14610be35780635714e71114610c035780635822768b14610c2357600080fd5b806343b5055114610b4157806343e625fa14610b61578063449d0f1014610b815780634bf365df14610b975780635183022714610bad57806355f804b314610bc357600080fd5b8063414abee21161046057806342842e0e1161043a57806342842e0e14610ab457806342966c6814610ad4578063435e4ccd14610af4578063438b630014610b1457600080fd5b8063414abee214610a6657806341f4343414610a7c57806342454db914610a9e57600080fd5b806330e7ed351461099c57806333006786146109bc57806339666ece146109dc5780633ccfd60b14610a1e5780633eac7b9514610a265780634009920d14610a4757600080fd5b806323945d49116105665780632a55205a1161051f5780632c4e9fc6116104f95780632c4e9fc61461094a5780632db11544146109605780632e9901f4146109735780632ef370251461098957600080fd5b80632a55205a146108d55780632ab110da146109145780632c04f0f51461092a57600080fd5b806323945d491461082057806323b872dd14610840578063258bc0ef146108605780632672c9021461088057806327ac0c581461089557806327d22615146108b557600080fd5b80630d9005ae116105d357806319d580a8116105ad57806319d580a8146107865780631a09cfe2146107a657806321434421146107bc578063235dfa501461080057600080fd5b80630d9005ae1461070c57806310637d8a1461072f57806318160ddd1461077157600080fd5b806301ffc9a71461061b57806303c0f48c1461065057806304634d8d1461067257806306fdde0314610692578063081812fc146106b4578063095ea7b3146106ec575b600080fd5b34801561062757600080fd5b5061063b6106363660046151fb565b611390565b60405190151581526020015b60405180910390f35b34801561065c57600080fd5b5061067061066b366004615218565b6113a1565b005b34801561067e57600080fd5b5061067061068d366004615246565b6113af565b34801561069e57600080fd5b506106a76113c6565b60405161064791906152db565b3480156106c057600080fd5b506106d46106cf366004615218565b611458565b6040516001600160a01b039091168152602001610647565b3480156106f857600080fd5b506106706107073660046152ee565b6114e8565b34801561071857600080fd5b5061072161162b565b604051908152602001610647565b34801561073b57600080fd5b5061072161074a3660046152ee565b60009081526036602090815260408083206001600160a01b03949094168352929052205490565b34801561077d57600080fd5b50610721611647565b34801561079257600080fd5b506106706107a13660046152ee565b611659565b3480156107b257600080fd5b5061072160175481565b3480156107c857600080fd5b506107216107d736600461531a565b601f5460009081526035602090815260408083206001600160a01b039094168352929052205490565b34801561080c57600080fd5b5061067061081b3660046152ee565b611688565b34801561082c57600080fd5b5061067061083b366004615218565b6116b7565b34801561084c57600080fd5b5061067061085b366004615337565b6116cf565b34801561086c57600080fd5b5061067061087b366004615218565b6117b8565b34801561088c57600080fd5b506106a76117dc565b3480156108a157600080fd5b506106706108b036600461531a565b61186a565b3480156108c157600080fd5b506106706108d03660046152ee565b61187b565b3480156108e157600080fd5b506108f56108f0366004615378565b6118aa565b604080516001600160a01b039093168352602083019190915201610647565b34801561092057600080fd5b5061072160185481565b34801561093657600080fd5b50610670610945366004615378565b611956565b34801561095657600080fd5b5061072160125481565b61067061096e366004615218565b611971565b34801561097f57600080fd5b5061072160195481565b61067061099736600461545f565b611b6e565b3480156109a857600080fd5b506106706109b7366004615218565b611d92565b3480156109c857600080fd5b5061063b6109d73660046154a5565b611da0565b3480156109e857600080fd5b506107216109f73660046152ee565b60009081526035602090815260408083206001600160a01b03949094168352929052205490565b610670611ebf565b348015610a3257600080fd5b5060335461063b906301000000900460ff1681565b348015610a5357600080fd5b5060335461063b90610100900460ff1681565b348015610a7257600080fd5b5061072160165481565b348015610a8857600080fd5b506106d46daaeb6d7670e522a718067333cd4e81565b348015610aaa57600080fd5b5061072160145481565b348015610ac057600080fd5b50610670610acf366004615337565b612848565b348015610ae057600080fd5b50610670610aef366004615218565b612926565b348015610b0057600080fd5b50610670610b0f3660046154ec565b6129c9565b348015610b2057600080fd5b50610b34610b2f36600461531a565b6129f2565b6040516106479190615509565b348015610b4d57600080fd5b50610670610b5c366004615218565b612b27565b348015610b6d57600080fd5b5060335461063b9062010000900460ff1681565b348015610b8d57600080fd5b5061072160135481565b348015610ba357600080fd5b50610721601c5481565b348015610bb957600080fd5b50610721601d5481565b348015610bcf57600080fd5b50610670610bde3660046155a4565b612b35565b348015610bef57600080fd5b50610670610bfe3660046155ec565b612b4a565b348015610c0f57600080fd5b50610670610c1e3660046154ec565b612b7e565b348015610c2f57600080fd5b50610670610c3e3660046152ee565b612ba5565b348015610c4f57600080fd5b50610721600d5481565b348015610c6557600080fd5b5061063b610c743660046154a5565b612bd4565b348015610c8557600080fd5b506106d4610c94366004615218565b612cf3565b348015610ca557600080fd5b50610670610cb4366004615218565b612d07565b348015610cc557600080fd5b5061063b610cd436600461531a565b6001600160a01b031660009081526011602052604090205460ff1690565b348015610cfe57600080fd5b50610670610d0d366004615218565b612d19565b348015610d1e57600080fd5b50610721610d2d36600461531a565b612d7a565b348015610d3e57600080fd5b50610670612e49565b348015610d5357600080fd5b50610670610d62366004615218565b612e5b565b348015610d7357600080fd5b50610670610d823660046154ec565b612e69565b348015610d9357600080fd5b50610721610da236600461531a565b601e5460009081526034602090815260408083206001600160a01b039094168352929052205490565b610670610dd936600461545f565b612e85565b348015610dea57600080fd5b50610670610df9366004615218565b61311a565b348015610e0a57600080fd5b506106d4610e19366004615218565b613128565b348015610e2a57600080fd5b50610721601e5481565b348015610e4057600080fd5b50610b34610e4f36600461531a565b613194565b348015610e6057600080fd5b50610670610e6f3660046152ee565b61325a565b348015610e8057600080fd5b506000546001600160a01b03166106d4565b348015610e9e57600080fd5b50610670610ead366004615218565b613289565b348015610ebe57600080fd5b50610670610ecd366004615218565b613297565b348015610ede57600080fd5b50610721610eed36600461531a565b6020805460009081526036825260408082206001600160a01b03909416825292909152205490565b348015610f2157600080fd5b506106a76132f8565b348015610f3657600080fd5b50610670610f4536600461531a565b613307565b348015610f5657600080fd5b50610670610f653660046152ee565b613332565b348015610f7657600080fd5b5061072160155481565b610670613361565b348015610f9457600080fd5b50610670610fa33660046155ec565b613393565b348015610fb457600080fd5b50610670610fc33660046154ec565b6134d1565b348015610fd457600080fd5b50610670610fe33660046154ec565b6134f4565b348015610ff457600080fd5b5061067061100336600461531a565b613519565b34801561101457600080fd5b506106706110233660046154ec565b61352a565b34801561103457600080fd5b5061067061104336600461561a565b613546565b34801561105457600080fd5b5061063b611063366004615218565b60326020526000908152604090205460ff1681565b34801561108457600080fd5b506106706110933660046155a4565b613632565b3480156110a457600080fd5b506106706110b3366004615218565b613647565b3480156110c457600080fd5b5060335461063b9060ff1681565b3480156110de57600080fd5b506106706110ed366004615218565b613655565b3480156110fe57600080fd5b506106a761110d366004615218565b613663565b34801561111e57600080fd5b5061063b61112d36600461531a565b6001600160a01b031660009081526037602052604090205460ff1690565b34801561115757600080fd5b506107216111663660046152ee565b60009081526034602090815260408083206001600160a01b03949094168352929052205490565b34801561119957600080fd5b506106706111a8366004615218565b613798565b3480156111b957600080fd5b506106706111c8366004615699565b6137aa565b3480156111d957600080fd5b50610721601b5481565b3480156111ef57600080fd5b50610721601f5481565b34801561120557600080fd5b506021546106d4906001600160a01b031681565b34801561122557600080fd5b50610670611234366004615218565b6137fb565b34801561124557600080fd5b506106706112543660046155a4565b613809565b34801561126557600080fd5b5061072160205481565b61067061127d3660046156be565b61381e565b34801561128e57600080fd5b5061067061129d366004615218565b613a65565b3480156112ae57600080fd5b506106706112bd36600461570b565b613a73565b3480156112ce57600080fd5b506106a7613a9c565b3480156112e357600080fd5b5061063b6112f2366004615730565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561132c57600080fd5b50610721601a5481565b34801561134257600080fd5b5061063b61135136600461575e565b613aa6565b34801561136257600080fd5b5061067061137136600461531a565b613bdb565b34801561138257600080fd5b5060105461063b9060ff1681565b600061139b82613df3565b92915050565b6113aa33613e18565b601f55565b6113b833613e18565b6113c28282613e86565b5050565b6060600280546113d5906157a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611401906157a8565b801561144e5780601f106114235761010080835404028352916020019161144e565b820191906000526020600020905b81548152906001019060200180831161143157829003601f168201915b5050505050905090565b600061146382613f83565b6114cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15801590611509575060105460ff165b156115b257604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611566573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158a91906157e2565b6115b257604051633b79c77360e21b81526001600160a01b03821660048201526024016114c3565b6000546001600160a01b03848116911614806115eb57506001600160a01b03831660009081526037602052604090205460ff1615156001145b8061160057506033546301000000900460ff16155b61161c5760405162461bcd60e51b81526004016114c3906157ff565b6116268383613fb9565b505050565b6000600161163860055490565b611642919061585d565b905090565b60006116516140cb565b61163861412d565b61166233613e18565b602580546001600160a01b0319166001600160a01b039390931692909217909155602b55565b61169133613e18565b602780546001600160a01b0319166001600160a01b039390931692909217909155602d55565b6116c033613e18565b601e819055601f819055602055565b826daaeb6d7670e522a718067333cd4e3b158015906116f0575060105460ff165b156117a757336001600160a01b038216036117155761171084848461413e565b6117b2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611764573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178891906157e2565b6117a757604051633b79c77360e21b81523360048201526024016114c3565b6117b284848461413e565b50505050565b6117c133613e18565b6117d981600d546000908152600c6020526040902055565b50565b603180546117e9906157a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611815906157a8565b80156118625780601f1061183757610100808354040283529160200191611862565b820191906000526020600020905b81548152906001019060200180831161184557829003601f168201915b505050505081565b61187261416f565b6117d9816141c9565b61188433613e18565b602480546001600160a01b0319166001600160a01b039390931692909217909155602a55565b6000828152600f602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161191f575060408051808201909152600e546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061193e906001600160601b031687615870565b6119489190615887565b915196919550909350505050565b61195f33613e18565b6000918252600c602052604090912055565b611979614251565b603354610100900460ff166119c75760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b60448201526064016114c3565b80601a5410156119e95760405162461bcd60e51b81526004016114c3906158a9565b806017541015611a0b5760405162461bcd60e51b81526004016114c3906158f0565b6020805460009081526036825260408082203383529092522054611a30908290615935565b6017541015611a815760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c656674000000000060448201526064016114c3565b80601454611a8f9190615870565b3414611aad5760405162461bcd60e51b81526004016114c390615948565b601c54611ab8611647565b611ac29083615935565b111580611acf5750601c54155b611aeb5760405162461bcd60e51b81526004016114c39061597f565b601b54611af6611647565b611b009083615935565b111580611b0d5750601b54155b611b295760405162461bcd60e51b81526004016114c39061597f565b6020805460009081526036825260408082203383529092529081208054839290611b54908490615935565b90915550611b64905033826142aa565b6117d96001600955565b611b76614251565b60335462010000900460ff16611bc55760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b60448201526064016114c3565b611bcf3382612bd4565b611beb5760405162461bcd60e51b81526004016114c3906159a5565b81601a541015611c0d5760405162461bcd60e51b81526004016114c3906158a9565b816017541015611c2f5760405162461bcd60e51b81526004016114c3906158f0565b6020805460009081526036825260408082203383529092522054611c54908390615935565b6017541015611ca55760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c656674000000000060448201526064016114c3565b81601454611cb39190615870565b3414611cd15760405162461bcd60e51b81526004016114c390615948565b601c54611cdc611647565b611ce69084615935565b111580611cf35750601c54155b611d0f5760405162461bcd60e51b81526004016114c39061597f565b601b54611d1a611647565b611d249084615935565b111580611d315750601b54155b611d4d5760405162461bcd60e51b81526004016114c39061597f565b6020805460009081526036825260408082203383529092529081208054849290611d78908490615935565b90915550611d88905033836142aa565b6113c26001600955565b611d9b33613e18565b602055565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015611eb357838181518110611df557611df56159dc565b60200260200101518210611e5357838181518110611e1557611e156159dc565b602002602001015182604051602001611e38929190918252602082015260400190565b60405160208183030381529060405280519060200120611e9f565b81848281518110611e6657611e666159dc565b6020026020010151604051602001611e88929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080611eab816159f2565b915050611dda565b50600a54149392505050565b611ec833613e18565b611ed0614251565b6023546001600160a01b031615801590611eeb575060295415155b80611eff57506023546001600160a01b0316155b611f625760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6161206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6024546001600160a01b031615801590611f7d5750602a5415155b80611f9157506024546001600160a01b0316155b611ff45760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6262206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6025546001600160a01b03161580159061200f5750602b5415155b8061202357506025546001600160a01b0316155b6120865760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6363206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6026546001600160a01b0316158015906120a15750602c5415155b806120b557506026546001600160a01b0316155b6121185760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6464206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6027546001600160a01b0316158015906121335750602d5415155b8061214757506027546001600160a01b0316155b6121aa5760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6565206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6028546001600160a01b0316158015906121c55750602e5415155b806121d957506028546001600160a01b0316155b61223c5760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6666206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b60235447906000906001600160a01b031615612310576023546029546001600160a01b0390911690612710906122729085615870565b61227c9190615887565b604051600081818185875af1925050503d80600081146122b8576040519150601f19603f3d011682016040523d82523d6000602084013e6122bd565b606091505b505080915050806123105760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6161204574686572000000000060448201526064016114c3565b6024546001600160a01b0316156123df57602454602a546001600160a01b0390911690612710906123419085615870565b61234b9190615887565b604051600081818185875af1925050503d8060008114612387576040519150601f19603f3d011682016040523d82523d6000602084013e61238c565b606091505b505080915050806123df5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6262204574686572000000000060448201526064016114c3565b6025546001600160a01b0316156124ae57602554602b546001600160a01b0390911690612710906124109085615870565b61241a9190615887565b604051600081818185875af1925050503d8060008114612456576040519150601f19603f3d011682016040523d82523d6000602084013e61245b565b606091505b505080915050806124ae5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6363204574686572000000000060448201526064016114c3565b6026546001600160a01b03161561257d57602654602c546001600160a01b0390911690612710906124df9085615870565b6124e99190615887565b604051600081818185875af1925050503d8060008114612525576040519150601f19603f3d011682016040523d82523d6000602084013e61252a565b606091505b5050809150508061257d5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6464204574686572000000000060448201526064016114c3565b6027546001600160a01b03161561264c57602754602d546001600160a01b0390911690612710906125ae9085615870565b6125b89190615887565b604051600081818185875af1925050503d80600081146125f4576040519150601f19603f3d011682016040523d82523d6000602084013e6125f9565b606091505b5050809150508061264c5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6565204574686572000000000060448201526064016114c3565b6028546001600160a01b03161561271b57602854602e546001600160a01b03909116906127109061267d9085615870565b6126879190615887565b604051600081818185875af1925050503d80600081146126c3576040519150601f19603f3d011682016040523d82523d6000602084013e6126c8565b606091505b5050809150508061271b5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6666204574686572000000000060448201526064016114c3565b6022544792506001600160a01b03161561278c576022546040516001600160a01b03909116908390600081818185875af1925050503d806000811461277c576040519150601f19603f3d011682016040523d82523d6000602084013e612781565b606091505b5050809150506127ed565b6000546001600160a01b03166001600160a01b03168260405160006040518083038185875af1925050503d80600081146127e2576040519150601f19603f3d011682016040523d82523d6000602084013e6127e7565b606091505b50909150505b8061283a5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016114c3565b50506128466001600955565b565b826daaeb6d7670e522a718067333cd4e3b15801590612869575060105460ff165b1561291b57336001600160a01b03821603612889576117108484846142c4565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156128d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fc91906157e2565b61291b57604051633b79c77360e21b81523360048201526024016114c3565b6117b28484846142c4565b3361293082612cf3565b6001600160a01b0316146129795760405162461bcd60e51b815260206004820152601060248201526f34b9b73a1037bbb732b9103a37b5b2b760811b60448201526064016114c3565b603354640100000000900460ff16156129c05760405162461bcd60e51b81526020600482015260096024820152686e6f7420616c6c6f7760b81b60448201526064016114c3565b6117d9816142df565b6129d233613e18565b603380549115156401000000000264ff0000000019909216919091179055565b606060006129ff83612d7a565b90506000816001600160401b03811115612a1b57612a1b61539a565b604051908082528060200260200182016040528015612a44578160200160208202803683370190505b509050600060015b6001612a5760055490565b612a61919061585d565b811015612b1d576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015612aa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ac89190615a0b565b6001600160a01b0316866001600160a01b031603612b0b57808383612aec816159f2565b945081518110612afe57612afe6159dc565b6020026020010181815250505b80612b15816159f2565b915050612a4c565b5090949350505050565b612b3033613e18565b601655565b612b3e33613e18565b60306113c28282615a6e565b612b5333613e18565b6001600160a01b03919091166000908152603760205260409020805460ff1916911515919091179055565b612b8733613e18565b6033805491151563010000000263ff00000019909216919091179055565b612bae33613e18565b602680546001600160a01b0319166001600160a01b039390931692909217909155602c55565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015612ce757838181518110612c2957612c296159dc565b60200260200101518210612c8757838181518110612c4957612c496159dc565b602002602001015182604051602001612c6c929190918252602082015260400190565b60405160208183030381529060405280519060200120612cd3565b81848281518110612c9a57612c9a6159dc565b6020026020010151604051602001612cbc929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080612cdf816159f2565b915050612c0e565b50600b54149392505050565b600080612cff83614341565b509392505050565b612d1033613e18565b6117d981600a55565b612d2233613e18565b80612d2b611647565b1115612d755760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b60448201526064016114c3565b601b55565b60006001600160a01b038216612de85760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b60648201526084016114c3565b600060015b600554811015612e4257612e0081613f83565b15612e3257612e0e81612cf3565b6001600160a01b0316846001600160a01b031603612e3257612e2f826159f2565b91505b612e3b816159f2565b9050612ded565b5092915050565b612e5161416f565b61284660006143d8565b612e6433613e18565b601555565b612e7233613e18565b6033805460ff1916911515919091179055565b612e8d614251565b60335460ff16612edf5760405162461bcd60e51b815260206004820152601760248201527f616c6c6f776c6973744d696e742069732050617573656400000000000000000060448201526064016114c3565b612ee93382611da0565b612f055760405162461bcd60e51b81526004016114c3906159a5565b816019541015612f6a5760405162461bcd60e51b815260206004820152602a60248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e747320706560448201526972206f6e652074696d6560b01b60648201526084016114c3565b816016541015612fcd5760405162461bcd60e51b815260206004820152602860248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b60648201526084016114c3565b601f546000908152603560209081526040808320338452909152902054612ff5908390615935565b60165410156130465760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c656674000060448201526064016114c3565b816013546130549190615870565b34146130725760405162461bcd60e51b81526004016114c390615948565b601c5461307d611647565b6130879084615935565b1115806130945750601c54155b6130b05760405162461bcd60e51b81526004016114c39061597f565b601b546130bb611647565b6130c59084615935565b1115806130d25750601b54155b6130ee5760405162461bcd60e51b81526004016114c39061597f565b601f54600090815260356020908152604080832033845290915281208054849290611d78908490615935565b61312333613e18565b601755565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa925050508015613183575060408051601f3d908101601f1916820190925261318091810190615a0b565b60015b61139b57506000919050565b919050565b60606000806131a284612d7a565b90506000816001600160401b038111156131be576131be61539a565b6040519080825280602002602001820160405280156131e7578160200160208202803683370190505b50905060015b828414613251576131fd81613f83565b1561324957856001600160a01b031661321582612cf3565b6001600160a01b031603613249578082858060010196508151811061323c5761323c6159dc565b6020026020010181815250505b6001016131ed565b50949350505050565b61326333613e18565b602380546001600160a01b0319166001600160a01b039390931692909217909155602955565b61329233613e18565b601255565b6132a033613e18565b806132a9611647565b11156132f35760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b60448201526064016114c3565b601c55565b6060600380546113d5906157a8565b61331033613e18565b602180546001600160a01b0319166001600160a01b0392909216919091179055565b61333b33613e18565b602880546001600160a01b0319166001600160a01b039390931692909217909155602e55565b613369614251565b600034116133895760405162461bcd60e51b81526004016114c390615948565b6128466001600955565b816daaeb6d7670e522a718067333cd4e3b158015906133b4575060105460ff165b1561345d57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015613411573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343591906157e2565b61345d57604051633b79c77360e21b81526001600160a01b03821660048201526024016114c3565b6000546001600160a01b038481169116148061349657506001600160a01b03831660009081526037602052604090205460ff1615156001145b806134ab57506033546301000000900460ff16155b6134c75760405162461bcd60e51b81526004016114c3906157ff565b6116268383614428565b6134da33613e18565b603380549115156101000261ff0019909216919091179055565b6134fd33613e18565b60338054911515620100000262ff000019909216919091179055565b61352161416f565b6117d9816144ec565b61353333613e18565b6010805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b15801590613567575060105460ff165b1561361f57336001600160a01b0382160361358d5761358885858585614516565b61362b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156135dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061360091906157e2565b61361f57604051633b79c77360e21b81523360048201526024016114c3565b61362b85858585614516565b5050505050565b61363b33613e18565b602f6113c28282615a6e565b61365033613e18565b601355565b61365e33613e18565b601d55565b606061366e82613f83565b6136ba5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016114c3565b6136c682601d54101590565b15613706576136d3614548565b6136dc83614557565b60316040516020016136f093929190615b2d565b6040516020818303038152906040529050919050565b602f8054613713906157a8565b80601f016020809104026020016040519081016040528092919081815260200182805461373f906157a8565b801561378c5780601f106137615761010080835404028352916020019161378c565b820191906000526020600020905b81548152906001019060200180831161376f57829003601f168201915b50505050509050919050565b6137a133613e18565b6117d981600b55565b6137b333613e18565b601b546137be611647565b6137c89084615935565b1115806137d55750601b54155b6137f15760405162461bcd60e51b81526004016114c39061597f565b6113c281836142aa565b61380433613e18565b601455565b61381233613e18565b60316113c28282615a6e565b613826614251565b60008481526032602052604090205460ff166138845760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e742069732050617573656400000000000000000060448201526064016114c3565b61389033858484613aa6565b6138ac5760405162461bcd60e51b81526004016114c3906159a5565b600082116138ee5760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b60448201526064016114c3565b8282101561394f5760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b60648201526084016114c3565b6000848152603460209081526040808320338452909152902054613974908490615935565b8210156139c35760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c656674000060448201526064016114c3565b826012546139d19190615870565b34146139ef5760405162461bcd60e51b81526004016114c390615948565b601c546139fa611647565b613a049085615935565b1115613a225760405162461bcd60e51b81526004016114c39061597f565b600084815260346020908152604080832033845290915281208054859290613a4b908490615935565b90915550613a5b905033846142aa565b6117b26001600955565b613a6e33613e18565b601e55565b613a7c33613e18565b600091825260326020526040909120805460ff1916911515919091179055565b60606116426145e9565b6040516001600160601b0319606086901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015613bc057838181518110613b0257613b026159dc565b60200260200101518210613b6057838181518110613b2257613b226159dc565b602002602001015182604051602001613b45929190918252602082015260400190565b60405160208183030381529060405280519060200120613bac565b81848281518110613b7357613b736159dc565b6020026020010151604051602001613b95929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080613bb8816159f2565b915050613ae7565b506000858152600c6020526040902054149050949350505050565b613be361416f565b6001600160a01b038116613c485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016114c3565b6117d9816143d8565b60606000613c60836002615870565b613c6b906002615935565b6001600160401b03811115613c8257613c8261539a565b6040519080825280601f01601f191660200182016040528015613cac576020820181803683370190505b509050600360fc1b81600081518110613cc757613cc76159dc565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613cf657613cf66159dc565b60200101906001600160f81b031916908160001a9053506000613d1a846002615870565b613d25906001615935565b90505b6001811115613d9d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613d5957613d596159dc565b1a60f81b828281518110613d6f57613d6f6159dc565b60200101906001600160f81b031916908160001a90535060049490941c93613d9681615bcd565b9050613d28565b508315613dec5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016114c3565b9392505050565b60006001600160e01b0319821663152a902d60e11b148061139b575061139b82614669565b6001600160a01b03811660009081526011602052604090205460ff16613e49335b6001600160a01b03166014613c51565b604051602001613e599190615be4565b604051602081830303815290604052906113c25760405162461bcd60e51b81526004016114c391906152db565b6127106001600160601b0382161115613ef45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016114c3565b6001600160a01b038216613f4a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016114c3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600e55565b600881811c60009081526020919091526040812054600160ff1b60ff84161c1615613fb057506000919050565b61139b826146b9565b6000613fc482612cf3565b9050806001600160a01b0316836001600160a01b0316036140335760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b60648201526084016114c3565b336001600160a01b038216148061404f575061404f81336112f2565b6140c15760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c000000000060648201526084016114c3565b61162683836146d5565b600554600090819081906140e39060081c6001615935565b9050815b818110156141275760008181526008602052604090205461410781614743565b6141119086615935565b945050808061411f906159f2565b9150506140e7565b50505090565b60006001600554611642919061585d565b614148338261475d565b6141645760405162461bcd60e51b81526004016114c390615c31565b61162683838361484a565b6000546001600160a01b031633146128465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016114c3565b6001600160a01b03811660009081526011602052604090205460ff16156141ef33613e39565b6040516020016141ff9190615c85565b6040516020818303038152906040529061422c5760405162461bcd60e51b81526004016114c391906152db565b506001600160a01b03166000908152601160205260409020805460ff19166001179055565b6002600954036142a35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016114c3565b6002600955565b6113c2828260405180602001604052806000815250614a45565b61162683838360405180602001604052806000815250613546565b60006142ea82612cf3565b90506142fa816000846001614a86565b614305600883614b26565b60405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008061434d83613f83565b6143ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016114c3565b6143b783614b52565b6000818152600460205260409020546001600160a01b031694909350915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b336001600160a01b038316036144805760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c65720000000060448201526064016114c3565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6144f581613e18565b6001600160a01b03166000908152601160205260409020805460ff19169055565b614520338361475d565b61453c5760405162461bcd60e51b81526004016114c390615c31565b6117b284848484614b5f565b6060603080546113d5906157a8565b6060600061456483614b78565b60010190506000816001600160401b038111156145835761458361539a565b6040519080825280601f01601f1916602001820160405280156145ad576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846145b757509392505050565b60606000806145fa816127106118aa565b9150915061464361460a82614557565b61461e846001600160a01b03166014613c51565b60405160200161462f929190615cdc565b604051602081830303815290604052614c50565b6040516020016146539190615d62565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b148061469a57506001600160e01b03198216635b5e139f60e01b145b8061139b57506301ffc9a760e01b6001600160e01b031983161461139b565b60006146c460055490565b8210801561139b5750506001111590565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061470a82612cf3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b811561318f57600019820190911690600101614746565b600061476882613f83565b6147cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016114c3565b60006147d783612cf3565b9050806001600160a01b0316846001600160a01b031614806148125750836001600160a01b031661480784611458565b6001600160a01b0316145b8061484257506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b60008061485683614341565b91509150846001600160a01b0316826001600160a01b0316146148d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b60648201526084016114c3565b6001600160a01b0384166149365760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b60648201526084016114c3565b6149438585856001614a86565b61494e6000846146d5565b600061495b846001615935565b600881901c600090815260016020526040902054909150600160ff1b60ff83161c1615801561498b575060055481105b156149c257600081815260046020526040902080546001600160a01b0319166001600160a01b0388161790556149c2600182614b26565b600084815260046020526040902080546001600160a01b0319166001600160a01b0387161790558184146149fb576149fb600185614b26565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000614a5060055490565b9050614a5c8484614db4565b614a6a600085838686614f34565b6117b25760405162461bcd60e51b81526004016114c390615da7565b6001600160a01b03841615611710576000546001600160a01b0385811691161480614ace57506001600160a01b03841660009081526037602052604090205460ff1615156001145b80614ae357506033546301000000900460ff16155b6117105760405162461bcd60e51b815260206004820152601460248201527314d95b9908139195081b9bdd08185b1b1bddd95960621b60448201526064016114c3565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b600061139b60018361506b565b614b6a84848461484a565b614a6a848484600185614f34565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310614bb75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310614be3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310614c0157662386f26fc10000830492506010015b6305f5e1008310614c19576305f5e100830492506008015b6127108310614c2d57612710830492506004015b60648310614c3f576064830492506002015b600a831061139b5760010192915050565b60608151600003614c6f57505060408051602081019091526000815290565b6000604051806060016040528060408152602001615e576040913990506000600384516002614c9e9190615935565b614ca89190615887565b614cb3906004615870565b90506000614cc2826020615935565b6001600160401b03811115614cd957614cd961539a565b6040519080825280601f01601f191660200182016040528015614d03576020820181803683370190505b509050818152600183018586518101602084015b81831015614d6f576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101614d17565b600389510660018114614d895760028114614d9a57614da6565b613d3d60f01b600119830152614da6565b603d60f81b6000198301525b509398975050505050505050565b6000614dbf60055490565b905060008211614e1f5760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b60648201526084016114c3565b6001600160a01b038316614e815760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b60648201526084016114c3565b614e8e6000848385614a86565b8160056000828254614ea09190615935565b9091555050600081815260046020526040902080546001600160a01b0319166001600160a01b038516179055614ed7600182614b26565b805b614ee38383615935565b8110156117b25760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480614f2c816159f2565b915050614ed9565b60006001600160a01b0385163b1561505e57506001835b614f558486615935565b81101561505857604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290614f8e9033908b9086908990600401615dfc565b6020604051808303816000875af1925050508015614fc9575060408051601f3d908101601f19168201909252614fc691810190615e39565b60015b615026573d808015614ff7576040519150601f19603f3d011682016040523d82523d6000602084013e614ffc565b606091505b50805160000361501e5760405162461bcd60e51b81526004016114c390615da7565b805181602001fd5b82801561504357506001600160e01b03198116630a85bd0160e11b145b92505080615050816159f2565b915050614f4b565b50615062565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c80156150ad5761509b81615163565b60ff168203600884901b17935061515a565b6000831161511a5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b60648201526084016114c3565b5060001990910160008181526020869052604090205490919080156151555761514281615163565b60ff0360ff16600884901b17935061515a565b6150ad565b50505092915050565b60006040518061012001604052806101008152602001615e97610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff6151ac856151cd565b02901c815181106151bf576151bf6159dc565b016020015160f81c92915050565b60008082116151db57600080fd5b5060008190031690565b6001600160e01b0319811681146117d957600080fd5b60006020828403121561520d57600080fd5b8135613dec816151e5565b60006020828403121561522a57600080fd5b5035919050565b6001600160a01b03811681146117d957600080fd5b6000806040838503121561525957600080fd5b823561526481615231565b915060208301356001600160601b038116811461528057600080fd5b809150509250929050565b60005b838110156152a657818101518382015260200161528e565b50506000910152565b600081518084526152c781602086016020860161528b565b601f01601f19169290920160200192915050565b602081526000613dec60208301846152af565b6000806040838503121561530157600080fd5b823561530c81615231565b946020939093013593505050565b60006020828403121561532c57600080fd5b8135613dec81615231565b60008060006060848603121561534c57600080fd5b833561535781615231565b9250602084013561536781615231565b929592945050506040919091013590565b6000806040838503121561538b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156153d8576153d861539a565b604052919050565b600082601f8301126153f157600080fd5b813560206001600160401b0382111561540c5761540c61539a565b8160051b61541b8282016153b0565b928352848101820192828101908785111561543557600080fd5b83870192505b848310156154545782358252918301919083019061543b565b979650505050505050565b6000806040838503121561547257600080fd5b8235915060208301356001600160401b0381111561548f57600080fd5b61549b858286016153e0565b9150509250929050565b600080604083850312156154b857600080fd5b82356154c381615231565b915060208301356001600160401b0381111561548f57600080fd5b80151581146117d957600080fd5b6000602082840312156154fe57600080fd5b8135613dec816154de565b6020808252825182820181905260009190848201906040850190845b8181101561554157835183529284019291840191600101615525565b50909695505050505050565b60006001600160401b038311156155665761556661539a565b615579601f8401601f19166020016153b0565b905082815283838301111561558d57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156155b657600080fd5b81356001600160401b038111156155cc57600080fd5b8201601f810184136155dd57600080fd5b6148428482356020840161554d565b600080604083850312156155ff57600080fd5b823561560a81615231565b91506020830135615280816154de565b6000806000806080858703121561563057600080fd5b843561563b81615231565b9350602085013561564b81615231565b92506040850135915060608501356001600160401b0381111561566d57600080fd5b8501601f8101871361567e57600080fd5b61568d8782356020840161554d565b91505092959194509250565b600080604083850312156156ac57600080fd5b82359150602083013561528081615231565b600080600080608085870312156156d457600080fd5b84359350602085013592506040850135915060608501356001600160401b038111156156ff57600080fd5b61568d878288016153e0565b6000806040838503121561571e57600080fd5b823591506020830135615280816154de565b6000806040838503121561574357600080fd5b823561574e81615231565b9150602083013561528081615231565b6000806000806080858703121561577457600080fd5b843561577f81615231565b9350602085013592506040850135915060608501356001600160401b038111156156ff57600080fd5b600181811c908216806157bc57607f821691505b6020821081036157dc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156157f457600080fd5b8151613dec816154de565b60208082526028908201527f43616e6e6f7420617070726f76652c207472616e7366657272696e67206e6f7460408201526708185b1b1bddd95960c21b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561139b5761139b615847565b808202811582820484141761139b5761139b615847565b6000826158a457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526027908201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6040820152666e652074696d6560c81b606082015260800190565b60208082526025908201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604082015264185b1b195d60da1b606082015260800190565b8082018082111561139b5761139b615847565b60208082526018908201527f4554482076616c7565206973206e6f7420636f72726563740000000000000000604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526018908201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201615a0457615a04615847565b5060010190565b600060208284031215615a1d57600080fd5b8151613dec81615231565b601f82111561162657600081815260208120601f850160051c81016020861015615a4f5750805b601f850160051c820191505b81811015614a3d57828155600101615a5b565b81516001600160401b03811115615a8757615a8761539a565b615a9b81615a9584546157a8565b84615a28565b602080601f831160018114615ad05760008415615ab85750858301515b600019600386901b1c1916600185901b178555614a3d565b600085815260208120601f198616915b82811015615aff57888601518255948401946001909101908401615ae0565b5085821015615b1d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600084516020615b408285838a0161528b565b855191840191615b538184848a0161528b565b8554920191600090615b64816157a8565b60018281168015615b7c5760018114615b9157615bbd565b60ff1984168752821515830287019450615bbd565b896000528560002060005b84811015615bb557815489820152908301908701615b9c565b505082870194505b50929a9950505050505050505050565b600081615bdc57615bdc615847565b506000190190565b67030b1b1b7bab73a160c51b815260008251615c0781600885016020870161528b565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b67030b1b1b7bab73a160c51b815260008251615ca881600885016020870161528b565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a0000000000815260008351615d1481601b85016020880161528b565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b918401918201528351615d4781602e84016020880161528b565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251615d9a81601d85016020870161528b565b91909101601d0192915050565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615e2f908301846152af565b9695505050505050565b600060208284031215615e4b57600080fd5b8151613dec816151e556fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a2646970667358221220d2796a2b3acb76b02743be67579ed8ad0b8e436ed0fd85c214c657644fe30cd864736f6c63430008110033000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f

Deployed Bytecode

0x6080604052600436106106165760003560e01c80636d70f7ae11610329578063b7c0b8e8116101b6578063d5dcfbc611610102578063e4848292116100a0578063ea7baab11161007a578063ea7baab114611320578063f1e9770b14611336578063f2fde38b14611356578063fb796e6c1461137657600080fd5b8063e4848292146112a2578063e8a3d485146112c2578063e985e9c5146112d757600080fd5b8063da3ef23f116100dc578063da3ef23f14611239578063df58a1b514611259578063df7253961461126f578063e0669c551461128257600080fd5b8063d5dcfbc6146111e3578063d5f39488146111f9578063d78be71c1461121957600080fd5b8063c50c81861161016f578063ccf6c68811610149578063ccf6c6881461114b578063cd8d03211461118d578063d52c57e0146111ad578063d5abeb01146111cd57600080fd5b8063c50c8186146110d2578063c87b56dd146110f2578063cbf9fe5f1461111257600080fd5b8063b7c0b8e814611008578063b88d4fde14611028578063ba05e11514611048578063bbaac02f14611078578063bf509b9d14611098578063c3e53683146110b857600080fd5b80638da5cb5b11610275578063962c167b1161022e578063a22cb46511610208578063a22cb46514610f88578063a355fd2914610fa8578063abb61da514610fc8578063b219f7d714610fe857600080fd5b8063962c167b14610f4a5780639970cc2914610f6a5780639da9778c14610f8057600080fd5b80638da5cb5b14610e745780638dd07d0f14610e9257806391e4bac814610eb2578063942958f414610ed257806395d89b4114610f155780639621473514610f2a57600080fd5b806378a92380116102e2578063830b3a64116102bc578063830b3a6414610dfe578063830f821114610e1e5780638462151c14610e345780638bec504014610e5457600080fd5b806378a9238014610d875780637bc9200e14610dcb578063813779ef14610dde57600080fd5b80636d70f7ae14610cb95780636f8b44b014610cf257806370a0823114610d12578063715018a614610d32578063719eaef814610d475780637672287e14610d6757600080fd5b806330e7ed35116104a757806343b50551116103f357806356f5d89d116103ac57806358303b101161038657806358303b1014610c435780635bc401a714610c595780636352211e14610c79578063689e637d14610c9957600080fd5b806356f5d89d14610be35780635714e71114610c035780635822768b14610c2357600080fd5b806343b5055114610b4157806343e625fa14610b61578063449d0f1014610b815780634bf365df14610b975780635183022714610bad57806355f804b314610bc357600080fd5b8063414abee21161046057806342842e0e1161043a57806342842e0e14610ab457806342966c6814610ad4578063435e4ccd14610af4578063438b630014610b1457600080fd5b8063414abee214610a6657806341f4343414610a7c57806342454db914610a9e57600080fd5b806330e7ed351461099c57806333006786146109bc57806339666ece146109dc5780633ccfd60b14610a1e5780633eac7b9514610a265780634009920d14610a4757600080fd5b806323945d49116105665780632a55205a1161051f5780632c4e9fc6116104f95780632c4e9fc61461094a5780632db11544146109605780632e9901f4146109735780632ef370251461098957600080fd5b80632a55205a146108d55780632ab110da146109145780632c04f0f51461092a57600080fd5b806323945d491461082057806323b872dd14610840578063258bc0ef146108605780632672c9021461088057806327ac0c581461089557806327d22615146108b557600080fd5b80630d9005ae116105d357806319d580a8116105ad57806319d580a8146107865780631a09cfe2146107a657806321434421146107bc578063235dfa501461080057600080fd5b80630d9005ae1461070c57806310637d8a1461072f57806318160ddd1461077157600080fd5b806301ffc9a71461061b57806303c0f48c1461065057806304634d8d1461067257806306fdde0314610692578063081812fc146106b4578063095ea7b3146106ec575b600080fd5b34801561062757600080fd5b5061063b6106363660046151fb565b611390565b60405190151581526020015b60405180910390f35b34801561065c57600080fd5b5061067061066b366004615218565b6113a1565b005b34801561067e57600080fd5b5061067061068d366004615246565b6113af565b34801561069e57600080fd5b506106a76113c6565b60405161064791906152db565b3480156106c057600080fd5b506106d46106cf366004615218565b611458565b6040516001600160a01b039091168152602001610647565b3480156106f857600080fd5b506106706107073660046152ee565b6114e8565b34801561071857600080fd5b5061072161162b565b604051908152602001610647565b34801561073b57600080fd5b5061072161074a3660046152ee565b60009081526036602090815260408083206001600160a01b03949094168352929052205490565b34801561077d57600080fd5b50610721611647565b34801561079257600080fd5b506106706107a13660046152ee565b611659565b3480156107b257600080fd5b5061072160175481565b3480156107c857600080fd5b506107216107d736600461531a565b601f5460009081526035602090815260408083206001600160a01b039094168352929052205490565b34801561080c57600080fd5b5061067061081b3660046152ee565b611688565b34801561082c57600080fd5b5061067061083b366004615218565b6116b7565b34801561084c57600080fd5b5061067061085b366004615337565b6116cf565b34801561086c57600080fd5b5061067061087b366004615218565b6117b8565b34801561088c57600080fd5b506106a76117dc565b3480156108a157600080fd5b506106706108b036600461531a565b61186a565b3480156108c157600080fd5b506106706108d03660046152ee565b61187b565b3480156108e157600080fd5b506108f56108f0366004615378565b6118aa565b604080516001600160a01b039093168352602083019190915201610647565b34801561092057600080fd5b5061072160185481565b34801561093657600080fd5b50610670610945366004615378565b611956565b34801561095657600080fd5b5061072160125481565b61067061096e366004615218565b611971565b34801561097f57600080fd5b5061072160195481565b61067061099736600461545f565b611b6e565b3480156109a857600080fd5b506106706109b7366004615218565b611d92565b3480156109c857600080fd5b5061063b6109d73660046154a5565b611da0565b3480156109e857600080fd5b506107216109f73660046152ee565b60009081526035602090815260408083206001600160a01b03949094168352929052205490565b610670611ebf565b348015610a3257600080fd5b5060335461063b906301000000900460ff1681565b348015610a5357600080fd5b5060335461063b90610100900460ff1681565b348015610a7257600080fd5b5061072160165481565b348015610a8857600080fd5b506106d46daaeb6d7670e522a718067333cd4e81565b348015610aaa57600080fd5b5061072160145481565b348015610ac057600080fd5b50610670610acf366004615337565b612848565b348015610ae057600080fd5b50610670610aef366004615218565b612926565b348015610b0057600080fd5b50610670610b0f3660046154ec565b6129c9565b348015610b2057600080fd5b50610b34610b2f36600461531a565b6129f2565b6040516106479190615509565b348015610b4d57600080fd5b50610670610b5c366004615218565b612b27565b348015610b6d57600080fd5b5060335461063b9062010000900460ff1681565b348015610b8d57600080fd5b5061072160135481565b348015610ba357600080fd5b50610721601c5481565b348015610bb957600080fd5b50610721601d5481565b348015610bcf57600080fd5b50610670610bde3660046155a4565b612b35565b348015610bef57600080fd5b50610670610bfe3660046155ec565b612b4a565b348015610c0f57600080fd5b50610670610c1e3660046154ec565b612b7e565b348015610c2f57600080fd5b50610670610c3e3660046152ee565b612ba5565b348015610c4f57600080fd5b50610721600d5481565b348015610c6557600080fd5b5061063b610c743660046154a5565b612bd4565b348015610c8557600080fd5b506106d4610c94366004615218565b612cf3565b348015610ca557600080fd5b50610670610cb4366004615218565b612d07565b348015610cc557600080fd5b5061063b610cd436600461531a565b6001600160a01b031660009081526011602052604090205460ff1690565b348015610cfe57600080fd5b50610670610d0d366004615218565b612d19565b348015610d1e57600080fd5b50610721610d2d36600461531a565b612d7a565b348015610d3e57600080fd5b50610670612e49565b348015610d5357600080fd5b50610670610d62366004615218565b612e5b565b348015610d7357600080fd5b50610670610d823660046154ec565b612e69565b348015610d9357600080fd5b50610721610da236600461531a565b601e5460009081526034602090815260408083206001600160a01b039094168352929052205490565b610670610dd936600461545f565b612e85565b348015610dea57600080fd5b50610670610df9366004615218565b61311a565b348015610e0a57600080fd5b506106d4610e19366004615218565b613128565b348015610e2a57600080fd5b50610721601e5481565b348015610e4057600080fd5b50610b34610e4f36600461531a565b613194565b348015610e6057600080fd5b50610670610e6f3660046152ee565b61325a565b348015610e8057600080fd5b506000546001600160a01b03166106d4565b348015610e9e57600080fd5b50610670610ead366004615218565b613289565b348015610ebe57600080fd5b50610670610ecd366004615218565b613297565b348015610ede57600080fd5b50610721610eed36600461531a565b6020805460009081526036825260408082206001600160a01b03909416825292909152205490565b348015610f2157600080fd5b506106a76132f8565b348015610f3657600080fd5b50610670610f4536600461531a565b613307565b348015610f5657600080fd5b50610670610f653660046152ee565b613332565b348015610f7657600080fd5b5061072160155481565b610670613361565b348015610f9457600080fd5b50610670610fa33660046155ec565b613393565b348015610fb457600080fd5b50610670610fc33660046154ec565b6134d1565b348015610fd457600080fd5b50610670610fe33660046154ec565b6134f4565b348015610ff457600080fd5b5061067061100336600461531a565b613519565b34801561101457600080fd5b506106706110233660046154ec565b61352a565b34801561103457600080fd5b5061067061104336600461561a565b613546565b34801561105457600080fd5b5061063b611063366004615218565b60326020526000908152604090205460ff1681565b34801561108457600080fd5b506106706110933660046155a4565b613632565b3480156110a457600080fd5b506106706110b3366004615218565b613647565b3480156110c457600080fd5b5060335461063b9060ff1681565b3480156110de57600080fd5b506106706110ed366004615218565b613655565b3480156110fe57600080fd5b506106a761110d366004615218565b613663565b34801561111e57600080fd5b5061063b61112d36600461531a565b6001600160a01b031660009081526037602052604090205460ff1690565b34801561115757600080fd5b506107216111663660046152ee565b60009081526034602090815260408083206001600160a01b03949094168352929052205490565b34801561119957600080fd5b506106706111a8366004615218565b613798565b3480156111b957600080fd5b506106706111c8366004615699565b6137aa565b3480156111d957600080fd5b50610721601b5481565b3480156111ef57600080fd5b50610721601f5481565b34801561120557600080fd5b506021546106d4906001600160a01b031681565b34801561122557600080fd5b50610670611234366004615218565b6137fb565b34801561124557600080fd5b506106706112543660046155a4565b613809565b34801561126557600080fd5b5061072160205481565b61067061127d3660046156be565b61381e565b34801561128e57600080fd5b5061067061129d366004615218565b613a65565b3480156112ae57600080fd5b506106706112bd36600461570b565b613a73565b3480156112ce57600080fd5b506106a7613a9c565b3480156112e357600080fd5b5061063b6112f2366004615730565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561132c57600080fd5b50610721601a5481565b34801561134257600080fd5b5061063b61135136600461575e565b613aa6565b34801561136257600080fd5b5061067061137136600461531a565b613bdb565b34801561138257600080fd5b5060105461063b9060ff1681565b600061139b82613df3565b92915050565b6113aa33613e18565b601f55565b6113b833613e18565b6113c28282613e86565b5050565b6060600280546113d5906157a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611401906157a8565b801561144e5780601f106114235761010080835404028352916020019161144e565b820191906000526020600020905b81548152906001019060200180831161143157829003601f168201915b5050505050905090565b600061146382613f83565b6114cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15801590611509575060105460ff165b156115b257604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611566573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158a91906157e2565b6115b257604051633b79c77360e21b81526001600160a01b03821660048201526024016114c3565b6000546001600160a01b03848116911614806115eb57506001600160a01b03831660009081526037602052604090205460ff1615156001145b8061160057506033546301000000900460ff16155b61161c5760405162461bcd60e51b81526004016114c3906157ff565b6116268383613fb9565b505050565b6000600161163860055490565b611642919061585d565b905090565b60006116516140cb565b61163861412d565b61166233613e18565b602580546001600160a01b0319166001600160a01b039390931692909217909155602b55565b61169133613e18565b602780546001600160a01b0319166001600160a01b039390931692909217909155602d55565b6116c033613e18565b601e819055601f819055602055565b826daaeb6d7670e522a718067333cd4e3b158015906116f0575060105460ff165b156117a757336001600160a01b038216036117155761171084848461413e565b6117b2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611764573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178891906157e2565b6117a757604051633b79c77360e21b81523360048201526024016114c3565b6117b284848461413e565b50505050565b6117c133613e18565b6117d981600d546000908152600c6020526040902055565b50565b603180546117e9906157a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611815906157a8565b80156118625780601f1061183757610100808354040283529160200191611862565b820191906000526020600020905b81548152906001019060200180831161184557829003601f168201915b505050505081565b61187261416f565b6117d9816141c9565b61188433613e18565b602480546001600160a01b0319166001600160a01b039390931692909217909155602a55565b6000828152600f602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161191f575060408051808201909152600e546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061193e906001600160601b031687615870565b6119489190615887565b915196919550909350505050565b61195f33613e18565b6000918252600c602052604090912055565b611979614251565b603354610100900460ff166119c75760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b60448201526064016114c3565b80601a5410156119e95760405162461bcd60e51b81526004016114c3906158a9565b806017541015611a0b5760405162461bcd60e51b81526004016114c3906158f0565b6020805460009081526036825260408082203383529092522054611a30908290615935565b6017541015611a815760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c656674000000000060448201526064016114c3565b80601454611a8f9190615870565b3414611aad5760405162461bcd60e51b81526004016114c390615948565b601c54611ab8611647565b611ac29083615935565b111580611acf5750601c54155b611aeb5760405162461bcd60e51b81526004016114c39061597f565b601b54611af6611647565b611b009083615935565b111580611b0d5750601b54155b611b295760405162461bcd60e51b81526004016114c39061597f565b6020805460009081526036825260408082203383529092529081208054839290611b54908490615935565b90915550611b64905033826142aa565b6117d96001600955565b611b76614251565b60335462010000900460ff16611bc55760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b60448201526064016114c3565b611bcf3382612bd4565b611beb5760405162461bcd60e51b81526004016114c3906159a5565b81601a541015611c0d5760405162461bcd60e51b81526004016114c3906158a9565b816017541015611c2f5760405162461bcd60e51b81526004016114c3906158f0565b6020805460009081526036825260408082203383529092522054611c54908390615935565b6017541015611ca55760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c656674000000000060448201526064016114c3565b81601454611cb39190615870565b3414611cd15760405162461bcd60e51b81526004016114c390615948565b601c54611cdc611647565b611ce69084615935565b111580611cf35750601c54155b611d0f5760405162461bcd60e51b81526004016114c39061597f565b601b54611d1a611647565b611d249084615935565b111580611d315750601b54155b611d4d5760405162461bcd60e51b81526004016114c39061597f565b6020805460009081526036825260408082203383529092529081208054849290611d78908490615935565b90915550611d88905033836142aa565b6113c26001600955565b611d9b33613e18565b602055565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015611eb357838181518110611df557611df56159dc565b60200260200101518210611e5357838181518110611e1557611e156159dc565b602002602001015182604051602001611e38929190918252602082015260400190565b60405160208183030381529060405280519060200120611e9f565b81848281518110611e6657611e666159dc565b6020026020010151604051602001611e88929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080611eab816159f2565b915050611dda565b50600a54149392505050565b611ec833613e18565b611ed0614251565b6023546001600160a01b031615801590611eeb575060295415155b80611eff57506023546001600160a01b0316155b611f625760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6161206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6024546001600160a01b031615801590611f7d5750602a5415155b80611f9157506024546001600160a01b0316155b611ff45760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6262206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6025546001600160a01b03161580159061200f5750602b5415155b8061202357506025546001600160a01b0316155b6120865760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6363206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6026546001600160a01b0316158015906120a15750602c5415155b806120b557506026546001600160a01b0316155b6121185760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6464206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6027546001600160a01b0316158015906121335750602d5415155b8061214757506027546001600160a01b0316155b6121aa5760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6565206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b6028546001600160a01b0316158015906121c55750602e5415155b806121d957506028546001600160a01b0316155b61223c5760405162461bcd60e51b815260206004820152602e60248201527f706c656173652073657420776974686472617720416464726573735f6666206160448201526d3732103832b931b2b73a30b3b29760911b60648201526084016114c3565b60235447906000906001600160a01b031615612310576023546029546001600160a01b0390911690612710906122729085615870565b61227c9190615887565b604051600081818185875af1925050503d80600081146122b8576040519150601f19603f3d011682016040523d82523d6000602084013e6122bd565b606091505b505080915050806123105760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6161204574686572000000000060448201526064016114c3565b6024546001600160a01b0316156123df57602454602a546001600160a01b0390911690612710906123419085615870565b61234b9190615887565b604051600081818185875af1925050503d8060008114612387576040519150601f19603f3d011682016040523d82523d6000602084013e61238c565b606091505b505080915050806123df5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6262204574686572000000000060448201526064016114c3565b6025546001600160a01b0316156124ae57602554602b546001600160a01b0390911690612710906124109085615870565b61241a9190615887565b604051600081818185875af1925050503d8060008114612456576040519150601f19603f3d011682016040523d82523d6000602084013e61245b565b606091505b505080915050806124ae5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6363204574686572000000000060448201526064016114c3565b6026546001600160a01b03161561257d57602654602c546001600160a01b0390911690612710906124df9085615870565b6124e99190615887565b604051600081818185875af1925050503d8060008114612525576040519150601f19603f3d011682016040523d82523d6000602084013e61252a565b606091505b5050809150508061257d5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6464204574686572000000000060448201526064016114c3565b6027546001600160a01b03161561264c57602754602d546001600160a01b0390911690612710906125ae9085615870565b6125b89190615887565b604051600081818185875af1925050503d80600081146125f4576040519150601f19603f3d011682016040523d82523d6000602084013e6125f9565b606091505b5050809150508061264c5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6565204574686572000000000060448201526064016114c3565b6028546001600160a01b03161561271b57602854602e546001600160a01b03909116906127109061267d9085615870565b6126879190615887565b604051600081818185875af1925050503d80600081146126c3576040519150601f19603f3d011682016040523d82523d6000602084013e6126c8565b606091505b5050809150508061271b5760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2077697468647261775f6666204574686572000000000060448201526064016114c3565b6022544792506001600160a01b03161561278c576022546040516001600160a01b03909116908390600081818185875af1925050503d806000811461277c576040519150601f19603f3d011682016040523d82523d6000602084013e612781565b606091505b5050809150506127ed565b6000546001600160a01b03166001600160a01b03168260405160006040518083038185875af1925050503d80600081146127e2576040519150601f19603f3d011682016040523d82523d6000602084013e6127e7565b606091505b50909150505b8061283a5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016114c3565b50506128466001600955565b565b826daaeb6d7670e522a718067333cd4e3b15801590612869575060105460ff165b1561291b57336001600160a01b03821603612889576117108484846142c4565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156128d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fc91906157e2565b61291b57604051633b79c77360e21b81523360048201526024016114c3565b6117b28484846142c4565b3361293082612cf3565b6001600160a01b0316146129795760405162461bcd60e51b815260206004820152601060248201526f34b9b73a1037bbb732b9103a37b5b2b760811b60448201526064016114c3565b603354640100000000900460ff16156129c05760405162461bcd60e51b81526020600482015260096024820152686e6f7420616c6c6f7760b81b60448201526064016114c3565b6117d9816142df565b6129d233613e18565b603380549115156401000000000264ff0000000019909216919091179055565b606060006129ff83612d7a565b90506000816001600160401b03811115612a1b57612a1b61539a565b604051908082528060200260200182016040528015612a44578160200160208202803683370190505b509050600060015b6001612a5760055490565b612a61919061585d565b811015612b1d576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015612aa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ac89190615a0b565b6001600160a01b0316866001600160a01b031603612b0b57808383612aec816159f2565b945081518110612afe57612afe6159dc565b6020026020010181815250505b80612b15816159f2565b915050612a4c565b5090949350505050565b612b3033613e18565b601655565b612b3e33613e18565b60306113c28282615a6e565b612b5333613e18565b6001600160a01b03919091166000908152603760205260409020805460ff1916911515919091179055565b612b8733613e18565b6033805491151563010000000263ff00000019909216919091179055565b612bae33613e18565b602680546001600160a01b0319166001600160a01b039390931692909217909155602c55565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015612ce757838181518110612c2957612c296159dc565b60200260200101518210612c8757838181518110612c4957612c496159dc565b602002602001015182604051602001612c6c929190918252602082015260400190565b60405160208183030381529060405280519060200120612cd3565b81848281518110612c9a57612c9a6159dc565b6020026020010151604051602001612cbc929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080612cdf816159f2565b915050612c0e565b50600b54149392505050565b600080612cff83614341565b509392505050565b612d1033613e18565b6117d981600a55565b612d2233613e18565b80612d2b611647565b1115612d755760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b60448201526064016114c3565b601b55565b60006001600160a01b038216612de85760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b60648201526084016114c3565b600060015b600554811015612e4257612e0081613f83565b15612e3257612e0e81612cf3565b6001600160a01b0316846001600160a01b031603612e3257612e2f826159f2565b91505b612e3b816159f2565b9050612ded565b5092915050565b612e5161416f565b61284660006143d8565b612e6433613e18565b601555565b612e7233613e18565b6033805460ff1916911515919091179055565b612e8d614251565b60335460ff16612edf5760405162461bcd60e51b815260206004820152601760248201527f616c6c6f776c6973744d696e742069732050617573656400000000000000000060448201526064016114c3565b612ee93382611da0565b612f055760405162461bcd60e51b81526004016114c3906159a5565b816019541015612f6a5760405162461bcd60e51b815260206004820152602a60248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e747320706560448201526972206f6e652074696d6560b01b60648201526084016114c3565b816016541015612fcd5760405162461bcd60e51b815260206004820152602860248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b60648201526084016114c3565b601f546000908152603560209081526040808320338452909152902054612ff5908390615935565b60165410156130465760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c656674000060448201526064016114c3565b816013546130549190615870565b34146130725760405162461bcd60e51b81526004016114c390615948565b601c5461307d611647565b6130879084615935565b1115806130945750601c54155b6130b05760405162461bcd60e51b81526004016114c39061597f565b601b546130bb611647565b6130c59084615935565b1115806130d25750601b54155b6130ee5760405162461bcd60e51b81526004016114c39061597f565b601f54600090815260356020908152604080832033845290915281208054849290611d78908490615935565b61312333613e18565b601755565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa925050508015613183575060408051601f3d908101601f1916820190925261318091810190615a0b565b60015b61139b57506000919050565b919050565b60606000806131a284612d7a565b90506000816001600160401b038111156131be576131be61539a565b6040519080825280602002602001820160405280156131e7578160200160208202803683370190505b50905060015b828414613251576131fd81613f83565b1561324957856001600160a01b031661321582612cf3565b6001600160a01b031603613249578082858060010196508151811061323c5761323c6159dc565b6020026020010181815250505b6001016131ed565b50949350505050565b61326333613e18565b602380546001600160a01b0319166001600160a01b039390931692909217909155602955565b61329233613e18565b601255565b6132a033613e18565b806132a9611647565b11156132f35760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b60448201526064016114c3565b601c55565b6060600380546113d5906157a8565b61331033613e18565b602180546001600160a01b0319166001600160a01b0392909216919091179055565b61333b33613e18565b602880546001600160a01b0319166001600160a01b039390931692909217909155602e55565b613369614251565b600034116133895760405162461bcd60e51b81526004016114c390615948565b6128466001600955565b816daaeb6d7670e522a718067333cd4e3b158015906133b4575060105460ff165b1561345d57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015613411573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343591906157e2565b61345d57604051633b79c77360e21b81526001600160a01b03821660048201526024016114c3565b6000546001600160a01b038481169116148061349657506001600160a01b03831660009081526037602052604090205460ff1615156001145b806134ab57506033546301000000900460ff16155b6134c75760405162461bcd60e51b81526004016114c3906157ff565b6116268383614428565b6134da33613e18565b603380549115156101000261ff0019909216919091179055565b6134fd33613e18565b60338054911515620100000262ff000019909216919091179055565b61352161416f565b6117d9816144ec565b61353333613e18565b6010805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b15801590613567575060105460ff165b1561361f57336001600160a01b0382160361358d5761358885858585614516565b61362b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156135dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061360091906157e2565b61361f57604051633b79c77360e21b81523360048201526024016114c3565b61362b85858585614516565b5050505050565b61363b33613e18565b602f6113c28282615a6e565b61365033613e18565b601355565b61365e33613e18565b601d55565b606061366e82613f83565b6136ba5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016114c3565b6136c682601d54101590565b15613706576136d3614548565b6136dc83614557565b60316040516020016136f093929190615b2d565b6040516020818303038152906040529050919050565b602f8054613713906157a8565b80601f016020809104026020016040519081016040528092919081815260200182805461373f906157a8565b801561378c5780601f106137615761010080835404028352916020019161378c565b820191906000526020600020905b81548152906001019060200180831161376f57829003601f168201915b50505050509050919050565b6137a133613e18565b6117d981600b55565b6137b333613e18565b601b546137be611647565b6137c89084615935565b1115806137d55750601b54155b6137f15760405162461bcd60e51b81526004016114c39061597f565b6113c281836142aa565b61380433613e18565b601455565b61381233613e18565b60316113c28282615a6e565b613826614251565b60008481526032602052604090205460ff166138845760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e742069732050617573656400000000000000000060448201526064016114c3565b61389033858484613aa6565b6138ac5760405162461bcd60e51b81526004016114c3906159a5565b600082116138ee5760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b60448201526064016114c3565b8282101561394f5760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b60648201526084016114c3565b6000848152603460209081526040808320338452909152902054613974908490615935565b8210156139c35760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c656674000060448201526064016114c3565b826012546139d19190615870565b34146139ef5760405162461bcd60e51b81526004016114c390615948565b601c546139fa611647565b613a049085615935565b1115613a225760405162461bcd60e51b81526004016114c39061597f565b600084815260346020908152604080832033845290915281208054859290613a4b908490615935565b90915550613a5b905033846142aa565b6117b26001600955565b613a6e33613e18565b601e55565b613a7c33613e18565b600091825260326020526040909120805460ff1916911515919091179055565b60606116426145e9565b6040516001600160601b0319606086901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015613bc057838181518110613b0257613b026159dc565b60200260200101518210613b6057838181518110613b2257613b226159dc565b602002602001015182604051602001613b45929190918252602082015260400190565b60405160208183030381529060405280519060200120613bac565b81848281518110613b7357613b736159dc565b6020026020010151604051602001613b95929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080613bb8816159f2565b915050613ae7565b506000858152600c6020526040902054149050949350505050565b613be361416f565b6001600160a01b038116613c485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016114c3565b6117d9816143d8565b60606000613c60836002615870565b613c6b906002615935565b6001600160401b03811115613c8257613c8261539a565b6040519080825280601f01601f191660200182016040528015613cac576020820181803683370190505b509050600360fc1b81600081518110613cc757613cc76159dc565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613cf657613cf66159dc565b60200101906001600160f81b031916908160001a9053506000613d1a846002615870565b613d25906001615935565b90505b6001811115613d9d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613d5957613d596159dc565b1a60f81b828281518110613d6f57613d6f6159dc565b60200101906001600160f81b031916908160001a90535060049490941c93613d9681615bcd565b9050613d28565b508315613dec5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016114c3565b9392505050565b60006001600160e01b0319821663152a902d60e11b148061139b575061139b82614669565b6001600160a01b03811660009081526011602052604090205460ff16613e49335b6001600160a01b03166014613c51565b604051602001613e599190615be4565b604051602081830303815290604052906113c25760405162461bcd60e51b81526004016114c391906152db565b6127106001600160601b0382161115613ef45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016114c3565b6001600160a01b038216613f4a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016114c3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600e55565b600881811c60009081526020919091526040812054600160ff1b60ff84161c1615613fb057506000919050565b61139b826146b9565b6000613fc482612cf3565b9050806001600160a01b0316836001600160a01b0316036140335760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b60648201526084016114c3565b336001600160a01b038216148061404f575061404f81336112f2565b6140c15760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c000000000060648201526084016114c3565b61162683836146d5565b600554600090819081906140e39060081c6001615935565b9050815b818110156141275760008181526008602052604090205461410781614743565b6141119086615935565b945050808061411f906159f2565b9150506140e7565b50505090565b60006001600554611642919061585d565b614148338261475d565b6141645760405162461bcd60e51b81526004016114c390615c31565b61162683838361484a565b6000546001600160a01b031633146128465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016114c3565b6001600160a01b03811660009081526011602052604090205460ff16156141ef33613e39565b6040516020016141ff9190615c85565b6040516020818303038152906040529061422c5760405162461bcd60e51b81526004016114c391906152db565b506001600160a01b03166000908152601160205260409020805460ff19166001179055565b6002600954036142a35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016114c3565b6002600955565b6113c2828260405180602001604052806000815250614a45565b61162683838360405180602001604052806000815250613546565b60006142ea82612cf3565b90506142fa816000846001614a86565b614305600883614b26565b60405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008061434d83613f83565b6143ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016114c3565b6143b783614b52565b6000818152600460205260409020546001600160a01b031694909350915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b336001600160a01b038316036144805760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c65720000000060448201526064016114c3565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6144f581613e18565b6001600160a01b03166000908152601160205260409020805460ff19169055565b614520338361475d565b61453c5760405162461bcd60e51b81526004016114c390615c31565b6117b284848484614b5f565b6060603080546113d5906157a8565b6060600061456483614b78565b60010190506000816001600160401b038111156145835761458361539a565b6040519080825280601f01601f1916602001820160405280156145ad576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846145b757509392505050565b60606000806145fa816127106118aa565b9150915061464361460a82614557565b61461e846001600160a01b03166014613c51565b60405160200161462f929190615cdc565b604051602081830303815290604052614c50565b6040516020016146539190615d62565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b148061469a57506001600160e01b03198216635b5e139f60e01b145b8061139b57506301ffc9a760e01b6001600160e01b031983161461139b565b60006146c460055490565b8210801561139b5750506001111590565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061470a82612cf3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b811561318f57600019820190911690600101614746565b600061476882613f83565b6147cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016114c3565b60006147d783612cf3565b9050806001600160a01b0316846001600160a01b031614806148125750836001600160a01b031661480784611458565b6001600160a01b0316145b8061484257506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b60008061485683614341565b91509150846001600160a01b0316826001600160a01b0316146148d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b60648201526084016114c3565b6001600160a01b0384166149365760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b60648201526084016114c3565b6149438585856001614a86565b61494e6000846146d5565b600061495b846001615935565b600881901c600090815260016020526040902054909150600160ff1b60ff83161c1615801561498b575060055481105b156149c257600081815260046020526040902080546001600160a01b0319166001600160a01b0388161790556149c2600182614b26565b600084815260046020526040902080546001600160a01b0319166001600160a01b0387161790558184146149fb576149fb600185614b26565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000614a5060055490565b9050614a5c8484614db4565b614a6a600085838686614f34565b6117b25760405162461bcd60e51b81526004016114c390615da7565b6001600160a01b03841615611710576000546001600160a01b0385811691161480614ace57506001600160a01b03841660009081526037602052604090205460ff1615156001145b80614ae357506033546301000000900460ff16155b6117105760405162461bcd60e51b815260206004820152601460248201527314d95b9908139195081b9bdd08185b1b1bddd95960621b60448201526064016114c3565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b600061139b60018361506b565b614b6a84848461484a565b614a6a848484600185614f34565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310614bb75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310614be3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310614c0157662386f26fc10000830492506010015b6305f5e1008310614c19576305f5e100830492506008015b6127108310614c2d57612710830492506004015b60648310614c3f576064830492506002015b600a831061139b5760010192915050565b60608151600003614c6f57505060408051602081019091526000815290565b6000604051806060016040528060408152602001615e576040913990506000600384516002614c9e9190615935565b614ca89190615887565b614cb3906004615870565b90506000614cc2826020615935565b6001600160401b03811115614cd957614cd961539a565b6040519080825280601f01601f191660200182016040528015614d03576020820181803683370190505b509050818152600183018586518101602084015b81831015614d6f576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101614d17565b600389510660018114614d895760028114614d9a57614da6565b613d3d60f01b600119830152614da6565b603d60f81b6000198301525b509398975050505050505050565b6000614dbf60055490565b905060008211614e1f5760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b60648201526084016114c3565b6001600160a01b038316614e815760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b60648201526084016114c3565b614e8e6000848385614a86565b8160056000828254614ea09190615935565b9091555050600081815260046020526040902080546001600160a01b0319166001600160a01b038516179055614ed7600182614b26565b805b614ee38383615935565b8110156117b25760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480614f2c816159f2565b915050614ed9565b60006001600160a01b0385163b1561505e57506001835b614f558486615935565b81101561505857604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290614f8e9033908b9086908990600401615dfc565b6020604051808303816000875af1925050508015614fc9575060408051601f3d908101601f19168201909252614fc691810190615e39565b60015b615026573d808015614ff7576040519150601f19603f3d011682016040523d82523d6000602084013e614ffc565b606091505b50805160000361501e5760405162461bcd60e51b81526004016114c390615da7565b805181602001fd5b82801561504357506001600160e01b03198116630a85bd0160e11b145b92505080615050816159f2565b915050614f4b565b50615062565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c80156150ad5761509b81615163565b60ff168203600884901b17935061515a565b6000831161511a5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b60648201526084016114c3565b5060001990910160008181526020869052604090205490919080156151555761514281615163565b60ff0360ff16600884901b17935061515a565b6150ad565b50505092915050565b60006040518061012001604052806101008152602001615e97610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff6151ac856151cd565b02901c815181106151bf576151bf6159dc565b016020015160f81c92915050565b60008082116151db57600080fd5b5060008190031690565b6001600160e01b0319811681146117d957600080fd5b60006020828403121561520d57600080fd5b8135613dec816151e5565b60006020828403121561522a57600080fd5b5035919050565b6001600160a01b03811681146117d957600080fd5b6000806040838503121561525957600080fd5b823561526481615231565b915060208301356001600160601b038116811461528057600080fd5b809150509250929050565b60005b838110156152a657818101518382015260200161528e565b50506000910152565b600081518084526152c781602086016020860161528b565b601f01601f19169290920160200192915050565b602081526000613dec60208301846152af565b6000806040838503121561530157600080fd5b823561530c81615231565b946020939093013593505050565b60006020828403121561532c57600080fd5b8135613dec81615231565b60008060006060848603121561534c57600080fd5b833561535781615231565b9250602084013561536781615231565b929592945050506040919091013590565b6000806040838503121561538b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156153d8576153d861539a565b604052919050565b600082601f8301126153f157600080fd5b813560206001600160401b0382111561540c5761540c61539a565b8160051b61541b8282016153b0565b928352848101820192828101908785111561543557600080fd5b83870192505b848310156154545782358252918301919083019061543b565b979650505050505050565b6000806040838503121561547257600080fd5b8235915060208301356001600160401b0381111561548f57600080fd5b61549b858286016153e0565b9150509250929050565b600080604083850312156154b857600080fd5b82356154c381615231565b915060208301356001600160401b0381111561548f57600080fd5b80151581146117d957600080fd5b6000602082840312156154fe57600080fd5b8135613dec816154de565b6020808252825182820181905260009190848201906040850190845b8181101561554157835183529284019291840191600101615525565b50909695505050505050565b60006001600160401b038311156155665761556661539a565b615579601f8401601f19166020016153b0565b905082815283838301111561558d57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156155b657600080fd5b81356001600160401b038111156155cc57600080fd5b8201601f810184136155dd57600080fd5b6148428482356020840161554d565b600080604083850312156155ff57600080fd5b823561560a81615231565b91506020830135615280816154de565b6000806000806080858703121561563057600080fd5b843561563b81615231565b9350602085013561564b81615231565b92506040850135915060608501356001600160401b0381111561566d57600080fd5b8501601f8101871361567e57600080fd5b61568d8782356020840161554d565b91505092959194509250565b600080604083850312156156ac57600080fd5b82359150602083013561528081615231565b600080600080608085870312156156d457600080fd5b84359350602085013592506040850135915060608501356001600160401b038111156156ff57600080fd5b61568d878288016153e0565b6000806040838503121561571e57600080fd5b823591506020830135615280816154de565b6000806040838503121561574357600080fd5b823561574e81615231565b9150602083013561528081615231565b6000806000806080858703121561577457600080fd5b843561577f81615231565b9350602085013592506040850135915060608501356001600160401b038111156156ff57600080fd5b600181811c908216806157bc57607f821691505b6020821081036157dc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156157f457600080fd5b8151613dec816154de565b60208082526028908201527f43616e6e6f7420617070726f76652c207472616e7366657272696e67206e6f7460408201526708185b1b1bddd95960c21b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561139b5761139b615847565b808202811582820484141761139b5761139b615847565b6000826158a457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526027908201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6040820152666e652074696d6560c81b606082015260800190565b60208082526025908201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604082015264185b1b195d60da1b606082015260800190565b8082018082111561139b5761139b615847565b60208082526018908201527f4554482076616c7565206973206e6f7420636f72726563740000000000000000604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526018908201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201615a0457615a04615847565b5060010190565b600060208284031215615a1d57600080fd5b8151613dec81615231565b601f82111561162657600081815260208120601f850160051c81016020861015615a4f5750805b601f850160051c820191505b81811015614a3d57828155600101615a5b565b81516001600160401b03811115615a8757615a8761539a565b615a9b81615a9584546157a8565b84615a28565b602080601f831160018114615ad05760008415615ab85750858301515b600019600386901b1c1916600185901b178555614a3d565b600085815260208120601f198616915b82811015615aff57888601518255948401946001909101908401615ae0565b5085821015615b1d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600084516020615b408285838a0161528b565b855191840191615b538184848a0161528b565b8554920191600090615b64816157a8565b60018281168015615b7c5760018114615b9157615bbd565b60ff1984168752821515830287019450615bbd565b896000528560002060005b84811015615bb557815489820152908301908701615b9c565b505082870194505b50929a9950505050505050505050565b600081615bdc57615bdc615847565b506000190190565b67030b1b1b7bab73a160c51b815260008251615c0781600885016020870161528b565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b67030b1b1b7bab73a160c51b815260008251615ca881600885016020870161528b565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a0000000000815260008351615d1481601b85016020880161528b565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b918401918201528351615d4781602e84016020880161528b565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251615d9a81601d85016020870161528b565b91909101601d0192915050565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615e2f908301846152af565b9695505050505050565b600060208284031215615e4b57600080fd5b8151613dec816151e556fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a2646970667358221220d2796a2b3acb76b02743be67579ed8ad0b8e436ed0fd85c214c657644fe30cd864736f6c63430008110033

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

000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f

-----Decoded View---------------
Arg [0] : _founder (address): 0xB4250F715995683c6EA5BC7c5e2CDF9b1601ba3f

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


Deployed Bytecode Sourcemap

109297:19873:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111784:167;;;;;;;;;;-1:-1:-1;111784:167:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;111784:167:0;;;;;;;;115065:111;;;;;;;;;;-1:-1:-1;115065:111:0;;;;;:::i;:::-;;:::i;:::-;;111606:157;;;;;;;;;;-1:-1:-1;111606:157:0;;;;;:::i;:::-;;:::i;75413:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;76968:311::-;;;;;;;;;;-1:-1:-1;76968:311:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2273:32:1;;;2255:51;;2243:2;2228:18;76968:311:0;2109:203:1;127544:332:0;;;;;;;;;;-1:-1:-1;127544:332:0;;;;;:::i;:::-;;:::i;118662:103::-;;;;;;;;;;;;;:::i;:::-;;;2783:25:1;;;2771:2;2756:18;118662:103:0;2637:177:1;116709:143:0;;;;;;;;;;-1:-1:-1;116709:143:0;;;;;:::i;:::-;116794:7;116816:20;;;:9;:20;;;;;;;;-1:-1:-1;;;;;116816:30:0;;;;;;;;;;;;116709:143;90540:122;;;;;;;;;;;;;:::i;113241:130::-;;;;;;;;;;-1:-1:-1;113241:130:0;;;;;:::i;:::-;;:::i;109645:32::-;;;;;;;;;;;;;;;;116116:126;;;;;;;;;;-1:-1:-1;116116:126:0;;;;;:::i;:::-;116215:10;;116183:7;116205:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;116205:31:0;;;;;;;;;;;116116:126;113699:130;;;;;;;;;;-1:-1:-1;113699:130:0;;;;;:::i;:::-;;:::i;114783:163::-;;;;;;;;;;-1:-1:-1;114783:163:0;;;;;:::i;:::-;;:::i;127884:::-;;;;;;;;;;-1:-1:-1;127884:163:0;;;;;:::i;:::-;;:::i;117964:118::-;;;;;;;;;;-1:-1:-1;117964:118:0;;;;;:::i;:::-;;:::i;110453:38::-;;;;;;;;;;;;;:::i;128929:115::-;;;;;;;;;;-1:-1:-1;128929:115:0;;;;;:::i;:::-;;:::i;113012:130::-;;;;;;;;;;-1:-1:-1;113012:130:0;;;;;:::i;:::-;;:::i;68317:442::-;;;;;;;;;;-1:-1:-1;68317:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4162:32:1;;;4144:51;;4226:2;4211:18;;4204:34;;;;4117:18;68317:442:0;3970:274:1;109682:34:0;;;;;;;;;;;;;;;;118086:156;;;;;;;;;;-1:-1:-1;118086:156:0;;;;;:::i;:::-;;:::i;109442:38::-;;;;;;;;;;;;;;;;121516:757;;;;;;:::i;:::-;;:::i;109721:34::-;;;;;;;;;;;;;;;;122297:864;;;;;;:::i;:::-;;:::i;115180:111::-;;;;;;;;;;-1:-1:-1;115180:111:0;;;;;:::i;:::-;;:::i;100117:407::-;;;;;;;;;;-1:-1:-1;100117:407:0;;;;;:::i;:::-;;:::i;116562:143::-;;;;;;;;;;-1:-1:-1;116562:143:0;;;;;:::i;:::-;116647:7;116669:20;;;:9;:20;;;;;;;;-1:-1:-1;;;;;116669:30:0;;;;;;;;;;;;116562:143;123729:2264;;;:::i;110667:26::-;;;;;;;;;;-1:-1:-1;110667:26:0;;;;;;;;;;;110593:31;;;;;;;;;;-1:-1:-1;110593:31:0;;;;;;;;;;;109608:32;;;;;;;;;;;;;;;;105198:143;;;;;;;;;;;;105298:42;105198:143;;109528:38;;;;;;;;;;;;;;;;128055:171;;;;;;;;;;-1:-1:-1;128055:171:0;;;;;:::i;:::-;;:::i;123181:201::-;;;;;;;;;;-1:-1:-1;123181:201:0;;;;;:::i;:::-;;:::i;123409:98::-;;;;;;;;;;-1:-1:-1;123409:98:0;;;;;:::i;:::-;;:::i;126036:481::-;;;;;;;;;;-1:-1:-1;126036:481:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;117015:100::-;;;;;;;;;;-1:-1:-1;117015:100:0;;;;;:::i;:::-;;:::i;110629:33::-;;;;;;;;;;-1:-1:-1;110629:33:0;;;;;;;;;;;109485:38;;;;;;;;;;;;;;;;109828:30;;;;;;;;;;;;;;;;109863:27;;;;;;;;;;;;;;;;118817:103;;;;;;;;;;-1:-1:-1;118817:103:0;;;;;:::i;:::-;;:::i;114273:97::-;;;;;;;;;;-1:-1:-1;114273:97:0;;;;;:::i;:::-;;:::i;117845:90::-;;;;;;;;;;-1:-1:-1;117845:90:0;;;;;:::i;:::-;;:::i;113470:130::-;;;;;;;;;;-1:-1:-1;113470:130:0;;;;;:::i;:::-;;:::i;99217:22::-;;;;;;;;;;;;;;;;100654:408;;;;;;;;;;-1:-1:-1;100654:408:0;;;;;:::i;:::-;;:::i;74818:222::-;;;;;;;;;;-1:-1:-1;74818:222:0;;;;;:::i;:::-;;:::i;118248:118::-;;;;;;;;;;-1:-1:-1;118248:118:0;;;;;:::i;:::-;;:::i;101280:113::-;;;;;;;;;;-1:-1:-1;101280:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;101364:21:0;101340:4;101364:21;;;:10;:21;;;;;;;;;101280:113;114407:179;;;;;;;;;;-1:-1:-1;114407:179:0;;;;;:::i;:::-;;:::i;74266:490::-;;;;;;;;;;-1:-1:-1;74266:490:0;;;;;:::i;:::-;;:::i;93211:103::-;;;;;;;;;;;;;:::i;116895:100::-;;;;;;;;;;-1:-1:-1;116895:100:0;;;;;:::i;:::-;;:::i;117444:110::-;;;;;;;;;;-1:-1:-1;117444:110:0;;;;;:::i;:::-;;:::i;115986:126::-;;;;;;;;;;-1:-1:-1;115986:126:0;;;;;:::i;:::-;116085:10;;116053:7;116075:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;116075:31:0;;;;;;;;;;;115986:126;120622:870;;;;;;:::i;:::-;;:::i;117135:100::-;;;;;;;;;;-1:-1:-1;117135:100:0;;;;;:::i;:::-;;:::i;126580:243::-;;;;;;;;;;-1:-1:-1;126580:243:0;;;;;:::i;:::-;;:::i;109895:25::-;;;;;;;;;;;;;;;;86949:601;;;;;;;;;;-1:-1:-1;86949:601:0;;;;;:::i;:::-;;:::i;112783:130::-;;;;;;;;;;-1:-1:-1;112783:130:0;;;;;:::i;:::-;;:::i;92563:87::-;;;;;;;;;;-1:-1:-1;92609:7:0;92636:6;-1:-1:-1;;;;;92636:6:0;92563:87;;115327:103;;;;;;;;;;-1:-1:-1;115327:103:0;;;;;:::i;:::-;;:::i;114590:174::-;;;;;;;;;;-1:-1:-1;114590:174:0;;;;;:::i;:::-;;:::i;116246:126::-;;;;;;;;;;-1:-1:-1;116246:126:0;;;;;:::i;:::-;116345:10;;;116313:7;116335:21;;;:9;:21;;;;;;-1:-1:-1;;;;;116335:31:0;;;;;;;;;;;;116246:126;75582:104;;;;;;;;;;;;;:::i;114066:103::-;;;;;;;;;;-1:-1:-1;114066:103:0;;;;;:::i;:::-;;:::i;113928:130::-;;;;;;;;;;-1:-1:-1;113928:130:0;;;;;:::i;:::-;;:::i;109571:32::-;;;;;;;;;;;;;;;;123525:127;;;:::i;127185:351::-;;;;;;;;;;-1:-1:-1;127185:351:0;;;;;:::i;:::-;;:::i;117577:111::-;;;;;;;;;;-1:-1:-1;117577:111:0;;;;;:::i;:::-;;:::i;117713:115::-;;;;;;;;;;-1:-1:-1;117713:115:0;;;;;:::i;:::-;;:::i;129050:117::-;;;;;;;;;;-1:-1:-1;129050:117:0;;;;;:::i;:::-;;:::i;127053:122::-;;;;;;;;;;-1:-1:-1;127053:122:0;;;;;:::i;:::-;;:::i;128270:228::-;;;;;;;;;;-1:-1:-1;128270:228:0;;;;;:::i;:::-;;:::i;110509:47::-;;;;;;;;;;-1:-1:-1;110509:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;118529:101;;;;;;;;;;-1:-1:-1;118529:101:0;;;;;:::i;:::-;;:::i;115448:103::-;;;;;;;;;;-1:-1:-1;115448:103:0;;;;;:::i;:::-;;:::i;110561:27::-;;;;;;;;;;-1:-1:-1;110561:27:0;;;;;;;;115706:107;;;;;;;;;;-1:-1:-1;115706:107:0;;;;;:::i;:::-;;:::i;119204:330::-;;;;;;;;;;-1:-1:-1;119204:330:0;;;;;:::i;:::-;;:::i;114173:94::-;;;;;;;;;;-1:-1:-1;114173:94:0;;;;;:::i;:::-;-1:-1:-1;;;;;114244:17:0;114224:4;114244:17;;;:13;:17;;;;;;;;;114173:94;116415:143;;;;;;;;;;-1:-1:-1;116415:143:0;;;;;:::i;:::-;116500:7;116522:20;;;:9;:20;;;;;;;;-1:-1:-1;;;;;116522:30:0;;;;;;;;;;;;116415:143;118370:118;;;;;;;;;;-1:-1:-1;118370:118:0;;;;;:::i;:::-;;:::i;119591:216::-;;;;;;;;;;-1:-1:-1;119591:216:0;;;;;:::i;:::-;;:::i;109799:24::-;;;;;;;;;;;;;;;;109925:25;;;;;;;;;;;;;;;;109987:23;;;;;;;;;;-1:-1:-1;109987:23:0;;;;-1:-1:-1;;;;;109987:23:0;;;115569:103;;;;;;;;;;-1:-1:-1;115569:103:0;;;;;:::i;:::-;;:::i;118928:131::-;;;;;;;;;;-1:-1:-1;118928:131:0;;;;;:::i;:::-;;:::i;109955:25::-;;;;;;;;;;;;;;;;119829:767;;;;;;:::i;:::-;;:::i;114950:111::-;;;;;;;;;;-1:-1:-1;114950:111:0;;;;;:::i;:::-;;:::i;117284:137::-;;;;;;;;;;-1:-1:-1;117284:137:0;;;;;:::i;:::-;;:::i;111980:113::-;;;;;;;;;;;;;:::i;77752:214::-;;;;;;;;;;-1:-1:-1;77752:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;77923:25:0;;;77894:4;77923:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;77752:214;109760:34;;;;;;;;;;;;;;;;99524:461;;;;;;;;;;-1:-1:-1;99524:461:0;;;;;:::i;:::-;;:::i;93469:201::-;;;;;;;;;;-1:-1:-1;93469:201:0;;;;;:::i;:::-;;:::i;105146:43::-;;;;;;;;;;-1:-1:-1;105146:43:0;;;;;;;;111784:167;111889:4;111909:36;111933:11;111909:23;:36::i;:::-;111902:43;111784:167;-1:-1:-1;;111784:167:0:o;115065:111::-;101222:32;71573:10;101222:18;:32::i;:::-;115146:10:::1;:24:::0;115065:111::o;111606:157::-;101222:32;71573:10;101222:18;:32::i;:::-;111713:44:::1;111732:9;111743:13;111713:18;:44::i;:::-;111606:157:::0;;:::o;75413:100::-;75467:13;75500:5;75493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75413:100;:::o;76968:311::-;77089:7;77136:16;77144:7;77136;:16::i;:::-;77114:113;;;;-1:-1:-1;;;77114:113:0;;12638:2:1;77114:113:0;;;12620:21:1;12677:2;12657:18;;;12650:30;12716:34;12696:18;;;12689:62;-1:-1:-1;;;12767:18:1;;;12760:45;12822:19;;77114:113:0;;;;;;;;;-1:-1:-1;77247:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;77247:24:0;;76968:311::o;127544:332::-;127640:8;105298:42;107220:45;:49;;;;:77;;-1:-1:-1;107273:24:0;;;;107220:77;107216:253;;;107319:67;;-1:-1:-1;;;107319:67:0;;107370:4;107319:67;;;13064:34:1;-1:-1:-1;;;;;13134:15:1;;13114:18;;;13107:43;105298:42:0;;107319;;12999:18:1;;107319:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;107314:144;;107414:28;;-1:-1:-1;;;107414:28:0;;-1:-1:-1;;;;;2273:32:1;;107414:28:0;;;2255:51:1;2228:18;;107414:28:0;2109:203:1;107314:144:0;92609:7;92636:6;-1:-1:-1;;;;;127683:19:0;;::::1;92636:6:::0;;127683:19:::1;::::0;:54:::1;;-1:-1:-1::0;;;;;;127706:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;;::::1;;:31;;:23:::0;:31:::1;127683:54;:74;;;-1:-1:-1::0;127741:7:0::1;::::0;;;::::1;;;:16;127683:74;127661:164;;;;-1:-1:-1::0;;;127661:164:0::1;;;;;;;:::i;:::-;127836:32;127850:8;127860:7;127836:13;:32::i;:::-;127544:332:::0;;;:::o;118662:103::-;118720:7;118758:1;118742:14;73533:13;;;73451:103;118742:14;:17;;;;:::i;:::-;118735:24;;118662:103;:::o;90540:122::-;90601:7;90645:9;:7;:9::i;:::-;90628:14;:12;:14::i;113241:130::-;101222:32;71573:10;101222:18;:32::i;:::-;113331:3:::1;:12:::0;;-1:-1:-1;;;;;;113331:12:0::1;-1:-1:-1::0;;;;;113331:12:0;;;::::1;::::0;;;::::1;::::0;;;113350:7:::1;:15:::0;113241:130::o;113699:::-;101222:32;71573:10;101222:18;:32::i;:::-;113789:3:::1;:12:::0;;-1:-1:-1;;;;;;113789:12:0::1;-1:-1:-1::0;;;;;113789:12:0;;;::::1;::::0;;;::::1;::::0;;;113808:7:::1;:15:::0;113699:130::o;114783:163::-;101222:32;71573:10;101222:18;:32::i;:::-;114860:10:::1;:22:::0;;;114889:10:::1;:22:::0;;;114918:10:::1;:22:::0;114783:163::o;127884:::-;127985:4;105298:42;106446:45;:49;;;;:77;;-1:-1:-1;106499:24:0;;;;106446:77;106442:567;;;106763:10;-1:-1:-1;;;;;106755:18:0;;;106751:85;;128002:37:::1;128021:4;128027:2;128031:7;128002:18;:37::i;:::-;106814:7:::0;;106751:85;106855:69;;-1:-1:-1;;;106855:69:0;;106906:4;106855:69;;;13064:34:1;106913:10:0;13114:18:1;;;13107:43;105298:42:0;;106855;;12999:18:1;;106855:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106850:148;;106952:30;;-1:-1:-1;;;106952:30:0;;106971:10;106952:30;;;2255:51:1;2228:18;;106952:30:0;2109:203:1;106850:148:0;128002:37:::1;128021:4;128027:2;128031:7;128002:18;:37::i;:::-;127884:163:::0;;;;:::o;117964:118::-;101222:32;71573:10;101222:18;:32::i;:::-;118047:29:::1;118064:11;99337:7:::0;;99323:22;;;;:13;:22;;;;;:36;99248:119;118047:29:::1;117964:118:::0;:::o;110453:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;128929:115::-;92449:13;:11;:13::i;:::-;129006:30:::1;129025:10;129006:18;:30::i;113012:130::-:0;101222:32;71573:10;101222:18;:32::i;:::-;113102:3:::1;:12:::0;;-1:-1:-1;;;;;;113102:12:0::1;-1:-1:-1::0;;;;;113102:12:0;;;::::1;::::0;;;::::1;::::0;;;113121:7:::1;:15:::0;113012:130::o;68317:442::-;68414:7;68472:27;;;:17;:27;;;;;;;;68443:56;;;;;;;;;-1:-1:-1;;;;;68443:56:0;;;;;-1:-1:-1;;;68443:56:0;;;-1:-1:-1;;;;;68443:56:0;;;;;;;;68414:7;;68512:92;;-1:-1:-1;68563:29:0;;;;;;;;;68573:19;68563:29;-1:-1:-1;;;;;68563:29:0;;;;-1:-1:-1;;;68563:29:0;;-1:-1:-1;;;;;68563:29:0;;;;;68512:92;68654:23;;;;68616:21;;69125:5;;68641:36;;-1:-1:-1;;;;;68641:36:0;:10;:36;:::i;:::-;68640:58;;;;:::i;:::-;68719:16;;;;;-1:-1:-1;68317:442:0;;-1:-1:-1;;;;68317:442:0:o;118086:156::-;101222:32;71573:10;101222:18;:32::i;:::-;99473:23;;;;:13;:23;;;;;;:37;111606:157::o;121516:757::-;57299:21;:19;:21::i;:::-;121606:19:::1;::::0;::::1;::::0;::::1;;;121598:52;;;::::0;-1:-1:-1;;;121598:52:0;;14814:2:1;121598:52:0::1;::::0;::::1;14796:21:1::0;14853:2;14833:18;;;14826:30;-1:-1:-1;;;14872:18:1;;;14865:50;14932:18;;121598:52:0::1;14612:344:1::0;121598:52:0::1;121684:7;121665:15;;:26;;121657:78;;;;-1:-1:-1::0;;;121657:78:0::1;;;;;;;:::i;:::-;121767:7;121750:13;;:24;;121742:74;;;;-1:-1:-1::0;;;121742:74:0::1;;;;;;;:::i;:::-;121858:10;::::0;;121848:21:::1;::::0;;;:9:::1;:21:::0;;;;;;121870:10:::1;121848:33:::0;;;;;;;:43:::1;::::0;121884:7;;121848:43:::1;:::i;:::-;121831:13;;:60;;121823:100;;;::::0;-1:-1:-1;;;121823:100:0;;16107:2:1;121823:100:0::1;::::0;::::1;16089:21:1::0;16146:2;16126:18;;;16119:30;16185:29;16165:18;;;16158:57;16232:18;;121823:100:0::1;15905:351:1::0;121823:100:0::1;121965:7;121951:11;;:21;;;;:::i;:::-;121938:9;:34;121930:71;;;;-1:-1:-1::0;;;121930:71:0::1;;;;;;;:::i;:::-;122046:8;;122027:13;:11;:13::i;:::-;122017:23;::::0;:7;:23:::1;:::i;:::-;122016:39;;:56;;;-1:-1:-1::0;122059:8:0::1;::::0;:13;122016:56:::1;122008:81;;;;-1:-1:-1::0;;;122008:81:0::1;;;;;;;:::i;:::-;122134:9;;122115:13;:11;:13::i;:::-;122105:23;::::0;:7;:23:::1;:::i;:::-;122104:40;;:58;;;-1:-1:-1::0;122148:9:0::1;::::0;:14;122104:58:::1;122096:83;;;;-1:-1:-1::0;;;122096:83:0::1;;;;;;;:::i;:::-;122196:10;::::0;;122186:21:::1;::::0;;;:9:::1;:21:::0;;;;;;122208:10:::1;122186:33:::0;;;;;;;;:44;;122223:7;;122186:21;:44:::1;::::0;122223:7;;122186:44:::1;:::i;:::-;::::0;;;-1:-1:-1;122237:30:0::1;::::0;-1:-1:-1;122247:10:0::1;122259:7:::0;122237:9:::1;:30::i;:::-;57343:20:::0;56737:1;57863:7;:22;57680:213;122297:864;57299:21;:19;:21::i;:::-;122414::::1;::::0;;;::::1;;;122406:54;;;::::0;-1:-1:-1;;;122406:54:0;;14814:2:1;122406:54:0::1;::::0;::::1;14796:21:1::0;14853:2;14833:18;;;14826:30;-1:-1:-1;;;14872:18:1;;;14865:50;14932:18;;122406:54:0::1;14612:344:1::0;122406:54:0::1;122475:34;122490:10;122502:6;122475:14;:34::i;:::-;122467:71;;;;-1:-1:-1::0;;;122467:71:0::1;;;;;;;:::i;:::-;122572:7;122553:15;;:26;;122545:78;;;;-1:-1:-1::0;;;122545:78:0::1;;;;;;;:::i;:::-;122655:7;122638:13;;:24;;122630:74;;;;-1:-1:-1::0;;;122630:74:0::1;;;;;;;:::i;:::-;122746:10;::::0;;122736:21:::1;::::0;;;:9:::1;:21:::0;;;;;;122758:10:::1;122736:33:::0;;;;;;;:43:::1;::::0;122772:7;;122736:43:::1;:::i;:::-;122719:13;;:60;;122711:100;;;::::0;-1:-1:-1;;;122711:100:0;;16107:2:1;122711:100:0::1;::::0;::::1;16089:21:1::0;16146:2;16126:18;;;16119:30;16185:29;16165:18;;;16158:57;16232:18;;122711:100:0::1;15905:351:1::0;122711:100:0::1;122853:7;122839:11;;:21;;;;:::i;:::-;122826:9;:34;122818:71;;;;-1:-1:-1::0;;;122818:71:0::1;;;;;;;:::i;:::-;122934:8;;122915:13;:11;:13::i;:::-;122905:23;::::0;:7;:23:::1;:::i;:::-;122904:39;;:56;;;-1:-1:-1::0;122947:8:0::1;::::0;:13;122904:56:::1;122896:81;;;;-1:-1:-1::0;;;122896:81:0::1;;;;;;;:::i;:::-;123022:9;;123003:13;:11;:13::i;:::-;122993:23;::::0;:7;:23:::1;:::i;:::-;122992:40;;:58;;;-1:-1:-1::0;123036:9:0::1;::::0;:14;122992:58:::1;122984:83;;;;-1:-1:-1::0;;;122984:83:0::1;;;;;;;:::i;:::-;123084:10;::::0;;123074:21:::1;::::0;;;:9:::1;:21:::0;;;;;;123096:10:::1;123074:33:::0;;;;;;;;:44;;123111:7;;123074:21;:44:::1;::::0;123111:7;;123074:44:::1;:::i;:::-;::::0;;;-1:-1:-1;123125:30:0::1;::::0;-1:-1:-1;123135:10:0::1;123147:7:::0;123125:9:::1;:30::i;:::-;57343:20:::0;56737:1;57863:7;:22;57680:213;115180:111;101222:32;71573:10;101222:18;:32::i;:::-;115261:10:::1;:24:::0;115180:111::o;100117:407::-;100247:26;;-1:-1:-1;;;;;;17457:2:1;17453:15;;;17449:53;100247:26:0;;;17437:66:1;100204:4:0;;;;17519:12:1;;100247:26:0;;;;;;;;;;;;100237:37;;;;;;100221:53;;100290:9;100285:192;100309:6;:13;100305:1;:17;100285:192;;;100360:6;100367:1;100360:9;;;;;;;;:::i;:::-;;;;;;;100352:5;:17;:113;;100447:6;100454:1;100447:9;;;;;;;;:::i;:::-;;;;;;;100458:5;100430:34;;;;;;;;17831:19:1;;;17875:2;17866:12;;17859:28;17912:2;17903:12;;17674:247;100430:34:0;;;;;;;;;;;;;100420:45;;;;;;100352:113;;;100399:5;100406:6;100413:1;100406:9;;;;;;;;:::i;:::-;;;;;;;100382:34;;;;;;;;17831:19:1;;;17875:2;17866:12;;17859:28;17912:2;17903:12;;17674:247;100382:34:0;;;;;;;;;;;;;100372:45;;;;;;100352:113;100344:121;-1:-1:-1;100324:3:0;;;;:::i;:::-;;;;100285:192;;;-1:-1:-1;100503:13:0;;100494:22;;100117:407;-1:-1:-1;;;100117:407:0:o;123729:2264::-;101222:32;71573:10;101222:18;:32::i;:::-;57299:21:::1;:19;:21::i;:::-;123815:3:::2;::::0;-1:-1:-1;;;;;123815:3:0::2;:17:::0;;::::2;::::0;:33:::2;;-1:-1:-1::0;123836:7:0::2;::::0;:12;::::2;123815:33;123814:56;;;-1:-1:-1::0;123853:3:0::2;::::0;-1:-1:-1;;;;;123853:3:0::2;:17:::0;123814:56:::2;123806:114;;;::::0;-1:-1:-1;;;123806:114:0;;18268:2:1;123806:114:0::2;::::0;::::2;18250:21:1::0;18307:2;18287:18;;;18280:30;18346:34;18326:18;;;18319:62;-1:-1:-1;;;18397:18:1;;;18390:44;18451:19;;123806:114:0::2;18066:410:1::0;123806:114:0::2;123936:3;::::0;-1:-1:-1;;;;;123936:3:0::2;:17:::0;;::::2;::::0;:33:::2;;-1:-1:-1::0;123957:7:0::2;::::0;:12;::::2;123936:33;123935:56;;;-1:-1:-1::0;123974:3:0::2;::::0;-1:-1:-1;;;;;123974:3:0::2;:17:::0;123935:56:::2;123927:114;;;::::0;-1:-1:-1;;;123927:114:0;;18683:2:1;123927:114:0::2;::::0;::::2;18665:21:1::0;18722:2;18702:18;;;18695:30;18761:34;18741:18;;;18734:62;-1:-1:-1;;;18812:18:1;;;18805:44;18866:19;;123927:114:0::2;18481:410:1::0;123927:114:0::2;124057:3;::::0;-1:-1:-1;;;;;124057:3:0::2;:17:::0;;::::2;::::0;:33:::2;;-1:-1:-1::0;124078:7:0::2;::::0;:12;::::2;124057:33;124056:56;;;-1:-1:-1::0;124095:3:0::2;::::0;-1:-1:-1;;;;;124095:3:0::2;:17:::0;124056:56:::2;124048:114;;;::::0;-1:-1:-1;;;124048:114:0;;19098:2:1;124048:114:0::2;::::0;::::2;19080:21:1::0;19137:2;19117:18;;;19110:30;19176:34;19156:18;;;19149:62;-1:-1:-1;;;19227:18:1;;;19220:44;19281:19;;124048:114:0::2;18896:410:1::0;124048:114:0::2;124178:3;::::0;-1:-1:-1;;;;;124178:3:0::2;:17:::0;;::::2;::::0;:33:::2;;-1:-1:-1::0;124199:7:0::2;::::0;:12;::::2;124178:33;124177:56;;;-1:-1:-1::0;124216:3:0::2;::::0;-1:-1:-1;;;;;124216:3:0::2;:17:::0;124177:56:::2;124169:114;;;::::0;-1:-1:-1;;;124169:114:0;;19513:2:1;124169:114:0::2;::::0;::::2;19495:21:1::0;19552:2;19532:18;;;19525:30;19591:34;19571:18;;;19564:62;-1:-1:-1;;;19642:18:1;;;19635:44;19696:19;;124169:114:0::2;19311:410:1::0;124169:114:0::2;124299:3;::::0;-1:-1:-1;;;;;124299:3:0::2;:17:::0;;::::2;::::0;:33:::2;;-1:-1:-1::0;124320:7:0::2;::::0;:12;::::2;124299:33;124298:56;;;-1:-1:-1::0;124337:3:0::2;::::0;-1:-1:-1;;;;;124337:3:0::2;:17:::0;124298:56:::2;124290:114;;;::::0;-1:-1:-1;;;124290:114:0;;19928:2:1;124290:114:0::2;::::0;::::2;19910:21:1::0;19967:2;19947:18;;;19940:30;20006:34;19986:18;;;19979:62;-1:-1:-1;;;20057:18:1;;;20050:44;20111:19;;124290:114:0::2;19726:410:1::0;124290:114:0::2;124420:3;::::0;-1:-1:-1;;;;;124420:3:0::2;:17:::0;;::::2;::::0;:33:::2;;-1:-1:-1::0;124441:7:0::2;::::0;:12;::::2;124420:33;124419:56;;;-1:-1:-1::0;124458:3:0::2;::::0;-1:-1:-1;;;;;124458:3:0::2;:17:::0;124419:56:::2;124411:114;;;::::0;-1:-1:-1;;;124411:114:0;;20343:2:1;124411:114:0::2;::::0;::::2;20325:21:1::0;20382:2;20362:18;;;20355:30;20421:34;20401:18;;;20394:62;-1:-1:-1;;;20472:18:1;;;20465:44;20526:19;;124411:114:0::2;20141:410:1::0;124411:114:0::2;124601:3;::::0;124556:21:::2;::::0;124534:19:::2;::::0;-1:-1:-1;;;;;124601:3:0::2;:17:::0;124598:174:::2;;124660:3;::::0;124692:7:::2;::::0;-1:-1:-1;;;;;124660:3:0;;::::2;::::0;124700:5:::2;::::0;124678:21:::2;::::0;:11;:21:::2;:::i;:::-;:27;;;;:::i;:::-;124652:59;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124643:68;;;;;124730:2;124722:42;;;::::0;-1:-1:-1;;;124722:42:0;;20968:2:1;124722:42:0::2;::::0;::::2;20950:21:1::0;21007:2;20987:18;;;20980:30;21046:29;21026:18;;;21019:57;21093:18;;124722:42:0::2;20766:351:1::0;124722:42:0::2;124781:3;::::0;-1:-1:-1;;;;;124781:3:0::2;:17:::0;124778:174:::2;;124840:3;::::0;124872:7:::2;::::0;-1:-1:-1;;;;;124840:3:0;;::::2;::::0;124880:5:::2;::::0;124858:21:::2;::::0;:11;:21:::2;:::i;:::-;:27;;;;:::i;:::-;124832:59;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124823:68;;;;;124910:2;124902:42;;;::::0;-1:-1:-1;;;124902:42:0;;21324:2:1;124902:42:0::2;::::0;::::2;21306:21:1::0;21363:2;21343:18;;;21336:30;21402:29;21382:18;;;21375:57;21449:18;;124902:42:0::2;21122:351:1::0;124902:42:0::2;124961:3;::::0;-1:-1:-1;;;;;124961:3:0::2;:17:::0;124958:174:::2;;125020:3;::::0;125052:7:::2;::::0;-1:-1:-1;;;;;125020:3:0;;::::2;::::0;125060:5:::2;::::0;125038:21:::2;::::0;:11;:21:::2;:::i;:::-;:27;;;;:::i;:::-;125012:59;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125003:68;;;;;125090:2;125082:42;;;::::0;-1:-1:-1;;;125082:42:0;;21680:2:1;125082:42:0::2;::::0;::::2;21662:21:1::0;21719:2;21699:18;;;21692:30;21758:29;21738:18;;;21731:57;21805:18;;125082:42:0::2;21478:351:1::0;125082:42:0::2;125141:3;::::0;-1:-1:-1;;;;;125141:3:0::2;:17:::0;125138:174:::2;;125200:3;::::0;125232:7:::2;::::0;-1:-1:-1;;;;;125200:3:0;;::::2;::::0;125240:5:::2;::::0;125218:21:::2;::::0;:11;:21:::2;:::i;:::-;:27;;;;:::i;:::-;125192:59;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125183:68;;;;;125270:2;125262:42;;;::::0;-1:-1:-1;;;125262:42:0;;22036:2:1;125262:42:0::2;::::0;::::2;22018:21:1::0;22075:2;22055:18;;;22048:30;22114:29;22094:18;;;22087:57;22161:18;;125262:42:0::2;21834:351:1::0;125262:42:0::2;125321:3;::::0;-1:-1:-1;;;;;125321:3:0::2;:17:::0;125318:174:::2;;125380:3;::::0;125412:7:::2;::::0;-1:-1:-1;;;;;125380:3:0;;::::2;::::0;125420:5:::2;::::0;125398:21:::2;::::0;:11;:21:::2;:::i;:::-;:27;;;;:::i;:::-;125372:59;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125363:68;;;;;125450:2;125442:42;;;::::0;-1:-1:-1;;;125442:42:0;;22392:2:1;125442:42:0::2;::::0;::::2;22374:21:1::0;22431:2;22411:18;;;22404:30;22470:29;22450:18;;;22443:57;22517:18;;125442:42:0::2;22190:351:1::0;125442:42:0::2;125501:3;::::0;-1:-1:-1;;;;;125501:3:0::2;:17:::0;125498:174:::2;;125560:3;::::0;125592:7:::2;::::0;-1:-1:-1;;;;;125560:3:0;;::::2;::::0;125600:5:::2;::::0;125578:21:::2;::::0;:11;:21:::2;:::i;:::-;:27;;;;:::i;:::-;125552:59;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125543:68;;;;;125630:2;125622:42;;;::::0;-1:-1:-1;;;125622:42:0;;22748:2:1;125622:42:0::2;::::0;::::2;22730:21:1::0;22787:2;22767:18;;;22760:30;22826:29;22806:18;;;22799:57;22873:18;;125622:42:0::2;22546:351:1::0;125622:42:0::2;125725:15;::::0;125694:21:::2;::::0;-1:-1:-1;;;;;;125725:15:0::2;:29:::0;125722:220:::2;;125808:15;::::0;125800:55:::2;::::0;-1:-1:-1;;;;;125808:15:0;;::::2;::::0;125838:11;;125800:55:::2;::::0;;;125838:11;125808:15;125800:55:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125791:64;;;;;125722:220;;;92609:7:::0;92636:6;-1:-1:-1;;;;;92636:6:0;-1:-1:-1;;;;;125887:21:0::2;125917:11;125887:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;125878:56:0;;-1:-1:-1;;125722:220:0::2;125956:2;125948:39;;;::::0;-1:-1:-1;;;125948:39:0;;23104:2:1;125948:39:0::2;::::0;::::2;23086:21:1::0;23143:2;23123:18;;;23116:30;23182:26;23162:18;;;23155:54;23226:18;;125948:39:0::2;22902:348:1::0;125948:39:0::2;123799:2194;;57343:20:::1;56737:1:::0;57863:7;:22;57680:213;57343:20:::1;123729:2264::o:0;128055:171::-;128160:4;105298:42;106446:45;:49;;;;:77;;-1:-1:-1;106499:24:0;;;;106446:77;106442:567;;;106763:10;-1:-1:-1;;;;;106755:18:0;;;106751:85;;128177:41:::1;128200:4;128206:2;128210:7;128177:22;:41::i;106751:85::-:0;106855:69;;-1:-1:-1;;;106855:69:0;;106906:4;106855:69;;;13064:34:1;106913:10:0;13114:18:1;;;13107:43;105298:42:0;;106855;;12999:18:1;;106855:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106850:148;;106952:30;;-1:-1:-1;;;106952:30:0;;106971:10;106952:30;;;2255:51:1;2228:18;;106952:30:0;2109:203:1;106850:148:0;128177:41:::1;128200:4;128206:2;128210:7;128177:22;:41::i;123181:201::-:0;123268:10;123248:16;123256:7;123248;:16::i;:::-;-1:-1:-1;;;;;123248:30:0;;123240:59;;;;-1:-1:-1;;;123240:59:0;;23457:2:1;123240:59:0;;;23439:21:1;23496:2;23476:18;;;23469:30;-1:-1:-1;;;23515:18:1;;;23508:46;23571:18;;123240:59:0;23255:340:1;123240:59:0;123318:8;;;;;;;:17;123310:39;;;;-1:-1:-1;;;123310:39:0;;23802:2:1;123310:39:0;;;23784:21:1;23841:1;23821:18;;;23814:29;-1:-1:-1;;;23859:18:1;;;23852:39;23908:18;;123310:39:0;23600:332:1;123310:39:0;123360:14;123366:7;123360:5;:14::i;123409:98::-;101222:32;71573:10;101222:18;:32::i;:::-;123483:8:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;123483:16:0;;::::1;::::0;;;::::1;::::0;;123409:98::o;126036:481::-;126108:16;126133:23;126159:19;126169:8;126159:9;:19::i;:::-;126133:45;;126185:25;126227:15;-1:-1:-1;;;;;126213:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;126213:30:0;-1:-1:-1;126185:58:0;-1:-1:-1;126319:18:0;111539:1;126348:142;126403:1;126387:14;73533:13;;;73451:103;126387:14;:17;;;;:::i;:::-;126382:1;:23;126348:142;;;126436:18;;-1:-1:-1;;;126436:18:0;;;;;2783:25:1;;;126436:4:0;;:15;;2756:18:1;;126436::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;126424:30:0;:8;-1:-1:-1;;;;;126424:30:0;;126421:61;;126481:1;126456:8;126465:12;;;;:::i;:::-;;;126456:22;;;;;;;;:::i;:::-;;;;;;:26;;;;;126421:61;126407:3;;;;:::i;:::-;;;;126348:142;;;-1:-1:-1;126503:8:0;;126036:481;-1:-1:-1;;;;126036:481:0:o;117015:100::-;101222:32;71573:10;101222:18;:32::i;:::-;117089:13:::1;:20:::0;117015:100::o;118817:103::-;101222:32;71573:10;101222:18;:32::i;:::-;118894:13:::1;:20;118910:4:::0;118894:13;:20:::1;:::i;114273:97::-:0;101222:32;71573:10;101222:18;:32::i;:::-;-1:-1:-1;;;;;114340:17:0;;;::::1;;::::0;;;:13:::1;:17;::::0;;;;:24;;-1:-1:-1;;114340:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;114273:97::o;117845:90::-;101222:32;71573:10;101222:18;:32::i;:::-;117914:7:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;117914:15:0;;::::1;::::0;;;::::1;::::0;;117845:90::o;113470:130::-;101222:32;71573:10;101222:18;:32::i;:::-;113560:3:::1;:12:::0;;-1:-1:-1;;;;;;113560:12:0::1;-1:-1:-1::0;;;;;113560:12:0;;;::::1;::::0;;;::::1;::::0;;;113579:7:::1;:15:::0;113470:130::o;100654:408::-;100785:26;;-1:-1:-1;;;;;;17457:2:1;17453:15;;;17449:53;100785:26:0;;;17437:66:1;100742:4:0;;;;17519:12:1;;100785:26:0;;;;;;;;;;;;100775:37;;;;;;100759:53;;100828:9;100823:192;100847:6;:13;100843:1;:17;100823:192;;;100898:6;100905:1;100898:9;;;;;;;;:::i;:::-;;;;;;;100890:5;:17;:113;;100985:6;100992:1;100985:9;;;;;;;;:::i;:::-;;;;;;;100996:5;100968:34;;;;;;;;17831:19:1;;;17875:2;17866:12;;17859:28;17912:2;17903:12;;17674:247;100968:34:0;;;;;;;;;;;;;100958:45;;;;;;100890:113;;;100937:5;100944:6;100951:1;100944:9;;;;;;;;:::i;:::-;;;;;;;100920:34;;;;;;;;17831:19:1;;;17875:2;17866:12;;17859:28;17912:2;17903:12;;17674:247;100920:34:0;;;;;;;;;;;;;100910:45;;;;;;100890:113;100882:121;-1:-1:-1;100862:3:0;;;;:::i;:::-;;;;100823:192;;;-1:-1:-1;101041:13:0;;101032:22;;100654:408;-1:-1:-1;;;100654:408:0:o;74818:222::-;74935:7;74961:13;74980:29;75001:7;74980:20;:29::i;:::-;-1:-1:-1;74960:49:0;74818:222;-1:-1:-1;;;74818:222:0:o;118248:118::-;101222:32;71573:10;101222:18;:32::i;:::-;118331:29:::1;118348:11;100074:13:::0;:27;99999:110;114407:179;101222:32;71573:10;101222:18;:32::i;:::-;114511:10:::1;114494:13;:11;:13::i;:::-;:27;;114486:65;;;::::0;-1:-1:-1;;;114486:65:0;;26599:2:1;114486:65:0::1;::::0;::::1;26581:21:1::0;26638:2;26618:18;;;26611:30;-1:-1:-1;;;26657:18:1;;;26650:55;26722:18;;114486:65:0::1;26397:349:1::0;114486:65:0::1;114558:9;:22:::0;114407:179::o;74266:490::-;74388:4;-1:-1:-1;;;;;74419:19:0;;74411:77;;;;-1:-1:-1;;;74411:77:0;;26953:2:1;74411:77:0;;;26935:21:1;26992:2;26972:18;;;26965:30;27031:34;27011:18;;;27004:62;-1:-1:-1;;;27082:18:1;;;27075:43;27135:19;;74411:77:0;26751:409:1;74411:77:0;74501:10;111539:1;74522:204;73533:13;;74553:1;:18;74522:204;;;74596:10;74604:1;74596:7;:10::i;:::-;74593:122;;;74639:10;74647:1;74639:7;:10::i;:::-;-1:-1:-1;;;;;74630:19:0;:5;-1:-1:-1;;;;;74630:19:0;;74626:74;;74673:7;;;:::i;:::-;;;74626:74;74573:3;;;:::i;:::-;;;74522:204;;;-1:-1:-1;74743:5:0;74266:490;-1:-1:-1;;74266:490:0:o;93211:103::-;92449:13;:11;:13::i;:::-;93276:30:::1;93303:1;93276:18;:30::i;116895:100::-:0;101222:32;71573:10;101222:18;:32::i;:::-;116969:13:::1;:20:::0;116895:100::o;117444:110::-;101222:32;71573:10;101222:18;:32::i;:::-;117525:15:::1;:23:::0;;-1:-1:-1;;117525:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;117444:110::o;120622:870::-;57299:21;:19;:21::i;:::-;120740:15:::1;::::0;::::1;;120732:51;;;::::0;-1:-1:-1;;;120732:51:0;;27367:2:1;120732:51:0::1;::::0;::::1;27349:21:1::0;27406:2;27386:18;;;27379:30;27445:25;27425:18;;;27418:53;27488:18;;120732:51:0::1;27165:347:1::0;120732:51:0::1;120798:33;120812:10;120824:6;120798:13;:33::i;:::-;120790:70;;;;-1:-1:-1::0;;;120790:70:0::1;;;;;;;:::i;:::-;120894:7;120875:15;;:26;;120867:81;;;::::0;-1:-1:-1;;;120867:81:0;;27719:2:1;120867:81:0::1;::::0;::::1;27701:21:1::0;27758:2;27738:18;;;27731:30;27797:34;27777:18;;;27770:62;-1:-1:-1;;;27848:18:1;;;27841:40;27898:19;;120867:81:0::1;27517:406:1::0;120867:81:0::1;120980:7;120963:13;;:24;;120955:77;;;::::0;-1:-1:-1;;;120955:77:0;;28130:2:1;120955:77:0::1;::::0;::::1;28112:21:1::0;28169:2;28149:18;;;28142:30;28208:34;28188:18;;;28181:62;-1:-1:-1;;;28259:18:1;;;28252:38;28307:19;;120955:77:0::1;27928:404:1::0;120955:77:0::1;121074:10;::::0;121064:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;121086:10:::1;121064:33:::0;;;;;;;;:43:::1;::::0;121100:7;;121064:43:::1;:::i;:::-;121047:13;;:60;;121039:103;;;::::0;-1:-1:-1;;;121039:103:0;;28539:2:1;121039:103:0::1;::::0;::::1;28521:21:1::0;28578:2;28558:18;;;28551:30;28617:32;28597:18;;;28590:60;28667:18;;121039:103:0::1;28337:354:1::0;121039:103:0::1;121184:7;121170:11;;:21;;;;:::i;:::-;121157:9;:34;121149:71;;;;-1:-1:-1::0;;;121149:71:0::1;;;;;;;:::i;:::-;121265:8;;121246:13;:11;:13::i;:::-;121236:23;::::0;:7;:23:::1;:::i;:::-;121235:39;;:56;;;-1:-1:-1::0;121278:8:0::1;::::0;:13;121235:56:::1;121227:81;;;;-1:-1:-1::0;;;121227:81:0::1;;;;;;;:::i;:::-;121353:9;;121334:13;:11;:13::i;:::-;121324:23;::::0;:7;:23:::1;:::i;:::-;121323:40;;:58;;;-1:-1:-1::0;121367:9:0::1;::::0;:14;121323:58:::1;121315:83;;;;-1:-1:-1::0;;;121315:83:0::1;;;;;;;:::i;:::-;121415:10;::::0;121405:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;121427:10:::1;121405:33:::0;;;;;;;:44;;121442:7;;121405:21;:44:::1;::::0;121442:7;;121405:44:::1;:::i;117135:100::-:0;101222:32;71573:10;101222:18;:32::i;:::-;117209:13:::1;:20:::0;117135:100::o;126580:243::-;126669:21;;-1:-1:-1;;;126669:21:0;;;;;2783:25:1;;;126649:7:0;;126669:4;;:12;;2756:18:1;;126669:21:0;;;;;;;;;;;;;;;;;;-1:-1:-1;126669:21:0;;;;;;;;-1:-1:-1;;126669:21:0;;;;;;;;;;;;:::i;:::-;;;126665:153;;-1:-1:-1;126785:1:0;;126580:243;-1:-1:-1;126580:243:0:o;126665:153::-;126580:243;;;:::o;86949:601::-;87018:16;87072:19;87106:22;87131:16;87141:5;87131:9;:16::i;:::-;87106:41;;87162:25;87204:14;-1:-1:-1;;;;;87190:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87190:29:0;-1:-1:-1;87162:57:0;-1:-1:-1;111539:1:0;87234:265;87283:14;87268:11;:29;87234:265;;87327:10;87335:1;87327:7;:10::i;:::-;87323:161;;;87380:5;-1:-1:-1;;;;;87366:19:0;:10;87374:1;87366:7;:10::i;:::-;-1:-1:-1;;;;;87366:19:0;;87362:103;;87440:1;87414:8;87423:13;;;;;;87414:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;87362:103;87299:3;;87234:265;;;-1:-1:-1;87520:8:0;86949:601;-1:-1:-1;;;;86949:601:0:o;112783:130::-;101222:32;71573:10;101222:18;:32::i;:::-;112873:3:::1;:12:::0;;-1:-1:-1;;;;;;112873:12:0::1;-1:-1:-1::0;;;;;112873:12:0;;;::::1;::::0;;;::::1;::::0;;;112892:7:::1;:15:::0;112783:130::o;115327:103::-;101222:32;71573:10;101222:18;:32::i;:::-;115402:11:::1;:22:::0;115327:103::o;114590:174::-;101222:32;71573:10;101222:18;:32::i;:::-;114692:9:::1;114675:13;:11;:13::i;:::-;:26;;114667:64;;;::::0;-1:-1:-1;;;114667:64:0;;26599:2:1;114667:64:0::1;::::0;::::1;26581:21:1::0;26638:2;26618:18;;;26611:30;-1:-1:-1;;;26657:18:1;;;26650:55;26722:18;;114667:64:0::1;26397:349:1::0;114667:64:0::1;114738:8;:20:::0;114590:174::o;75582:104::-;75638:13;75671:7;75664:14;;;;;:::i;114066:103::-;101222:32;71573:10;101222:18;:32::i;:::-;114143:8:::1;:20:::0;;-1:-1:-1;;;;;;114143:20:0::1;-1:-1:-1::0;;;;;114143:20:0;;;::::1;::::0;;;::::1;::::0;;114066:103::o;113928:130::-;101222:32;71573:10;101222:18;:32::i;:::-;114018:3:::1;:12:::0;;-1:-1:-1;;;;;;114018:12:0::1;-1:-1:-1::0;;;;;114018:12:0;;;::::1;::::0;;;::::1;::::0;;;114037:7:::1;:15:::0;113928:130::o;123525:127::-;57299:21;:19;:21::i;:::-;123616:1:::1;123604:9;:13;123596:50;;;;-1:-1:-1::0;;;123596:50:0::1;;;;;;;:::i;:::-;57343:20:::0;56737:1;57863:7;:22;57680:213;127185:351;127289:8;105298:42;107220:45;:49;;;;:77;;-1:-1:-1;107273:24:0;;;;107220:77;107216:253;;;107319:67;;-1:-1:-1;;;107319:67:0;;107370:4;107319:67;;;13064:34:1;-1:-1:-1;;;;;13134:15:1;;13114:18;;;13107:43;105298:42:0;;107319;;12999:18:1;;107319:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;107314:144;;107414:28;;-1:-1:-1;;;107414:28:0;;-1:-1:-1;;;;;2273:32:1;;107414:28:0;;;2255:51:1;2228:18;;107414:28:0;2109:203:1;107314:144:0;92609:7;92636:6;-1:-1:-1;;;;;127332:19:0;;::::1;92636:6:::0;;127332:19:::1;::::0;:54:::1;;-1:-1:-1::0;;;;;;127355:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;;::::1;;:31;;:23:::0;:31:::1;127332:54;:74;;;-1:-1:-1::0;127390:7:0::1;::::0;;;::::1;;;:16;127332:74;127310:164;;;;-1:-1:-1::0;;;127310:164:0::1;;;;;;;:::i;:::-;127485:43;127509:8;127519;127485:23;:43::i;117577:111::-:0;101222:32;71573:10;101222:18;:32::i;:::-;117655:19:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;117655:27:0;;::::1;::::0;;;::::1;::::0;;117577:111::o;117713:115::-;101222:32;71573:10;101222:18;:32::i;:::-;117793:21:::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;117793:29:0;;::::1;::::0;;;::::1;::::0;;117713:115::o;129050:117::-;92449:13;:11;:13::i;:::-;129128:31:::1;129148:10;129128:19;:31::i;127053:122::-:0;101222:32;71573:10;101222:18;:32::i;:::-;127135:24:::1;:32:::0;;-1:-1:-1;;127135:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;127053:122::o;128270:228::-;128421:4;105298:42;106446:45;:49;;;;:77;;-1:-1:-1;106499:24:0;;;;106446:77;106442:567;;;106763:10;-1:-1:-1;;;;;106755:18:0;;;106751:85;;128443:47:::1;128466:4;128472:2;128476:7;128485:4;128443:22;:47::i;:::-;106814:7:::0;;106751:85;106855:69;;-1:-1:-1;;;106855:69:0;;106906:4;106855:69;;;13064:34:1;106913:10:0;13114:18:1;;;13107:43;105298:42:0;;106855;;12999:18:1;;106855:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106850:148;;106952:30;;-1:-1:-1;;;106952:30:0;;106971:10;106952:30;;;2255:51:1;2228:18;;106952:30:0;2109:203:1;106850:148:0;128443:47:::1;128466:4;128472:2;128476:7;128485:4;128443:22;:47::i;:::-;128270:228:::0;;;;;:::o;118529:101::-;101222:32;71573:10;101222:18;:32::i;:::-;118608:9:::1;:16;118620:4:::0;118608:9;:16:::1;:::i;115448:103::-:0;101222:32;71573:10;101222:18;:32::i;:::-;115523:11:::1;:22:::0;115448:103::o;115706:107::-;101222:32;71573:10;101222:18;:32::i;:::-;115784:8:::1;:23:::0;115706:107::o;119204:330::-;119278:13;119308:17;119316:8;119308:7;:17::i;:::-;119300:61;;;;-1:-1:-1;;;119300:61:0;;28898:2:1;119300:61:0;;;28880:21:1;28937:2;28917:18;;;28910:30;28976:33;28956:18;;;28949:61;29027:18;;119300:61:0;28696:355:1;119300:61:0;119371:21;119383:8;115944;;-1:-1:-1;115932:20:0;;115843:115;119371:21;119368:138;;;119435:17;:15;:17::i;:::-;119454:26;119471:8;119454:16;:26::i;:::-;119482:14;119418:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;119404:94;;119204:330;;;:::o;119368:138::-;119519:9;119512:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119204:330;;;:::o;118370:118::-;101222:32;71573:10;101222:18;:32::i;:::-;118453:29:::1;118470:11;100609:13:::0;:27;100534:110;119591:216;101222:32;71573:10;101222:18;:32::i;:::-;119721:9:::1;;119702:13;:11;:13::i;:::-;119692:23;::::0;:7;:23:::1;:::i;:::-;119691:40;;:58;;;-1:-1:-1::0;119735:9:0::1;::::0;:14;119691:58:::1;119683:83;;;;-1:-1:-1::0;;;119683:83:0::1;;;;;;;:::i;:::-;119773:28;119783:8;119793:7;119773:9;:28::i;115569:103::-:0;101222:32;71573:10;101222:18;:32::i;:::-;115644:11:::1;:22:::0;115569:103::o;118928:131::-;101222:32;71573:10;101222:18;:32::i;:::-;119019:14:::1;:34;119036:17:::0;119019:14;:34:::1;:::i;119829:767::-:0;57299:21;:19;:21::i;:::-;119981:25:::1;::::0;;;:15:::1;:25;::::0;;;;;::::1;;119973:61;;;::::0;-1:-1:-1;;;119973:61:0;;30519:2:1;119973:61:0::1;::::0;::::1;30501:21:1::0;30558:2;30538:18;;;30531:30;30597:25;30577:18;;;30570:53;30640:18;;119973:61:0::1;30317:347:1::0;119973:61:0::1;120049:51;120063:10;120074:8;120084:7;120093:6;120049:13;:51::i;:::-;120041:88;;;;-1:-1:-1::0;;;120041:88:0::1;;;;;;;:::i;:::-;120154:1;120144:7;:11;120136:39;;;::::0;-1:-1:-1;;;120136:39:0;;30871:2:1;120136:39:0::1;::::0;::::1;30853:21:1::0;30910:2;30890:18;;;30883:30;-1:-1:-1;;;30929:18:1;;;30922:45;30984:18;;120136:39:0::1;30669:339:1::0;120136:39:0::1;120201:7;120190;:18;;120182:71;;;::::0;-1:-1:-1;;;120182:71:0;;31215:2:1;120182:71:0::1;::::0;::::1;31197:21:1::0;31254:2;31234:18;;;31227:30;31293:34;31273:18;;;31266:62;-1:-1:-1;;;31344:18:1;;;31337:38;31392:19;;120182:71:0::1;31013:404:1::0;120182:71:0::1;120279:19;::::0;;;:9:::1;:19;::::0;;;;;;;120299:10:::1;120279:31:::0;;;;;;;;:41:::1;::::0;120313:7;;120279:41:::1;:::i;:::-;120268:7;:52;;120260:95;;;::::0;-1:-1:-1;;;120260:95:0;;28539:2:1;120260:95:0::1;::::0;::::1;28521:21:1::0;28578:2;28558:18;;;28551:30;28617:32;28597:18;;;28590:60;28667:18;;120260:95:0::1;28337:354:1::0;120260:95:0::1;120397:7;120383:11;;:21;;;;:::i;:::-;120370:9;:34;120362:71;;;;-1:-1:-1::0;;;120362:71:0::1;;;;;;;:::i;:::-;120478:8;;120459:13;:11;:13::i;:::-;120449:23;::::0;:7;:23:::1;:::i;:::-;120448:39;;120440:64;;;;-1:-1:-1::0;;;120440:64:0::1;;;;;;;:::i;:::-;120511:19;::::0;;;:9:::1;:19;::::0;;;;;;;120531:10:::1;120511:31:::0;;;;;;;:42;;120546:7;;120511:19;:42:::1;::::0;120546:7;;120511:42:::1;:::i;:::-;::::0;;;-1:-1:-1;120560:30:0::1;::::0;-1:-1:-1;120570:10:0::1;120582:7:::0;120560:9:::1;:30::i;:::-;57343:20:::0;56737:1;57863:7;:22;57680:213;114950:111;101222:32;71573:10;101222:18;:32::i;:::-;115031:10:::1;:24:::0;114950:111::o;117284:137::-;101222:32;71573:10;101222:18;:32::i;:::-;117382:25:::1;::::0;;;:15:::1;:25;::::0;;;;;:33;;-1:-1:-1;;117382:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;117284:137::o;111980:113::-;112034:13;112067:20;:18;:20::i;99524:461::-;99689:35;;-1:-1:-1;;;;;;31599:2:1;31595:15;;;31591:53;99689:35:0;;;31579:66:1;31661:12;;;31654:28;;;99646:4:0;;;;31698:12:1;;99689:35:0;;;;;;;;;;;;99679:46;;;;;;99663:62;;99741:9;99736:192;99760:6;:13;99756:1;:17;99736:192;;;99811:6;99818:1;99811:9;;;;;;;;:::i;:::-;;;;;;;99803:5;:17;:113;;99898:6;99905:1;99898:9;;;;;;;;:::i;:::-;;;;;;;99909:5;99881:34;;;;;;;;17831:19:1;;;17875:2;17866:12;;17859:28;17912:2;17903:12;;17674:247;99881:34:0;;;;;;;;;;;;;99871:45;;;;;;99803:113;;;99850:5;99857:6;99864:1;99857:9;;;;;;;;:::i;:::-;;;;;;;99833:34;;;;;;;;17831:19:1;;;17875:2;17866:12;;17859:28;17912:2;17903:12;;17674:247;99833:34:0;;;;;;;;;;;;;99823:45;;;;;;99803:113;99795:121;-1:-1:-1;99775:3:0;;;;:::i;:::-;;;;99736:192;;;-1:-1:-1;99954:23:0;;;;:13;:23;;;;;;99945:32;;-1:-1:-1;99524:461:0;;;;;;:::o;93469:201::-;92449:13;:11;:13::i;:::-;-1:-1:-1;;;;;93558:22:0;::::1;93550:73;;;::::0;-1:-1:-1;;;93550:73:0;;31923:2:1;93550:73:0::1;::::0;::::1;31905:21:1::0;31962:2;31942:18;;;31935:30;32001:34;31981:18;;;31974:62;-1:-1:-1;;;32052:18:1;;;32045:36;32098:19;;93550:73:0::1;31721:402:1::0;93550:73:0::1;93634:28;93653:8;93634:18;:28::i;40093:447::-:0;40168:13;40194:19;40226:10;40230:6;40226:1;:10;:::i;:::-;:14;;40239:1;40226:14;:::i;:::-;-1:-1:-1;;;;;40216:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40216:25:0;;40194:47;;-1:-1:-1;;;40252:6:0;40259:1;40252:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;40252:15:0;;;;;;;;;-1:-1:-1;;;40278:6:0;40285:1;40278:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;40278:15:0;;;;;;;;-1:-1:-1;40309:9:0;40321:10;40325:6;40321:1;:10;:::i;:::-;:14;;40334:1;40321:14;:::i;:::-;40309:26;;40304:131;40341:1;40337;:5;40304:131;;;-1:-1:-1;;;40385:5:0;40393:3;40385:11;40376:21;;;;;;;:::i;:::-;;;;40364:6;40371:1;40364:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;40364:33:0;;;;;;;;-1:-1:-1;40422:1:0;40412:11;;;;;40344:3;;;:::i;:::-;;;40304:131;;;-1:-1:-1;40453:10:0;;40445:55;;;;-1:-1:-1;;;40445:55:0;;32471:2:1;40445:55:0;;;32453:21:1;;;32490:18;;;32483:30;32549:34;32529:18;;;32522:62;32601:18;;40445:55:0;32269:356:1;40445:55:0;40525:6;40093:447;-1:-1:-1;;;40093:447:0:o;68047:215::-;68149:4;-1:-1:-1;;;;;;68173:41:0;;-1:-1:-1;;;68173:41:0;;:81;;;68218:36;68242:11;68218:23;:36::i;101979:370::-;-1:-1:-1;;;;;102073:21:0;;;;;;:10;:21;;;;;;;;102206:46;71573:10;102234:12;-1:-1:-1;;;;;102206:46:0;102249:2;102206:19;:46::i;:::-;102134:181;;;;;;;;:::i;:::-;;;;;;;;;;;;;102051:290;;;;;-1:-1:-1;;;102051:290:0;;;;;;;;:::i;69409:332::-;69125:5;-1:-1:-1;;;;;69512:33:0;;;;69504:88;;;;-1:-1:-1;;;69504:88:0;;33448:2:1;69504:88:0;;;33430:21:1;33487:2;33467:18;;;33460:30;33526:34;33506:18;;;33499:62;-1:-1:-1;;;33577:18:1;;;33570:40;33627:19;;69504:88:0;33246:406:1;69504:88:0;-1:-1:-1;;;;;69611:22:0;;69603:60;;;;-1:-1:-1;;;69603:60:0;;33859:2:1;69603:60:0;;;33841:21:1;33898:2;33878:18;;;33871:30;33937:27;33917:18;;;33910:55;33982:18;;69603:60:0;33657:349:1;69603:60:0;69698:35;;;;;;;;;-1:-1:-1;;;;;69698:35:0;;;;;;-1:-1:-1;;;;;69698:35:0;;;;;;;;;;-1:-1:-1;;;69676:57:0;;;;:19;:57;69409:332::o;90257:207::-;90350:12;48285:10;;;90331:4;48372:20;;;;;;;;;;;;-1:-1:-1;;;48349:4:0;48341:12;;48321:33;48372:27;:32;90347:69;;-1:-1:-1;90399:5:0;;90257:207;-1:-1:-1;90257:207:0:o;90347:69::-;90434:22;90448:7;90434:13;:22::i;76492:410::-;76573:13;76589:16;76597:7;76589;:16::i;:::-;76573:32;;76630:5;-1:-1:-1;;;;;76624:11:0;:2;-1:-1:-1;;;;;76624:11:0;;76616:60;;;;-1:-1:-1;;;76616:60:0;;34213:2:1;76616:60:0;;;34195:21:1;34252:2;34232:18;;;34225:30;34291:34;34271:18;;;34264:62;-1:-1:-1;;;34342:18:1;;;34335:34;34386:19;;76616:60:0;34011:400:1;76616:60:0;71573:10;-1:-1:-1;;;;;76711:21:0;;;;:62;;-1:-1:-1;76736:37:0;76753:5;71573:10;77752:214;:::i;76736:37::-;76689:171;;;;-1:-1:-1;;;76689:171:0;;34618:2:1;76689:171:0;;;34600:21:1;34657:2;34637:18;;;34630:30;34696:34;34676:18;;;34669:62;34767:29;34747:18;;;34740:57;34814:19;;76689:171:0;34416:423:1;76689:171:0;76873:21;76882:2;76886:7;76873:8;:21::i;90733:346::-;73533:13;;90775:14;;;;;;90875:25;;90842:1;90876:19;90899:1;90875:25;:::i;:::-;90854:46;-1:-1:-1;90927:11:0;90913:159;90944:10;90940:1;:14;90913:159;;;90976:14;54919:20;;;90993:12;54919:20;;;;;;91043:17;54919:20;91043:9;:17::i;:::-;91033:27;;;;:::i;:::-;;;90961:111;90956:3;;;;;:::i;:::-;;;;90913:159;;;;90790:289;;90733:346;:::o;73652:121::-;73707:7;111539:1;73734:13;;:31;;;;:::i;78033:379::-;78242:41;71573:10;78275:7;78242:18;:41::i;:::-;78220:143;;;;-1:-1:-1;;;78220:143:0;;;;;;;:::i;:::-;78376:28;78386:4;78392:2;78396:7;78376:9;:28::i;92728:132::-;92609:7;92636:6;-1:-1:-1;;;;;92636:6:0;71573:10;92792:23;92784:68;;;;-1:-1:-1;;;92784:68:0;;35467:2:1;92784:68:0;;;35449:21:1;;;35486:18;;;35479:30;35545:34;35525:18;;;35518:62;35597:18;;92784:68:0;35265:356:1;101399:421:0;-1:-1:-1;;;;;101490:22:0;;;;;;:10;:22;;;;;;;;101489:23;101624:46;71573:10;101652:12;71493:98;101624:46;101552:194;;;;;;;;:::i;:::-;;;;;;;;;;;;;101467:305;;;;;-1:-1:-1;;;101467:305:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;101783:22:0;;;;;:10;:22;;;;;:29;;-1:-1:-1;;101783:29:0;101808:4;101783:29;;;101399:421::o;57379:293::-;56781:1;57513:7;;:19;57505:63;;;;-1:-1:-1;;;57505:63:0;;36457:2:1;57505:63:0;;;36439:21:1;36496:2;36476:18;;;36469:30;36535:33;36515:18;;;36508:61;36586:18;;57505:63:0;36255:355:1;57505:63:0;56781:1;57646:7;:18;57379:293::o;81730:112::-;81807:27;81817:2;81821:8;81807:27;;;;;;;;;;;;:9;:27::i;78483:185::-;78621:39;78638:4;78644:2;78648:7;78621:39;;;;;;;;;;;;:16;:39::i;89623:321::-;89683:12;89698:16;89706:7;89698;:16::i;:::-;89683:31;;89725:51;89747:4;89761:1;89765:7;89774:1;89725:21;:51::i;:::-;89787:25;:12;89804:7;89787:16;:25::i;:::-;89838:35;;89865:7;;89861:1;;-1:-1:-1;;;;;89838:35:0;;;;;89861:1;;89838:35;111606:157;;:::o;75048:298::-;75118:13;75133:24;75177:16;75185:7;75177;:16::i;:::-;75169:73;;;;-1:-1:-1;;;75169:73:0;;36817:2:1;75169:73:0;;;36799:21:1;36856:2;36836:18;;;36829:30;36895:34;36875:18;;;36868:62;-1:-1:-1;;;36946:18:1;;;36939:42;36998:19;;75169:73:0;36615:408:1;75169:73:0;75272:22;75286:7;75272:13;:22::i;:::-;75313:25;;;;:7;:25;;;;;;-1:-1:-1;;;;;75313:25:0;;75253:41;;-1:-1:-1;75048:298:0;-1:-1:-1;;75048:298:0:o;93830:191::-;93904:16;93923:6;;-1:-1:-1;;;;;93940:17:0;;;-1:-1:-1;;;;;;93940:17:0;;;;;;93973:40;;93923:6;;;;;;;93973:40;;93904:16;93973:40;93893:128;93830:191;:::o;77351:330::-;71573:10;-1:-1:-1;;;;;77486:24:0;;;77478:65;;;;-1:-1:-1;;;77478:65:0;;37230:2:1;77478:65:0;;;37212:21:1;37269:2;37249:18;;;37242:30;37308;37288:18;;;37281:58;37356:18;;77478:65:0;37028:352:1;77478:65:0;71573:10;77556:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;77556:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;77556:53:0;;;;;;;;;;77625:48;;540:41:1;;;77556:42:0;;71573:10;77625:48;;513:18:1;77625:48:0;;;;;;;77351:330;;:::o;101826:147::-;101895:30;101914:10;101895:18;:30::i;:::-;-1:-1:-1;;;;;101943:22:0;;;;;:10;:22;;;;;101936:29;;-1:-1:-1;;101936:29:0;;;101826:147::o;78739:368::-;78928:41;71573:10;78961:7;78928:18;:41::i;:::-;78906:143;;;;-1:-1:-1;;;78906:143:0;;;;;;;:::i;:::-;79060:39;79074:4;79080:2;79084:7;79093:5;79060:13;:39::i;119095:97::-;119145:13;119173;119166:20;;;;;:::i;38961:716::-;39017:13;39068:14;39085:17;39096:5;39085:10;:17::i;:::-;39105:1;39085:21;39068:38;;39121:20;39155:6;-1:-1:-1;;;;;39144:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39144:18:0;-1:-1:-1;39121:41:0;-1:-1:-1;39286:28:0;;;39302:2;39286:28;39343:288;-1:-1:-1;;39375:5:0;-1:-1:-1;;;39512:2:0;39501:14;;39496:30;39375:5;39483:44;39573:2;39564:11;;;-1:-1:-1;39594:21:0;39343:288;39594:21;-1:-1:-1;39652:6:0;38961:716;-1:-1:-1;;;38961:716:0:o;112119:567::-;112172:13;112195:16;;112240:32;112195:16;69125:5;112240:11;:32::i;:::-;112194:78;;;;112381:283;112493:33;112510:15;112493:16;:33::i;:::-;112568:51;112604:8;-1:-1:-1;;;;;112588:26:0;112616:2;112568:19;:51::i;:::-;112427:213;;;;;;;;;:::i;:::-;;;;;;;;;;;;;112381:13;:283::i;:::-;112312:361;;;;;;;;:::i;:::-;;;;;;;;;;;;;112290:390;;;;112119:567;:::o;73847:355::-;73994:4;-1:-1:-1;;;;;;74036:40:0;;-1:-1:-1;;;74036:40:0;;:105;;-1:-1:-1;;;;;;;74093:48:0;;-1:-1:-1;;;74093:48:0;74036:105;:158;;;-1:-1:-1;;;;;;;;;;65708:40:0;;;74158:36;65599:157;80601:151;80666:4;80700:14;73533:13;;;73451:103;80700:14;80690:7;:24;:54;;;;-1:-1:-1;;111539:1:0;80718:26;;;80601:151::o;84515:167::-;84590:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;84590:29:0;-1:-1:-1;;;;;84590:29:0;;;;;;;;:24;;84644:16;84590:24;84644:7;:16::i;:::-;-1:-1:-1;;;;;84635:39:0;;;;;;;;;;;84515:167;;:::o;91146:177::-;91198:13;91248:56;91262:4;;91248:56;;-1:-1:-1;;91299:5:0;;91294:10;;;;91303:1;91268:7;91248:56;;80919:448;81048:4;81092:16;81100:7;81092;:16::i;:::-;81070:113;;;;-1:-1:-1;;;81070:113:0;;39108:2:1;81070:113:0;;;39090:21:1;39147:2;39127:18;;;39120:30;39186:34;39166:18;;;39159:62;-1:-1:-1;;;39237:18:1;;;39230:45;39292:19;;81070:113:0;38906:411:1;81070:113:0;81194:13;81210:16;81218:7;81210;:16::i;:::-;81194:32;;81256:5;-1:-1:-1;;;;;81245:16:0;:7;-1:-1:-1;;;;;81245:16:0;;:64;;;;81302:7;-1:-1:-1;;;;;81278:31:0;:20;81290:7;81278:11;:20::i;:::-;-1:-1:-1;;;;;81278:31:0;;81245:64;:113;;;-1:-1:-1;;;;;;77923:25:0;;;77894:4;77923:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;81326:32;81237:122;80919:448;-1:-1:-1;;;;80919:448:0:o;83340:1057::-;83465:13;83480:24;83508:29;83529:7;83508:20;:29::i;:::-;83464:73;;;;83581:4;-1:-1:-1;;;;;83572:13:0;:5;-1:-1:-1;;;;;83572:13:0;;83550:107;;;;-1:-1:-1;;;83550:107:0;;39524:2:1;83550:107:0;;;39506:21:1;39563:2;39543:18;;;39536:30;39602:34;39582:18;;;39575:62;-1:-1:-1;;;39653:18:1;;;39646:42;39705:19;;83550:107:0;39322:408:1;83550:107:0;-1:-1:-1;;;;;83676:16:0;;83668:68;;;;-1:-1:-1;;;83668:68:0;;39937:2:1;83668:68:0;;;39919:21:1;39976:2;39956:18;;;39949:30;40015:34;39995:18;;;39988:62;-1:-1:-1;;;40066:18:1;;;40059:37;40113:19;;83668:68:0;39735:403:1;83668:68:0;83749:43;83771:4;83777:2;83781:7;83790:1;83749:21;:43::i;:::-;83857:29;83874:1;83878:7;83857:8;:29::i;:::-;83902:25;83930:11;:7;83940:1;83930:11;:::i;:::-;48294:1;48285:10;;;48251:4;48372:20;;;83958:10;48372:20;;;;;;48285:10;;-1:-1:-1;;;;48349:4:0;48341:12;;48321:33;48372:27;:32;;;83957:87;;-1:-1:-1;73533:13:0;;84010:17;:34;83957:87;83954:210;;;84071:26;;;;:7;:26;;;;;:33;;-1:-1:-1;;;;;;84071:33:0;-1:-1:-1;;;;;84071:33:0;;;;;84119;-1:-1:-1;84071:26:0;84119:14;:33::i;:::-;84176:16;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;84176:21:0;-1:-1:-1;;;;;84176:21:0;;;;;84211:27;;;84208:82;;84255:23;:10;84270:7;84255:14;:23::i;:::-;84326:7;84322:2;-1:-1:-1;;;;;84307:27:0;84316:4;-1:-1:-1;;;;;84307:27:0;;;;;;;;;;;84347:42;83453:944;;;83340:1057;;;:::o;81856:387::-;81987:19;82009:14;73533:13;;;73451:103;82009:14;81987:36;;82034:19;82040:2;82044:8;82034:5;:19::i;:::-;82086:68;82117:1;82121:2;82125:11;82138:8;82148:5;82086:22;:68::i;:::-;82064:171;;;;-1:-1:-1;;;82064:171:0;;;;;;;:::i;128506:369::-;-1:-1:-1;;;;;128628:18:0;;;128625:177;;92609:7;92636:6;-1:-1:-1;;;;;128680:15:0;;;92636:6;;128680:15;;:46;;-1:-1:-1;;;;;;128699:19:0;;;;;;:13;:19;;;;;;;;:27;;:19;:27;128680:46;:66;;;-1:-1:-1;128730:7:0;;;;;;;:16;128680:66;128658:136;;;;-1:-1:-1;;;128658:136:0;;40767:2:1;128658:136:0;;;40749:21:1;40806:2;40786:18;;;40779:30;-1:-1:-1;;;40825:18:1;;;40818:50;40885:18;;128658:136:0;40565:344:1;48798:204:0;48895:1;48886:10;;;48869:14;48966:20;;;;;;;;;;;;:28;;-1:-1:-1;;;48950:4:0;48942:12;;;48922:33;;;;48966:28;;;;;48798:204::o;86383:159::-;86446:24;86502:31;:10;86525:7;86502:22;:31::i;79989:357::-;80146:28;80156:4;80162:2;80166:7;80146:9;:28::i;:::-;80207:50;80230:4;80236:2;80240:7;80249:1;80251:5;80207:22;:50::i;35827:922::-;35880:7;;-1:-1:-1;;;35958:15:0;;35954:102;;-1:-1:-1;;;35994:15:0;;;-1:-1:-1;36038:2:0;36028:12;35954:102;36083:6;36074:5;:15;36070:102;;36119:6;36110:15;;;-1:-1:-1;36154:2:0;36144:12;36070:102;36199:6;36190:5;:15;36186:102;;36235:6;36226:15;;;-1:-1:-1;36270:2:0;36260:12;36186:102;36315:5;36306;:14;36302:99;;36350:5;36341:14;;;-1:-1:-1;36384:1:0;36374:11;36302:99;36428:5;36419;:14;36415:99;;36463:5;36454:14;;;-1:-1:-1;36497:1:0;36487:11;36415:99;36541:5;36532;:14;36528:99;;36576:5;36567:14;;;-1:-1:-1;36610:1:0;36600:11;36528:99;36654:5;36645;:14;36641:66;;36690:1;36680:11;36735:6;35827:922;-1:-1:-1;;35827:922:0:o;94844:1912::-;94902:13;94932:4;:11;94947:1;94932:16;94928:31;;-1:-1:-1;;94950:9:0;;;;;;;;;-1:-1:-1;94950:9:0;;;94844:1912::o;94928:31::-;95011:19;95033:12;;;;;;;;;;;;;;;;;95011:34;;95097:18;95143:1;95124:4;:11;95138:1;95124:15;;;;:::i;:::-;95123:21;;;;:::i;:::-;95118:27;;:1;:27;:::i;:::-;95097:48;-1:-1:-1;95228:20:0;95262:15;95097:48;95275:2;95262:15;:::i;:::-;-1:-1:-1;;;;;95251:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;95251:27:0;;95228:50;;95375:10;95367:6;95360:26;95470:1;95463:5;95459:13;95529:4;95580;95574:11;95565:7;95561:25;95676:2;95668:6;95664:15;95749:754;95768:6;95759:7;95756:19;95749:754;;;95868:1;95859:7;95855:15;95844:26;;95907:7;95901:14;96033:4;96025:5;96021:2;96017:14;96013:25;96003:8;95999:40;95993:47;95982:9;95974:67;96087:1;96076:9;96072:17;96059:30;;96166:4;96158:5;96154:2;96150:14;96146:25;96136:8;96132:40;96126:47;96115:9;96107:67;96220:1;96209:9;96205:17;96192:30;;96299:4;96291:5;96288:1;96283:14;96279:25;96269:8;96265:40;96259:47;96248:9;96240:67;96353:1;96342:9;96338:17;96325:30;;96432:4;96424:5;96412:25;96402:8;96398:40;96392:47;96381:9;96373:67;-1:-1:-1;96486:1:0;96471:17;95749:754;;;96576:1;96569:4;96563:11;96559:19;96597:1;96592:54;;;;96665:1;96660:52;;;;96552:160;;96592:54;-1:-1:-1;;;;;96608:17:0;;96601:43;96592:54;;96660:52;-1:-1:-1;;;;;96676:17:0;;96669:41;96552:160;-1:-1:-1;96742:6:0;;94844:1912;-1:-1:-1;;;;;;;;94844:1912:0:o;82253:748::-;82351:19;82373:14;73533:13;;;73451:103;82373:14;82351:36;;82427:1;82416:8;:12;82408:62;;;;-1:-1:-1;;;82408:62:0;;41116:2:1;82408:62:0;;;41098:21:1;41155:2;41135:18;;;41128:30;41194:34;41174:18;;;41167:62;-1:-1:-1;;;41245:18:1;;;41238:35;41290:19;;82408:62:0;40914:401:1;82408:62:0;-1:-1:-1;;;;;82489:16:0;;82481:64;;;;-1:-1:-1;;;82481:64:0;;41522:2:1;82481:64:0;;;41504:21:1;41561:2;41541:18;;;41534:30;41600:34;41580:18;;;41573:62;-1:-1:-1;;;41651:18:1;;;41644:33;41694:19;;82481:64:0;41320:399:1;82481:64:0;82566:60;82596:1;82600:2;82604:11;82617:8;82566:21;:60::i;:::-;82654:8;82637:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;82673:20:0;;;;:7;:20;;;;;:25;;-1:-1:-1;;;;;;82673:25:0;-1:-1:-1;;;;;82673:25:0;;;;;82709:27;-1:-1:-1;82673:20:0;82709:14;:27::i;:::-;82871:11;82851:142;82894:22;82908:8;82894:11;:22;:::i;:::-;82884:7;:32;82851:142;;;82948:33;;82973:7;;-1:-1:-1;;;;;82948:33:0;;;82965:1;;82948:33;;82965:1;;82948:33;82918:9;;;;:::i;:::-;;;;82851:142;;85336:1039;85523:6;-1:-1:-1;;;;;85546:13:0;;17756:19;:23;85542:826;;-1:-1:-1;85582:4:0;85623:12;85601:689;85647:23;85662:8;85647:12;:23;:::i;:::-;85637:7;:33;85601:689;;;85705:72;;-1:-1:-1;;;85705:72:0;;-1:-1:-1;;;;;85705:36:0;;;;;:72;;71573:10;;85756:4;;85762:7;;85771:5;;85705:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;85705:72:0;;;;;;;;-1:-1:-1;;85705:72:0;;;;;;;;;;;;:::i;:::-;;;85701:574;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85961:6;:13;85978:1;85961:18;85957:299;;86008:63;;-1:-1:-1;;;86008:63:0;;;;;;;:::i;85957:299::-;86198:6;86192:13;86183:6;86179:2;86175:15;86168:38;85701:574;85829:1;:56;;;;-1:-1:-1;;;;;;;85834:51:0;;-1:-1:-1;;;85834:51:0;85829:56;85825:60;;85778:127;85672:9;;;;:::i;:::-;;;;85601:689;;;;86304:8;;85542:826;-1:-1:-1;86352:4:0;85542:826;85336:1039;;;;;;;:::o;53569:1234::-;53709:1;53700:10;;;53651:19;53866:20;;;;;;;;;;;53651:19;;53700:10;53790:4;53782:12;;;;53971:18;;;53964:26;54043:6;;54040:756;;54141:22;:2;:20;:22::i;:::-;54126:37;;:11;:37;54120:1;54110:6;:11;;54109:55;54095:69;;54040:756;;;54264:1;54255:6;:10;54247:75;;;;-1:-1:-1;;;54247:75:0;;42674:2:1;54247:75:0;;;42656:21:1;42713:2;42693:18;;;42686:30;42752:34;42732:18;;;42725:62;-1:-1:-1;;;42803:18:1;;;42796:50;42863:19;;54247:75:0;42472:416:1;54247:75:0;-1:-1:-1;;;54374:8:0;;;54505:12;:20;;;;;;;;;;;54374:8;;-1:-1:-1;54565:6:0;;54562:207;;54671:22;:2;:20;:22::i;:::-;54664:3;:29;54647:47;;54658:1;54648:6;:11;;54647:47;54633:61;;54721:5;;54562:207;54216:569;;;53672:1131;;;53569:1234;;;;:::o;45768:201::-;45830:5;45886:16;;;;;;;;;;;;;;;;;45942:3;44284:64;45904:18;45919:2;45904:14;:18::i;:::-;:33;45903:42;;45886:60;;;;;;;;:::i;:::-;;;;;;;;45768:201;-1:-1:-1;;45768:201:0:o;44995:169::-;45054:7;45087:1;45082:2;:6;45074:15;;;;;;-1:-1:-1;45138:1:0;:6;;;45132:13;;44995:169::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:131::-;-1:-1:-1;;;;;852:31:1;;842:42;;832:70;;898:1;895;888:12;913:435;980:6;988;1041:2;1029:9;1020:7;1016:23;1012:32;1009:52;;;1057:1;1054;1047:12;1009:52;1096:9;1083:23;1115:31;1140:5;1115:31;:::i;:::-;1165:5;-1:-1:-1;1222:2:1;1207:18;;1194:32;-1:-1:-1;;;;;1257:40:1;;1245:53;;1235:81;;1312:1;1309;1302:12;1235:81;1335:7;1325:17;;;913:435;;;;;:::o;1353:250::-;1438:1;1448:113;1462:6;1459:1;1456:13;1448:113;;;1538:11;;;1532:18;1519:11;;;1512:39;1484:2;1477:10;1448:113;;;-1:-1:-1;;1595:1:1;1577:16;;1570:27;1353:250::o;1608:271::-;1650:3;1688:5;1682:12;1715:6;1710:3;1703:19;1731:76;1800:6;1793:4;1788:3;1784:14;1777:4;1770:5;1766:16;1731:76;:::i;:::-;1861:2;1840:15;-1:-1:-1;;1836:29:1;1827:39;;;;1868:4;1823:50;;1608:271;-1:-1:-1;;1608:271:1:o;1884:220::-;2033:2;2022:9;2015:21;1996:4;2053:45;2094:2;2083:9;2079:18;2071:6;2053:45;:::i;2317:315::-;2385:6;2393;2446:2;2434:9;2425:7;2421:23;2417:32;2414:52;;;2462:1;2459;2452:12;2414:52;2501:9;2488:23;2520:31;2545:5;2520:31;:::i;:::-;2570:5;2622:2;2607:18;;;;2594:32;;-1:-1:-1;;;2317:315:1:o;2819:247::-;2878:6;2931:2;2919:9;2910:7;2906:23;2902:32;2899:52;;;2947:1;2944;2937:12;2899:52;2986:9;2973:23;3005:31;3030:5;3005:31;:::i;3071:456::-;3148:6;3156;3164;3217:2;3205:9;3196:7;3192:23;3188:32;3185:52;;;3233:1;3230;3223:12;3185:52;3272:9;3259:23;3291:31;3316:5;3291:31;:::i;:::-;3341:5;-1:-1:-1;3398:2:1;3383:18;;3370:32;3411:33;3370:32;3411:33;:::i;:::-;3071:456;;3463:7;;-1:-1:-1;;;3517:2:1;3502:18;;;;3489:32;;3071:456::o;3717:248::-;3785:6;3793;3846:2;3834:9;3825:7;3821:23;3817:32;3814:52;;;3862:1;3859;3852:12;3814:52;-1:-1:-1;;3885:23:1;;;3955:2;3940:18;;;3927:32;;-1:-1:-1;3717:248:1:o;4502:127::-;4563:10;4558:3;4554:20;4551:1;4544:31;4594:4;4591:1;4584:15;4618:4;4615:1;4608:15;4634:275;4705:2;4699:9;4770:2;4751:13;;-1:-1:-1;;4747:27:1;4735:40;;-1:-1:-1;;;;;4790:34:1;;4826:22;;;4787:62;4784:88;;;4852:18;;:::i;:::-;4888:2;4881:22;4634:275;;-1:-1:-1;4634:275:1:o;4914:712::-;4968:5;5021:3;5014:4;5006:6;5002:17;4998:27;4988:55;;5039:1;5036;5029:12;4988:55;5075:6;5062:20;5101:4;-1:-1:-1;;;;;5120:2:1;5117:26;5114:52;;;5146:18;;:::i;:::-;5192:2;5189:1;5185:10;5215:28;5239:2;5235;5231:11;5215:28;:::i;:::-;5277:15;;;5347;;;5343:24;;;5308:12;;;;5379:15;;;5376:35;;;5407:1;5404;5397:12;5376:35;5443:2;5435:6;5431:15;5420:26;;5455:142;5471:6;5466:3;5463:15;5455:142;;;5537:17;;5525:30;;5488:12;;;;5575;;;;5455:142;;;5615:5;4914:712;-1:-1:-1;;;;;;;4914:712:1:o;5631:416::-;5724:6;5732;5785:2;5773:9;5764:7;5760:23;5756:32;5753:52;;;5801:1;5798;5791:12;5753:52;5837:9;5824:23;5814:33;;5898:2;5887:9;5883:18;5870:32;-1:-1:-1;;;;;5917:6:1;5914:30;5911:50;;;5957:1;5954;5947:12;5911:50;5980:61;6033:7;6024:6;6013:9;6009:22;5980:61;:::i;:::-;5970:71;;;5631:416;;;;;:::o;6052:483::-;6145:6;6153;6206:2;6194:9;6185:7;6181:23;6177:32;6174:52;;;6222:1;6219;6212:12;6174:52;6261:9;6248:23;6280:31;6305:5;6280:31;:::i;:::-;6330:5;-1:-1:-1;6386:2:1;6371:18;;6358:32;-1:-1:-1;;;;;6402:30:1;;6399:50;;;6445:1;6442;6435:12;6780:118;6866:5;6859:13;6852:21;6845:5;6842:32;6832:60;;6888:1;6885;6878:12;6903:241;6959:6;7012:2;7000:9;6991:7;6987:23;6983:32;6980:52;;;7028:1;7025;7018:12;6980:52;7067:9;7054:23;7086:28;7108:5;7086:28;:::i;7149:632::-;7320:2;7372:21;;;7442:13;;7345:18;;;7464:22;;;7291:4;;7320:2;7543:15;;;;7517:2;7502:18;;;7291:4;7586:169;7600:6;7597:1;7594:13;7586:169;;;7661:13;;7649:26;;7730:15;;;;7695:12;;;;7622:1;7615:9;7586:169;;;-1:-1:-1;7772:3:1;;7149:632;-1:-1:-1;;;;;;7149:632:1:o;7786:407::-;7851:5;-1:-1:-1;;;;;7877:6:1;7874:30;7871:56;;;7907:18;;:::i;:::-;7945:57;7990:2;7969:15;;-1:-1:-1;;7965:29:1;7996:4;7961:40;7945:57;:::i;:::-;7936:66;;8025:6;8018:5;8011:21;8065:3;8056:6;8051:3;8047:16;8044:25;8041:45;;;8082:1;8079;8072:12;8041:45;8131:6;8126:3;8119:4;8112:5;8108:16;8095:43;8185:1;8178:4;8169:6;8162:5;8158:18;8154:29;8147:40;7786:407;;;;;:::o;8198:451::-;8267:6;8320:2;8308:9;8299:7;8295:23;8291:32;8288:52;;;8336:1;8333;8326:12;8288:52;8376:9;8363:23;-1:-1:-1;;;;;8401:6:1;8398:30;8395:50;;;8441:1;8438;8431:12;8395:50;8464:22;;8517:4;8509:13;;8505:27;-1:-1:-1;8495:55:1;;8546:1;8543;8536:12;8495:55;8569:74;8635:7;8630:2;8617:16;8612:2;8608;8604:11;8569:74;:::i;8654:382::-;8719:6;8727;8780:2;8768:9;8759:7;8755:23;8751:32;8748:52;;;8796:1;8793;8786:12;8748:52;8835:9;8822:23;8854:31;8879:5;8854:31;:::i;:::-;8904:5;-1:-1:-1;8961:2:1;8946:18;;8933:32;8974:30;8933:32;8974:30;:::i;9041:795::-;9136:6;9144;9152;9160;9213:3;9201:9;9192:7;9188:23;9184:33;9181:53;;;9230:1;9227;9220:12;9181:53;9269:9;9256:23;9288:31;9313:5;9288:31;:::i;:::-;9338:5;-1:-1:-1;9395:2:1;9380:18;;9367:32;9408:33;9367:32;9408:33;:::i;:::-;9460:7;-1:-1:-1;9514:2:1;9499:18;;9486:32;;-1:-1:-1;9569:2:1;9554:18;;9541:32;-1:-1:-1;;;;;9585:30:1;;9582:50;;;9628:1;9625;9618:12;9582:50;9651:22;;9704:4;9696:13;;9692:27;-1:-1:-1;9682:55:1;;9733:1;9730;9723:12;9682:55;9756:74;9822:7;9817:2;9804:16;9799:2;9795;9791:11;9756:74;:::i;:::-;9746:84;;;9041:795;;;;;;;:::o;9841:315::-;9909:6;9917;9970:2;9958:9;9949:7;9945:23;9941:32;9938:52;;;9986:1;9983;9976:12;9938:52;10022:9;10009:23;9999:33;;10082:2;10071:9;10067:18;10054:32;10095:31;10120:5;10095:31;:::i;10161:553::-;10272:6;10280;10288;10296;10349:3;10337:9;10328:7;10324:23;10320:33;10317:53;;;10366:1;10363;10356:12;10317:53;10402:9;10389:23;10379:33;;10459:2;10448:9;10444:18;10431:32;10421:42;;10510:2;10499:9;10495:18;10482:32;10472:42;;10565:2;10554:9;10550:18;10537:32;-1:-1:-1;;;;;10584:6:1;10581:30;10578:50;;;10624:1;10621;10614:12;10578:50;10647:61;10700:7;10691:6;10680:9;10676:22;10647:61;:::i;10719:309::-;10784:6;10792;10845:2;10833:9;10824:7;10820:23;10816:32;10813:52;;;10861:1;10858;10851:12;10813:52;10897:9;10884:23;10874:33;;10957:2;10946:9;10942:18;10929:32;10970:28;10992:5;10970:28;:::i;11033:388::-;11101:6;11109;11162:2;11150:9;11141:7;11137:23;11133:32;11130:52;;;11178:1;11175;11168:12;11130:52;11217:9;11204:23;11236:31;11261:5;11236:31;:::i;:::-;11286:5;-1:-1:-1;11343:2:1;11328:18;;11315:32;11356:33;11315:32;11356:33;:::i;11426:620::-;11537:6;11545;11553;11561;11614:3;11602:9;11593:7;11589:23;11585:33;11582:53;;;11631:1;11628;11621:12;11582:53;11670:9;11657:23;11689:31;11714:5;11689:31;:::i;:::-;11739:5;-1:-1:-1;11791:2:1;11776:18;;11763:32;;-1:-1:-1;11842:2:1;11827:18;;11814:32;;-1:-1:-1;11897:2:1;11882:18;;11869:32;-1:-1:-1;;;;;11913:30:1;;11910:50;;;11956:1;11953;11946:12;12051:380;12130:1;12126:12;;;;12173;;;12194:61;;12248:4;12240:6;12236:17;12226:27;;12194:61;12301:2;12293:6;12290:14;12270:18;12267:38;12264:161;;12347:10;12342:3;12338:20;12335:1;12328:31;12382:4;12379:1;12372:15;12410:4;12407:1;12400:15;12264:161;;12051:380;;;:::o;13161:245::-;13228:6;13281:2;13269:9;13260:7;13256:23;13252:32;13249:52;;;13297:1;13294;13287:12;13249:52;13329:9;13323:16;13348:28;13370:5;13348:28;:::i;13411:404::-;13613:2;13595:21;;;13652:2;13632:18;;;13625:30;13691:34;13686:2;13671:18;;13664:62;-1:-1:-1;;;13757:2:1;13742:18;;13735:38;13805:3;13790:19;;13411:404::o;13820:127::-;13881:10;13876:3;13872:20;13869:1;13862:31;13912:4;13909:1;13902:15;13936:4;13933:1;13926:15;13952:128;14019:9;;;14040:11;;;14037:37;;;14054:18;;:::i;14085:168::-;14158:9;;;14189;;14206:15;;;14200:22;;14186:37;14176:71;;14227:18;;:::i;14390:217::-;14430:1;14456;14446:132;;14500:10;14495:3;14491:20;14488:1;14481:31;14535:4;14532:1;14525:15;14563:4;14560:1;14553:15;14446:132;-1:-1:-1;14592:9:1;;14390:217::o;14961:403::-;15163:2;15145:21;;;15202:2;15182:18;;;15175:30;15241:34;15236:2;15221:18;;15214:62;-1:-1:-1;;;15307:2:1;15292:18;;15285:37;15354:3;15339:19;;14961:403::o;15369:401::-;15571:2;15553:21;;;15610:2;15590:18;;;15583:30;15649:34;15644:2;15629:18;;15622:62;-1:-1:-1;;;15715:2:1;15700:18;;15693:35;15760:3;15745:19;;15369:401::o;15775:125::-;15840:9;;;15861:10;;;15858:36;;;15874:18;;:::i;16261:348::-;16463:2;16445:21;;;16502:2;16482:18;;;16475:30;16541:26;16536:2;16521:18;;16514:54;16600:2;16585:18;;16261:348::o;16614:336::-;16816:2;16798:21;;;16855:2;16835:18;;;16828:30;-1:-1:-1;;;16889:2:1;16874:18;;16867:42;16941:2;16926:18;;16614:336::o;16955:348::-;17157:2;17139:21;;;17196:2;17176:18;;;17169:30;17235:26;17230:2;17215:18;;17208:54;17294:2;17279:18;;16955:348::o;17542:127::-;17603:10;17598:3;17594:20;17591:1;17584:31;17634:4;17631:1;17624:15;17658:4;17655:1;17648:15;17926:135;17965:3;17986:17;;;17983:43;;18006:18;;:::i;:::-;-1:-1:-1;18053:1:1;18042:13;;17926:135::o;23937:251::-;24007:6;24060:2;24048:9;24039:7;24035:23;24031:32;24028:52;;;24076:1;24073;24066:12;24028:52;24108:9;24102:16;24127:31;24152:5;24127:31;:::i;24319:545::-;24421:2;24416:3;24413:11;24410:448;;;24457:1;24482:5;24478:2;24471:17;24527:4;24523:2;24513:19;24597:2;24585:10;24581:19;24578:1;24574:27;24568:4;24564:38;24633:4;24621:10;24618:20;24615:47;;;-1:-1:-1;24656:4:1;24615:47;24711:2;24706:3;24702:12;24699:1;24695:20;24689:4;24685:31;24675:41;;24766:82;24784:2;24777:5;24774:13;24766:82;;;24829:17;;;24810:1;24799:13;24766:82;;25040:1352;25166:3;25160:10;-1:-1:-1;;;;;25185:6:1;25182:30;25179:56;;;25215:18;;:::i;:::-;25244:97;25334:6;25294:38;25326:4;25320:11;25294:38;:::i;:::-;25288:4;25244:97;:::i;:::-;25396:4;;25460:2;25449:14;;25477:1;25472:663;;;;26179:1;26196:6;26193:89;;;-1:-1:-1;26248:19:1;;;26242:26;26193:89;-1:-1:-1;;24997:1:1;24993:11;;;24989:24;24985:29;24975:40;25021:1;25017:11;;;24972:57;26295:81;;25442:944;;25472:663;24266:1;24259:14;;;24303:4;24290:18;;-1:-1:-1;;25508:20:1;;;25626:236;25640:7;25637:1;25634:14;25626:236;;;25729:19;;;25723:26;25708:42;;25821:27;;;;25789:1;25777:14;;;;25656:19;;25626:236;;;25630:3;25890:6;25881:7;25878:19;25875:201;;;25951:19;;;25945:26;-1:-1:-1;;26034:1:1;26030:14;;;26046:3;26026:24;26022:37;26018:42;26003:58;25988:74;;25875:201;-1:-1:-1;;;;;26122:1:1;26106:14;;;26102:22;26089:36;;-1:-1:-1;25040:1352:1:o;29056:1256::-;29280:3;29318:6;29312:13;29344:4;29357:64;29414:6;29409:3;29404:2;29396:6;29392:15;29357:64;:::i;:::-;29484:13;;29443:16;;;;29506:68;29484:13;29443:16;29541:15;;;29506:68;:::i;:::-;29663:13;;29596:20;;;29636:1;;29701:36;29663:13;29701:36;:::i;:::-;29756:1;29773:18;;;29800:141;;;;29955:1;29950:337;;;;29766:521;;29800:141;-1:-1:-1;;29835:24:1;;29821:39;;29912:16;;29905:24;29891:39;;29880:51;;;-1:-1:-1;29800:141:1;;29950:337;29981:6;29978:1;29971:17;30029:2;30026:1;30016:16;30054:1;30068:169;30082:8;30079:1;30076:15;30068:169;;;30164:14;;30149:13;;;30142:37;30207:16;;;;30099:10;;30068:169;;;30072:3;;30268:8;30261:5;30257:20;30250:27;;29766:521;-1:-1:-1;30303:3:1;;29056:1256;-1:-1:-1;;;;;;;;;;29056:1256:1:o;32128:136::-;32167:3;32195:5;32185:39;;32204:18;;:::i;:::-;-1:-1:-1;;;32240:18:1;;32128:136::o;32630:611::-;-1:-1:-1;;;32988:3:1;32981:23;32963:3;33033:6;33027:13;33049:74;33116:6;33112:1;33107:3;33103:11;33096:4;33088:6;33084:17;33049:74;:::i;:::-;-1:-1:-1;;;33182:1:1;33142:16;;;;33174:10;;;33167:41;-1:-1:-1;33232:2:1;33224:11;;32630:611;-1:-1:-1;32630:611:1:o;34844:416::-;35046:2;35028:21;;;35085:2;35065:18;;;35058:30;35124:34;35119:2;35104:18;;35097:62;-1:-1:-1;;;35190:2:1;35175:18;;35168:50;35250:3;35235:19;;34844:416::o;35626:624::-;-1:-1:-1;;;35984:3:1;35977:23;35959:3;36029:6;36023:13;36045:74;36112:6;36108:1;36103:3;36099:11;36092:4;36084:6;36080:17;36045:74;:::i;:::-;36182:34;36178:1;36138:16;;;;36170:10;;;36163:54;-1:-1:-1;36241:2:1;36233:11;;35626:624;-1:-1:-1;35626:624:1:o;37385:1050::-;37897:66;37892:3;37885:79;37867:3;37993:6;37987:13;38009:75;38077:6;38072:2;38067:3;38063:12;38056:4;38048:6;38044:17;38009:75;:::i;:::-;-1:-1:-1;;;38143:2:1;38103:16;;;38135:11;;;38128:71;38224:13;;38246:76;38224:13;38308:2;38300:11;;38293:4;38281:17;;38246:76;:::i;:::-;-1:-1:-1;;;38382:2:1;38341:17;;;;38374:11;;;38367:35;38426:2;38418:11;;37385:1050;-1:-1:-1;;;;37385:1050:1:o;38440:461::-;38702:31;38697:3;38690:44;38672:3;38763:6;38757:13;38779:75;38847:6;38842:2;38837:3;38833:12;38826:4;38818:6;38814:17;38779:75;:::i;:::-;38874:16;;;;38892:2;38870:25;;38440:461;-1:-1:-1;;38440:461:1:o;40143:417::-;40345:2;40327:21;;;40384:2;40364:18;;;40357:30;40423:34;40418:2;40403:18;;40396:62;-1:-1:-1;;;40489:2:1;40474:18;;40467:51;40550:3;40535:19;;40143:417::o;41724:489::-;-1:-1:-1;;;;;41993:15:1;;;41975:34;;42045:15;;42040:2;42025:18;;42018:43;42092:2;42077:18;;42070:34;;;42140:3;42135:2;42120:18;;42113:31;;;41918:4;;42161:46;;42187:19;;42179:6;42161:46;:::i;:::-;42153:54;41724:489;-1:-1:-1;;;;;;41724:489:1:o;42218:249::-;42287:6;42340:2;42328:9;42319:7;42315:23;42311:32;42308:52;;;42356:1;42353;42346:12;42308:52;42388:9;42382:16;42407:30;42431:5;42407:30;:::i

Swarm Source

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